diff --git a/.coveragerc b/.coveragerc index 8b8e84b65c..f594213fa5 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1,8 +1,22 @@ [run] source = ./timetable - ./analytics + ./courses ./student +branch = True + include = - */views.py + timetable/views.py + timetable/serializers.py + courses/views.py + courses/serializers.py + student/views.py + student/serializers.py + +[report] +show_missing = True +# skip_covered = True + +[html] +title = htmlReport diff --git a/.eslintignore b/.eslintignore index 1c7c7b6889..4b6b6ed3eb 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,3 +1,12 @@ +docs +venv node_modules/ +htmlcov/ static/js/modules/ -static/js/redux/__tests__/*/__snapshots__/ \ No newline at end of file +static/js/redux/__tests__/*/__snapshots__/ +static/bundles/ +static/admin/ +static/django_extensions/ +static/drf-yasg/ +static/rest_framework/ +static/ckeditor/ \ No newline at end of file diff --git a/.eslintrc.js b/.eslintrc.js index c9c2e3305d..114fbeb6d7 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -13,22 +13,58 @@ GNU General Public License for more details. */ module.exports = { - "env": { - "browser": true, - "node": true, - "jasmine": true - }, - "globals": { - "$": true, - "initData": true, // homepage context data passed from backend - "reactAlertEvents": true, - }, - rules: { - "no-else-return": 0, - "no-plusplus": 0, - "jsx-a11y/no-static-element-interactions": 0, - "jsx-a11y/no-noninteractive-element-interactions": 0, - "react/jsx-max-props-per-line": 0 - }, - extends: "airbnb", -}; \ No newline at end of file + parser: "@typescript-eslint/parser", + plugins: ["@typescript-eslint"], + env: { + browser: true, + node: true, + jasmine: true, + }, + globals: { + $: true, + initData: true, // homepage context data passed from backend + reactAlertEvents: true, + JSX: true, + }, + rules: { + "no-else-return": 0, + "no-plusplus": 0, + "no-unused-vars": 0, + "no-use-before-define": 0, + "jsx-a11y/no-static-element-interactions": 0, + "jsx-a11y/no-noninteractive-element-interactions": 0, + "jsx-a11y/heading-has-content": 0, + "jsx-a11y/anchor-has-content": 0, + "react/jsx-max-props-per-line": 0, + "import/first": 0, + // disable for redux toolkit + "no-param-reassign": 0, + "import/extensions": [ + "error", + "ignorePackages", + { + ts: "never", + jsx: "never", + js: "never", + tsx: "never", + }, + ], + "react/jsx-filename-extension": [1, { extensions: [".tsx", ".jsx"] }], + "react/require-default-props": 0, + }, + extends: [ + "airbnb", + "plugin:import/errors", + "plugin:import/warnings", + "plugin:import/typescript", + "prettier", + ], + settings: { + "import/resolver": { + node: { + extensions: [".js", ".jsx", ".ts", ".tsx"], + moduleDirectory: ["node_modules", "static/js/redux/"], + }, + }, + }, +}; diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 0000000000..5a6b5bee5b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,90 @@ +name: Bug Report +description: File a Bug Report +labels: [bug] +body: + - type: input + id: contact + attributes: + label: Contact Details + description: How can we get in touch with you if we need more info? + placeholder: ex. email@example.com + validations: + required: false + - type: textarea + id: describe-bug + attributes: + label: Describe the Bug + description: A clear and concise description of what the bug is. + placeholder: Describe the bug. + validations: + required: true + - type: textarea + id: steps-to-reproduce + attributes: + label: How can we reproduce the problem? + description: A clear and concise description of what the problem is. + value: | + Steps to reproduce the behavior: + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + validations: + required: true + - type: textarea + id: expected-behavior + attributes: + label: Expected Behavior + description: A clear and concise description of what you expected to happen. + placeholder: Expectations + validations: + required: true + - type: dropdown + id: version + attributes: + label: OS Version + description: Which OS were you using? + options: + - MacOS + - Windows + - Linux + - Other + validations: + required: false + - type: dropdown + id: browsers + attributes: + label: Which browsers are you seeing the problem on? + multiple: true + options: + - Firefox + - Chrome + - Safari + - Microsoft Edge + - Other + validations: + required: false + - type: textarea + id: logs + attributes: + label: Additional Information + description: | + Please copy and paste any relevant log output or screenshot. + This will be automatically formatted into code, so no need for backticks. + + Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. + placeholder: Add any other context or screenshots about the feature request here. + validations: + required: false + - type: checkboxes + id: terms + attributes: + label: Code of Conduct + description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/jhuopensource/semesterly/blob/master/CODE_OF_CONDUCT.md) + options: + - label: I agree to follow Semester.ly's Code of Conduct + required: true + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 0000000000..ebd781f453 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,59 @@ +name: Feature Request +description: Suggest a new idea/feature for Semester.ly +labels: [feature-request] +body: + - type: input + id: contact + attributes: + label: Contact Details + description: How can we get in touch with you if we need more info? + placeholder: ex. email@example.com + validations: + required: false + - type: textarea + id: problem + attributes: + label: Is your feature request related to a problem? Please describe. + description: A clear and concise description of what the problem is. + placeholder: Related problem? + validations: + required: true + - type: textarea + id: solution + attributes: + label: Describe the solution you'd like. + description: A clear and concise description of what you want to happen. + placeholder: Solution + validations: + required: true + - type: textarea + id: alternatives + attributes: + label: Describe alternatives you've considered + description: A clear and concise description of any alternative solutions or features you've considered. + placeholder: Any alternatives? + validations: + required: true + - type: textarea + id: additional-info + attributes: + label: Additional Information + description: | + Add any other context or screenshots about the feature request here. + + Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. + placeholder: Additional Info... + validations: + required: false + - type: checkboxes + id: terms + attributes: + label: Code of Conduct + description: By submitting this request, you agree to follow our [Code of Conduct](https://github.com/jhuopensource/semesterly/blob/master/CODE_OF_CONDUCT.md) + options: + - label: I agree to follow Semester.ly's Code of Conduct + required: true + - type: markdown + attributes: + value: | + Thanks for taking the time to request a new feature! diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000000..afd17d0144 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,3 @@ +## Description + +## Change Log diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml new file mode 100644 index 0000000000..70e628a844 --- /dev/null +++ b/.github/workflows/black.yml @@ -0,0 +1,24 @@ +# Runs the backend linter: black +name: Backend Linter + +on: + push: + branches: + - prod + - develop + - feature/dark-mode-timetable + pull_request: + branches: + - prod + - develop + - feature/dark-mode-timetable + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: psf/black@stable + with: + options: "--check --verbose" + version: 22.3.0 diff --git a/.github/workflows/semesterly.yml b/.github/workflows/semesterly.yml new file mode 100644 index 0000000000..fd5fa9fa4b --- /dev/null +++ b/.github/workflows/semesterly.yml @@ -0,0 +1,76 @@ +# Builds Semester.ly and runs tests +name: Semesterly CI + +on: + push: + branches: + - prod + - develop + - feature/dark-mode-timetable + pull_request: + branches: + - prod + - develop + - feature/dark-mode-timetable + +jobs: + build: + runs-on: ubuntu-latest + services: + postgres: + image: postgres + env: + POSTGRES_USER: postgres + POSTGRES_PASSWORD: postgres + POSTGRES_DB: postgres + ports: + - 5432:5432 + # needed because the postgres container does not provide a healthcheck + options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 + + strategy: + matrix: + python-version: [3.8] + node-version: [14.x] + + steps: + - name: Adjust hosts file + run: sudo echo "127.0.0.1 jhu.sem.ly sem.ly jhu" | sudo tee -a /etc/hosts + + - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + + - uses: actions/cache@v2 + with: + path: ~/.cache/pip + key: ${{ runner.os }}-${{ hashFiles('requirements.txt') }} + + - name: Install Python Dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + cache: "npm" + - run: npm install + - run: npm -g install chromedriver + - run: npm -g install jest@20 + - run: npm run build --if-present + - run: npm run lint + - run: npm run test + + - name: Run Backend Tests + env: + NODE_ENV: production + host: jhu.sem.ly + DB_PORT: ${{ job.services.postgres.ports[5432] }} + run: python manage.py test + + - name: Run docs + run: make html -C docs diff --git a/.github/workflows/tslint.yml b/.github/workflows/tslint.yml new file mode 100644 index 0000000000..8aad282199 --- /dev/null +++ b/.github/workflows/tslint.yml @@ -0,0 +1,30 @@ +# Runs the frontend linter, Prettier and ESLint +name: TSLint + +on: + push: + branches: + - prod + - develop + - feature/dark-mode-timetable + pull_request: + branches: + - prod + - develop + - feature/dark-mode-timetable + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 + with: + node-version: 14 + cache: "npm" + - name: Install Dependencies + run: npm install + - name: Run Prettier + run: npx prettier "**/*.{js,jsx,ts,tsx}" --check + - name: Run ESLint + run: npx eslint . --ext .js,.jsx,.ts,.tsx --max-warnings 0 diff --git a/.gitignore b/.gitignore index a87bf57752..ddc3df0207 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,8 @@ docs/build/ .DS_Store env/ github-request-body +.history +htmlcov/ .idea/ *.log *.log @@ -18,7 +20,7 @@ node_modules npm-debug.log.* openssl.cnf parse_errors.log -parsing/**/data/*.json +parsing/**/data/courses.json parsing/**/logs/*.json parsing/**/logs/*.log *.pid @@ -45,7 +47,6 @@ static/robots.txt static/sitemap.txt *.swp */test_failures/ -TextbookParserOutput.txt timetable/courses_json/*.json *.timetable.features timetable.features diff --git a/.jshintrc b/.jshintrc index 997b3f7d45..39e2c6c02a 100644 --- a/.jshintrc +++ b/.jshintrc @@ -1,5 +1,6 @@ { "node": true, + "esversion": 6, "curly": true, "latedef": true, diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000000..ba3f630377 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,8 @@ +docs +venv +static/bundles/ +static/admin/ +static/django_extensions/ +static/drf-yasg/ +static/rest_framework/ +static/ckeditor/ \ No newline at end of file diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 0000000000..b90ca94e60 --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,3 @@ +{ + "printWidth": 88 +} diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000000..a2e67c4996 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,22 @@ +# .readthedocs.yaml +# Read the Docs configuration file +# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details + +# Our own readthedocs can be found here https://readthedocs.org/projects/semesterly-v2/ +# And here https://semesterly-v2.readthedocs.io/en/latest/ + +# Required +version: 2 + +# Build documentation in the docs/ directory with Sphinx +sphinx: + configuration: docs/conf.py + +# Optionally build your docs in additional formats such as PDF +formats: all + +# Optionally set the version of Python and requirements required to build your docs +python: + version: "3.8" + install: + - requirements: requirements.txt \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index aed59279cb..0000000000 --- a/.travis.yml +++ /dev/null @@ -1,44 +0,0 @@ -os: linux -sudo: required -dist: trusty -language: python -python: -- "2.7" -env: - - NODE_ENV=production NODE_VERSION="8.15.0" -branches: - only: - - master - - staging -cache: - apt: true - directories: - - node_modules - - $HOME/.npm - - $HOME/.cache/pip -install: -- nvm install $NODE_VERSION -- npm -g install chromedriver -- npm -g install jest@20 -- npm install -- pip install --upgrade pip -- pip install -r requirements.txt -addons: - chrome: stable - apt: - sources: - - google-chrome - packages: - - google-chrome-stable - hosts: - - jhu.sem.ly -before_script: -- export DISPLAY=:99.0 -- sh -e /etc/init.d/xvfb start -- sleep 3 -script: -- npm run build -- npm run lint -- npm run test -- python manage.py test -- make html -C docs diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index dd9d8fffe3..236fd837ff 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -2,45 +2,131 @@ ## Our Pledge -In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, caste, color, religion, or sexual identity +and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. ## Our Standards -Examples of behavior that contributes to creating a positive environment include: +Examples of behavior that contributes to a positive environment for our +community include: -* Using welcoming and inclusive language -* Being respectful of differing viewpoints and experiences -* Gracefully accepting constructive criticism -* Focusing on what is best for the community -* Showing empathy towards other community members +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +* Focusing on what is best not just for us as individuals, but for the + overall community -Examples of unacceptable behavior by participants include: +Examples of unacceptable behavior include: -* The use of sexualized language or imagery and unwelcome sexual attention or advances -* Trolling, insulting/derogatory comments, and personal or political attacks +* The use of sexualized language or imagery, and sexual attention or + advances of any kind +* Trolling, insulting or derogatory comments, and personal or political attacks * Public or private harassment -* Publishing others' private information, such as a physical or electronic address, without explicit permission -* Other conduct which could reasonably be considered inappropriate in a professional setting +* Publishing others' private information, such as a physical or email + address, without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting -## Our Responsibilities +## Enforcement Responsibilities -Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. -Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. ## Scope -This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. ## Enforcement -Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at noah@presler.me. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at +semesterly@jhu.edu. +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series +of actions. -Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or +permanent ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within +the community. ## Attribution -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.0, available at +[https://www.contributor-covenant.org/version/2/0/code_of_conduct.html][v2.0]. + +Community Impact Guidelines were inspired by +[Mozilla's code of conduct enforcement ladder][Mozilla CoC]. + +For answers to common questions about this code of conduct, see the FAQ at +[https://www.contributor-covenant.org/faq][FAQ]. Translations are available +at [https://www.contributor-covenant.org/translations][translations]. -[homepage]: http://contributor-covenant.org -[version]: http://contributor-covenant.org/version/1/4/ +[homepage]: https://www.contributor-covenant.org +[v2.0]: https://www.contributor-covenant.org/version/2/0/code_of_conduct.html +[Mozilla CoC]: https://github.com/mozilla/diversity +[FAQ]: https://www.contributor-covenant.org/faq +[translations]: https://www.contributor-covenant.org/translations diff --git a/Dockerfile b/Dockerfile index b948baa220..e77fd2f5e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ -FROM jhuopensource/semesterly-base:latest - +ARG BASE_IMAGE=jhuopensource/semesterly-base-py3 +FROM $BASE_IMAGE +# sgerli/horariotec-base: RUN mkdir /code WORKDIR /code @@ -23,10 +24,8 @@ COPY ./build/local_settings.py /code/semesterly/local_settings.py # Add parser script COPY ./build/run_parser.sh /code/run_parser.sh -RUN pip install -r /code/requirements.txt -# This is needed on newer ubuntu -RUN pip install psycopg2-binary +RUN pip3 install -r /code/requirements.txt +# Install package.json dependencies RUN npm install RUN npm run build - diff --git a/README.md b/README.md index 212858853a..31ef710a5e 100644 --- a/README.md +++ b/README.md @@ -2,22 +2,49 @@

- - - - - + Open in Visual Studio Code

-Read the docs and learn more: http://semesterly.readthedocs.io/en/latest/ + + + + Documentation Status + Chat

-

+## Documentation + +Read the [Docs](https://semesterly-v2.readthedocs.io/en/latest/) and learn more. + +## Contributing + +Please make sure to read the [Contributing Guidelines](https://semesterly-v2.readthedocs.io/en/latest/contributing.html) before making a pull request! + +Read [Add a School](https://semesterly-v2.readthedocs.io/en/latest/addaschool.html) in the docs to learn more about how to add your school! + +## Here's a Preview of the Semester.ly Platform + +

Semester.ly Platform Preview

+ +## Questions + +For questions and support, please contact us at or ask in the [community forum](https://discord.gg/txYbphsAV7). The [Issues section](https://github.com/jhuopensource/semesterly/issues) of this repository is **ONLY** for bug reports and feature requests. + +## Our Contributors +
+ + + +
+ +

+Made with contributors-img. +

## License -Copyright 2017, Semester.ly Technologies, LLC +Copyright © 2017, Semester.ly Technologies, LLC This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/__mocks__/isomorphic-fetch.js b/__mocks__/isomorphic-fetch.js index 288e8ba1b4..75cff2cdff 100644 --- a/__mocks__/isomorphic-fetch.js +++ b/__mocks__/isomorphic-fetch.js @@ -1,7 +1,6 @@ // Monkey patch fetch function to use absolute urls during testing (required by nock) -const fetch = require.requireActual('isomorphic-fetch'); +// eslint-disable-next-line no-undef +const fetch = jest.requireActual("isomorphic-fetch"); -module.exports = (url, config) => { - return fetch('https://localhost' + url, config); -}; +module.exports = (url, config) => fetch(`https://localhost${url}`, config); diff --git a/__mocks__/styleMock.js b/__mocks__/styleMock.js new file mode 100644 index 0000000000..f053ebf797 --- /dev/null +++ b/__mocks__/styleMock.js @@ -0,0 +1 @@ +module.exports = {}; diff --git a/agreement/apps.py b/agreement/apps.py index dd7cda7da9..ea82abdc81 100644 --- a/agreement/apps.py +++ b/agreement/apps.py @@ -10,10 +10,8 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import unicode_literals - from django.apps import AppConfig class AgreementConfig(AppConfig): - name = 'agreement' + name = "agreement" diff --git a/agreement/migrations/0001_initial.py b/agreement/migrations/0001_initial.py index 491db742d9..1243c37ee2 100644 --- a/agreement/migrations/0001_initial.py +++ b/agreement/migrations/0001_initial.py @@ -14,24 +14,30 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-05-21 00:27 -from __future__ import unicode_literals + from django.db import migrations, models class Migration(migrations.Migration): - initial = True - dependencies = [ - ] + dependencies = [] operations = [ migrations.CreateModel( - name='Agreement', + name="Agreement", fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('last_updated', models.DateTimeField()), + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("last_updated", models.DateTimeField()), ], ), ] diff --git a/agreement/migrations/0002_auto_20170520_1927.py b/agreement/migrations/0002_auto_20170520_1927.py index fa483c69cc..3b9b8c5da4 100644 --- a/agreement/migrations/0002_auto_20170520_1927.py +++ b/agreement/migrations/0002_auto_20170520_1927.py @@ -14,20 +14,21 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-05-21 00:27 -from __future__ import unicode_literals + from datetime import datetime from django.db import migrations + def load_agreement(apps, schema_editor): - agreement_model = apps.get_model('agreement', 'Agreement') + agreement_model = apps.get_model("agreement", "Agreement") agreement_model.objects.create(last_updated=datetime.now()) -class Migration(migrations.Migration): +class Migration(migrations.Migration): dependencies = [ - ('agreement', '0001_initial'), + ("agreement", "0001_initial"), ] operations = [ diff --git a/agreement/migrations/0003_auto_20170615_1828.py b/agreement/migrations/0003_auto_20170615_1828.py index 4228dd6367..9e7a9ec316 100644 --- a/agreement/migrations/0003_auto_20170615_1828.py +++ b/agreement/migrations/0003_auto_20170615_1828.py @@ -1,19 +1,18 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-06-15 23:28 -from __future__ import unicode_literals + from django.db import migrations class Migration(migrations.Migration): - dependencies = [ - ('agreement', '0002_auto_20170520_1927'), + ("agreement", "0002_auto_20170520_1927"), ] operations = [ migrations.AlterModelOptions( - name='agreement', - options={'get_latest_by': 'last_updated'}, + name="agreement", + options={"get_latest_by": "last_updated"}, ), ] diff --git a/agreement/migrations/0003_auto_20170707_0757.py b/agreement/migrations/0003_auto_20170707_0757.py index 70affb4e05..e4b25e5e1c 100644 --- a/agreement/migrations/0003_auto_20170707_0757.py +++ b/agreement/migrations/0003_auto_20170707_0757.py @@ -1,19 +1,18 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-07-07 12:57 -from __future__ import unicode_literals + from django.db import migrations class Migration(migrations.Migration): - dependencies = [ - ('agreement', '0002_auto_20170520_1927'), + ("agreement", "0002_auto_20170520_1927"), ] operations = [ migrations.AlterModelOptions( - name='agreement', - options={'get_latest_by': 'last_updated'}, + name="agreement", + options={"get_latest_by": "last_updated"}, ), ] diff --git a/agreement/migrations/0004_merge.py b/agreement/migrations/0004_merge.py index d5ee09395c..44c9b7dae5 100644 --- a/agreement/migrations/0004_merge.py +++ b/agreement/migrations/0004_merge.py @@ -1,16 +1,14 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-07-22 18:04 -from __future__ import unicode_literals + from django.db import migrations class Migration(migrations.Migration): - dependencies = [ - ('agreement', '0003_auto_20170615_1828'), - ('agreement', '0003_auto_20170707_0757'), + ("agreement", "0003_auto_20170615_1828"), + ("agreement", "0003_auto_20170707_0757"), ] - operations = [ - ] + operations = [] diff --git a/agreement/migrations/0005_auto_20190121_1152.py b/agreement/migrations/0005_auto_20190121_1152.py index 5557879ab6..72e710a571 100644 --- a/agreement/migrations/0005_auto_20190121_1152.py +++ b/agreement/migrations/0005_auto_20190121_1152.py @@ -6,20 +6,19 @@ class Migration(migrations.Migration): - dependencies = [ - ('agreement', '0004_merge'), + ("agreement", "0004_merge"), ] operations = [ migrations.AddField( - model_name='agreement', - name='description', - field=models.CharField(blank=True, default='', max_length=200), + model_name="agreement", + name="description", + field=models.CharField(blank=True, default="", max_length=200), ), migrations.AddField( - model_name='agreement', - name='url', - field=models.CharField(blank=True, default='', max_length=50), + model_name="agreement", + name="url", + field=models.CharField(blank=True, default="", max_length=50), ), ] diff --git a/agreement/migrations/0006_add_hopkinsIT_agreement.py b/agreement/migrations/0006_add_hopkinsIT_agreement.py index ae72b8907c..c156688e5f 100644 --- a/agreement/migrations/0006_add_hopkinsIT_agreement.py +++ b/agreement/migrations/0006_add_hopkinsIT_agreement.py @@ -18,20 +18,17 @@ def add_hopkinsIT_agreement(apps, schema_editor): - agreement, created = Agreement.objects.get_or_create( url="\\notice", - last_updated=datetime.datetime.now(), - description="We are now partnering with the Johns Hopkins IT department" + last_updated="2019-03-08 05:58:01.704254", + description="We are now partnering with the Johns Hopkins IT department", ) agreement.save() -class Migration(migrations.Migration): +class Migration(migrations.Migration): dependencies = [ - ('agreement', '0005_auto_20190121_1152'), + ("agreement", "0005_auto_20190121_1152"), ] - operations = [ - migrations.RunPython(add_hopkinsIT_agreement) - ] + operations = [migrations.RunPython(add_hopkinsIT_agreement)] diff --git a/agreement/migrations/__init__.py b/agreement/migrations/__init__.py index 48cb47ffcf..54cb057c9e 100644 --- a/agreement/migrations/__init__.py +++ b/agreement/migrations/__init__.py @@ -11,4 +11,3 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. """ - diff --git a/agreement/models.py b/agreement/models.py index dd5e1e16d5..7322745878 100644 --- a/agreement/models.py +++ b/agreement/models.py @@ -10,19 +10,18 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import unicode_literals - from django.db import models class Agreement(models.Model): - """ Database object representing updates to the ToS/privacy policy. """ + """Database object representing updates to the ToS/privacy policy.""" + # time of the update last_updated = models.DateTimeField() # short description of what the change is - description = models.CharField(max_length=200, blank=True, default='') + description = models.CharField(max_length=200, blank=True, default="") # url to the announcement page, if any. should be a local path (e.g. /notice) - url = models.CharField(max_length=50, blank=True, default='') + url = models.CharField(max_length=50, blank=True, default="") class Meta: get_latest_by = "last_updated" diff --git a/agreement/serializers.py b/agreement/serializers.py index 12d259ea0e..5f068c51e7 100644 --- a/agreement/serializers.py +++ b/agreement/serializers.py @@ -14,15 +14,16 @@ from agreement.models import Agreement + class AgreementSerializer(serializers.ModelSerializer): - timeUpdated = serializers.DateTimeField(source='last_updated') + timeUpdated = serializers.DateTimeField(source="last_updated") description = serializers.CharField() url = serializers.CharField() class Meta: model = Agreement fields = ( - 'timeUpdated', - 'description', - 'url', + "timeUpdated", + "description", + "url", ) diff --git a/agreement/templates/privacypolicy.html b/agreement/templates/privacypolicy.html index f70d48154d..e14bf0e382 100644 --- a/agreement/templates/privacypolicy.html +++ b/agreement/templates/privacypolicy.html @@ -1,180 +1,699 @@ -{% load staticfiles %} +{% load static %} - - - - - - - - - - - - - - - - Privacy Policy | Semester.ly - - - - - - - - - - -
- -
-
- - -
-
-
-

Privacy Policy | March 8, 2019

-
-
-
-
-
+ + + + + + + + + + + + + + + + + Privacy Policy | Semester.ly + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ + +
+
+
+

Privacy Policy | March 8, 2019

+
+
+
+
+
- -

Purpose | Scope | Consent

-

Semester.ly is a social and collaborative course scheduling platform for University students across North America. Since its inception, our platform has evolved to offer students a one stop shop for course discovery, schedule creation and social planning - reducing student stress infinitely.

-

The all-inclusive scheduler includes features such as advanced search settings based on major requirements, department and time. Additionally, students can view the university’s official course ratings, as well as their peer’s course-granular emoji ratings.

-

Students are able to create, name, and save multiple timetables, and share these timetables via URL or Facebook/Google. They can also view which courses Facebook/Google friends are considering or have previously taken - a great way for freshman to make new friends and for all students to make lasting connections!

-

We (“Semester.ly,” “we,” “us,” or “our”) have developed this privacy policy (the “Privacy Policy”) to demonstrate our commitment to protecting your privacy and we encourage you to read it carefully.

-

The Privacy Policy is intended to describe for you, as an individual who is (1) a visitor, user or customer of a website or web presence owned or operated by Semester.ly, and/or (2) a user of the Semester.ly secure platform and communications service (collectively, the “Service”), the information we collect, how that information may be used, with whom it may be shared, and your choices about such uses and disclosures.

-

By visiting the Site or using the Service, you are consenting to the practices described in this Privacy Policy.

-

Information We Collect About You

-

We use various technologies to collect information from your computer or other internet access device related to your use of the Service.

-

Our website (https://semester.ly) captures e‑mail addresses, mobile phone numbers, and other log‑in information from visitors who opt‑in by providing their email address, mobile phone numbers and/or log‑in information. It also captures non‑personally‑identifiable information for purposes of analytics that assess visitor trends, such as numbers of users, pages visited, and IP address country of origin.

-

Our encrypted invite system website (https://semester.ly) captures user IP addresses to prevent misuse of our system and to enforce sender‑specified message restrictions. It also collects user and device information for, among other things, authentication and system integrity. In addition, we collect date/time information and recipient service links (e.g., user identifier associated with a particular type of application). For purposes of facilitating the transmission of user messages on the Service, Semester.ly will rely on specific contact information that users provide (e.g., an e‑mail address for a message recipient). Semester.ly does not collect any other information from users’ contact lists or devices.

-

Our platform (https://semester.ly) collects additional information necessary to provide the Semester.ly service. This information include IP addresses to prevent misuse of our system and to enforce sender‑specified message restrictions. It also includes user‑specific device information and, if the user opts in, may collect the email addresses, SMS addresses, University specific log-in credentials, and/or Facebook/Google accounts associated with the user’s Semester.ly account.

-

We use google analytics to collect basic, anonymous information about our users for aggregate analysis, traffic monitoring, and growth metrics. (Information about Google Analytics usage of data and privacy policies can be found here).

-

Non-Registered & Logged Out Users

-

Outside of the use of Google Analytics, for non-registered/logged out users we exclusively collect completely anonymous data.

-

1. When a user in this category creates a schedule or executes a search we log this information. We simply log that it occurred, when it occurred, and what results/courses were returned/added. There is no link to the user, no information like IP address or cookies are attached to these logs.

-

2. In the future, we will add other trivial logs anonymous for analytics purposes.

-

3. When a user creates a timetable or sets certain preferences (e.g. conflicts allowed in schedule) we store this information locally on the user’s browser. It remains on their device exclusively so that it can be loaded when they return to the site.

-

4. We use cookies to understand and save user’s preferences for future visits.

-

Registered & Logged in User – No Permissions

-

When a user is logged in (and therefore registered), but has not enabled any permissions we store the following information about the student (some info drawn from Facebook/Google API which the user has logged in with and approved):

-

1. Name (Facebook/Google API)

-

2. Email (Facebook/Google API)

-

4. Class Year

-

5. Major

-

6. Profile Picture (Facebook/Google API)

-

7. The school they are using Semester.ly with

-

If a user creates a timetable/schedule we store that (including courses, name, semester, time last updated) and link that to the user.

-

If a user reviews a course with an emoji, we store that information as well. It is never displayed to any other user.

-

If a user enables notifications, we store an encrypted token from Google/Firebase Cloud Messaging in order to send these push messages.

-

No user data is ever shared to any other user in this state. Only the logged in user can view their information/reviews, change their settings, and access their timetables.

-

We maintain the capability to view the user’s list of friends through the Facebook/Google API

-

Registered & Logged in User – Social Course Permission Enabled

-

In this state, the user has all that the previous state does with additional features/exposures of data.

-

Users with social course permission enabled can see which of their Facebook friends are in the courses indicated through use of the Semester.ly platform, and in return friends can see that they are in the course as well. This feature works only for Facebook/Google Friends – if the two students are not officially friends according to the Facebook/Google official API, this relationship is not exposed.

-

The exact time a user is taking the course is not exposed – only that they are taking the course.

-

The user’s social graph is never exposed in any other form to any other user.

-

Registered & Logged in User – Social Course & Social Sections Permission Enabled

-

Users with this additional “Social Sections” permission can see not only which courses their friends are taking but what times (called sections) they are taking them. By enabling this, they expose the same information about themselves to their Facebook/Google friends.

-

Registered & Logged in User – Fully Public Permissions

-

In this case a user let’s any other Semester.ly user at their school to see their courses and sections. This requires that all previously stated permissions be enabled.

-

Users in this state can see other users in the same state which are taking similar course loads and can then connect, communicate, and collaborate.

-

The only information exposed is the courses and course sections these users are taking and links to their public facing Facebook/Google profiles as shown below.

-

Google Connected Users – Opt-in Calendar Usage

-

Google connected users provide Semester.ly with access to their Google Calendars via the Google Calendar API. When opted for, Semester.ly can and may create new calendars and events for the user representing information the user has entered via the Semester.ly application.

-

If the user opts in, Semester.ly can and may use the previously stated Google Calendar API to access information about the user’s daily free/busy intervals. No event names are ever shared with other users. Free/busy information alone will be shared only with the user’s explicit permission to other users who the calendar owner has explicitly indicated, chosen, or shared the link with.

-

Semester.ly may use the user’s google calendar information for internal analytics but no information will be shared with any other user or third party without explicit permission

-

Johns Hopkins University Student Information Systems (SIS) Connected Users - Opt-in Data Import

-

Student Information Systems (SIS) connected users provide Semester.ly with access to their SIS data. When opted in, Semester.ly can pull users' year, major, and course history in the form of course codes and year/term the course was taken. This information will help Semester.ly tailor course results, check pre-requisites, offer degree planning tips, and gather course reviews. This will be done at both a personal and aggregate level. Individual data will be checked against a database of popular classes and sequences for certain degrees in order to give users tailored search results and recommendations. Aggregated data will be used to create this database and no personal identifiers will be tied to any analysis. This is the full extent of any data collection and usage and will be updated for any future changes. Semester.ly will never pull any sensitive information like student standing or financials. Personal data will never be viewed by JHU IT personnel or Semester.ly team members. Users always have the option to opt-out of this feature and/or delete their account if these terms are unsatisfactory.

-

How We Use Information We Collect About You

-

The information collected from our website will be used for standard, non‑invasive, non‑personally‑identifiable visitor trend analytics, simply to help us measure how users interact with our website content.

-

With regard to the Semester.ly app/SaaS, the Service’s end‑to‑end encryption prevents us from accessing user‑specific content.

-

As noted above, we capture user IP addresses to prevent misuse of our system and to enforce sender‑specified message restrictions, and user and device information for, among other things, authentication and system integrity.

- -

Sharing Information Collected About You

-

Website opt‑in e‑mail capture is the only type of information that could be shared with third parties for internal marketing purposes. Platform service links will only be used (outside of the Service operation) to inform of service failures, emergencies, verification of account changes (such as new devices or password changes), or similar purposes.

-

Semester.ly is deeply committed to protecting your personal information. To the extent we disclose personal information to a third party, they may have their own privacy policies which describe how they use and disclose personal information. Those policies will govern use, handling and disclosure of your personal information once we have shared it with those third parties as described in this Privacy Policy.

-

We do not sell, trade, or otherwise transfer to outside parties your personally identifiable information unless we provide users with advance notice. This does not include website hosting partners and other parties who assist us in operating our website, conducting our business, or serving our users, so long as those parties agree to keep this information confidential. We may also release information when it’s release is appropriate to comply with the law, enforce our site policies, or protect ours or others’ rights, property or safety.

-

We may also disclose your information in response to a subpoena or similar investigative demand, a court order, or a request for cooperation from law enforcement or other government agency; to establish or exercise our legal rights; to defend against legal claims; or as otherwise required by law. Any information shared in such a case would be shared in the format in which Semester.ly maintains it (e.g., end‑to‑end encrypted content, which would require an end user’s device to decrypt). However, only content is encrypted, whereas metadata, which might also need to be disclosed, is not. In such cases, we may raise or waive any legal objection or right available to us, in our sole discretion. We may also disclose your information when we believe it is appropriate in connection with efforts to investigate, prevent, report or take other action regarding illegal activity, suspected fraud or other wrongdoing; to protect and defend the rights, property or safety of you, Semester.ly, our employees, or the public; to comply with applicable law or cooperate with law enforcement; or to enforce our terms and conditions or other agreements or policies. Likewise, we may disclose your information in connection with a substantial corporate transaction, such as a merger, consolidation, or asset sale, or in the unlikely event of bankruptcy.

- -

Third‑Party Websites and Integrations

-

All third‑party integrations (including, but not limited to, social media) are subject to privacy and security vulnerabilities. Content sent through such services (i.e., “out of band” from the Semester.ly service) is frequently insecure.

-

There may be places on the Service where you may click on a link to access other websites or services that do not operate under this Privacy Policy. In addition, you may be logged into a third party website, such as a payment processing site or social media site, while using the Service. These third‑party websites may independently solicit and collect information, including personal information, from you and, in some instances, provide us with information about your activities on those websites. We recommend that you consult the privacy statements of all third‑party websites you visit by clicking on the “privacy” link typically located at the bottom of the webpage you are visiting.

- -

Choices You Have About Collection And Use Of Your Information

-

You can choose not to provide us with certain information, but that may result in you being unable to use certain features of the Service because such information may be required in order to validate your identity, utilize the Service, or to contact us for information. Further you can choose certain levels of permission, as discussed above.

-

All non‑authentication or network communication use of our Service is opt‑in. The system at launch begins as “anonymous”. As users add in service links, they must confirm that they want the service being added to their account by visiting a link e‑mailed or texted to them (Facebook or Google are OAuth presentations).

-

When you contact us through the Service, your account will be set up to receive e‑mail messages unless you indicate that you do not wish to receive e‑mails. At any time, you can choose to stop receiving such e‑mails by following the instructions found in the e‑mails.

-

All facets of the Service are opt‑in and users are free to annihilate any of their data stored by our system, except for access logs, which will be purged periodically. As of March 8th, 2019, users can delete their accounts through the Account Settings portal.

-

Protection of Personal Information

-

We take appropriate security measures to help safeguard your personal information from unauthorized access and disclosure.

-

We want you to feel confident using the Service; however, no system can guarantee absolute security. Therefore, it is important for you to protect against unauthorized access to your password and to your computer or other internet access device. In addition, it is recommended that you do not send personal health or other sensitive information to Semester.ly or anyone else using unsecured means. Should you choose to supply confidential information in this manner, you do so at your own risk.

-

Although we take steps to secure your information, we do not guarantee the security of your information, and you should not expect that your personal information, searches, or other communications will always remain secure. Please refer to the Federal Trade Commission’s website at http://www.consumer.ftc.gov for information about how to protect yourself against identity theft.

- -

No Collection of Information from Children

-

The Service is intended for use by adults only. Semester.ly does not solicit or knowingly collect any information from visitors under 18 years of age. Please do not use the Service if you are not yet 18.

- -

Use of the Service While Traveling

-

This Privacy Policy is intended to cover collection of information via the Service from residents of the United States and Canada (collectively, the “Intended Countries”). If you are using the Service from outside the Intended Countries, please be aware that your information may be transferred to, stored, and processed in the United States where our servers are located and our central database is operated. By using the Service, you understand that your information may be transferred to our facilities and those third parties with whom we share it as described in this privacy policy.

- -

No Rights of Third Parties

-

This Privacy Policy does not create rights enforceable by third parties or require disclosure of any personal information relating to users.

- -

Changes to This Privacy Policy

-

We will occasionally update this Privacy Policy to reflect changes in our practices and services. When we post changes to this Privacy Policy, we will revise the date at the top of this Privacy Policy.

-

If we make any material changes in the way we collect, use, and/or share your personal information, we will notify you by sending an e‑mail to the e‑mail address you most recently provided us in your account, profile, or registration (unless we do not have such an e‑mail address), and/or by prominently posting notice of the changes on the Website. We recommend that you check the Website from time to time to inform yourself of any changes in this Privacy Policy or any of our other policies.

-

How to Contact Us

-

If you have any questions about this Privacy Policy or our information‑handling practices, or if you would like to request information about our disclosure of personal information to third parties, please contact us by e‑mail at contact@semester.ly.

- -
-
-
-
- -
- -
- - - - - - - + +
+ +

+ Purpose | Scope | Consent +

+

+ Semester.ly is a social and collaborative course scheduling platform + for University students across North America. Since its inception, our + platform has + evolved to offer students a one stop shop for course discovery, + schedule creation and social planning - reducing student stress + infinitely. +

+

+ The all-inclusive scheduler includes features such as advanced search + settings based on major requirements, department and + time. Additionally, students can view the university’s official course + ratings, as well as their peer’s course-granular emoji ratings. +

+

+ Students are able to create, name, and save multiple timetables, and + share + these timetables via URL or + Facebook/Google. They can also view which + courses Facebook/Google friends are considering or have previously + taken - a great way for freshman to make + new friends and for all students to make lasting connections! +

+

+ We (“Semester.ly,” “we,” “us,” or “our”) have developed this privacy + policy (the “Privacy Policy”) to demonstrate our commitment to + protecting your privacy and we encourage you to read it + carefully. +

+

+ The Privacy Policy is intended to describe for you, as an individual + who is (1) a visitor, user or customer of a website or web presence + owned or operated by Semester.ly, and/or (2) a user of the Semester.ly + secure platform and communications service (collectively, the + “Service”), the information we collect, how that information may be + used, with whom it may be shared, and your choices about such uses and + disclosures. +

+

+ By visiting the Site or using the Service, you are consenting to the + practices described in this Privacy Policy. +

+

+ Information We Collect About You +

+

+ We use various technologies to collect information from your computer or + other internet access device related to your use of the Service. +

+

+ Our website (https://semester.ly) captures e‑mail addresses, mobile phone + numbers, and other log‑in information from visitors who opt‑in by + providing their email address, mobile phone numbers and/or log‑in + information. It also captures non‑personally‑identifiable information for + purposes of analytics that assess visitor trends, such as numbers of + users, pages visited, and IP address country of origin. +

+

+ Our encrypted invite system website (https://semester.ly) captures user IP + addresses to prevent misuse of our system and to enforce sender‑specified + message restrictions. It also collects user and device information for, + among other things, authentication and system integrity. In addition, we + collect date/time information and recipient service links (e.g., + user identifier associated with a particular type of application). For + purposes of facilitating the transmission of user messages on the Service, + Semester.ly will rely on specific contact information that users provide + (e.g., an e‑mail address for a message recipient). Semester.ly + does not collect any other information from users’ contact lists or + devices. +

+

+ Our platform (https://semester.ly) collects additional information + necessary to provide the Semester.ly service. This information include IP + addresses to prevent misuse of our system and to enforce sender‑specified + message restrictions. It also includes user‑specific device information + and, if the user opts in, may collect the email addresses, SMS addresses, + University specific log-in credentials, and/or Facebook/Google accounts + associated with the user’s Semester.ly account. +

+

+ We use google analytics to collect basic, anonymous information about our + users for aggregate analysis, traffic monitoring, and growth metrics. + (Information about Google Analytics usage of data and privacy policies can + be found here). +

+

+ Non-Registered & Logged Out Users +

+

+ Outside of the use of Google Analytics, for non-registered/logged out + users we exclusively collect completely anonymous data. +

+

+ 1. When a user in this category creates a schedule or executes a search we + log this information. We simply log that it occurred, when it occurred, + and what results/courses were returned/added. There is + no link to the user, no information like IP address or cookies + are attached to these logs. +

+

+ 2. In the future, we will add other trivial logs + anonymous for analytics purposes. +

+

+ 3. When a user creates a timetable or sets certain preferences (e.g. + conflicts allowed in schedule) we store this information locally on the + user’s browser. It remains on their device exclusively so that it can be + loaded when they return to the site. +

+

+ 4. We use cookies to understand and save user’s preferences for future + visits. +

+

+ Registered & Logged in User – No Permissions +

+

+ When a user is logged in (and therefore registered), but has not enabled + any permissions we store the following information about the student (some + info drawn from Facebook/Google API which the user has logged in with and + approved): +

+

1. Name (Facebook/Google API)

+

2. Email (Facebook/Google API)

+

4. Class Year

+

5. Major

+

6. Profile Picture (Facebook/Google API)

+

7. The school they are using Semester.ly with

+

+ If a user creates a timetable/schedule we store that (including courses, + name, semester, time last updated) and link that to the user. +

+

+ If a user reviews a course with an emoji, we store that information as + well. It is never displayed to any other user. +

+

+ If a user enables notifications, we store an encrypted token from + Google/Firebase Cloud Messaging in order to send these push messages. +

+

+ No user data is ever shared to any other user in this state. Only the + logged in user can view their information/reviews, change their settings, + and access their timetables. +

+

+ We maintain the capability to view the user’s list of friends through the + Facebook/Google API +

+

+ Registered & Logged in User – Social Course Permission + Enabled +

+

+ In this state, the user has all that the previous state does with + additional features/exposures of data. +

+

+ Users with social course permission enabled can see which of their + Facebook friends are in the courses indicated through use of the + Semester.ly platform, and in return friends can see that they are in the + course as well. This feature works only for Facebook/Google + Friends – if the two students are not officially friends + according to the Facebook/Google official API, this relationship is not + exposed. +

+

+ The exact time a user is taking the course is not exposed – only that they + are taking the course. +

+

+ The user’s social graph is never exposed in any other form to any other + user. +

+

+ Registered & Logged in User – Social Course & Social Sections + Permission Enabled +

+

+ Users with this additional “Social Sections” permission can see not only + which courses their friends are taking but what times (called sections) + they are taking them. By enabling this, they expose the same information + about themselves to their Facebook/Google friends. +

+

+ Registered & Logged in User – Fully Public Permissions +

+

+ In this case a user let’s any other Semester.ly user at their school to + see their courses and sections. This requires that all previously stated + permissions be enabled. +

+

+ Users in this state can see other users in the same state which are taking + similar course loads and can then connect, communicate, and collaborate. +

+

+ The only information exposed is the courses and course sections these + users are taking and links to their public facing Facebook/Google + profiles as shown below. +

+

Google Connected Users – Opt-in Calendar Usage

+

+ Google connected users provide Semester.ly with access to their Google + Calendars via the Google Calendar API. When opted for, Semester.ly can and + may create new calendars and events for the user representing information + the user has entered via the Semester.ly application. +

+

+ If the user opts in, Semester.ly can and may use the previously stated + Google Calendar API to access information about the user’s daily free/busy + intervals. No event names are ever shared with other users. Free/busy + information alone will be shared only with the user’s explicit permission + to other users who the calendar owner has explicitly indicated, chosen, or + shared the link with. +

+

+ Semester.ly may use the user’s google calendar information for internal + analytics but no information will be shared with any other user or third + party without explicit permission +

+

+ Johns Hopkins University Student Information Systems (SIS) Connected + Users - Opt-in Data Import +

+

+ Student Information Systems (SIS) connected users provide Semester.ly with + access to their SIS data. When opted in, Semester.ly can pull users' year, + major, and course history in the form of course codes and year/term the + course was taken. This information will help Semester.ly tailor course + results, check pre-requisites, offer degree planning tips, and gather + course reviews. This will be done at both a personal and aggregate level. + Individual data will be checked against a database of popular classes and + sequences for certain degrees in order to give users tailored search + results and recommendations. Aggregated data will be used to create this + database and no personal identifiers will be tied to any analysis. This is + the full extent of any data collection and usage and will be updated for + any future changes. Semester.ly will never pull any sensitive information + like student standing or financials. Personal data will never be viewed by + JHU IT personnel or Semester.ly team members. Users always have the option + to opt-out of this feature and/or delete their account if these terms are + unsatisfactory. +

+

+ How We Use Information We Collect About You +

+

+ The information collected from our website will be used for standard, + non‑invasive, non‑personally‑identifiable visitor trend analytics, simply + to help us measure how users interact with our website content. +

+

+ With regard to the Semester.ly app/SaaS, the Service’s end‑to‑end + encryption prevents us from accessing user‑specific content. +

+

+ As noted above, we capture user IP addresses to prevent misuse of our + system and to enforce sender‑specified message restrictions, and user and + device information for, among other things, authentication and system + integrity. +

+ +

+ Sharing Information Collected About You +

+

+ Website opt‑in e‑mail capture is the only type of information that could + be shared with third parties for internal marketing purposes. Platform + service links will only be used (outside of the Service operation) to + inform of service failures, emergencies, verification of account changes + (such as new devices or password changes), or similar purposes. +

+

+ Semester.ly is deeply committed to protecting your personal information. + To the extent we disclose personal information to a third party, they may + have their own privacy policies which describe how they use and disclose + personal information. Those policies will govern use, handling and + disclosure of your personal information once we have shared it with those + third parties as described in this Privacy Policy. +

+

+ We do not sell, trade, or otherwise transfer to outside parties your + personally identifiable information unless we provide users with advance + notice. This does not include website hosting partners and other parties + who assist us in operating our website, conducting our business, or + serving our users, so long as those parties agree to keep this information + confidential. We may also release information when it’s release is + appropriate to comply with the law, enforce our site policies, or protect + ours or others’ rights, property or safety. +

+

+ We may also disclose your information in response to a subpoena or similar + investigative demand, a court order, or a request for cooperation from law + enforcement or other government agency; to establish or exercise our legal + rights; to defend against legal claims; or as otherwise required by law. + Any information shared in such a case would be shared in the format in + which Semester.ly maintains it (e.g., end‑to‑end encrypted + content, which would require an end user’s device to decrypt). However, + only content is encrypted, whereas metadata, which might also need to be + disclosed, is not. In such cases, we may raise or waive any legal + objection or right available to us, in our sole discretion. We may also + disclose your information when we believe it is appropriate in connection + with efforts to investigate, prevent, report or take other action + regarding illegal activity, suspected fraud or other wrongdoing; to + protect and defend the rights, property or safety of you, Semester.ly, our + employees, or the public; to comply with applicable law or cooperate with + law enforcement; or to enforce our terms and conditions or other + agreements or policies. Likewise, we may disclose your information in + connection with a substantial corporate transaction, such as a merger, + consolidation, or asset sale, or in the unlikely event of bankruptcy. +

+ +

+ How To Delete Your Information +

+

+ No information is stored in our server if you choose to not log in. If you + are logged in with any provider and wants your information deleted, simply + open the user profile page located at the top right and click on "Delete + my account and all related information". +

+ +

+ Third‑Party Websites and Integrations +

+

+ All third‑party integrations (including, but not limited to, social media) + are subject to privacy and security vulnerabilities. Content sent through + such services (i.e., “out of band” from the Semester.ly service) + is frequently insecure. +

+

+ There may be places on the Service where you may click on a link to access + other websites or services that do not operate under this Privacy Policy. + In addition, you may be logged into a third party website, such as a + payment processing site or social media site, while using the Service. + These third‑party websites may independently solicit and collect + information, including personal information, from you and, in some + instances, provide us with information about your activities on those + websites. We recommend that you consult the privacy statements of all + third‑party websites you visit by clicking on the “privacy” link typically + located at the bottom of the webpage you are visiting. +

+ +

+ Choices You Have About Collection And Use Of Your Information +

+

+ You can choose not to provide us with certain information, but that may + result in you being unable to use certain features of the Service because + such information may be required in order to validate your identity, + utilize the Service, or to contact us for information. Further you can + choose certain levels of permission, as discussed above. +

+

+ All non‑authentication or network communication use of our Service is + opt‑in. The system at launch begins as “anonymous”. As users add in + service links, they must confirm that they want the service being added to + their account by visiting a link e‑mailed or texted to them (Facebook or + Google are OAuth presentations). +

+

+ When you contact us through the Service, your account will be set up to + receive e‑mail messages unless you indicate that you do not wish to + receive e‑mails. At any time, you can choose to stop receiving such + e‑mails by following the instructions found in the e‑mails. +

+

+ All facets of the Service are opt‑in and users are free to annihilate any + of their data stored by our system, except for access logs, which will be + purged periodically. As of March 8th, 2019, users can delete their + accounts through the Account Settings portal. +

+

+ Protection of Personal Information +

+

+ We take appropriate security measures to help safeguard your personal + information from unauthorized access and disclosure. +

+

+ We want you to feel confident using the Service; however, no system can + guarantee absolute security. Therefore, it is important for you to protect + against unauthorized access to your password and to your computer or other + internet access device. In addition, it is recommended that you do not + send personal health or other sensitive information to Semester.ly or + anyone else using unsecured means. Should you choose to supply + confidential information in this manner, you do so at your own risk. +

+

+ Although we take steps to secure your information, we do not guarantee the + security of your information, and you should not expect that your personal + information, searches, or other communications will always remain secure. + Please refer to the Federal Trade Commission’s website at + http://www.consumer.ftc.gov for information about how to protect yourself + against identity theft. +

+ +

+ No Collection of Information from Children +

+

+ The Service is intended for use by adults only. Semester.ly does not + solicit or knowingly collect any information from visitors under 18 years + of age. Please do not use the Service if you are not yet 18. +

+ +

+ Use of the Service While Traveling +

+

+ This Privacy Policy is intended to cover collection of information via the + Service from residents of the United States and Canada (collectively, the + “Intended Countries”). If you are using the Service from outside the + Intended Countries, please be aware that your information may be + transferred to, stored, and processed in the United States where our + servers are located and our central database is operated. By using the + Service, you understand that your information may be transferred to our + facilities and those third parties with whom we share it as described in + this privacy policy. +

+ +

+ No Rights of Third Parties +

+

+ This Privacy Policy does not create rights enforceable by third parties or + require disclosure of any personal information relating to users. +

+ +

+ Changes to This Privacy Policy +

+

+ We will occasionally update this Privacy Policy to reflect changes in our + practices and services. When we post changes to this Privacy Policy, we + will revise the date at the top of this Privacy Policy. +

+

+ If we make any material changes in the way we collect, use, and/or share + your personal information, we will notify you by sending an e‑mail to the + e‑mail address you most recently provided us in your account, profile, or + registration (unless we do not have such an e‑mail address), and/or by + prominently posting notice of the changes on the Website. We recommend + that you check the Website from time to time to inform yourself of any + changes in this Privacy Policy or any of our other policies. +

+

+ How to Contact Us +

+

+ If you have any questions about this Privacy Policy or our + information‑handling practices, or if you would like to request + information about our disclosure of personal information to third parties, + please contact us by e‑mail at + semesterly@jhu.edu. +

+
+
+
+ + + + diff --git a/agreement/templates/termsofservice.html b/agreement/templates/termsofservice.html index b363e79f63..9947d2ad5b 100644 --- a/agreement/templates/termsofservice.html +++ b/agreement/templates/termsofservice.html @@ -1,177 +1,409 @@ -{% load staticfiles %} +{% load static %} - - - - - - - - - - - - - - - - Terms of Service | Semester.ly - - - - - - - - - - -
- -
-
- - -
-
-
-

Terms of Service | March 8, 2019

-
+ + + + + + + + + + + + + + + + + + + Terms of Service | Semester.ly + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ + +
+
+
+

Terms of Service | March 8, 2019

-
-
-
- -

Semester.ly Technologies, LLC (“Semester.ly,” “our,” or “we”) provides a social and collaborative course scheduling platform for University student across north America. Please read our Terms of Service, which control how you use Semester.ly.

-

By using or accessing our platform and communications service or website (collectively, the “Service”), you agree to our Terms of Service (“Terms”), as updated from time‑to‑time.

-

Because Semester.ly provides scheduling and messaging services, we may ask you to review and accept supplemental provisions that apply to your use of a specific app, product, or service. In the event of a conflict between these Terms and those supplement provisions, the supplemental provisions will govern your use of the specific app, product, or service.

-


-

- -

About Semester.ly Service

-

Registration. You may register for our Service using accurate data, provide your current e‑mail address and/or mobile phone number, and, if you change your e‑mail address and/or mobile phone number, update this e‑mail address and/or mobile phone number using our in‑app change mobile number and/or e‑mail address feature. You agree to receive text messages, phone calls, and/or e‑mails (from us or our third‑party providers) with codes to register for our Service.

-

Address Book. You may provide us the phone numbers of Semester.ly users and your other contacts in your mobile phone address book on a regular basis. You confirm you are authorized to provide us such numbers to allow us to provide our Service.

-

Age. You must be at least 18 years old to use our Service (or such greater age required in your country for you to be authorized to use our Service without parental approval). In addition to being of the minimum required age to use our Service under applicable law, if you are not old enough to have authority to agree to our Terms in your country, your parent or guardian agrees to our Terms on your behalf.

-

Devices and Software. You must provide certain devices, software, and data connections to use our Service, which we otherwise do not supply. For as long as you use our Service, you consent to downloading and installing updates to our Service, including automatically.

-

Fees and Taxes. You are responsible for all carrier data plan and other fees and taxes associated with your use of our Service. We may charge you for our Service, including applicable taxes. We may refuse or cancel orders. We do not provide refunds for our Service, except as required by law.

- -

-

Privacy Policy and User Data

-

Your privacy is very important to Semester.ly. Please read our Privacy Policy, which describes our information (including messaging) practices, including the types of information we receive and collect from you and how we use and share this information.

- -

You agree to our data practices, including the collection, use, processing, and sharing of your information as described in our Privacy Policy, as well as the transfer and processing of your information to the United States and other countries globally where we have or use facilities, service providers, or partners, regardless of where you use our Service. You acknowledge that the laws, regulations, and standards of the country in which your information is stored or processed may be different from those of your own country.

- -

-

Acceptable Use of Our Service

-

Our Terms and Policies. You must use our Service according to our Terms and posted policies. If we disable your account for a violation of our Terms, you will not create another account without our permission.

- -

Legal and Acceptable Use. You must access and use our Service only for legal, authorized, and acceptable purposes.

- -

You will not use (or assist others in using) our Service in ways that: (a) violate, misappropriate, or infringe the rights of Semester.ly, our users, or others, including privacy, publicity, intellectual property, or other proprietary rights; (b) are illegal, obscene, defamatory, threatening, intimidating, harassing, hateful, racially, or ethnically offensive, or instigate or encourage conduct that would be illegal, or otherwise inappropriate, including promoting violent crimes; (c) involve publishing falsehoods, misrepresentations, or misleading statements; (d) impersonate someone; (e) involve sending illegal or impermissible communications such as bulk messaging, auto‑messaging, auto‑dialing, and the like; or (f) involve any non‑personal use of our Service unless otherwise authorized by us.

- -

Harm to Semester.ly or Our Users. You must not directly or indirectly use, access, copy, modify, prepare derivative works based upon, distribute, license, sublicense, transfer, display, perform, or otherwise exploit our Service in impermissible or unauthorized manners, or in ways that burden, impair, or harm us, our Service, systems, our users, or others.

- -

You must not directly or through automated means: (a) reverse engineer, alter, modify, create derivative works from, decompile, or extract code from our Service; (b) send, store, or transmit viruses or other harmful computer code through or onto our Service; (c) gain or attempt to gain unauthorized access to our Service or systems; (d) interfere with or disrupt the integrity or performance of our Service; (e) create accounts for our Service through unauthorized or automated means; (f) collect the information of or about our users in any impermissible or unauthorized manner; (g) sell, resell, rent, or charge for our Service; or (h) distribute or make our Service available over a network where they could be used by multiple devices at the same time.

- -

Keeping Your Account Secure. You are responsible for keeping your device and your Semester.ly account safe and secure, and you must notify us promptly of any unauthorized use or security breach of your account or our Service.

- -

-

Third‑Party Services

-

All third‑party integrations (including, but not limited to, social media) are subject to privacy and security vulnerabilities. Content sent through such services (i.e., “out of band” from the Semester.ly service) is frequently insecure.

- -

There may be places on the Service where you may click on a link to access other websites or services that do not operate under this Privacy Policy. In addition, you may be logged into a third party website, such as a payment processing site or social media site, while using the Service. These third‑party websites may independently solicit and collect information, including personal information, from you and, in some instances, provide us with information about your activities on those websites. We recommend that you consult the privacy statements of all third‑party websites you visit by clicking on the “privacy” link typically located at the bottom of the webpage you are visiting.

-

As of March 8th, 2019, Johns Hopkins University’s IT department will become a vital third-party integration. Hopkins IT will now host Semester.ly and offer an opt-in connection to users’ Student Information Systems (SIS) accounts. The terms and specifics of this integration are listed in the Privacy Policy under SIS Connected Users. If this integration is not satisfactory, a Delete Account button is offered in the Account Settings portion of the website.

-

Content and Licenses

-

Content. You retain ownership of all content that you upload, submit, store, or send through your Semester.ly account. Any intellectual property rights in that content belong to you.

-

Your Rights. Semester.ly does not claim ownership of the information that you submit for your Semester.ly account or through our Service. You must have the necessary rights to such information that you submit for your Semester.ly account or through our Service and the right to grant the rights and licenses in our Terms.

-

Semester.ly’s Rights. We own all copyrights, trademarks, domains, logos, trade dress, trade secrets, patents, and other intellectual property rights associated with our Service. You may not use our copyrights, trademarks, domains, logos, trade dress, patents, and other intellectual property rights unless you have our express permission and except in accordance with our Intellectual Property Policy.

-

Your License to Semester.ly. When you upload, submit, store, send or receive content to our through our Service, you grant Semester.ly a worldwide, non‑exclusive, royalty‑free, sublicensable, and transferable license to use, reproduce, distribute, host, store, create derivative works of, communicate, display, publish, and perform the content. The rights you grant in this license are for the limited purpose of operating, promoting, and providing our Service (such as to allow us to transmit your messages, and as otherwise described in our Privacy Policy).

-

Semester.ly’s License to You. We grant you a limited, revocable, non‑exclusive, non‑sublicensable, and non‑transferable license to use our Service, subject to and in accordance with our Terms. This license is for the sole purpose of enabling you to use our Service, in the manner permitted by our Terms. No licenses or rights are granted to you by implication or otherwise, except for the licenses and rights expressly granted to you.

- -

Reporting Third‑Party Copyright, Trademark, and other Intellectual Property Infringement

-

To report claims of third‑party copyright, trademark, or other intellectual property infringement, please e-mail contact@semester.ly. We may terminate your Semester.ly account if you repeatedly infringe the intellectual property rights of others.

- -

Disclaimers

-

YOU USE SEMESTER.LY’S SERVICE AT YOUR OWN RISK AND SUBJECT TO THE FOLLOWING DISCLAIMERS.

-

WE ARE PROVIDING OUR SERVICE ON AN “AS IS” BASIS WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, NON‑INFRINGEMENT, AND FREEDOM FROM COMPUTER VIRUS OR OTHER HARMFUL CODE. WE DO NOT WARRANT THAT ANY INFORMATION PROVIDED BY US IS ACCURATE, COMPLETE, OR USEFUL, THAT OUR SERVICE WILL BE OPERATIONAL, ERROR FREE, SECURE, OR SAFE, OR THAT OUR SERVICE WILL FUNCTION WITHOUT DISRUPTIONS, DELAYS, OR IMPERFECTIONS. WE DO NOT CONTROL, AND ARE NOT RESPONSIBLE FOR, CONTROLLING HOW OR WHEN OUR USERS USE OUR SERVICE OR THE FEATURES, SERVICE, AND INTERFACES OUR SERVICE PROVIDE. WE ARE NOT RESPONSIBLE FOR AND ARE NOT OBLIGATED TO CONTROL THE ACTIONS OR INFORMATION (INCLUDING CONTENT) OF OUR USERS OR OTHER THIRD PARTIES.

-

YOU RELEASE SEMESTER.LY AND ITS AFFILIATES, AND THEIR DIRECTORS, OFFICERS, EMPLOYEES, PARTNERS, AND AGENTS (COLLECTIVELY THE “SEMESTER.LY PARTIES”) FROM ANY CLAIM, COMPLAINT, CAUSE OF ACTION, CONTROVERSY, OR DISPUTE (COLLECTIVELY “CLAIM”) AND DAMAGES, KNOWN AND UNKNOWN, RELATING TO, ARISING OUT OF, OR IN ANY WAY CONNECTED WITH ANY SUCH CLAIM YOU HAVE AGAINST ANY THIRD PARTIES. YOU WAIVE ANY RIGHTS YOU MAY HAVE UNDER CALIFORNIA CIVIL CODE §1542, OR ANY OTHER SIMILAR APPLICABLE STATUTE OR LAW OF ANY OTHER JURISDICTION, WHICH SAYS THAT: A GENERAL RELEASE DOES NOT EXTEND TO CLAIMS WHICH THE CREDITOR DOES NOT KNOW OR SUSPECT TO EXIST IN HIS OR HER FAVOR AT THE TIME OF EXECUTING THE RELEASE, WHICH IF KNOWN BY HIM OR HER MUST HAVE MATERIALLY AFFECTED HIS OR HER SETTLEMENT WITH THE DEBTOR.

- -

Limitation of Liability

-

THE SEMESTER.LY PARTIES WILL NOT BE LIABLE TO YOU FOR ANY LOST PROFITS OR CONSEQUENTIAL, SPECIAL, PUNITIVE, INDIRECT, OR INCIDENTAL DAMAGES RELATING TO, ARISING OUT OF, OR IN ANY WAY IN CONNECTION WITH OUR TERMS, US, OR OUR SERVICE, EVEN IF SEMESTER.LY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THE SEMESTER.LY PARTIES’ LIABILITY RELATING TO, ARISING OUT OF, OR IN ANY WAY IN CONNECTION WITH OUR TERMS, US, OR OUR SERVICE WILL NOT EXCEED THE GREATER OF ONE HUNDRED DOLLARS ($100) OR THE AMOUNT YOU HAVE PAID US IN THE PAST TWELVE MONTHS. THE FOREGOING DISCLAIMER OF CERTAIN DAMAGES AND LIMITATION OF LIABILITY WILL APPLY TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW. THE LAWS OF SOME STATES OR JURISDICTIONS MAY NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES, SO SOME OR ALL OF THE EXCLUSIONS AND LIMITATIONS SET FORTH ABOVE MAY NOT APPLY TO YOU. NOTWITHSTANDING ANYTHING TO THE CONTRARY IN OUR TERMS, IN SUCH CASES, THE SEMESTER.LY PARTIES’ LIABILITY WILL BE LIMITED TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW.

- -

Indemnification

-

You agree to defend, indemnify, and hold harmless the Semester.ly Parties from and against all liabilities, damages, losses, and expenses of any kind (including reasonable legal fees and costs) relating to, arising out of, or in any way in connection with any of the following: (a) your access to or use of our Service, including information provided in connection therewith; (b) your breach or alleged breach of our Terms; or (c) any misrepresentation made by you. You will cooperate as fully as required by us in the defense or settlement of any Claim.

- -

Dispute resolution

-

Forum and Venue. You agree that you will resolve any Claim you have with us relating to, arising out of, or in any way in connection with our Terms, us, or our Service exclusively in the United States District Court for the Southern District of New York or a state court located in New York County in New York, and you agree to submit to the personal jurisdiction of such courts for the purpose of litigating all such Disputes.

-

Governing Law. The laws of the State of New York govern our Terms, as well as any Disputes, whether in court or arbitration, which might arise between Semester.ly and you, without regard to conflict of law provisions.

- -

Availability and Termination of Our Service

-

Availability of Our Service. Our Service may be interrupted, including for maintenance, repairs, upgrades, or network or equipment failures. We may discontinue some or all of our Service, including certain features and the support for certain devices and platforms, at any time. Events beyond our control may affect our Service, such as events in nature and other force majeure events.

-

Termination. We may modify, suspend, or terminate your access to or use of our Service anytime for any reason, such as if you violate the letter or spirit of our Terms or create harm, risk, or possible legal exposure for us, our users, or others. The following provisions will survive any termination of your relationship with Semester.ly: “Licenses,” “Disclaimers,” “Limitation of Liability,” “Indemnification,” “Dispute Resolution,” “Availability and Termination of our Service,” and “Other.”

- -

Other

-
    -
  • Unless a mutually executed agreement between you and us states otherwise, our Terms make up the entire agreement between you and us regarding Semester.ly and our Service, and supersede any prior agreements.

  • -
  • We may ask you to agree to additional terms for certain of our Service in the future, which will govern to the extent there is a conflict between our Terms and such additional terms.

  • -
  • Our Service is not intended for distribution to or use in any country where such distribution or use would violate local law or would subject us to any regulations in another country. We reserve the right to limit our Service in any country.

  • -
  • You will comply with all applicable U.S. and non‑U.S. export control and trade sanctions laws (“Export Laws”). You will not, directly or indirectly, export, re‑export, provide, or otherwise transfer our Service: (a) to any individual, entity, or country prohibited by Export Laws; (b) to anyone on U.S. or non‑U.S. government restricted parties lists; or (c) for any purpose prohibited by Export Laws, including nuclear, chemical, or biological weapons, or missile technology applications without the required government authorizations. You will not use or download our Service if you are located in a restricted country, if you are currently listed on any U.S. or non‑U.S. restricted parties list, or for any purpose prohibited by Export Laws, and you will not disguise your location through IP proxying or other methods.

  • -
  • Our Terms are written in English (U.S.). Any translated version is provided solely for your convenience. To the extent any translated version of our Terms conflicts with the English version, the English version controls.

  • -
  • Any amendment to or waiver of our Terms requires our express consent.

  • -
  • We may amend or update these Terms. We will provide you notice of amendments to our Terms, as appropriate, and update the “Last Modified” date at the top of our Terms. Your continued use of our Service confirms your acceptance of our Terms, as amended. If you do not agree to our Terms, as amended, you must stop using our Service. Please review our Terms from time‑to‑time.

  • -
  • All of our rights and obligations under our Terms are freely assignable by us to any of our affiliates or in connection with a merger, acquisition, restructuring, or sale of assets, or by operation of law or otherwise, and we may transfer your information to any of our affiliates, successor entities, or new owner.

  • -
  • You will not transfer any of your rights or obligations under our Terms to anyone else without our prior written consent.

  • -
  • Nothing in our Terms will prevent us from complying with the law.

  • -
  • Except as contemplated herein, our Terms do not give any third‑party beneficiary rights.

  • -
  • If we fail to enforce any of our Terms, it will not be considered a waiver.

  • -
  • If any provision of these Terms is deemed unlawful, void, or for any reason unenforceable, then that provision shall be deemed severable from our Terms and shall not affect the validity and enforceability of the remaining provisions.

  • -
  • We reserve all rights not expressly granted by us to you. In certain jurisdictions, you may have legal rights as a consumer, and our Terms are not intended to limit such consumer legal rights that may not be waived by contract.

  • -
  • As of March 8th, 2019, Semester.ly is now hosted by Johns Hopkins University’s IT Department. This partnership will help us provide more reliable service and custom features. There is more information about this merger here: https://jhu.semester.ly/notice. Updates to the Privacy Policy were also made. Please direct any other specific questions regarding this change to contact@semester.ly.

  • -
  • We always appreciate your feedback or other suggestions about Semester.ly and our Service, but you understand that we may use your feedback or suggestions without any obligation to compensate you for them (just as you have no obligation to offer them).

  • -
+
+
+
+
+ +

Semester.ly Technologies, LLC (“Semester.ly,” “our,” or “we”) provides a social and collaborative + course scheduling platform for University student across north America. Please read our Terms of + Service, which control how you use Semester.ly.

+

By using or accessing our platform and communications service or website (collectively, the + “Service”), you agree to our Terms of Service (“Terms”), as updated from time‑to‑time.

+

Because Semester.ly provides scheduling and messaging services, we may ask you to review and + accept supplemental provisions that apply to your use of a specific app, product, or service. In + the event of a conflict between these Terms and those supplement provisions, the supplemental + provisions will govern your use of the specific app, product, or service.

+


+

+ +

About Semester.ly Service

+

Registration. You may register for our Service using accurate data, provide your + current e‑mail address and/or mobile phone number, and, if you change your e‑mail address and/or + mobile phone number, update this e‑mail address and/or mobile phone number using our in‑app + change mobile number and/or e‑mail address feature. You agree to receive text messages, phone + calls, and/or e‑mails (from us or our third‑party providers) with codes to register for our + Service.

+

Address Book. You may provide us the phone numbers of Semester.ly users and your + other contacts in your mobile phone address book on a regular basis. You confirm you are + authorized to provide us such numbers to allow us to provide our Service.

+

Age. You must be at least 18 years old to use our Service (or such greater age + required in your country for you to be authorized to use our Service without parental approval). + In addition to being of the minimum required age to use our Service under applicable law, if you + are not old enough to have authority to agree to our Terms in your country, your parent or + guardian agrees to our Terms on your behalf.

+

Devices and Software. You must provide certain devices, software, and data + connections to use our Service, which we otherwise do not supply. For as long as you use our + Service, you consent to downloading and installing updates to our Service, including + automatically.

+

Fees and Taxes. You are responsible for all carrier data plan and other fees and + taxes associated with your use of our Service. We may charge you for our Service, including + applicable taxes. We may refuse or cancel orders. We do not provide refunds for our Service, + except as required by law.

+ +

+

+

Privacy Policy and User Data

+

Your privacy is very important to Semester.ly. Please read our Privacy Policy, which describes + our information (including messaging) practices, including the types of information we receive + and collect from you and how we use and share this information.

+ +

You agree to our data practices, including the collection, use, processing, and sharing of your + information as described in our Privacy Policy, as well as the transfer and processing of your + information to the United States and other countries globally where we have or use facilities, + service providers, or partners, regardless of where you use our Service. You acknowledge that + the laws, regulations, and standards of the country in which your information is stored or + processed may be different from those of your own country.

+ +

+

+

Acceptable Use of Our Service

+

Our Terms and Policies. You must use our Service according to our Terms and + posted policies. If we disable your account for a violation of our Terms, you will not create + another account without our permission.

+ +

Legal and Acceptable Use. You must access and use our Service only for legal, + authorized, and acceptable purposes.

+ +

You will not use (or assist others in using) our Service in ways that: (a) violate, + misappropriate, or infringe the rights of Semester.ly, our users, or others, including privacy, + publicity, intellectual property, or other proprietary rights; (b) are illegal, obscene, + defamatory, threatening, intimidating, harassing, hateful, racially, or ethnically offensive, or + instigate or encourage conduct that would be illegal, or otherwise inappropriate, including + promoting violent crimes; (c) involve publishing falsehoods, misrepresentations, or misleading + statements; (d) impersonate someone; (e) involve sending illegal or impermissible communications + such as bulk messaging, auto‑messaging, auto‑dialing, and the like; or (f) involve any + non‑personal use of our Service unless otherwise authorized by us.

+ +

Harm to Semester.ly or Our Users. You must not directly or indirectly use, + access, copy, modify, prepare derivative works based upon, distribute, license, sublicense, + transfer, display, perform, or otherwise exploit our Service in impermissible or unauthorized + manners, or in ways that burden, impair, or harm us, our Service, systems, our users, or others. +

+ +

You must not directly or through automated means: (a) reverse engineer, alter, modify, create + derivative works from, decompile, or extract code from our Service; (b) send, store, or transmit + viruses or other harmful computer code through or onto our Service; (c) gain or attempt to gain + unauthorized access to our Service or systems; (d) interfere with or disrupt the integrity or + performance of our Service; (e) create accounts for our Service through unauthorized or + automated means; (f) collect the information of or about our users in any impermissible or + unauthorized manner; (g) sell, resell, rent, or charge for our Service; or (h) distribute or + make our Service available over a network where they could be used by multiple devices at the + same time.

+ +

Keeping Your Account Secure. You are responsible for keeping your device and + your Semester.ly account safe and secure, and you must notify us promptly of any unauthorized + use or security breach of your account or our Service.

+ +

+

Third‑Party Services

+

All third‑party integrations (including, but not limited to, social media) are subject to privacy + and security vulnerabilities. Content sent through such services (i.e., “out of band” + from the Semester.ly service) is frequently insecure.

+ +

There may be places on the Service where you may click on a link to access other websites or + services that do not operate under this Privacy Policy. In addition, you may be logged into a + third party website, such as a payment processing site or social media site, while using the + Service. These third‑party websites may independently solicit and collect information, including + personal information, from you and, in some instances, provide us with information about your + activities on those websites. We recommend that you consult the privacy statements of all + third‑party websites you visit by clicking on the “privacy” link typically located at the bottom + of the webpage you are visiting.

+

As of March 8th, 2019, Johns Hopkins University’s IT department will become a vital third-party + integration. Hopkins IT will now host Semester.ly and offer an opt-in connection to users’ + Student Information Systems (SIS) accounts. The terms and specifics of this integration are + listed in the Privacy Policy under SIS Connected Users. If this integration is not satisfactory, + a Delete Account button is offered in the Account Settings portion of the website.

+

Content and Licenses

+

Content. You retain ownership of all content that you upload, submit, store, or + send through your Semester.ly account. Any intellectual property rights in that content belong + to you.

+

Your Rights. Semester.ly does not claim ownership of the information that you + submit for your Semester.ly account or through our Service. You must have the necessary rights + to such information that you submit for your Semester.ly account or through our Service and the + right to grant the rights and licenses in our Terms.

+

Semester.ly’s Rights. We own all copyrights, trademarks, domains, logos, trade + dress, trade secrets, patents, and other intellectual property rights associated with our + Service. You may not use our copyrights, trademarks, domains, logos, trade dress, patents, and + other intellectual property rights unless you have our express permission and except in + accordance with our Intellectual Property Policy.

+

Your License to Semester.ly. When you upload, submit, store, send or receive + content to our through our Service, you grant Semester.ly a worldwide, non‑exclusive, + royalty‑free, sublicensable, and transferable license to use, reproduce, distribute, host, + store, create derivative works of, communicate, display, publish, and perform the content. The + rights you grant in this license are for the limited purpose of operating, promoting, and + providing our Service (such as to allow us to transmit your messages, and as otherwise described + in our Privacy Policy).

+

Semester.ly’s License to You. We grant you a limited, revocable, non‑exclusive, + non‑sublicensable, and non‑transferable license to use our Service, subject to and in accordance + with our Terms. This license is for the sole purpose of enabling you to use our Service, in the + manner permitted by our Terms. No licenses or rights are granted to you by implication or + otherwise, except for the licenses and rights expressly granted to you.

+ +

+ Reporting Third‑Party Copyright, Trademark, and other Intellectual Property + Infringement

+

To report claims of third‑party copyright, trademark, or other intellectual property + infringement, please e-mail semesterly@jhu.edu. We may terminate your Semester.ly account if + you repeatedly infringe the intellectual property rights of others.

+ +

Disclaimers

+

YOU USE SEMESTER.LY’S SERVICE AT YOUR OWN RISK AND SUBJECT TO THE FOLLOWING DISCLAIMERS.

+

WE ARE PROVIDING OUR SERVICE ON AN “AS IS” BASIS WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, + INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, + TITLE, NON‑INFRINGEMENT, AND FREEDOM FROM COMPUTER VIRUS OR OTHER HARMFUL CODE. WE DO NOT + WARRANT THAT ANY INFORMATION PROVIDED BY US IS ACCURATE, COMPLETE, OR USEFUL, THAT OUR SERVICE + WILL BE OPERATIONAL, ERROR FREE, SECURE, OR SAFE, OR THAT OUR SERVICE WILL FUNCTION WITHOUT + DISRUPTIONS, DELAYS, OR IMPERFECTIONS. WE DO NOT CONTROL, AND ARE NOT RESPONSIBLE FOR, + CONTROLLING HOW OR WHEN OUR USERS USE OUR SERVICE OR THE FEATURES, SERVICE, AND INTERFACES OUR + SERVICE PROVIDE. WE ARE NOT RESPONSIBLE FOR AND ARE NOT OBLIGATED TO CONTROL THE ACTIONS OR + INFORMATION (INCLUDING CONTENT) OF OUR USERS OR OTHER THIRD PARTIES.

+

YOU RELEASE SEMESTER.LY AND ITS AFFILIATES, AND THEIR DIRECTORS, OFFICERS, EMPLOYEES, PARTNERS, + AND AGENTS (COLLECTIVELY THE “SEMESTER.LY PARTIES”) FROM ANY CLAIM, COMPLAINT, CAUSE OF ACTION, + CONTROVERSY, OR DISPUTE (COLLECTIVELY “CLAIM”) AND DAMAGES, KNOWN AND UNKNOWN, RELATING TO, + ARISING OUT OF, OR IN ANY WAY CONNECTED WITH ANY SUCH CLAIM YOU HAVE AGAINST ANY THIRD PARTIES. + YOU WAIVE ANY RIGHTS YOU MAY HAVE UNDER CALIFORNIA CIVIL CODE §1542, OR ANY OTHER SIMILAR + APPLICABLE STATUTE OR LAW OF ANY OTHER JURISDICTION, WHICH SAYS THAT: A GENERAL RELEASE DOES NOT + EXTEND TO CLAIMS WHICH THE CREDITOR DOES NOT KNOW OR SUSPECT TO EXIST IN HIS OR HER FAVOR AT THE + TIME OF EXECUTING THE RELEASE, WHICH IF KNOWN BY HIM OR HER MUST HAVE MATERIALLY AFFECTED HIS OR + HER SETTLEMENT WITH THE DEBTOR.

+ +

Limitation of Liability

+

THE SEMESTER.LY PARTIES WILL NOT BE LIABLE TO YOU FOR ANY LOST PROFITS OR CONSEQUENTIAL, SPECIAL, + PUNITIVE, INDIRECT, OR INCIDENTAL DAMAGES RELATING TO, ARISING OUT OF, OR IN ANY WAY IN + CONNECTION WITH OUR TERMS, US, OR OUR SERVICE, EVEN IF SEMESTER.LY HAS BEEN ADVISED OF THE + POSSIBILITY OF SUCH DAMAGES. THE SEMESTER.LY PARTIES’ LIABILITY RELATING TO, ARISING OUT OF, OR + IN ANY WAY IN CONNECTION WITH OUR TERMS, US, OR OUR SERVICE WILL NOT EXCEED THE GREATER OF ONE + HUNDRED DOLLARS ($100) OR THE AMOUNT YOU HAVE PAID US IN THE PAST TWELVE MONTHS. THE FOREGOING + DISCLAIMER OF CERTAIN DAMAGES AND LIMITATION OF LIABILITY WILL APPLY TO THE MAXIMUM EXTENT + PERMITTED BY APPLICABLE LAW. THE LAWS OF SOME STATES OR JURISDICTIONS MAY NOT ALLOW THE + EXCLUSION OR LIMITATION OF CERTAIN DAMAGES, SO SOME OR ALL OF THE EXCLUSIONS AND LIMITATIONS SET + FORTH ABOVE MAY NOT APPLY TO YOU. NOTWITHSTANDING ANYTHING TO THE CONTRARY IN OUR TERMS, IN SUCH + CASES, THE SEMESTER.LY PARTIES’ LIABILITY WILL BE LIMITED TO THE FULLEST EXTENT PERMITTED BY + APPLICABLE LAW.

+ +

Indemnification

+

You agree to defend, indemnify, and hold harmless the Semester.ly Parties from and against all + liabilities, damages, losses, and expenses of any kind (including reasonable legal fees and + costs) relating to, arising out of, or in any way in connection with any of the following: + (a) your access to or use of our Service, including information provided in connection + therewith; (b) your breach or alleged breach of our Terms; or (c) any misrepresentation made by + you. You will cooperate as fully as required by us in the defense or settlement of any Claim. +

+ +

Dispute resolution

+

Forum and Venue. You agree that you will resolve any Claim you have with us + relating to, arising out of, or in any way in connection with our Terms, us, or our Service + exclusively in the United States District Court for the Southern District of New York or a state + court located in New York County in New York, and you agree to submit to the personal + jurisdiction of such courts for the purpose of litigating all such Disputes.

+

Governing Law. The laws of the State of New York govern our Terms, as well as + any Disputes, whether in court or arbitration, which might arise between Semester.ly and you, + without regard to conflict of law provisions.

+ +

Availability and Termination of Our + Service

+

Availability of Our Service. Our Service may be interrupted, including for + maintenance, repairs, upgrades, or network or equipment failures. We may discontinue some or all + of our Service, including certain features and the support for certain devices and platforms, at + any time. Events beyond our control may affect our Service, such as events in nature and other + force majeure events.

+

Termination. We may modify, suspend, or terminate your access to or use of our + Service anytime for any reason, such as if you violate the letter or spirit of our Terms or + create harm, risk, or possible legal exposure for us, our users, or others. The following + provisions will survive any termination of your relationship with Semester.ly: “Licenses,” + “Disclaimers,” “Limitation of Liability,” “Indemnification,” “Dispute Resolution,” “Availability + and Termination of our Service,” and “Other.”

+ +

Other

+
    +
  • +

    Unless a mutually executed agreement between you and us states otherwise, our Terms make + up the entire agreement between you and us regarding Semester.ly and our Service, and + supersede any prior agreements.

    +
  • +
  • +

    We may ask you to agree to additional terms for certain of our Service in the future, + which will govern to the extent there is a conflict between our Terms and such + additional terms.

    +
  • +
  • +

    Our Service is not intended for distribution to or use in any country where such + distribution or use would violate local law or would subject us to any regulations in + another country. We reserve the right to limit our Service in any country.

    +
  • +
  • +

    You will comply with all applicable U.S. and non‑U.S. export control and trade sanctions + laws (“Export Laws”). You will not, directly or indirectly, export, re‑export, provide, + or otherwise transfer our Service: (a) to any individual, entity, or country prohibited + by Export Laws; (b) to anyone on U.S. or non‑U.S. government restricted parties lists; + or (c) for any purpose prohibited by Export Laws, including nuclear, chemical, or + biological weapons, or missile technology applications without the required government + authorizations. You will not use or download our Service if you are located in a + restricted country, if you are currently listed on any U.S. or non‑U.S. restricted + parties list, or for any purpose prohibited by Export Laws, and you will not disguise + your location through IP proxying or other methods.

    +
  • +
  • +

    Our Terms are written in English (U.S.). Any translated version is provided solely for + your convenience. To the extent any translated version of our Terms conflicts with the + English version, the English version controls.

    +
  • +
  • +

    Any amendment to or waiver of our Terms requires our express consent.

    +
  • +
  • +

    We may amend or update these Terms. We will provide you notice of amendments to our + Terms, as appropriate, and update the “Last Modified” date at the top of our Terms. Your + continued use of our Service confirms your acceptance of our Terms, as amended. If you + do not agree to our Terms, as amended, you must stop using our Service. Please review + our Terms from time‑to‑time.

    +
  • +
  • +

    All of our rights and obligations under our Terms are freely assignable by us to any of + our affiliates or in connection with a merger, acquisition, restructuring, or sale of + assets, or by operation of law or otherwise, and we may transfer your information to any + of our affiliates, successor entities, or new owner.

    +
  • +
  • +

    You will not transfer any of your rights or obligations under our Terms to anyone else + without our prior written consent.

    +
  • +
  • +

    Nothing in our Terms will prevent us from complying with the law.

    +
  • +
  • +

    Except as contemplated herein, our Terms do not give any third‑party beneficiary rights. +

    +
  • +
  • +

    If we fail to enforce any of our Terms, it will not be considered a waiver.

    +
  • +
  • +

    If any provision of these Terms is deemed unlawful, void, or for any reason + unenforceable, then that provision shall be deemed severable from our Terms and shall + not affect the validity and enforceability of the remaining provisions.

    +
  • +
  • +

    We reserve all rights not expressly granted by us to you. In certain jurisdictions, you + may have legal rights as a consumer, and our Terms are not intended to limit such + consumer legal rights that may not be waived by contract.

    +
  • +
  • +

    As of March 8th, 2019, Semester.ly is now hosted by Johns Hopkins University’s IT + Department. This partnership will help us provide more reliable service and custom + features. There is more information about this merger here: https://jhu.semester.ly/notice. Updates to + the Privacy Policy were also made. Please direct any other specific questions regarding + this change to semesterly@jhu.edu.

    +
  • +
  • +

    We always appreciate your feedback or other suggestions about Semester.ly and our + Service, but you understand that we may use your feedback or suggestions without any + obligation to compensate you for them (just as you have no obligation to offer them). +

    +
  • +
+
-
- -
+
- - - - - - diff --git a/agreement/tests.py b/agreement/tests.py index 2e400b46a1..d8c52556ff 100644 --- a/agreement/tests.py +++ b/agreement/tests.py @@ -14,7 +14,8 @@ class UrlsTest(TestCase): - def test_urls_call_correct_templates(self): - self.assertTemplateUsed(self.client.get('/termsofservice'), 'termsofservice.html') - self.assertTemplateUsed(self.client.get('/privacypolicy'), 'privacypolicy.html') \ No newline at end of file + self.assertTemplateUsed( + self.client.get("/termsofservice"), "termsofservice.html" + ) + self.assertTemplateUsed(self.client.get("/privacypolicy"), "privacypolicy.html") diff --git a/agreement/urls.py b/agreement/urls.py index 0ac864099c..f0dca8adb7 100644 --- a/agreement/urls.py +++ b/agreement/urls.py @@ -10,16 +10,15 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from django.conf.urls import patterns, url -from django.contrib import admin +from django.conf.urls import re_path from django.views.generic import TemplateView -admin.autodiscover() - -urlpatterns = patterns('', - url(r'termsofservice/*$', - TemplateView.as_view(template_name="termsofservice.html")), - url(r'privacypolicy/*$', - TemplateView.as_view(template_name="privacypolicy.html")), - ) +urlpatterns = [ + re_path( + r"termsofservice/*$", TemplateView.as_view(template_name="termsofservice.html") + ), + re_path( + r"privacypolicy/*$", TemplateView.as_view(template_name="privacypolicy.html") + ), +] diff --git a/analytics/__init__.py b/analytics/__init__.py index c53afacbff..defc0f99ee 100644 --- a/analytics/__init__.py +++ b/analytics/__init__.py @@ -9,4 +9,3 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - diff --git a/analytics/admin.py b/analytics/admin.py index c698ff635c..51eb5fa406 100644 --- a/analytics/admin.py +++ b/analytics/admin.py @@ -11,5 +11,13 @@ # GNU General Public License for more details. from django.contrib import admin +from .models import UIErrorLog # Register your models here. + + +@admin.register(UIErrorLog) +class UIErrorLogAdmin(admin.ModelAdmin): + """Enables admins to create, view, and edit news updates at /admin""" + + list_display = ("name", "message", "user", "time_occurred") diff --git a/analytics/migrations/0001_initial.py b/analytics/migrations/0001_initial.py index da3e878b44..74c9ed706c 100644 --- a/analytics/migrations/0001_initial.py +++ b/analytics/migrations/0001_initial.py @@ -14,34 +14,49 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.5 on 2016-05-24 02:00 -from __future__ import unicode_literals + from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): - initial = True dependencies = [ - ('timetable', '0004_auto_20160520_1141'), - ('student', '0004_auto_20160521_2343'), + ("timetable", "0004_auto_20160520_1141"), + ("student", "0004_auto_20160521_2343"), ] operations = [ migrations.CreateModel( - name='SharedTimetable', + name="SharedTimetable", fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('semester', models.CharField(max_length=2)), - ('school', models.CharField(max_length=50)), - ('name', models.CharField(max_length=100, null=True)), - ('has_conflict', models.BooleanField(default=False)), - ('time_created', models.DateTimeField(auto_now_add=True)), - ('courses', models.ManyToManyField(to='timetable.Course')), - ('sections', models.ManyToManyField(to='timetable.Section')), - ('student', models.ForeignKey(default=None, null=True, on_delete=django.db.models.deletion.CASCADE, to='student.Student')), + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("semester", models.CharField(max_length=2)), + ("school", models.CharField(max_length=50)), + ("name", models.CharField(max_length=100, null=True)), + ("has_conflict", models.BooleanField(default=False)), + ("time_created", models.DateTimeField(auto_now_add=True)), + ("courses", models.ManyToManyField(to="timetable.Course")), + ("sections", models.ManyToManyField(to="timetable.Section")), + ( + "student", + models.ForeignKey( + default=None, + null=True, + on_delete=django.db.models.deletion.CASCADE, + to="student.Student", + ), + ), ], ), ] diff --git a/analytics/migrations/0002_analyticstimetable.py b/analytics/migrations/0002_analyticstimetable.py index ce0c1c78bf..2439b008e5 100644 --- a/analytics/migrations/0002_analyticstimetable.py +++ b/analytics/migrations/0002_analyticstimetable.py @@ -14,31 +14,46 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.5 on 2016-05-30 03:14 -from __future__ import unicode_literals + from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): - dependencies = [ - ('timetable', '0004_auto_20160520_1141'), - ('student', '0004_auto_20160521_2343'), - ('analytics', '0001_initial'), + ("timetable", "0004_auto_20160520_1141"), + ("student", "0004_auto_20160521_2343"), + ("analytics", "0001_initial"), ] operations = [ migrations.CreateModel( - name='AnalyticsTimetable', + name="AnalyticsTimetable", fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('semester', models.CharField(max_length=2)), - ('school', models.CharField(max_length=50)), - ('has_conflict', models.BooleanField(default=False)), - ('time_created', models.DateTimeField(auto_now_add=True)), - ('courses', models.ManyToManyField(to='timetable.Course')), - ('student', models.ForeignKey(default=None, null=True, on_delete=django.db.models.deletion.CASCADE, to='student.Student')), + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("semester", models.CharField(max_length=2)), + ("school", models.CharField(max_length=50)), + ("has_conflict", models.BooleanField(default=False)), + ("time_created", models.DateTimeField(auto_now_add=True)), + ("courses", models.ManyToManyField(to="timetable.Course")), + ( + "student", + models.ForeignKey( + default=None, + null=True, + on_delete=django.db.models.deletion.CASCADE, + to="student.Student", + ), + ), ], ), ] diff --git a/analytics/migrations/0003_analyticscoursesearch.py b/analytics/migrations/0003_analyticscoursesearch.py index 0fe3e05693..28f3ccdb50 100644 --- a/analytics/migrations/0003_analyticscoursesearch.py +++ b/analytics/migrations/0003_analyticscoursesearch.py @@ -14,29 +14,44 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9 on 2016-06-05 06:53 -from __future__ import unicode_literals + from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): - dependencies = [ - ('student', '0005_reaction_time_created'), - ('timetable', '0004_auto_20160520_1141'), - ('analytics', '0002_analyticstimetable'), + ("student", "0005_reaction_time_created"), + ("timetable", "0004_auto_20160520_1141"), + ("analytics", "0002_analyticstimetable"), ] operations = [ migrations.CreateModel( - name='AnalyticsCourseSearch', + name="AnalyticsCourseSearch", fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('semester', models.CharField(max_length=2)), - ('school', models.CharField(max_length=50)), - ('courses', models.ManyToManyField(to='timetable.Course')), - ('student', models.ForeignKey(default=None, null=True, on_delete=django.db.models.deletion.CASCADE, to='student.Student')), + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("semester", models.CharField(max_length=2)), + ("school", models.CharField(max_length=50)), + ("courses", models.ManyToManyField(to="timetable.Course")), + ( + "student", + models.ForeignKey( + default=None, + null=True, + on_delete=django.db.models.deletion.CASCADE, + to="student.Student", + ), + ), ], ), ] diff --git a/analytics/migrations/0004_remove_analyticscoursesearch_student.py b/analytics/migrations/0004_remove_analyticscoursesearch_student.py index 80aa9b6bf6..6869fbeb83 100644 --- a/analytics/migrations/0004_remove_analyticscoursesearch_student.py +++ b/analytics/migrations/0004_remove_analyticscoursesearch_student.py @@ -14,20 +14,19 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9 on 2016-06-05 08:07 -from __future__ import unicode_literals + from django.db import migrations class Migration(migrations.Migration): - dependencies = [ - ('analytics', '0003_analyticscoursesearch'), + ("analytics", "0003_analyticscoursesearch"), ] operations = [ migrations.RemoveField( - model_name='analyticscoursesearch', - name='student', + model_name="analyticscoursesearch", + name="student", ), ] diff --git a/analytics/migrations/0005_auto_20160605_1208.py b/analytics/migrations/0005_auto_20160605_1208.py index f2f3bfa311..61a3287673 100644 --- a/analytics/migrations/0005_auto_20160605_1208.py +++ b/analytics/migrations/0005_auto_20160605_1208.py @@ -14,27 +14,31 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.5 on 2016-06-05 17:08 -from __future__ import unicode_literals + from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): - dependencies = [ - ('student', '0005_reaction_time_created'), - ('analytics', '0004_remove_analyticscoursesearch_student'), + ("student", "0005_reaction_time_created"), + ("analytics", "0004_remove_analyticscoursesearch_student"), ] operations = [ migrations.RemoveField( - model_name='analyticscoursesearch', - name='courses', + model_name="analyticscoursesearch", + name="courses", ), migrations.AddField( - model_name='analyticscoursesearch', - name='student', - field=models.ForeignKey(default=None, null=True, on_delete=django.db.models.deletion.CASCADE, to='student.Student'), + model_name="analyticscoursesearch", + name="student", + field=models.ForeignKey( + default=None, + null=True, + on_delete=django.db.models.deletion.CASCADE, + to="student.Student", + ), ), ] diff --git a/analytics/migrations/0006_analyticscoursesearch_query.py b/analytics/migrations/0006_analyticscoursesearch_query.py index ef60c6f631..bfce7a2f71 100644 --- a/analytics/migrations/0006_analyticscoursesearch_query.py +++ b/analytics/migrations/0006_analyticscoursesearch_query.py @@ -14,22 +14,21 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.5 on 2016-06-05 17:20 -from __future__ import unicode_literals + from django.db import migrations, models class Migration(migrations.Migration): - dependencies = [ - ('analytics', '0005_auto_20160605_1208'), + ("analytics", "0005_auto_20160605_1208"), ] operations = [ migrations.AddField( - model_name='analyticscoursesearch', - name='query', - field=models.CharField(default='', max_length=200), + model_name="analyticscoursesearch", + name="query", + field=models.CharField(default="", max_length=200), preserve_default=False, ), ] diff --git a/analytics/migrations/0007_analyticscoursesearch_is_advanced.py b/analytics/migrations/0007_analyticscoursesearch_is_advanced.py index 6674c4b973..f59cf1d452 100644 --- a/analytics/migrations/0007_analyticscoursesearch_is_advanced.py +++ b/analytics/migrations/0007_analyticscoursesearch_is_advanced.py @@ -14,21 +14,20 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.5 on 2016-06-05 17:22 -from __future__ import unicode_literals + from django.db import migrations, models class Migration(migrations.Migration): - dependencies = [ - ('analytics', '0006_analyticscoursesearch_query'), + ("analytics", "0006_analyticscoursesearch_query"), ] operations = [ migrations.AddField( - model_name='analyticscoursesearch', - name='is_advanced', + model_name="analyticscoursesearch", + name="is_advanced", field=models.BooleanField(default=False), ), ] diff --git a/analytics/migrations/0008_analyticscoursesearch_courses.py b/analytics/migrations/0008_analyticscoursesearch_courses.py index f0e6fdcf64..756e092ec0 100644 --- a/analytics/migrations/0008_analyticscoursesearch_courses.py +++ b/analytics/migrations/0008_analyticscoursesearch_courses.py @@ -14,22 +14,21 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9 on 2016-06-05 19:31 -from __future__ import unicode_literals + from django.db import migrations, models class Migration(migrations.Migration): - dependencies = [ - ('timetable', '0004_auto_20160520_1141'), - ('analytics', '0007_analyticscoursesearch_is_advanced'), + ("timetable", "0004_auto_20160520_1141"), + ("analytics", "0007_analyticscoursesearch_is_advanced"), ] operations = [ migrations.AddField( - model_name='analyticscoursesearch', - name='courses', - field=models.ManyToManyField(to='timetable.Course'), + model_name="analyticscoursesearch", + name="courses", + field=models.ManyToManyField(to="timetable.Course"), ), ] diff --git a/analytics/migrations/0009_devicecookie.py b/analytics/migrations/0009_devicecookie.py index ca96c14a36..dd733a6100 100644 --- a/analytics/migrations/0009_devicecookie.py +++ b/analytics/migrations/0009_devicecookie.py @@ -14,26 +14,41 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-01-14 23:40 -from __future__ import unicode_literals + from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): - dependencies = [ - ('student', '0015_merge'), - ('analytics', '0008_analyticscoursesearch_courses'), + ("student", "0015_merge"), + ("analytics", "0008_analyticscoursesearch_courses"), ] operations = [ migrations.CreateModel( - name='DeviceCookie', + name="DeviceCookie", fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('last_online', models.DateTimeField(auto_now_add=True)), - ('student', models.ForeignKey(default=None, null=True, on_delete=django.db.models.deletion.CASCADE, to='student.Student')), + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("last_online", models.DateTimeField(auto_now_add=True)), + ( + "student", + models.ForeignKey( + default=None, + null=True, + on_delete=django.db.models.deletion.CASCADE, + to="student.Student", + ), + ), ], ), ] diff --git a/analytics/migrations/0010_calendarexport.py b/analytics/migrations/0010_calendarexport.py index ac147966e2..99b4116faa 100644 --- a/analytics/migrations/0010_calendarexport.py +++ b/analytics/migrations/0010_calendarexport.py @@ -14,28 +14,43 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-01-24 15:46 -from __future__ import unicode_literals + from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): - dependencies = [ - ('student', '0015_merge'), - ('analytics', '0009_devicecookie'), + ("student", "0015_merge"), + ("analytics", "0009_devicecookie"), ] operations = [ migrations.CreateModel( - name='CalendarExport', + name="CalendarExport", fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('time_created', models.DateTimeField(auto_now_add=True)), - ('school', models.CharField(max_length=50)), - ('is_google_calendar', models.BooleanField(default=False)), - ('student', models.ForeignKey(default=None, null=True, on_delete=django.db.models.deletion.CASCADE, to='student.Student')), + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("time_created", models.DateTimeField(auto_now_add=True)), + ("school", models.CharField(max_length=50)), + ("is_google_calendar", models.BooleanField(default=False)), + ( + "student", + models.ForeignKey( + default=None, + null=True, + on_delete=django.db.models.deletion.CASCADE, + to="student.Student", + ), + ), ], ), ] diff --git a/analytics/migrations/0011_auto_20170311_1924.py b/analytics/migrations/0011_auto_20170311_1924.py index 9629bfd47e..dad440212b 100644 --- a/analytics/migrations/0011_auto_20170311_1924.py +++ b/analytics/migrations/0011_auto_20170311_1924.py @@ -14,31 +14,30 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-03-12 00:24 -from __future__ import unicode_literals + from django.db import migrations class Migration(migrations.Migration): - dependencies = [ - ('analytics', '0010_calendarexport'), + ("analytics", "0010_calendarexport"), ] operations = [ migrations.RenameField( - model_name='analyticscoursesearch', - old_name='semester', - new_name='_semester', + model_name="analyticscoursesearch", + old_name="semester", + new_name="_semester", ), migrations.RenameField( - model_name='analyticstimetable', - old_name='semester', - new_name='_semester', + model_name="analyticstimetable", + old_name="semester", + new_name="_semester", ), migrations.RenameField( - model_name='sharedtimetable', - old_name='semester', - new_name='_semester', + model_name="sharedtimetable", + old_name="semester", + new_name="_semester", ), ] diff --git a/analytics/migrations/0011_finalexammodalview.py b/analytics/migrations/0011_finalexammodalview.py index 9c783c5c56..db877ff9fd 100644 --- a/analytics/migrations/0011_finalexammodalview.py +++ b/analytics/migrations/0011_finalexammodalview.py @@ -14,27 +14,42 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-03-05 20:38 -from __future__ import unicode_literals + from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): - dependencies = [ - ('student', '0015_merge'), - ('analytics', '0010_calendarexport'), + ("student", "0015_merge"), + ("analytics", "0010_calendarexport"), ] operations = [ migrations.CreateModel( - name='FinalExamModalView', + name="FinalExamModalView", fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('time_created', models.DateTimeField(auto_now_add=True)), - ('school', models.CharField(max_length=50)), - ('student', models.ForeignKey(default=None, null=True, on_delete=django.db.models.deletion.CASCADE, to='student.Student')), + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("time_created", models.DateTimeField(auto_now_add=True)), + ("school", models.CharField(max_length=50)), + ( + "student", + models.ForeignKey( + default=None, + null=True, + on_delete=django.db.models.deletion.CASCADE, + to="student.Student", + ), + ), ], ), ] diff --git a/analytics/migrations/0012_auto_20170311_1924.py b/analytics/migrations/0012_auto_20170311_1924.py index 6681b57c6c..bb0c3213f8 100644 --- a/analytics/migrations/0012_auto_20170311_1924.py +++ b/analytics/migrations/0012_auto_20170311_1924.py @@ -14,36 +14,47 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-03-12 00:24 -from __future__ import unicode_literals + from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): - dependencies = [ - ('timetable', '0012_section_semester'), - ('analytics', '0011_auto_20170311_1924'), + ("timetable", "0012_section_semester"), + ("analytics", "0011_auto_20170311_1924"), ] operations = [ migrations.AddField( - model_name='analyticscoursesearch', - name='semester', - field=models.ForeignKey(default=1, on_delete=django.db.models.deletion.CASCADE, to='timetable.Semester'), + model_name="analyticscoursesearch", + name="semester", + field=models.ForeignKey( + default=1, + on_delete=django.db.models.deletion.CASCADE, + to="timetable.Semester", + ), preserve_default=False, ), migrations.AddField( - model_name='analyticstimetable', - name='semester', - field=models.ForeignKey(default=1, on_delete=django.db.models.deletion.CASCADE, to='timetable.Semester'), + model_name="analyticstimetable", + name="semester", + field=models.ForeignKey( + default=1, + on_delete=django.db.models.deletion.CASCADE, + to="timetable.Semester", + ), preserve_default=False, ), migrations.AddField( - model_name='sharedtimetable', - name='semester', - field=models.ForeignKey(default=1, on_delete=django.db.models.deletion.CASCADE, to='timetable.Semester'), + model_name="sharedtimetable", + name="semester", + field=models.ForeignKey( + default=1, + on_delete=django.db.models.deletion.CASCADE, + to="timetable.Semester", + ), preserve_default=False, ), ] diff --git a/analytics/migrations/0012_sharedtimetableview.py b/analytics/migrations/0012_sharedtimetableview.py index dd1081afe5..eb75963c05 100644 --- a/analytics/migrations/0012_sharedtimetableview.py +++ b/analytics/migrations/0012_sharedtimetableview.py @@ -14,25 +14,38 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-03-08 16:42 -from __future__ import unicode_literals + from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): - dependencies = [ - ('analytics', '0011_finalexammodalview'), + ("analytics", "0011_finalexammodalview"), ] operations = [ migrations.CreateModel( - name='SharedTimetableView', + name="SharedTimetableView", fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('time_created', models.DateTimeField(auto_now_add=True)), - ('shared_timetable', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='analytics.SharedTimetable')), + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("time_created", models.DateTimeField(auto_now_add=True)), + ( + "shared_timetable", + models.ForeignKey( + on_delete=django.db.models.deletion.CASCADE, + to="analytics.SharedTimetable", + ), + ), ], ), ] diff --git a/analytics/migrations/0013_sharedcourseview.py b/analytics/migrations/0013_sharedcourseview.py index 5f85628555..bba50c24f9 100644 --- a/analytics/migrations/0013_sharedcourseview.py +++ b/analytics/migrations/0013_sharedcourseview.py @@ -14,28 +14,49 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-03-08 21:37 -from __future__ import unicode_literals + from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): - dependencies = [ - ('timetable', '0008_merge'), - ('student', '0015_merge'), - ('analytics', '0012_sharedtimetableview'), + ("timetable", "0008_merge"), + ("student", "0015_merge"), + ("analytics", "0012_sharedtimetableview"), ] operations = [ migrations.CreateModel( - name='SharedCourseView', + name="SharedCourseView", fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('time_created', models.DateTimeField(auto_now_add=True)), - ('shared_course', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='timetable.Course')), - ('student', models.ForeignKey(default=None, null=True, on_delete=django.db.models.deletion.CASCADE, to='student.Student')), + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("time_created", models.DateTimeField(auto_now_add=True)), + ( + "shared_course", + models.ForeignKey( + on_delete=django.db.models.deletion.CASCADE, + to="timetable.Course", + ), + ), + ( + "student", + models.ForeignKey( + default=None, + null=True, + on_delete=django.db.models.deletion.CASCADE, + to="student.Student", + ), + ), ], ), ] diff --git a/analytics/migrations/0013_update_semester_field.py b/analytics/migrations/0013_update_semester_field.py index 19be2387a9..200ca7461c 100644 --- a/analytics/migrations/0013_update_semester_field.py +++ b/analytics/migrations/0013_update_semester_field.py @@ -14,7 +14,7 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-03-12 00:25 -from __future__ import unicode_literals + from operator import attrgetter from django.db import migrations @@ -22,19 +22,19 @@ from timetable.update_semester_field import get_update_operation tables_to_update = [ - 'SharedTimetable', - 'AnalyticsTimetable', - 'AnalyticsCourseSearch', + "SharedTimetable", + "AnalyticsTimetable", + "AnalyticsCourseSearch", ] -class Migration(migrations.Migration): +class Migration(migrations.Migration): dependencies = [ - ('analytics', '0012_auto_20170311_1924'), + ("analytics", "0012_auto_20170311_1924"), ] operations = [ - migrations.RunPython(get_update_operation('analytics', - tables_to_update, - attrgetter('school'))), + migrations.RunPython( + get_update_operation("analytics", tables_to_update, attrgetter("school")) + ), ] diff --git a/analytics/migrations/0014_merge.py b/analytics/migrations/0014_merge.py index 2e1daf341c..f80a89496e 100644 --- a/analytics/migrations/0014_merge.py +++ b/analytics/migrations/0014_merge.py @@ -14,17 +14,15 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-03-12 14:50 -from __future__ import unicode_literals + from django.db import migrations class Migration(migrations.Migration): - dependencies = [ - ('analytics', '0011_finalexammodalview'), - ('analytics', '0013_update_semester_field'), + ("analytics", "0011_finalexammodalview"), + ("analytics", "0013_update_semester_field"), ] - operations = [ - ] + operations = [] diff --git a/analytics/migrations/0014_sharedtimetableview_student.py b/analytics/migrations/0014_sharedtimetableview_student.py index 3063990ff8..33ae8d325a 100644 --- a/analytics/migrations/0014_sharedtimetableview_student.py +++ b/analytics/migrations/0014_sharedtimetableview_student.py @@ -14,23 +14,27 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-03-08 21:47 -from __future__ import unicode_literals + from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): - dependencies = [ - ('student', '0015_merge'), - ('analytics', '0013_sharedcourseview'), + ("student", "0015_merge"), + ("analytics", "0013_sharedcourseview"), ] operations = [ migrations.AddField( - model_name='sharedtimetableview', - name='student', - field=models.ForeignKey(default=None, null=True, on_delete=django.db.models.deletion.CASCADE, to='student.Student'), + model_name="sharedtimetableview", + name="student", + field=models.ForeignKey( + default=None, + null=True, + on_delete=django.db.models.deletion.CASCADE, + to="student.Student", + ), ), ] diff --git a/analytics/migrations/0015_facebookalertclick_facebookalertview.py b/analytics/migrations/0015_facebookalertclick_facebookalertview.py index 945c2dd75f..ed9bd119a9 100644 --- a/analytics/migrations/0015_facebookalertclick_facebookalertview.py +++ b/analytics/migrations/0015_facebookalertclick_facebookalertview.py @@ -14,36 +14,67 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-03-27 23:01 -from __future__ import unicode_literals + from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): - dependencies = [ - ('student', '0018_update_semester_field'), - ('analytics', '0014_merge'), + ("student", "0018_update_semester_field"), + ("analytics", "0014_merge"), ] operations = [ migrations.CreateModel( - name='FacebookAlertClick', + name="FacebookAlertClick", fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('time_created', models.DateTimeField(auto_now_add=True)), - ('school', models.CharField(max_length=50)), - ('student', models.ForeignKey(default=None, null=True, on_delete=django.db.models.deletion.CASCADE, to='student.Student')), + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("time_created", models.DateTimeField(auto_now_add=True)), + ("school", models.CharField(max_length=50)), + ( + "student", + models.ForeignKey( + default=None, + null=True, + on_delete=django.db.models.deletion.CASCADE, + to="student.Student", + ), + ), ], ), migrations.CreateModel( - name='FacebookAlertView', + name="FacebookAlertView", fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('time_created', models.DateTimeField(auto_now_add=True)), - ('school', models.CharField(max_length=50)), - ('student', models.ForeignKey(default=None, null=True, on_delete=django.db.models.deletion.CASCADE, to='student.Student')), + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("time_created", models.DateTimeField(auto_now_add=True)), + ("school", models.CharField(max_length=50)), + ( + "student", + models.ForeignKey( + default=None, + null=True, + on_delete=django.db.models.deletion.CASCADE, + to="student.Student", + ), + ), ], ), ] diff --git a/analytics/migrations/0016_merge.py b/analytics/migrations/0016_merge.py index 2a75562156..5c8790bac4 100644 --- a/analytics/migrations/0016_merge.py +++ b/analytics/migrations/0016_merge.py @@ -14,17 +14,15 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-04-03 15:00 -from __future__ import unicode_literals + from django.db import migrations class Migration(migrations.Migration): - dependencies = [ - ('analytics', '0014_sharedtimetableview_student'), - ('analytics', '0015_facebookalertclick_facebookalertview'), + ("analytics", "0014_sharedtimetableview_student"), + ("analytics", "0015_facebookalertclick_facebookalertview"), ] - operations = [ - ] + operations = [] diff --git a/analytics/migrations/0017_remove_sharedtimetable_name.py b/analytics/migrations/0017_remove_sharedtimetable_name.py index 1f72774a0d..1fe97ae9c2 100644 --- a/analytics/migrations/0017_remove_sharedtimetable_name.py +++ b/analytics/migrations/0017_remove_sharedtimetable_name.py @@ -1,19 +1,18 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-06-15 23:32 -from __future__ import unicode_literals + from django.db import migrations class Migration(migrations.Migration): - dependencies = [ - ('analytics', '0016_merge'), + ("analytics", "0016_merge"), ] operations = [ migrations.RemoveField( - model_name='sharedtimetable', - name='name', + model_name="sharedtimetable", + name="name", ), ] diff --git a/analytics/migrations/0018_auto_20170615_1835.py b/analytics/migrations/0018_auto_20170615_1835.py index b556e3d3c7..292594f01e 100644 --- a/analytics/migrations/0018_auto_20170615_1835.py +++ b/analytics/migrations/0018_auto_20170615_1835.py @@ -1,27 +1,26 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-06-15 23:35 -from __future__ import unicode_literals + from django.db import migrations class Migration(migrations.Migration): - dependencies = [ - ('analytics', '0017_remove_sharedtimetable_name'), + ("analytics", "0017_remove_sharedtimetable_name"), ] operations = [ migrations.RemoveField( - model_name='analyticscoursesearch', - name='_semester', + model_name="analyticscoursesearch", + name="_semester", ), migrations.RemoveField( - model_name='analyticstimetable', - name='_semester', + model_name="analyticstimetable", + name="_semester", ), migrations.RemoveField( - model_name='sharedtimetable', - name='_semester', + model_name="sharedtimetable", + name="_semester", ), ] diff --git a/analytics/migrations/0019_auto_20210620_2150.py b/analytics/migrations/0019_auto_20210620_2150.py new file mode 100644 index 0000000000..5372991b3f --- /dev/null +++ b/analytics/migrations/0019_auto_20210620_2150.py @@ -0,0 +1,32 @@ +# Generated by Django 2.2.18 on 2021-06-21 02:50 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("analytics", "0018_auto_20170615_1835"), + ] + + operations = [ + migrations.AlterField( + model_name="analyticscoursesearch", + name="is_advanced", + field=models.BooleanField(blank=True, default=False), + ), + migrations.AlterField( + model_name="analyticstimetable", + name="has_conflict", + field=models.BooleanField(blank=True, default=False), + ), + migrations.AlterField( + model_name="calendarexport", + name="is_google_calendar", + field=models.BooleanField(blank=True, default=False), + ), + migrations.AlterField( + model_name="sharedtimetable", + name="has_conflict", + field=models.BooleanField(blank=True, default=False), + ), + ] diff --git a/analytics/migrations/0020_delete_finalexammodalview.py b/analytics/migrations/0020_delete_finalexammodalview.py new file mode 100644 index 0000000000..49f9fa3857 --- /dev/null +++ b/analytics/migrations/0020_delete_finalexammodalview.py @@ -0,0 +1,15 @@ +# Generated by Django 3.2.10 on 2021-12-19 06:51 + +from django.db import migrations + + +class Migration(migrations.Migration): + dependencies = [ + ("analytics", "0019_auto_20210620_2150"), + ] + + operations = [ + migrations.DeleteModel( + name="FinalExamModalView", + ), + ] diff --git a/analytics/migrations/0021_auto_20230203_1230.py b/analytics/migrations/0021_auto_20230203_1230.py new file mode 100644 index 0000000000..c0addb8d4d --- /dev/null +++ b/analytics/migrations/0021_auto_20230203_1230.py @@ -0,0 +1,22 @@ +# Generated by Django 3.2.12 on 2023-02-03 17:30 + +from django.db import migrations + + +class Migration(migrations.Migration): + dependencies = [ + ("analytics", "0020_delete_finalexammodalview"), + ] + + operations = [ + migrations.RemoveField( + model_name="facebookalertview", + name="student", + ), + migrations.DeleteModel( + name="FacebookAlertClick", + ), + migrations.DeleteModel( + name="FacebookAlertView", + ), + ] diff --git a/analytics/migrations/0022_uierrorlog_squashed_0024_alter_uierrorlog_options.py b/analytics/migrations/0022_uierrorlog_squashed_0024_alter_uierrorlog_options.py new file mode 100644 index 0000000000..eb6cda2792 --- /dev/null +++ b/analytics/migrations/0022_uierrorlog_squashed_0024_alter_uierrorlog_options.py @@ -0,0 +1,54 @@ +# Generated by Django 3.2.20 on 2023-10-07 01:34 + +from django.conf import settings +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + replaces = [ + ("analytics", "0022_uierrorlog"), + ("analytics", "0023_alter_uierrorlog_user"), + ("analytics", "0024_alter_uierrorlog_options"), + ] + + dependencies = [ + ("analytics", "0021_auto_20230203_1230"), + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ("student", "0046_delete_registrationtoken"), + ] + + operations = [ + migrations.CreateModel( + name="UIErrorLog", + fields=[ + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("time_occurred", models.DateTimeField(auto_now_add=True)), + ("message", models.CharField(max_length=1000)), + ("name", models.CharField(max_length=100)), + ("stack", models.TextField()), + ("componentStack", models.TextField()), + ( + "user", + models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.CASCADE, + to=settings.AUTH_USER_MODEL, + ), + ), + ], + options={ + "ordering": ["-time_occurred"], + "abstract": False, + }, + ), + ] diff --git a/analytics/migrations/__init__.py b/analytics/migrations/__init__.py index 48cb47ffcf..54cb057c9e 100644 --- a/analytics/migrations/__init__.py +++ b/analytics/migrations/__init__.py @@ -11,4 +11,3 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. """ - diff --git a/analytics/models.py b/analytics/models.py index e88865a33a..b243ce45f6 100644 --- a/analytics/models.py +++ b/analytics/models.py @@ -12,6 +12,7 @@ from timetable.models import * from student.models import Student +from django.contrib.auth.models import User class SharedTimetable(Timetable): @@ -21,21 +22,30 @@ class SharedTimetable(Timetable): can also generate links to share a timetable. But if a logged-in user does generate it, this information will be recorded. """ + has_conflict = models.BooleanField(blank=True, default=False) time_created = models.DateTimeField(auto_now_add=True) - student = models.ForeignKey(Student, null=True, default=None) + student = models.ForeignKey( + Student, null=True, default=None, on_delete=models.deletion.CASCADE + ) class SharedTimetableView(models.Model): - shared_timetable = models.ForeignKey(SharedTimetable) + shared_timetable = models.ForeignKey( + SharedTimetable, on_delete=models.deletion.CASCADE + ) time_created = models.DateTimeField(auto_now_add=True) - student = models.ForeignKey(Student, null=True, default=None) + student = models.ForeignKey( + Student, null=True, default=None, on_delete=models.deletion.CASCADE + ) class SharedCourseView(models.Model): - shared_course = models.ForeignKey(Course) + shared_course = models.ForeignKey(Course, on_delete=models.deletion.CASCADE) time_created = models.DateTimeField(auto_now_add=True) - student = models.ForeignKey(Student, null=True, default=None) + student = models.ForeignKey( + Student, null=True, default=None, on_delete=models.deletion.CASCADE + ) class AnalyticsTimetable(models.Model): @@ -44,38 +54,51 @@ class AnalyticsTimetable(models.Model): Used to record the number of changes all uesrs made to their timetables, even when they are not saved. """ + courses = models.ManyToManyField(Course) - semester = models.ForeignKey('timetable.Semester') + semester = models.ForeignKey( + "timetable.Semester", on_delete=models.deletion.CASCADE + ) school = models.CharField(max_length=50) has_conflict = models.BooleanField(blank=True, default=False) time_created = models.DateTimeField(auto_now_add=True) - student = models.ForeignKey(Student, null=True, default=None) + student = models.ForeignKey( + Student, null=True, default=None, on_delete=models.deletion.CASCADE + ) class AnalyticsCourseSearch(models.Model): """ - A search that is saved everytime a user searches for a course. All courses DISPLAYED - are linked. + A search that is saved everytime a user searches for a course. All courses DISPLAYED + are linked. """ + query = models.CharField(max_length=200) courses = models.ManyToManyField(Course) is_advanced = models.BooleanField(blank=True, default=False) - semester = models.ForeignKey('timetable.Semester') + semester = models.ForeignKey( + "timetable.Semester", on_delete=models.deletion.CASCADE + ) school = models.CharField(max_length=50) - student = models.ForeignKey(Student, null=True, default=None) + student = models.ForeignKey( + Student, null=True, default=None, on_delete=models.deletion.CASCADE + ) # TODO: fill in for advanced search later. # areas = models.CharField(max_length=300, default='', null=True) - # department = models.CharField(max_length=250, default='', null=True) + # department = models.CharField(max_length=255, default='', null=True) # level = models.CharField(max_length=30, default='', null=True) class DeviceCookie(models.Model): """ - A cookie which is dropped on each device tracking last login. + A cookie which is dropped on each device tracking last login. Provides analytics on the number of users we have logged in and logged out. """ - student = models.ForeignKey(Student, null=True, default=None) + + student = models.ForeignKey( + Student, null=True, default=None, on_delete=models.deletion.CASCADE + ) last_online = models.DateTimeField(auto_now_add=True) @@ -83,34 +106,39 @@ class CalendarExport(models.Model): """ Logs save calendar export events: save to ics or to google calendar """ - student = models.ForeignKey(Student, null=True, default=None) + + student = models.ForeignKey( + Student, null=True, default=None, on_delete=models.deletion.CASCADE + ) time_created = models.DateTimeField(auto_now_add=True) school = models.CharField(max_length=50) is_google_calendar = models.BooleanField(blank=True, default=False) -class FinalExamModalView(models.Model): +class ErrorLog(models.Model): """ - Logs that a final exam schedule has been viewed + Logs errors that occur on the site. """ - student = models.ForeignKey(Student, null=True, default=None) - time_created = models.DateTimeField(auto_now_add=True) - school = models.CharField(max_length=50) + time_occurred = models.DateTimeField(auto_now_add=True) + message = models.CharField(max_length=1000) + name = models.CharField(max_length=100) + stack = models.TextField() + user = models.ForeignKey( + User, blank=True, null=True, on_delete=models.deletion.CASCADE + ) -class FacebookAlertView(models.Model): - """ - Logs that a continue with Facebook alert has been viewed - """ - student = models.ForeignKey(Student, null=True, default=None) - time_created = models.DateTimeField(auto_now_add=True) - school = models.CharField(max_length=50) + class Meta: + abstract = True + ordering = ["-time_occurred"] + + def __str__(self) -> str: + return f"{self.name}: {self.message}" -class FacebookAlertClick(models.Model): +class UIErrorLog(ErrorLog): """ - Logs that a continue with Facebook alert has been viewed + UI errors that occur in the React components """ - student = models.ForeignKey(Student, null=True, default=None) - time_created = models.DateTimeField(auto_now_add=True) - school = models.CharField(max_length=50) + + componentStack = models.TextField() diff --git a/analytics/serializers.py b/analytics/serializers.py new file mode 100644 index 0000000000..86ad559718 --- /dev/null +++ b/analytics/serializers.py @@ -0,0 +1,21 @@ +from rest_framework import serializers +from .models import UIErrorLog + + +class CurrentUserDefault(object): + def set_context(self, serializer_field): + self.user = serializer_field.context["request"].user + + def __call__(self): + return self.user if self.user.is_authenticated else None + + def __repr__(self): + return "%s()" % self.__class__.__name__ + + +class UIErrorLogSerializer(serializers.ModelSerializer): + user = serializers.HiddenField(default=CurrentUserDefault()) + + class Meta: + model = UIErrorLog + fields = "__all__" diff --git a/analytics/templates/analytics_dashboard.html b/analytics/templates/analytics_dashboard.html index 346646b83a..0f651a5ae0 100755 --- a/analytics/templates/analytics_dashboard.html +++ b/analytics/templates/analytics_dashboard.html @@ -1,207 +1,141 @@ -{% load staticfiles %} +{% load static %} - - - Semester.ly Analytics - - - - - - - - - - - - -
-
-
    -
  • Total number of Timetables: {{total_timetables}}

  • -
  • Total number of Shared timetables: {{total_shared_timetables}}

  • -
  • Total number of Personal timetables: {{total_personal_timetables}}

  • - -
  • Total signups: {{total_signups}}

  • -
  • Sign ups by permission

  • -
      - {% for permission, value in num_users_by_permission.items %} -
    • {{permission}}: {{value.0}} ({{value.1}}%)
    • - {% endfor %} -
    -
  • Total users with Chrome Notifications: {{num_users_chrome_notifs}}

  • -
  • Total number of calendar exports: {{total_calendar_exports}}

  • -
  • Number of Google calendar exports: {{google_calendar_exports}}

  • -
  • Number of ics calendar exports: {{ics_calendar_exports}}

  • -
  • Number of calendar exports by unique users: {{unique_users_calendar_exports}}

  • -
  • Number of final exam views: {{total_final_exam_views}}

  • -
  • Number of final exam views by unique users: {{unique_users_final_exam_views}}

  • -
  • Number of shared timetable views: {{total_shared_timetable_views}}

  • -
  • Number of shared course views: {{total_shared_course_views}}

  • -
  • Number of Facebook alert views: {{fb_alert_views}}

  • -
  • Number of Facebook alert views by unique users: {{unique_users_fb_alert_views}}

  • -
  • Number of Facebook alert clicks: {{fb_alert_clicks}}

  • -
  • Number of Facebook alert clicks by unique users: {{unique_users_fb_alert_clicks}}

  • -
- - - - - - - - + + + Semester.ly Analytics + + + + + + + + + + +
+
+
    +
  • +

    Total number of Timetables: {{total_timetables}}

    +
  • +
  • +

    Total number of Shared timetables: {{total_shared_timetables}}

    +
  • +
  • +

    Total number of Personal timetables: {{total_personal_timetables}}

    +
  • +
  • +

    Total signups: {{total_signups}}

    +
  • +
  • +

    Total number of calendar exports: {{total_calendar_exports}}

    +
  • +
  • +

    Number of calendar exports by unique users: {{unique_users_calendar_exports}}

    +
  • +
  • +

    Most popular courses in JHU:

    +
      +
    1. +
    + + + + - + + -

    Number of users by school:

    - -

    Number of users by class year:

    +

    Number of users by class year:

    +
    - -

    Number of timetables by school:

    - - -

    Number of timetables by semester:

    - - -

    Number of calendar exports by type:

    - - - - -

    Number of signups per day for the past week:

    +
    + +

    Number of users by major:

    +
    + +
    + +

    +
    +
    -

    Number of each reaction used:

    - + + - - - - + + + + + + - - + \ No newline at end of file diff --git a/analytics/tests.py b/analytics/tests.py index d66adb7c8a..5230f56e45 100644 --- a/analytics/tests.py +++ b/analytics/tests.py @@ -10,15 +10,60 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. +from django.contrib.auth.models import User +from rest_framework.test import APITestCase from helpers.test.test_cases import UrlTestCase +from .models import UIErrorLog class UrlsTest(UrlTestCase): - """ Test analytics/urls.py """ + """Test analytics/urls.py""" def test_urls_call_correct_views(self): - self.assertUrlResolvesToView('/analytics/', 'analytics.views.view_analytics_dashboard') - self.assertUrlResolvesToView('/robots.txt', 'analytics.views.view_analytics_dashboard') - self.assertUrlResolvesToView('/user/log_fb_alert_click/', 'analytics.views.log_facebook_alert_click') - self.assertUrlResolvesToView('/user/log_fb_alert_view/', 'analytics.views.log_facebook_alert_view') - self.assertUrlResolvesToView('/user/log_ical/', 'student.views.log_ical_export') + self.assertUrlResolvesToView( + "/analytics/", "analytics.views.view_analytics_dashboard" + ) + self.assertUrlResolvesToView( + "/robots.txt", "analytics.views.view_analytics_dashboard" + ) + self.assertUrlResolvesToView("/user/log_ical/", "student.views.log_ical_export") + self.assertUrlResolvesToView( + "/ui-error-logs/", "analytics.views.UIErrorLogCreateView" + ) + + +class UIErrorLogCreateViewTest(APITestCase): + def setUp(self): + self.request_data = { + "name": "test name", + "message": "test message", + "stack": "test stack", + "componentStack": "test componentStack", + } + self.user = User.objects.create_user( + username="user", email="student@jhu.edu", password="password" + ) + + def test_add_new_log(self): + response = self.client.post("/ui-error-logs/", self.request_data, format="json") + self.assertEqual(response.status_code, 201) + + self.assertEqual(1, len(UIErrorLog.objects.all())) + created = UIErrorLog.objects.all()[0] + self.assert_attributes(created, None) + + def test_add_new_log_logged_in(self): + self.client.force_login(self.user) + response = self.client.post("/ui-error-logs/", self.request_data, format="json") + self.assertEqual(response.status_code, 201) + + self.assertEqual(1, len(UIErrorLog.objects.all())) + created = UIErrorLog.objects.all()[0] + self.assert_attributes(created, self.user) + + def assert_attributes(self, created, user): + self.assertEqual(created.name, self.request_data["name"]) + self.assertEqual(created.message, self.request_data["message"]) + self.assertEqual(created.stack, self.request_data["stack"]) + self.assertEqual(created.componentStack, self.request_data["componentStack"]) + self.assertEqual(created.user, user) diff --git a/analytics/urls.py b/analytics/urls.py index 76c72bb835..e8b58afd59 100644 --- a/analytics/urls.py +++ b/analytics/urls.py @@ -10,20 +10,15 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from django.conf.urls import patterns, url -from django.contrib import admin +from django.conf.urls import re_path import analytics.views import student.views -admin.autodiscover() - -urlpatterns = patterns('', - url(r'^analytics/*$', analytics.views.view_analytics_dashboard), - url(r'^robots.txt*$', analytics.views.view_analytics_dashboard), - url(r'^user/log_fb_alert_click/*$', analytics.views.log_facebook_alert_click), - url(r'^user/log_fb_alert_view/*$', analytics.views.log_facebook_alert_view), - url(r'^user/log_ical/*$', student.views.log_ical_export), - url(r'^user/log_final_exam/*$', analytics.views.log_final_exam_view) -) +urlpatterns = [ + re_path(r"^analytics/*$", analytics.views.view_analytics_dashboard), + re_path(r"^robots.txt*$", analytics.views.view_analytics_dashboard), + re_path(r"^user/log_ical/*$", student.views.log_ical_export), + re_path(r"^ui-error-logs/*$", analytics.views.UIErrorLogCreateView.as_view()), +] diff --git a/analytics/views.py b/analytics/views.py index 3c32688074..1afa0626c0 100644 --- a/analytics/views.py +++ b/analytics/views.py @@ -11,174 +11,153 @@ # GNU General Public License for more details. import json -import urllib2 +import urllib.request +import urllib.error +import urllib.parse import heapq from dateutil import tz from datetime import timedelta, datetime -from django.shortcuts import render_to_response, get_object_or_404 +from django.shortcuts import render, get_object_or_404 from django.http import HttpResponse from django.template import RequestContext from django.views.decorators.csrf import csrf_exempt from django.http import Http404 - -from analytics.models import FinalExamModalView +from django.db.models import Count +from rest_framework import generics +from rest_framework.response import Response from student.models import Student from student.utils import get_student from student.models import * from analytics.models import * +from analytics.serializers import UIErrorLogSerializer from timetable.models import Semester from parsing.schools.active import ACTIVE_SCHOOLS -to_zone = tz.gettz('America/New_York') +to_zone = tz.gettz("America/New_York") + def view_analytics_dashboard(request): student = get_student(request) if student and student.user.is_staff: - # Number of time tables by school - total_timetables_by_school = {} - # timetables_per_hour = {} - # shared_timetables_per_hour = {} - for school in ACTIVE_SCHOOLS: - total_timetables_by_school[school] = number_timetables(school=school) - # timetables_per_hour[school] = number_timetables_per_hour(school=school) - # shared_timetables_per_hour[school] = number_timetables_per_hour(Timetable=SharedTimetable, school=school) - - # Number of users by permission - # TODO: Moves this array to somewhere else (like ACTIVE_SCHOOLS) total_signups = number_timetables(Timetable=Student) - - permissions = ["social_courses", "social_offerings", "social_all"] - num_users_by_permission = {} - for permission in permissions: - # TODO: hacky way of passing in permission as an identifier for parameter. - # Also have to use tuple for template to easily access %. - args = {"Timetable": Student, permission: True} - num_users = number_timetables(**args) - percent_users = format(float(num_users) / total_signups * 100, '.2f') - num_users_by_permission[permission] = (num_users, percent_users) - total_calendar_exports = number_timetables(Timetable=CalendarExport) - google_calendar_exports = number_timetables(Timetable=CalendarExport, is_google_calendar=True) - ics_calendar_exports = total_calendar_exports - google_calendar_exports - unique_users_calendar_exports = number_timetables(Timetable=CalendarExport, distinct="student") - - total_final_exam_views = number_timetables(Timetable=FinalExamModalView) - unique_users_final_exam_views = number_timetables(Timetable=FinalExamModalView, distinct="student") - total_shared_timetable_views = number_timetables(Timetable=SharedTimetableView) - total_shared_course_views = number_timetables(Timetable=SharedCourseView) - - fb_alert_views = number_timetables(Timetable=FacebookAlertView) - unique_users_fb_alert_views = number_timetables(Timetable=FacebookAlertView, distinct="student") - fb_alert_clicks = number_timetables(Timetable=FacebookAlertClick) - unique_users_fb_alert_clicks = number_timetables(Timetable=FacebookAlertClick, distinct="student") - - return render_to_response('analytics_dashboard.html', { - "signups_per_hour": number_timetables_per_hour( - Timetable=Student,start_delta_days=7, interval_delta_hours=24), - "total_timetables_by_school": json.dumps(total_timetables_by_school), - "total_timetables_by_semester": json.dumps(number_timetables_per_semester()), + unique_users_calendar_exports = number_timetables( + Timetable=CalendarExport, distinct="student" + ) + return render( + request, + "analytics_dashboard.html", + { "total_timetables": number_timetables(), "total_shared_timetables": number_timetables(Timetable=SharedTimetable), - "total_personal_timetables": number_timetables(Timetable=PersonalTimetable), + "total_personal_timetables": number_timetables( + Timetable=PersonalTimetable + ), "total_signups": total_signups, - "num_users_chrome_notifs": number_user_chrome_notifs(), - "num_users_by_permission": num_users_by_permission, - "num_users_by_class_year": json.dumps(number_students_by_year()), - "num_users_by_school": json.dumps(number_students_by_school()), - "number_of_reactions": json.dumps(number_of_reactions()), "total_calendar_exports": total_calendar_exports, - "google_calendar_exports": google_calendar_exports, - "ics_calendar_exports": ics_calendar_exports, "unique_users_calendar_exports": unique_users_calendar_exports, - "total_final_exam_views": total_final_exam_views, - "unique_users_final_exam_views": unique_users_final_exam_views, - "fb_alert_views": fb_alert_views, - "unique_users_fb_alert_views": unique_users_fb_alert_views, - "fb_alert_clicks": fb_alert_clicks, - "unique_users_fb_alert_clicks": unique_users_fb_alert_clicks, - "total_shared_timetable_views":total_shared_timetable_views, - "total_shared_course_views":total_shared_course_views, - "calendar_exports_by_type": json.dumps({"ics": ics_calendar_exports, "google": google_calendar_exports}), - "jhu_most_popular_courses": [], # needs to be refactored; was causing timeout on server because too slow - "uoft_most_popular_courses": [], # needs to be refactored; was causing timeout on server because too slow - "umd_most_popular_courses": [] # needs to be refactored; was causing timeout on server because too slow + "num_users_by_class_year": json.dumps(number_students_by_year()), + "num_users_by_major": json.dumps(number_students_by_major()), + "signups_per_day": number_timetables_per_hour( + Timetable=Student, start_delta_days=31, interval_delta_hours=24 + ), + "jhu_most_popular_courses": json.dumps( + most_popular_courses(n=5, school="jhu", Table=PersonalTimetable) + ), }, - context_instance=RequestContext(request)) + ) else: raise Http404 + def save_analytics_timetable(courses, semester, school, student=None): """Create an analytics time table entry.""" analytics_timetable = AnalyticsTimetable.objects.create( - semester=semester, - school=school, - time_created=datetime.now(), - student=student) + semester=semester, school=school, time_created=datetime.now(), student=student + ) analytics_timetable.courses.add(*courses) analytics_timetable.save() -def save_analytics_course_search(query, courses, semester, school, student=None, advanced=False): + +def save_analytics_course_search( + query, courses, semester, school, student=None, advanced=False +): """Create an analytics course search entry.""" course_search = AnalyticsCourseSearch.objects.create( query=query, semester=semester, school=school, student=student, - is_advanced=advanced) + is_advanced=advanced, + ) course_search.courses.add(*courses) course_search.save() + def number_timetables(**parameters): """ Get the number of timetables filtered by any parameters. Use Timetable to specify the table to filter. """ - Timetable = parameters.pop("Timetable") if "Timetable" in parameters else AnalyticsTimetable + Timetable = ( + parameters.pop("Timetable") if "Timetable" in parameters else AnalyticsTimetable + ) timetables = Timetable.objects.all() if "time_start" in parameters and "time_end" in parameters: - timetables = ( - timetables.filter( - time_created__range=(parameters.pop("time_start"), parameters.pop("time_end")) + timetables = timetables.filter( + time_created__range=( + parameters.pop("time_start"), + parameters.pop("time_end"), ) ) if "distinct" in parameters: timetables = timetables.distinct(parameters.pop("distinct")) timetables = timetables.filter( - **{param: val for (param, val) in parameters.iteritems() if val is not None}) + **{param: val for (param, val) in parameters.items() if val is not None} + ) return timetables.count() -def number_timetables_per_hour(Timetable=AnalyticsTimetable, school=None, - start_delta_days=1, interval_delta_hours=1): + +def number_timetables_per_hour( + Timetable=AnalyticsTimetable, + school=None, + start_delta_days=1, + interval_delta_hours=1, +): """ Get the number of time tables created each hour. Can be used for analytics or shared time tables. """ # TODO: Change start and end time. Currently set for past 24 hours. time_end = datetime.now() - length = timedelta(days = start_delta_days) + length = timedelta(days=start_delta_days) time_start = time_end - length time_delta = timedelta(hours=interval_delta_hours) num_timetables = [] while time_start < time_end: - num_timetables.append(number_timetables( - Timetable=Timetable, - school=school, - time_start=time_start, - time_end=time_start + time_delta) + num_timetables.append( + number_timetables( + Timetable=Timetable, + school=school, + time_start=time_start, + time_end=time_start + time_delta, + ) ) time_start += time_delta return num_timetables + def number_timetables_per_semester(): num_timetables = {} for semester in Semester.objects.distinct(): num_timetables[str(semester)] = number_timetables(semester=semester) return num_timetables + def number_of_reactions(max_only=False): """ Get the the number of uses for each reaction. @@ -192,78 +171,79 @@ def number_of_reactions(max_only=False): reactions = Reaction.objects.filter(title=title) num_reactions[title] = len(reactions) if max_only: - return max(num_reactions.iterkeys(), key=num_reactions.get) + return max(iter(num_reactions.keys()), key=num_reactions.get) else: return num_reactions -def most_popular_courses(n, school, semester, Table=AnalyticsTimetable): + +def most_popular_courses(n, school, Table=AnalyticsTimetable, semester=None): """ Get the top n most popular courses searched (AnalyticsCourseSearch) or in timetable (AnalyticsTimetable). """ - num_courses = {} - link_to_courses = Table.objects.filter(school=school, semester=semester) - for link_to_course in link_to_courses: - for course in link_to_course.courses.all(): - if course.id in num_courses: - num_courses[course.id] += 1 - else: - num_courses[course.id] = 1 - course_ids = heapq.nlargest(n, num_courses, num_courses.get) - return Course.objects.filter(pk__in = course_ids) + if semester is None: + course_counts = ( + Table.objects.filter(school=school) + .values("courses") + .annotate(count=Count("courses")) + .order_by("-count", "courses") + ) + else: + course_counts = ( + Table.objects.filter(school=school, semester=semester) + .values("courses") + .annotate(count=Count("courses")) + .order_by("-count", "courses") + ) + course_ids = [cc["courses"] for cc in course_counts[:n]] + course_list = [course.name for course in Course.objects.filter(pk__in=course_ids)] + return course_list + def number_students_by_year(): """Get the number of students by class year.""" - valid_class_years = Student.objects.values("class_year").distinct() - count_class_years = {} - for class_year in valid_class_years: - count_class_years[class_year["class_year"]] = \ - Student.objects.filter(class_year=class_year["class_year"]).count() - return count_class_years + count_class_years = ( + Student.objects.values("class_year") + .annotate(count=Count("id")) + .order_by("class_year") + ) + return { + class_year["class_year"]: class_year["count"] + for class_year in count_class_years + } + + +def number_students_by_major(top_majors=25): + """Get the number of students by major, condensing small majors + into an 'Other' category and displaying only the top majors.""" + count_majors = ( + Student.objects.values("major").annotate(count=Count("id")).order_by("-count") + ) + other_count = 0 + for major in count_majors[top_majors:]: + other_count += major["count"] + top_majors_count = { + major["major"]: major["count"] for major in count_majors[:top_majors] + } + top_majors_count["Other"] = other_count + return top_majors_count + def number_students_by_school(): result = {} for school in ACTIVE_SCHOOLS: - ids = PersonalTimetable.objects.filter(school=school)\ - .values_list("student", flat=True)\ - .distinct() - students = Student.objects.filter(id__in=ids) | Student.objects.filter(school=school) + ids = ( + PersonalTimetable.objects.filter(school=school) + .values_list("student", flat=True) + .distinct() + ) + students = Student.objects.filter(id__in=ids) | Student.objects.filter( + school=school + ) result[school] = students.count() return result -def number_user_chrome_notifs(): - return RegistrationToken.objects.values_list("student", flat=True).distinct().count() -@csrf_exempt -def log_facebook_alert_view(request): - try: - student = Student.objects.get(user=request.user) - except: - student = None - FacebookAlertView.objects.create( - student=student, - school=request.subdomain - ).save() - return HttpResponse(json.dumps({}), content_type="application/json") - -@csrf_exempt -def log_facebook_alert_click(request): - try: - student = Student.objects.get(user=request.user) - except: - student = None - FacebookAlertClick.objects.create( - student=student, - school=request.subdomain - ).save() - return HttpResponse(json.dumps({}), content_type="application/json") - - -@csrf_exempt -def log_final_exam_view(request): - student = get_object_or_404(Student, user=request.user) - FinalExamModalView.objects.create( - student=student, - school=request.subdomain - ).save() - return HttpResponse(json.dumps({}), content_type="application/json") \ No newline at end of file +class UIErrorLogCreateView(generics.CreateAPIView): + serializer_class = UIErrorLogSerializer + queryset = UIErrorLog.objects.all() diff --git a/authpipe/__init__.py b/authpipe/__init__.py index c53afacbff..defc0f99ee 100644 --- a/authpipe/__init__.py +++ b/authpipe/__init__.py @@ -9,4 +9,3 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - diff --git a/authpipe/apps.py b/authpipe/apps.py index 288fe471e5..9bab0d40fd 100644 --- a/authpipe/apps.py +++ b/authpipe/apps.py @@ -10,10 +10,9 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import unicode_literals - from django.apps import AppConfig class AuthpipeConfig(AppConfig): - name = 'authpipe' + name = "authpipe" + verbose_name = "Authentication Pipeline" diff --git a/authpipe/migrations/__init__.py b/authpipe/migrations/__init__.py index 48cb47ffcf..54cb057c9e 100644 --- a/authpipe/migrations/__init__.py +++ b/authpipe/migrations/__init__.py @@ -11,4 +11,3 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. """ - diff --git a/authpipe/models.py b/authpipe/models.py index 2003a3876f..cc8dcdbb31 100644 --- a/authpipe/models.py +++ b/authpipe/models.py @@ -10,8 +10,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import unicode_literals - from django.db import models # Create your models here. diff --git a/authpipe/tests.py b/authpipe/tests.py index 8a4e0edaf2..5b02f2e5ec 100644 --- a/authpipe/tests.py +++ b/authpipe/tests.py @@ -11,84 +11,36 @@ # GNU General Public License for more details. from rest_framework import status -from rest_framework.test import APITestCase - -from student.models import RegistrationToken +from rest_framework.test import APITestCase, APIRequestFactory from helpers.test.test_cases import UrlTestCase +from helpers.test.utils import ( + create_user, + create_student, + get_response, + get_auth_response, +) class UrlsTest(UrlTestCase): - """ Test student/urls.py """ + """Test student/urls.py""" def test_urls_call_correct_views(self): - # auth + # facebook login self.assertUrlResolvesToView( - '/login/facebook/', - 'social:begin', - kwargs={ - 'backend': 'facebook'}) + "/login/facebook/", "social:begin", kwargs={"backend": "facebook"} + ) self.assertUrlResolvesToView( - '/complete/facebook/', - 'social:complete', - kwargs={ - 'backend': 'facebook'}) + "/complete/facebook/", "social:complete", kwargs={"backend": "facebook"} + ) - # registration + # jhed login self.assertUrlResolvesToView( - '/registration-token/', - 'authpipe.views.RegistrationTokenView') - self.assertUrlResolvesToView('/registration-token/google/', 'authpipe.views.RegistrationTokenView', - kwargs={'endpoint': 'google'}) - - -class TestToken(APITestCase): - """ Test setting and deleting tokens """ - school = 'uoft' - request_headers = { - 'HTTP_HOST': '{}.sem.ly:8000'.format(school) - } - - def test_create_token(self): - """ Test creating a new token. """ - my_token = { - 'auth': 'someauth', - 'p256dh': 'something', - 'endpoint': 'some endpoint' - } - - response = self.client.put( - '/registration-token/', - data=my_token, - format='json', - **self.request_headers) - self.assertEqual(response.status_code, status.HTTP_201_CREATED) - self.assertDictContainsSubset(my_token, response.json()) - self.assertIsNotNone( - RegistrationToken.objects.get( - endpoint='some endpoint')) - - def test_create_token_student(self): - """ Test creating a new token when logged in. """ - pass - - def test_set_token(self): - """ Test updating an existing token. """ - pass - - def test_delete_token_exists(self): - """ Test deleting an existing token. """ - token = RegistrationToken.objects.create( - auth='a', p256dh='p', endpoint='e') - response = self.client.delete( - '/registration-token/{}/'.format(token.endpoint), **self.request_headers) - self.assertEqual(response.status_code, status.HTTP_204_NO_CONTENT) - self.assertFalse( - RegistrationToken.objects.filter( - endpoint=token.endpoint).exists()) - - def test_delete_token_not_exists(self): - """ Test deleting a non existent token. """ - response = self.client.delete( - '/registration-token/bla/', - **self.request_headers) - self.assertEqual(response.status_code, status.HTTP_404_NOT_FOUND) + "/login/azuread-tenant-oauth2/", + "social:begin", + kwargs={"backend": "azuread-tenant-oauth2"}, + ) + self.assertUrlResolvesToView( + "/complete/azuread-tenant-oauth2/", + "social:complete", + kwargs={"backend": "azuread-tenant-oauth2"}, + ) diff --git a/authpipe/urls.py b/authpipe/urls.py index 71f9139317..ee12f66d02 100644 --- a/authpipe/urls.py +++ b/authpipe/urls.py @@ -10,20 +10,13 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from django.conf.urls import include, patterns, url -from django.contrib import admin +from django.conf.urls import include, re_path import authpipe.views -admin.autodiscover() - -urlpatterns = patterns('', - # auth - url('', include('social.apps.django_app.urls', namespace='social')), - url('', include('django.contrib.auth.urls', namespace='auth')), - - # device token registration - url(r'^registration-token/$', authpipe.views.RegistrationTokenView.as_view()), - url(r'^registration-token/(?P.+?)/', authpipe.views.RegistrationTokenView.as_view()) - ) +urlpatterns = [ + # auth + re_path("", include("social_django.urls", namespace="social")), + re_path("", include(("django.contrib.auth.urls", "auth"), namespace="auth")), +] diff --git a/authpipe/utils.py b/authpipe/utils.py index 663382c8ea..debff3a94f 100644 --- a/authpipe/utils.py +++ b/authpipe/utils.py @@ -11,8 +11,7 @@ # GNU General Public License for more details. import json -import urllib2 - +from urllib.request import Request, urlopen import requests from django.conf import settings from django.contrib.auth.models import User @@ -22,7 +21,7 @@ from student.models import Student from semesterly.settings import get_secret -hashids = Hashids(salt=get_secret('HASHING_SALT')) +hashids = Hashids(salt=get_secret("HASHING_SALT")) def check_student_token(student, token): @@ -31,7 +30,7 @@ def check_student_token(student, token): matches the currently authenticated student. """ try: - key = '%s:%s' % (student.id, token) + key = "%s:%s" % (student.id, token) TimestampSigner().unsign(key, max_age=60 * 60 * 48) # Valid for 2 days except (BadSignature, SignatureExpired): return False @@ -42,91 +41,115 @@ def associate_students(strategy, details, response, user, *args, **kwargs): """ Part of our custom Python Social Auth authentication pipeline. If a user already has an account associated with an email, associates that user with - the new backend. + the new provider (e.g. Facebook, JHED, or Google). """ + try_associate_email(**kwargs) + try_associate_jhed(response, **kwargs) + try_associate_token(strategy, **kwargs) + return kwargs + + +def try_associate_email(**kwargs): + try: + email = kwargs["details"]["email"] + kwargs["user"] = User.objects.get(email=email) + except BaseException: + pass + + +def try_associate_jhed(response, **kwargs): try: - email = kwargs['details']['email'] - kwargs['user'] = User.objects.get(email=email) + jhed = response["unique_name"] + student = Student.objects.get(jhed=jhed) + kwargs["user"] = student.user except BaseException: pass + + +def try_associate_token(strategy, **kwargs): try: - token = strategy.session_get('student_token') - ref = strategy.session_get('login_hash') + token = strategy.session_get("student_token") + ref = strategy.session_get("login_hash") student = Student.objects.get(id=hashids.decrypt(ref)[0]) if check_student_token(student, token): - kwargs['user'] = student.user + kwargs["user"] = student.user except BaseException: pass - return kwargs def create_student(strategy, details, response, user, *args, **kwargs): """ Part of the Python Social Auth pipeline which creates a student upon signup. If student already exists, updates information from Facebook - or Google (depending on the backend). - + or Google (depending on the provider). Saves friends and other information to fill database. """ - backend_name = kwargs['backend'].name - if Student.objects.filter(user=user).exists(): - new_student = Student.objects.get(user=user) - else: - new_student = Student(user=user) - new_student.save() - social_user = user.social_auth.filter( - provider=backend_name, - ).first() - - if backend_name == 'google-oauth2' and not user.social_auth.filter( - provider='facebook').exists(): - try: - access_token = social_user.extra_data["access_token"] - except TypeError: - access_token = json.loads(social_user.extra_data)["access_token"] - response = requests.get( - 'https://www.googleapis.com/userinfo/v2/me'.format( - social_user.uid, - get_secret('GOOGLE_API_KEY')), - params={'access_token': access_token} - ) - new_student.img_url = response.json()['picture'] - new_student.save() - - elif backend_name == 'facebook': - - try: - access_token = social_user.extra_data["access_token"] - except TypeError: - access_token = json.loads(social_user.extra_data)["access_token"] - - if social_user: - new_student.img_url = 'https://graph.facebook.com/' + social_user.uid + '/picture?type=normal' - url = u'https://graph.facebook.com/{0}/' \ - u'&access_token={1}'.format( - social_user.uid, - access_token, - ) - request = urllib2.Request(url) - new_student.fbook_uid = social_user.uid - new_student.save() - url = u'https://graph.facebook.com/{0}/' \ - u'friends?fields=id' \ - u'&access_token={1}'.format( - social_user.uid, - access_token, - ) - request = urllib2.Request(url) - friends = json.loads(urllib2.urlopen(request).read()).get('data') - - for friend in friends: - if Student.objects.filter(fbook_uid=friend['id']).exists(): - friend_student = Student.objects.get( - fbook_uid=friend['id']) - if not new_student.friends.filter( - user=friend_student.user).exists(): - new_student.friends.add(friend_student) - new_student.save() - friend_student.save() - + backend_name = kwargs["backend"].name + student, _ = Student.objects.get_or_create(user=user) + social_user = user.social_auth.filter(provider=backend_name).first() + hasFacebook = user.social_auth.filter(provider="facebook").exists() + if backend_name == "facebook": + update_student_facebook(student, social_user) + elif backend_name == "azuread-tenant-oauth2": + update_student_jhed(student, response) + elif backend_name == "google-oauth2": + update_student_google(student, social_user, hasFacebook) + student.save() return kwargs + + +def update_student_facebook(student, social_user): + try: + access_token = social_user.extra_data["access_token"] + except TypeError: + access_token = json.loads(social_user.extra_data)["access_token"] + + student.img_url = ( + f"https://graph.facebook.com/v9.0/{social_user.uid}/picture?type=normal" + ) + student.fbook_uid = social_user.uid + friends = get_facebook_friends(social_user, access_token) + update_facebook_friends(student, friends) + + +def get_facebook_friends(social_user, access_token): + url = ( + f"https://graph.facebook.com/{social_user.uid}" + f"/friends?fields=id&access_token={access_token}" + ) + request = Request(url) + return json.loads(urlopen(request).read().decode("utf-8")).get("data") + + +def update_facebook_friends(student, friends): + for friend in friends: + if Student.objects.filter(fbook_uid=friend["id"]).exists(): + friend_student = Student.objects.get(fbook_uid=friend["id"]) + if not student.friends.filter(user=friend_student.user).exists(): + student.friends.add(friend_student) + friend_student.save() + + +def update_student_jhed(student, response): + student.jhed = response["unique_name"] + student.preferred_name = response["name"] + + +def update_student_google(student, social_user, hasFacebook): + try: + access_token = social_user.extra_data["access_token"] + except TypeError: + access_token = json.loads(social_user.extra_data)["access_token"] + # prioritize facebook picture if available + if not hasFacebook: + set_img_url_google(student, social_user, access_token) + + +def set_img_url_google(student, social_user, access_token): + response = requests.get( + "https://www.googleapis.com/userinfo/v2/me".format( + social_user.uid, get_secret("GOOGLE_API_KEY") + ), + params={"access_token": access_token}, + ) + student.img_url = response.json()["picture"] diff --git a/authpipe/views.py b/authpipe/views.py index 917c333f67..defc0f99ee 100644 --- a/authpipe/views.py +++ b/authpipe/views.py @@ -9,45 +9,3 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - -from django.forms import model_to_dict -from rest_framework.views import APIView -from rest_framework.response import Response -from rest_framework import status - -from student.models import RegistrationToken -from student.utils import get_student -from helpers.mixins import ValidateSubdomainMixin - - -class RegistrationTokenView(ValidateSubdomainMixin, APIView): - """ - Handles registration and deletion of tokens for maintaining - chrome notifications for users who choose to enable the feature. - """ - - def put(self, request): - """ - Creates a notification token for the user. - """ - token = request.data - school = request.subdomain - student = get_student(request) - token, _ = RegistrationToken.objects.update_or_create(auth=token['auth'], - p256dh=token['p256dh'], - endpoint=token['endpoint']) - if student: - token.student = student - token.save() - student.school = school - student.save() - - return Response(model_to_dict(token), status=status.HTTP_201_CREATED) - - def delete(self, request, endpoint): - to_delete = RegistrationToken.objects.filter(endpoint=endpoint) - if to_delete.exists(): - to_delete.delete() - return Response(status=status.HTTP_204_NO_CONTENT) - else: - return Response(status=status.HTTP_404_NOT_FOUND) diff --git a/build/install_chrome.sh b/build/install_chrome.sh new file mode 100755 index 0000000000..d54168b56c --- /dev/null +++ b/build/install_chrome.sh @@ -0,0 +1,14 @@ +#!/bin/bash +# Install chrome on local docker environment +# You can run this from your web container shell: +# /code/build/install_chrome.sh + +export DEBIAN_FRONTEND=noninteractive +apt update +apt install wget + +cd /tmp +wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb +apt install ./google-chrome-stable_current_amd64.deb +rm google-chrome-stable_current_amd64.deb + diff --git a/build/local_settings.py b/build/local_settings.py index 62f70a6e0f..0e99470edc 100644 --- a/build/local_settings.py +++ b/build/local_settings.py @@ -1,7 +1,7 @@ import os -DEBUG = False +DEBUG = False TEMPLATE_DEBUG = DEBUG # This configuration relies on environment variables for DB settings diff --git a/build/run_parser.sh b/build/run_parser.sh index 4ecdde0a35..9cb97e4269 100644 --- a/build/run_parser.sh +++ b/build/run_parser.sh @@ -3,19 +3,12 @@ echo starting; cd /code # TODO: No params does not honor active-only semesters, this is hardcoded for now -/usr/bin/python manage.py ingest jhu --term Spring --years 2018; -/usr/bin/python manage.py digest jhu; - - -/usr/bin/python manage.py ingest jhu --term Fall --years 2018; -/usr/bin/python manage.py digest jhu; - -/usr/bin/python manage.py ingest jhu --term Spring --years 2019; -/usr/bin/python manage.py digest jhu; - +python3 manage.py ingest jhu --term Fall --years 2024; +python3 manage.py digest jhu; +python3 manage.py digest jhu --types evals; # Run all #/usr/bin/python manage.py ingest jhu #/usr/bin/python manage.py digest jhu -echo done; \ No newline at end of file +echo done; diff --git a/build/semesterly-base/Dockerfile b/build/semesterly-base/Dockerfile index d7422e992d..160b1c394b 100644 --- a/build/semesterly-base/Dockerfile +++ b/build/semesterly-base/Dockerfile @@ -1,20 +1,18 @@ -FROM ubuntu:bionic +FROM semesterly.azurecr.io/python:3.8.5 RUN apt-get update - RUN apt-get install -y \ - python-pip \ + python3-pip \ libpq-dev \ libxml2-dev \ libxslt-dev \ git \ - curl \ - nginx + curl -# Install node 8.x -RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - +# Install node 14.x +RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - RUN apt-get install -y nodejs # This saves some build time by installing base requirements ADD ./requirements_base.txt /tmp -RUN pip install -r /tmp/requirements_base.txt \ No newline at end of file +RUN pip3 install -r /tmp/requirements_base.txt diff --git a/build/semesterly-base/Readme.md b/build/semesterly-base/Readme.md index 12dc09f3e1..4396f104ca 100644 --- a/build/semesterly-base/Readme.md +++ b/build/semesterly-base/Readme.md @@ -1,5 +1,8 @@ This builds the base image we use. To update: +``` +docker build -t semesterly-base-py3 . -docker build -t semesterly-base . -docker tag semesterly-base:latest jhuopensource/semesterly-base:latest -docker push jhuopensource/semesterly-base:latest +docker tag semesterly-base-py3:latest jhuopensource/semesterly-base-py3:latest + +docker push jhuopensource/semesterly-base-py3:latest +``` \ No newline at end of file diff --git a/build/semesterly-base/requirements_base.txt b/build/semesterly-base/requirements_base.txt index 202c2a8338..e483e224a7 100644 --- a/build/semesterly-base/requirements_base.txt +++ b/build/semesterly-base/requirements_base.txt @@ -1,73 +1,57 @@ -autopep8==1.3.1 -beautifulsoup4==4.4.1 -bs4==0.0.1 -celery==3.1.25 -Cheetah==2.4.4 -colorama==0.2.5 -configobj==4.7.2 -coreapi==2.3.0 -coverage==4.3.4 -dateparser==0.6.0 -Django==1.9.2 -django-cachalot==1.4.1 -django-celery==3.1.17 -django-celery-beat==1.0.1 -django-extensions==1.6.7 -django-picklefield==0.3.2 -djangorestframework==3.6.2 -django-rest-swagger==2.1.2 -django-webpack-loader==0.4.1 -fake-useragent==0.1.8 -fuzzywuzzy==0.10.0 -google-api-python-client==1.6.1 -gunicorn==17.5 -hashids==1.1.0 -html5lib==0.999 -interruptingcow==0.6 -jsondiff==1.1.0 -jsonfield==2.0.1 -jsonpatch==1.3 -jsonpointer==1.0 -jsonschema==2.5.1 -lxml==3.6.0 -Markdown==2.6.6 -mock==2.0.0 -nltk==3.2.1 -numpy==1.13.1 -oauth==1.0.1 -oauthlib==1.1.1 -pep8==1.7.0 -prettytable==0.7.2 -progressbar2==3.32.1 -psycopg2==2.7.1 -PyJWT==1.4.0 -pyserial==2.6 -python-amazon-simple-product-api==2.2.11 -python-dateutil==2.5.3 -python-memcached==1.58 -python-openid==2.2.5 -python-social-auth==0.2.19 -python-utils==2.0.0 -pytz==2016.4 -pywebpush==1.7.0 -PyYAML==3.10 -recommonmark==0.4.0 -redis==2.10.5 -requests==2.20.0 -requests-oauthlib==0.6.1 -rollbar==0.13.11 -scikit-learn==0.18.1 -scipy==0.19.1 -selenium==2.53.2 -simplejson==3.10.0 -six==1.10.0 -South==0.7.5 -Sphinx==1.5.1 -sphinx-autobuild==0.6.0 -sphinxcontrib-inlinesyntaxhighlight==0.2 -sphinx-rtd-theme==0.1.9 -ssh-import-id==3.21 -supervisor==3.3.1 -toolz==0.7.4 -urllib3==1.24.1 -virtualenv==1.11.4 +setuptools==65.5.1 +Pygments==2.15.0 +Sphinx==4.0.2 +alabaster==0.7.10 +argparse==1.4.0 +beautifulsoup4==4.6.0 +black==24.3.0 +bs4==0.0.1 +django-ckeditor==6.2.0 +celery==5.2.2 +coverage==4.4.1 +cryptography==41.0.4 +dateparser==1.1.0 +Django==3.2.23 +django-cachalot==2.4.3 +django-extensions==3.1.5 +django-picklefield==3.0.1 +django-webpack-loader==0.7.0 +djangorestframework==3.12.2 +drf-yasg==1.20.0 +future==0.18.3 +futures==3.1.1 +fuzzywuzzy==0.15.1 +gunicorn==19.7.1 +hashids==1.2.0 +interruptingcow==0.7 +jsondiff==1.1.1 +jsonschema==3.2.0 +lxml==4.9.1 +mock==2.0.0 +nltk==3.6.6 +numpy==1.22.0 +oauth2client==4.1.2 +progressbar2==3.34.2 +psycopg2-binary==2.8.6 +pycodestyle==2.6.0 +python-dateutil==2.8.2 +social-auth-core==4.0.3 +social-auth-app-django==4.0.0 +python-memcached==1.59 +python-social-auth==0.2.21 +pytz==2017.2 +pywebpush==1.4.0 +PyJWT[crypto]==2.3.0 +PyYAML==6.0 +regex==2022.3.2 +requests==2.31.0 +rollbar==0.16.1 +scipy==1.10.0 +selenium==4.1.3 +simplejson==3.11.1 +sphinx-autobuild==2021.3.14 +sphinx-rtd-theme==0.5.2 +sphinxcontrib-inlinesyntaxhighlight==0.2 +sphinxcontrib-websupport==1.2.4 +supervisor==4.2.2 +webdriver-manager==3.5.2 diff --git a/build/semesterly-nginx/Dockerfile b/build/semesterly-nginx/Dockerfile index c455525794..04ae542530 100644 --- a/build/semesterly-nginx/Dockerfile +++ b/build/semesterly-nginx/Dockerfile @@ -1,4 +1,11 @@ -FROM nginx:latest +ARG djangoTag=0 +ARG djangoImage=semesterly.azurecr.io/semesterly:$djangoTag + +# This is just to create an alias +FROM $djangoImage as latestDjango + +FROM nginx:1.21.4 + # Need curl for health checks RUN apt-get update && apt-get install -y curl && apt-get clean @@ -8,4 +15,6 @@ COPY ./50x.html /usr/share/nginx/html/50x.html # Get assets RUN mkdir /code -COPY --from=896112238827.dkr.ecr.us-east-1.amazonaws.com/semesterly:latest /code/static /code/static \ No newline at end of file + +RUN echo ${DJANGOTAG} +COPY --from=latestDjango /code/static /code/static \ No newline at end of file diff --git a/build/semesterly-nginx/nginx.conf b/build/semesterly-nginx/nginx.conf index 3570e36d99..bc7134c1b7 100644 --- a/build/semesterly-nginx/nginx.conf +++ b/build/semesterly-nginx/nginx.conf @@ -1,13 +1,13 @@ user nginx; -worker_processes 1; +worker_processes 16; error_log /var/log/nginx/error.log warn; pid /var/run/nginx.pid; events { - worker_connections 1024; + worker_connections 16384; } @@ -39,7 +39,7 @@ http { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; - proxy_pass http://localhost:8000; + proxy_pass http://127.0.0.1:8000; } # redirect server error pages to the static page /50x.html diff --git a/courses/__init__.py b/courses/__init__.py index c53afacbff..defc0f99ee 100644 --- a/courses/__init__.py +++ b/courses/__init__.py @@ -9,4 +9,3 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - diff --git a/courses/apps.py b/courses/apps.py index 86ee189c50..9ea256abde 100644 --- a/courses/apps.py +++ b/courses/apps.py @@ -10,10 +10,8 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import unicode_literals - from django.apps import AppConfig class CoursesConfig(AppConfig): - name = 'courses' + name = "courses" diff --git a/courses/migrations/__init__.py b/courses/migrations/__init__.py index 48cb47ffcf..54cb057c9e 100644 --- a/courses/migrations/__init__.py +++ b/courses/migrations/__init__.py @@ -11,4 +11,3 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. """ - diff --git a/courses/models.py b/courses/models.py index 2003a3876f..cc8dcdbb31 100644 --- a/courses/models.py +++ b/courses/models.py @@ -10,8 +10,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import unicode_literals - from django.db import models # Create your models here. diff --git a/courses/serializers.py b/courses/serializers.py index ee4356ed03..3be9668c84 100644 --- a/courses/serializers.py +++ b/courses/serializers.py @@ -16,30 +16,30 @@ from django.db import models from rest_framework import serializers -from timetable.models import Course, Section, Evaluation, CourseIntegration, Integration, Semester -import utils +from timetable.models import Course, Section, Evaluation, Semester, Offering +from . import utils class EvaluationSerializer(serializers.ModelSerializer): class Meta: model = Evaluation - fields = '__all__' + fields = "__all__" class CourseSerializer(serializers.ModelSerializer): """ - Serialize a Course into a dictionary with detailed information about the course, and all - related entities (eg Sections). Used for search results and course modals. + Serialize a Course into a dictionary with detailed information about the course, and + all related entities (eg Sections). Used for search results and course modals. + Takes a context with parameters: school: str (required) semester: Semester (required) student: Student (optional) """ + evals = serializers.SerializerMethodField() - integrations = serializers.SerializerMethodField() related_courses = serializers.SerializerMethodField() reactions = serializers.SerializerMethodField() - textbooks = serializers.SerializerMethodField() regexed_courses = serializers.SerializerMethodField() popularity_percent = serializers.SerializerMethodField() is_waitlist_only = serializers.SerializerMethodField() @@ -48,135 +48,188 @@ class CourseSerializer(serializers.ModelSerializer): def get_evals(self, course): """ - Flag all eval instances s.t. there exists repeated term+year values. - Return: + Append all eval instances with a flag designating whether there exists another eval for the course with the same term+year values. + Returns: List of modified evaluation dictionaries (added flag 'unique_term_year') """ - evals = map(model_to_dict, Evaluation.objects.filter(course=course).order_by('year')) - years = Evaluation.objects.filter(course=course).values('year').annotate(models.Count('id')) \ - .filter(id__count__gt=1).values_list('year') + evals = list( + map( + model_to_dict, Evaluation.objects.filter(course=course).order_by("year") + ) + ) + years = ( + Evaluation.objects.filter(course=course) + .values("year") + .annotate(models.Count("id")) + .filter(id__count__gt=1) + .values_list("year") + ) years = {e[0] for e in years} for course_eval in evals: - course_eval['unique_term_year'] = not course_eval['year'] in years + course_eval["unique_term_year"] = course_eval["year"] not in years return evals - def get_integrations(self, course): - ids = CourseIntegration.objects.filter(course__id=course.id).values_list("integration", - flat=True) - return list(Integration.objects.filter(id__in=ids).values_list("name", flat=True)) - - # TODO: use course serializer but only recurse one level def get_related_courses(self, course): - info = [] - related = course.related_courses.filter( - section__semester=self.context['semester']).distinct()[:5] - for course in related: - info.append(model_to_dict(course, exclude=['related_courses', 'unstopped_description'])) - return info + # Related courses are currently out-dated, and appears to be inefficiently + # mapped, as it requires a .distinct() call to work properly. This takes a + # substantial amount of query time, yet the information is tangentially useful, + # so it is disabled until someone decides to maintain it. - def get_reactions(self, course): - return course.get_reactions(self.context.get('student')) + return [] - def get_textbooks(self, course): - sections = course.section_set.filter(semester=self.context['semester']) - return {section.meeting_section: section.get_textbooks() for section in sections} + # related = course.related_courses.filter( + # section__semester=self.context["semester"] + # ).distinct()[:5] + # return [ + # model_to_dict(course, exclude=["related_courses", "unstopped_description"]) + # for course in related + # ] + + def get_reactions(self, course): + return course.get_reactions(self.context.get("student")) def get_regexed_courses(self, course): """ - Given course data, search for all occurrences of a course code in the course description and - prereq info and return a map from course code to course name for each course code. + Given course data, search for all occurrences of a course code in the course + description and prereq info and return a map from course code to course name for + each course code. """ school_to_course_regex = { - 'jhu': r'([A-Z]{2}\.\d{3}\.\d{3})', - 'uoft': r'([A-Z]{3}[A-Z0-9]\d{2}[HY]\d)', - 'vandy': r'([A-Z-&]{2,7}\s\d{4}[W]?)', - 'gw': r'([A-Z]{2,5}\s\d{4}[W]?)', - 'umich': r'([A-Z]{2,8}\s\d{3})', - 'chapman': r'([A-Z]{2,4}\s\d{3})', - 'salisbury': r'([A-Z]{3,4} \d{2,3})', + "jhu": r"([A-Z]{2}\.\d{3}\.\d{3})", + "uoft": r"([A-Z]{3}[A-Z0-9]\d{2}[HY]\d)", + "vandy": r"([A-Z-&]{2,7}\s\d{4}[W]?)", + "gw": r"([A-Z]{2,5}\s\d{4}[W]?)", + "umich": r"([A-Z]{2,8}\s\d{3})", + "chapman": r"([A-Z]{2,4}\s\d{3})", + "salisbury": r"([A-Z]{3,4} \d{2,3})", } course_code_to_name = {} - if self.context['school'] in school_to_course_regex: - course_code_matches = re.findall(school_to_course_regex[self.context['school']], - course.description + course.prerequisites) - # TODO: get all course objects in one db access + if self.context["school"] in school_to_course_regex: + course_code_matches = re.findall( + school_to_course_regex[self.context["school"]], + course.description + course.prerequisites, + ) + + courses = Course.objects.filter(school=self.context["school"]) for course_code in course_code_matches: try: - course = Course.objects.get(school=self.context['school'], - code__icontains=course_code) + course = courses.filter(code__icontains=course_code).get() course_code_to_name[course_code] = course.name except (Course.DoesNotExist, Course.MultipleObjectsReturned): pass return course_code_to_name def get_popularity_percent(self, course): - """ Return percentage of course capacity that is filled by registered students. """ - tts_with_course = course.personaltimetable_set.filter(semester=self.context['semester']) - num_students_in_course = tts_with_course.values('student').distinct().count() - sections = course.section_set.filter(semester=self.context['semester']) - course_capacity = sum(sections.values_list('size', flat=True)) if sections else 0 + """Return percentage of course capacity that is filled by registered + students. + """ + tts_with_course = course.personaltimetable_set.filter( + semester=self.context["semester"] + ) + num_students_in_course = tts_with_course.values("student").distinct().count() + # print("num students: " + str(num_students_in_course)) + sections = course.section_set.filter(semester=self.context["semester"]) + course_capacity = ( + sum(sections.values_list("size", flat=True)) if sections else 0 + ) return num_students_in_course / float(course_capacity) if course_capacity else 0 def get_is_waitlist_only(self, course): - return utils.is_waitlist_only(course, self.context['semester']) + return utils.is_waitlist_only(course, self.context["semester"]) def get_sections(self, course): - return [SectionSerializer(section).data - for section in course.section_set.filter(semester=self.context['semester'])] + return [ + SectionSerializer(section).data + for section in course.section_set.prefetch_related("offering_set").filter( + semester=self.context["semester"] + ) + ] class Meta: model = Course fields = ( - 'code', - 'name', - 'id', - 'description', - 'department', - 'num_credits', - 'areas', - 'campus', - 'evals', - 'integrations', - 'related_courses', - 'reactions', - 'textbooks', - 'regexed_courses', - 'popularity_percent', - 'sections', - 'prerequisites', - 'exclusions', - 'corequisites', - 'areas', - 'is_waitlist_only' + "code", + "name", + "id", + "description", + "department", + "num_credits", + "areas", + "campus", + "evals", + "related_courses", + "reactions", + "regexed_courses", + "popularity_percent", + "sections", + "prerequisites", + "exclusions", + "corequisites", + "areas", + "is_waitlist_only", + "pos", + "writing_intensive", + "sub_school", ) +class OfferingSerializer(serializers.ModelSerializer): + class Meta: + fields = "__all__" + model = Offering + + +class SemesterSerializer(serializers.ModelSerializer): + class Meta: + fields = "__all__" + model = Semester + + class SectionSerializer(serializers.ModelSerializer): + offering_set = OfferingSerializer(many=True) + semester = SemesterSerializer() + class Meta: model = Section fields = ( - 'id', - 'meeting_section', - 'size', - 'enrolment', - 'waitlist', - 'waitlist_size', - 'section_type', - 'instructors', - 'semester', - 'offering_set' + "id", + "meeting_section", + "size", + "enrolment", + "waitlist", + "waitlist_size", + "section_type", + "instructors", + "semester", + "offering_set", + "course_section_id", ) - depth = 1 # also serializer offerings -class SemesterSerializer(serializers.ModelSerializer): +class CourseSearchSerializer(serializers.ModelSerializer): + sections = serializers.SerializerMethodField() + + def get_sections(self, course): + return [ + SectionSerializer(section).data + for section in course.section_set.prefetch_related("offering_set").filter( + semester=self.context["semester"] + ) + ] + class Meta: - fields = '__all__' - model = Semester + model = Course + fields = fields = ( + "id", + "code", + "name", + "sections", + ) def get_section_dict(section): - """ Returns a dictionary of a section including indicator of whether that section is filled """ + """Returns a dictionary of a section including indicator of whether that section is + filled""" section_data = model_to_dict(section) - section_data['is_section_filled'] = section.is_full() + section_data["is_section_filled"] = section.is_full() return section_data diff --git a/courses/tests.py b/courses/tests.py index 925c079cbf..74243332e7 100644 --- a/courses/tests.py +++ b/courses/tests.py @@ -10,146 +10,939 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. +import json from django.test import TestCase from rest_framework import status -from rest_framework.test import APITestCase +from rest_framework.test import APITestCase, APIRequestFactory, force_authenticate +from courses.views import get_clean_evals, get_distinct_areas -from timetable.models import Semester, Course, Section, Offering +from timetable.models import ( + Semester, + Course, + Section, + Offering, + Evaluation, + Timetable, +) from parsing.models import DataUpdate from helpers.test.test_cases import UrlTestCase -from serializers import CourseSerializer +from .serializers import ( + CourseSerializer, + SectionSerializer, + SemesterSerializer, + get_section_dict, +) +from student.models import Student, Reaction +from django.contrib.auth.models import User +from student.models import PersonalTimetable +from helpers.test.utils import ( + create_user, + create_student, + get_response, + get_auth_response, +) +from analytics.models import SharedCourseView class Serializers(TestCase): - def test_course_serialization(self): - self.sem_name = 'Winter' - self.year = '1995' + def setUp(self): + self.sem_name = "Winter" + self.year = "1995" self.cid = 1 - self.name = 'Intro' - self.code = 'SEM101' - self.school = 'uoft' - sem = Semester.objects.create(name=self.sem_name, year=self.year) - course = Course.objects.create( - id=self.cid, - school=self.school, - code=self.code, - name=self.name) - section = Section.objects.create( - course=course, semester=sem, meeting_section='L1') + self.name = "Intro" + self.code = "SEM101" + self.school = "uoft" + self.sem = Semester.objects.create(name=self.sem_name, year=self.year) + self.course = Course.objects.create( + id=self.cid, school=self.school, code=self.code, name=self.name + ) + + self.section = Section.objects.create( + course=self.course, semester=self.sem, meeting_section="L1" + ) Offering.objects.create( - section=section, - day='M', - time_start='8:00', - time_end='10:00') + section=self.section, + day="M", + date_start="08-29-1995", + date_end="12-10-1995", + time_start="8:00", + time_end="10:00", + is_short_course=False, + ) + + def test_course_serialization_basic_attributes(self): + serialized = CourseSerializer( + self.course, + context={ + "semester": self.sem, + "school": self.school, + }, + ) + + self.assertTrue(serialized.data["code"] == self.code) + self.assertTrue(serialized.data["name"] == self.name) + self.assertTrue(serialized.data["id"] == self.cid) + + def valid_evals(self, evals): + for course_eval in evals: + if course_eval["year"] == self.year: + if course_eval["unique_term_year"]: + return False + else: + if not course_eval["unique_term_year"]: + return False + return True + + def test_course_serialization_get_evals(self): + Evaluation.objects.create( + course=self.course, + score=5.0, + summary="This class was great", + professor="prof", + course_code=self.code, + year=self.year, + ) + Evaluation.objects.create( + course=self.course, + score=1.0, + summary="This class was terrible", + professor="prof", + course_code=self.code, + year=self.year, + ) + Evaluation.objects.create( + course=self.course, + score=3.0, + summary="This class was meh", + professor="prof", + course_code=self.code, + year=str(int(self.year) + 1), + ) + Evaluation.objects.create( + course=self.course, + score=3.0, + summary="Loved it", + professor="prof", + course_code=self.code, + year=str(int(self.year) + 2), + ) + serialized = CourseSerializer( + self.course, + context={ + "semester": self.sem, + "school": self.school, + }, + ) + self.assertTrue(self.valid_evals(serialized.data["evals"])) + + # def test_course_serialization_get_related_courses(self): + # testSem = Semester.objects.create(name="Spring", year="2022") + # relatedCourseOne = Course.objects.create( + # id=2, school=self.school, code="SEM102", name="STAD1" + # ) + # courseOneSec = Section.objects.create( + # course=relatedCourseOne, + # meeting_section="01", + # size=10, + # enrolment=3, + # waitlist=0, + # waitlist_size=10, + # instructors="instructor", + # semester=self.sem, + # was_full=True, + # course_section_id=1, + # ) + # relatedCourseTwo = Course.objects.create( + # id=3, school=self.school, code="SEM103", name="STAD2" + # ) + # courseTwoSec = Section.objects.create( + # course=relatedCourseTwo, + # meeting_section="01", + # size=10, + # enrolment=3, + # waitlist=0, + # waitlist_size=10, + # instructors="instructor", + # semester=self.sem, + # was_full=True, + # course_section_id=1, + # ) + # relatedCourseThree = Course.objects.create( + # id=4, school=self.school, code="SEM104", name="STAD3" + # ) + # courseThreeSec = Section.objects.create( + # course=relatedCourseThree, + # meeting_section="01", + # size=10, + # enrolment=3, + # waitlist=0, + # waitlist_size=10, + # instructors="instructor", + # semester=self.sem, + # was_full=True, + # course_section_id=1, + # ) + # relatedCourseFour = Course.objects.create( + # id=5, school=self.school, code="SEM105", name="STAD4" + # ) + # courseFourSec = Section.objects.create( + # course=relatedCourseFour, + # meeting_section="01", + # size=10, + # enrolment=3, + # waitlist=0, + # waitlist_size=10, + # instructors="instructor", + # semester=self.sem, + # was_full=True, + # course_section_id=1, + # ) + # relatedCourseFive = Course.objects.create( + # id=6, school=self.school, code="SEM106", name="STAD5" + # ) + # courseFiveSec = Section.objects.create( + # course=relatedCourseFive, + # meeting_section="01", + # size=10, + # enrolment=3, + # waitlist=0, + # waitlist_size=10, + # instructors="instructor", + # semester=self.sem, + # was_full=True, + # course_section_id=1, + # ) + + # self.course.related_courses.add(relatedCourseOne) + # self.course.related_courses.add(relatedCourseTwo) + # self.course.related_courses.add(relatedCourseThree) + # self.course.related_courses.add(relatedCourseFour) + # self.course.related_courses.add(relatedCourseFive) + + # serialized = CourseSerializer( + # self.course, + # context={ + # "semester": self.sem, + # "school": self.school, + # }, + # ) + # data = serialized.data["related_courses"] + # self.assertTrue(data[0]["code"] == "SEM102") + # self.assertTrue(data[1]["code"] == "SEM103") + # self.assertTrue(data[2]["code"] == "SEM104") + # self.assertTrue(data[3]["code"] == "SEM105") + # self.assertTrue(data[4]["code"] == "SEM106") + + def test_get_reactions_no_student(self): + serialized = CourseSerializer( + self.course, + context={ + "semester": self.sem, + "school": self.school, + }, + ) + data = serialized.data["reactions"] + self.assertTrue(not data) + + def test_get_regexed_courses(self): + serialized = CourseSerializer( + self.course, + context={ + "semester": self.sem, + "school": self.school, + }, + ) + data = serialized.data["regexed_courses"] + # print(data) + + def test_get_reactions_with_student(self): + testSem = Semester.objects.create(name="Spring", year="2022") + + user1 = User.objects.create_user( + username="user", email="student@jhu.edu", password="password" + ) + student = Student.objects.create( + preferred_name="nickname", + class_year=2022, + user=user1, + img_url="no_url", + major="English", + ) + react = Reaction.objects.create(student=student, title="FIRE") + react.course.add(self.course) + serialized = CourseSerializer( + self.course, + context={"semester": self.sem, "school": self.school, "student": student}, + ) + data = serialized.data["reactions"] + self.assertTrue(data) + + def test_get_reactions_with_multiple_reviews_and_multiple_students(self): + testSem = Semester.objects.create(name="Spring", year="2022") + courseOne = Course.objects.create( + id=2, school=self.school, code="SEM102", name="STAD1" + ) - serialized = CourseSerializer(course, context={ - 'semester': sem, - 'school': self.school, - 'sections': [section], - }) + user1 = User.objects.create_user( + username="user", email="student@jhu.edu", password="password" + ) + user2 = User.objects.create_user( + username="person", email="staff@jhu.edu", password="password" + ) + student1 = Student.objects.create( + preferred_name="nickname", + class_year=2022, + user=user1, + img_url="no_url", + major="English", + ) + student2 = Student.objects.create( + preferred_name="nicknames", + class_year=2022, + user=user2, + img_url="no_url", + major="undecided", + ) + reaction1 = Reaction.objects.create(student=student1, title="FIRE") + reaction2 = Reaction.objects.create(student=student2, title="CRAP") + reaction1.course.add(self.course) + reaction2.course.add(self.course) + serialized = CourseSerializer( + self.course, + context={"semester": self.sem, "school": self.school, "student": student1}, + ) + data = serialized.data["reactions"] + self.assertTrue(data[0]["title"] == "CRAP") + self.assertTrue(data[1]["title"] == "FIRE") - self.assertTrue(serialized.data['code'] == self.code) + def test_get_popularity_percent_with_sections(self): + serialized = CourseSerializer( + self.course, + context={ + "semester": self.sem, + "school": self.school, + }, + ) + data = serialized.data["popularity_percent"] + self.assertTrue(data == -0.0) # TODO: why is it negative? + + def test_get_popularity_percent_without_sections(self): + testSem = Semester.objects.create(name="Spring", year="2022") + courseOne = Course.objects.create( + id=2, school=self.school, code="SEM102", name="STAD1" + ) + serialized = CourseSerializer( + courseOne, + context={ + "semester": testSem, + "school": self.school, + }, + ) + data = serialized.data["popularity_percent"] + self.assertTrue(data == 0.0) + + def test_get_is_waitlist_only_one_sec_full(self): + testSem = Semester.objects.create(name="Spring", year="2022") + courseOne = Course.objects.create( + id=2, school=self.school, code="SEM102", name="STAD1" + ) + courseOneSec1 = Section.objects.create( + course=courseOne, + meeting_section="01", + size=10, + enrolment=10, + waitlist=0, + waitlist_size=10, + instructors="instructor", + semester=self.sem, + was_full=False, + course_section_id=1, + ) + courseOneSec2 = Section.objects.create( + course=courseOne, + meeting_section="02", + size=10, + enrolment=0, + waitlist=0, + waitlist_size=10, + instructors="instructor", + semester=self.sem, + was_full=False, + course_section_id=1, + ) + serialized = CourseSerializer( + courseOne, + context={ + "semester": testSem, + "school": self.school, + }, + ) + data = serialized.data["is_waitlist_only"] + self.assertFalse(data) + + def test_get_is_waitlist_both_sec_full(self): + courseOne = Course.objects.create( + id=2, school=self.school, code="SEM102", name="STAD1" + ) + Section.objects.create( + course=courseOne, + meeting_section="01", + size=10, + enrolment=10, + waitlist=1, + waitlist_size=10, + instructors="instructor", + semester=self.sem, + was_full=False, + course_section_id=1, + ) + Section.objects.create( + course=courseOne, + meeting_section="02", + size=10, + enrolment=10, + waitlist=1, + waitlist_size=10, + instructors="instructor", + semester=self.sem, + was_full=False, + course_section_id=2, + ) + + serialized = CourseSerializer( + courseOne, + context={ + "semester": self.sem, + "school": self.school, + }, + ) + data = serialized.data["is_waitlist_only"] + self.assertTrue(data) + + def test_get_is_waitlist_no_sec(self): + testSem = Semester.objects.create(name="Spring", year="2022") + courseOne = Course.objects.create( + id=2, school=self.school, code="SEM102", name="STAD1" + ) + serialized = CourseSerializer( + courseOne, + context={ + "semester": testSem, + "school": self.school, + }, + ) + data = serialized.data["is_waitlist_only"] + self.assertFalse(data) + + def test_get_sections(self): + serialized_course = CourseSerializer( + self.course, + context={ + "semester": self.sem, + "school": self.school, + }, + ) + + serialized_sec = SectionSerializer(self.section) + + self.assertEqual(serialized_course.data["sections"][0], serialized_sec.data) + + # This function is literally never used + def test_get_section_dict_basic_info(self): + serialized_section = SectionSerializer( + self.section, + ) + + def test_SectionSerializer(self): + testSem = Semester.objects.create(name="Spring", year="2022") + courseOne = Course.objects.create( + id=25235, school=self.school, code="SEM102", name="STAD1" + ) + courseOneSec1 = Section.objects.create( + course=courseOne, + meeting_section="01", + size=10, + enrolment=10, + waitlist=1, + waitlist_size=10, + instructors="instructor", + semester=testSem, + was_full=False, + course_section_id=1, + ) + serialized_section = SectionSerializer( + courseOneSec1, + ) + serialized_semester = SemesterSerializer( + testSem, + ) + result = serialized_section.data + self.assertTrue(result["meeting_section"] == courseOneSec1.meeting_section) + self.assertTrue(result["size"] == courseOneSec1.size) + self.assertTrue(result["enrolment"] == courseOneSec1.enrolment) + self.assertTrue(result["waitlist"] == courseOneSec1.waitlist) + self.assertTrue(result["section_type"] == courseOneSec1.section_type) + self.assertTrue(result["instructors"] == courseOneSec1.instructors) + self.assertTrue(result["semester"] == serialized_semester.data) + + def test_SemesterSerializer(self): + testSem = Semester.objects.create(name="Spring", year="2022") + serialized_semester = SemesterSerializer(testSem) + data = serialized_semester.data + self.assertTrue(data["name"] == testSem.name) + self.assertTrue(data["year"] == testSem.year) + + def test_get_section_dict(self): + testSem = Semester.objects.create(name="Spring", year="2022") + courseOne = Course.objects.create( + id=25235, school=self.school, code="SEM102", name="STAD1" + ) + courseOneSec1 = Section.objects.create( + course=courseOne, + meeting_section="01", + size=10, + enrolment=10, + waitlist=1, + waitlist_size=10, + instructors="instructor", + semester=testSem, + was_full=False, + course_section_id=1, + ) + data = get_section_dict(courseOneSec1) + self.assertTrue(data["is_section_filled"]) + self.assertEquals(data["instructors"], "instructor") + self.assertEquals(data["size"], 10) + self.assertEquals(data["waitlist"], 1) class CourseDetail(APITestCase): - school = 'uoft' - search_endpoint = 'search' - request_headers = { - 'HTTP_HOST': '{}.sem.ly:8000'.format(school) - } + school = "uoft" + search_endpoint = "search" + request_headers = {"HTTP_HOST": "{}.sem.ly:8000".format(school)} def setUp(self): - self.sem_name = 'Winter' - self.year = '1995' + self.sem_name = "Winter" + self.year = "1995" self.cid = 1 - self.name = 'Intro' - self.code = 'SEM101' - sem = Semester.objects.create(name=self.sem_name, year=self.year) - course = Course.objects.create( - id=self.cid, - school=self.school, - code=self.code, - name=self.name) - section = Section.objects.create( - course=course, semester=sem, meeting_section='L1') + self.name = "Intro" + self.code = "SEM101" + self.sem = Semester.objects.create(name=self.sem_name, year=self.year) + self.course = Course.objects.create( + id=self.cid, school=self.school, code=self.code, name=self.name + ) + self.section = Section.objects.create( + course=self.course, semester=self.sem, meeting_section="L1" + ) Offering.objects.create( - section=section, - day='M', - time_start='8:00', - time_end='10:00') + section=self.section, + day="M", + date_start="08-29-1995", + date_end="12-10-1995", + time_start="8:00", + time_end="10:00", + is_short_course=False, + ) + self.user1 = User.objects.create_user( + username="student", email="student@jhu.edu", password="password" + ) + self.user2 = User.objects.create_user( + username="staff", email="staff@jhu.edu", password="password" + ) + self.student1 = Student.objects.create( + preferred_name="studentTester", + class_year=2022, + user=self.user1, + img_url="no_url", + major="English", + ) + self.student2 = Student.objects.create( + preferred_name="staffTester", + class_year=2022, + user=self.user2, + img_url="no_url", + major="undecided", + ) + self.factory = APIRequestFactory() + + def test_all_courses(self): + url = "/courses/" + request = self.factory.get(url, {}, format="json") + response = get_auth_response(request, self.user1, url) + self.assertEqual(response.status_code, status.HTTP_200_OK) + + def test_course_page(self): + url = "/c/{}/".format(self.code) + request = self.factory.get(url, {"code": self.code}, format="json") + response = get_auth_response(request, self.user1, url, self.code) + self.assertEqual(response.status_code, status.HTTP_200_OK) def test_course_exists(self): - response = self.client.get('/courses/{}/{}/id/{}'.format(self.sem_name, self.year, self.cid), - **self.request_headers) + response = self.client.get( + "/courses/{}/{}/id/{}".format(self.sem_name, self.year, self.cid), + **self.request_headers, + ) self.assertEqual(response.status_code, status.HTTP_200_OK) course_info = response.json() - self.assertEqual(course_info['name'], self.name) - self.assertEqual(course_info['code'], self.code) + self.assertEqual(course_info["name"], self.name) + self.assertEqual(course_info["code"], self.code) def test_no_course_exists(self): - response = self.client.get('/courses/{}/{}/id/{}'.format(self.sem_name, self.year, self.cid + 1), - **self.request_headers) + response = self.client.get( + "/courses/{}/{}/id/{}".format(self.sem_name, self.year, self.cid + 1), + **self.request_headers, + ) + self.assertEqual(response.status_code, status.HTTP_404_NOT_FOUND) + + def test_get_classmate_in_course(self): + courseOneSec1 = Section.objects.create( + course=self.course, + meeting_section="01", + size=10, + enrolment=3, + waitlist=0, + waitlist_size=10, + instructors="instructor", + semester=self.sem, + was_full=False, + course_section_id=1, + ) + courseOneSec2 = Section.objects.create( + course=self.course, + meeting_section="02", + size=10, + enrolment=3, + waitlist=0, + waitlist_size=10, + instructors="instructor", + semester=self.sem, + was_full=False, + course_section_id=1, + ) + + personalTimetable1 = PersonalTimetable.objects.create( + name="timetable1", + student=self.student1, + semester=self.sem, + school=self.school, + ) + personalTimetable1.courses.add(self.course) + personalTimetable1.sections.add(courseOneSec1) + + personalTimetable2 = PersonalTimetable.objects.create( + name="timetable2", + student=self.student2, + semester=self.sem, + school=self.school, + ) + personalTimetable2.courses.add(self.course) + personalTimetable2.sections.add(courseOneSec1) + url = "/course_classmates/{}/{}/{}/id/{}/".format( + self.school, self.sem_name, self.year, self.cid + ) + request = self.factory.get( + url, + { + "school": self.school, + "sem_name": self.sem_name, + "year": self.year, + "course_id": self.cid, + }, + format="json", + ) + response = get_auth_response( + request, self.user1, url, self.school, self.sem_name, self.year, self.cid + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + # print(json.loads(response.content)) + + def test_get_clean_evals_no_change_for_well_formatted_input(self): + Evaluation.objects.create( + course=self.course, + score=5.0, + summary="This class was great", + professor="prof", + course_code=self.code, + year=self.year, + ) + Evaluation.objects.create( + course=self.course, + score=1.0, + summary="This class was terrible", + professor="prof", + course_code=self.code, + year=self.year, + ) + Evaluation.objects.create( + course=self.course, + score=3.0, + summary="This class was meh", + professor="prof", + course_code=self.code, + year=str(int(self.year) + 1), + ) + Evaluation.objects.create( + course=self.course, + score=3.0, + summary="Loved it", + professor="prof", + course_code=self.code, + year=str(int(self.year) + 2), + ) + course_dict = CourseSerializer( + self.course, context={"semester": self.sem, "school": self.school} + ).data + self.assertEquals(course_dict["evals"], get_clean_evals(course_dict)) + + def test_get_clean_evals_formatted_input_with_space(self): + Evaluation.objects.create( + course=self.course, + score=5.0, + summary="This class was great \xa0", + professor="prof", + course_code=self.code, + year=self.year, + ) + Evaluation.objects.create( + course=self.course, + score=1.0, + summary="This class was terrible", + professor="prof", + course_code=self.code, + year=self.year, + ) + Evaluation.objects.create( + course=self.course, + score=3.0, + summary="This class was meh", + professor="prof", + course_code=self.code, + year=str(int(self.year) + 1), + ) + Evaluation.objects.create( + course=self.course, + score=3.0, + summary="Loved it", + professor="prof", + course_code=self.code, + year=str(int(self.year) + 2), + ) + course_dict = CourseSerializer( + self.course, context={"semester": self.sem, "school": self.school} + ).data + self.assertNotEquals(course_dict["evals"], get_clean_evals(course_dict)) + + def test_get_clean_evals_formatted_input_with_colon(self): + year = self.year + ":" + Evaluation.objects.create( + course=self.course, + score=5.0, + summary="This class was great", + professor="prof", + course_code=self.code, + year=year, + ) + Evaluation.objects.create( + course=self.course, + score=1.0, + summary="This class was terrible", + professor="prof", + course_code=self.code, + year=self.year, + ) + Evaluation.objects.create( + course=self.course, + score=3.0, + summary="This class was meh", + professor="prof", + course_code=self.code, + year=str(int(self.year) + 1), + ) + Evaluation.objects.create( + course=self.course, + score=3.0, + summary="Loved it", + professor="prof", + course_code=self.code, + year=str(int(self.year) + 2), + ) + course_dict = CourseSerializer( + self.course, context={"semester": self.sem, "school": self.school} + ).data + self.assertNotEquals(course_dict["evals"], get_clean_evals(course_dict)) + + def test_course_page(self): + sections = CourseSerializer( + self.course, context={"semester": self.semester, "school": self.school} + ).data["sections"] + lecs = [s for s in sections if s["section_type"] == "L"] + tutorials = [s for s in sections if s["section_type"] == "T"] + practicals = [s for s in sections if s["section_type"] == "P"] + url = "/c/{}/".format(self.cid) + request = self.factory.get(url, {"course_id": self.cid}, format="json") + response = get_auth_response(request, self.user1, url, self.cid) + self.assertEquals(response.context["course"], Course.objects.get(self.cid)) + self.assertEquals(response.context["lectures"], lecs) + self.assertEquals(response.context["tutorials"], tutorials) + self.assertEquals(response.context["practicals"], practicals) + + def test_all_courses(self): + url = "/courses/" + request = self.factory.get(url) + response = get_auth_response( + request, + self.user1, + url, + ) + self.assertEquals(response.context["school_name"], self.school) + + +class CourseModalTest(APITestCase): + def setUp(self): + self.sem_name = "Winter" + self.school = "uoft" + self.year = "1995" + self.cid = 1 + self.name = "Intro" + self.code = "SEM101" + self.sem = Semester.objects.create(name=self.sem_name, year=self.year) + self.course = Course.objects.create( + id=self.cid, school=self.school, code=self.code, name=self.name + ) + self.section = Section.objects.create( + course=self.course, semester=self.sem, meeting_section="L1" + ) + Offering.objects.create( + section=self.section, + day="M", + date_start="08-29-1995", + date_end="12-10-1995", + time_start="8:00", + time_end="10:00", + is_short_course=False, + ) + self.factory = APIRequestFactory() + self.user1 = User.objects.create_user( + username="student", email="student@jhu.edu", password="password" + ) + + def test_get_feature_flow_no_course_in_db(self): + url = "/course/{}/{}/{}/".format(self.code, self.sem_name, self.year) + request = self.factory.get( + url, + {"code": self.code, "sem_name": self.sem_name, "year": self.year}, + format="json", + ) + response = get_auth_response( + request, self.user1, url, self.code, self.sem_name, self.year + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + + def test_get_feature_flow_with_course_in_db(self): + url = f"/course/SEM3420/{self.sem_name}/{self.year}/" + request = self.factory.get( + url, + {"code": "SEM3420", "sem_name": self.sem_name, "year": self.year}, + format="json", + ) + response = get_auth_response( + request, self.user1, url, "SEM3420", self.sem_name, self.year + ) self.assertEqual(response.status_code, status.HTTP_404_NOT_FOUND) + def test_get_feature_flow_shared_course_view_created(self): + url = f"/course/{self.code}/{self.sem_name}/{self.year}/" + request = self.factory.get( + url, + {"code": self.code, "sem_name": self.sem_name, "year": self.year}, + format="json", + ) + response = get_auth_response( + request, self.user1, url, self.code, self.sem_name, self.year + ) + self.assertTrue(SharedCourseView.objects.all()) + class SchoolListTest(APITestCase): - school = 'uoft' + school = "uoft" def setUp(self): - self.areas = 'area' - self.departments = 'math' - self.level = 'hard' - Course.objects.create(school=self.school, - code='SEA101', - name='Intro', - areas=self.areas, - department=self.departments, - level=self.level) - semester, _ = Semester.objects.update_or_create(name='Fall', - year='2017') - DataUpdate.objects.create(school=self.school, - update_type=DataUpdate.COURSES, - semester=semester) + self.areas = ["area1", "area2"] + self.departments = "math" + self.level = "hard" + Course.objects.create( + school=self.school, + code="SEA101", + name="Intro", + areas=self.areas, + department=self.departments, + level=self.level, + ) + areas2 = ["area2", "area3"] + Course.objects.create( + school=self.school, + code="SEA102", + name="Test Case 2", + areas=areas2, + department=self.departments, + level=self.level, + ) + semester, _ = Semester.objects.update_or_create(name="Fall", year="2017") + DataUpdate.objects.create( + school=self.school, update_type=DataUpdate.COURSES, semester=semester + ) def test_school_exists(self): - response = self.client.get('/school/{}/'.format(self.school)) + response = self.client.get("/school/{}/".format(self.school)) self.assertEqual(response.status_code, status.HTTP_200_OK) school_info = response.data - self.assertNotEqual(len(school_info['areas']), 0) - self.assertNotEqual(len(school_info['departments']), 0) - self.assertNotEqual(len(school_info['levels']), 0) - self.assertIsNotNone(school_info['last_updated']) + self.assertNotEqual(len(school_info["areas"]), 0) + self.assertNotEqual(len(school_info["departments"]), 0) + self.assertNotEqual(len(school_info["levels"]), 0) + self.assertIsNotNone(school_info["last_updated"]) def test_school_does_not_exist(self): - response = self.client.get('/school/{}/'.format('notuoft')) + response = self.client.get("/school/{}/".format("notuoft")) self.assertEqual(response.status_code, status.HTTP_200_OK) school_info = response.data - self.assertEqual(len(school_info['areas']), 0) - self.assertEqual(len(school_info['departments']), 0) - self.assertEqual(len(school_info['levels']), 0) - self.assertIsNone(school_info['last_updated']) + self.assertEqual(len(school_info["areas"]), 0) + self.assertEqual(len(school_info["departments"]), 0) + self.assertEqual(len(school_info["levels"]), 0) + self.assertIsNone(school_info["last_updated"]) + + def test_get_distinct_areas(self): + area_groups = list( + Course.objects.filter(school=self.school) + .exclude(areas__exact=[]) + .values_list("areas", flat=True) + .distinct() + ) + distinct_areas = get_distinct_areas(area_groups) + self.assertTrue("area1" in distinct_areas) + self.assertTrue("area2" in distinct_areas) + self.assertTrue("area3" in distinct_areas) + self.assertEquals(len(distinct_areas), 3) class UrlsTest(UrlTestCase): - """ Test courses/urls.py """ + """Test courses/urls.py""" def test_urls_call_correct_views(self): + self.assertUrlResolvesToView("/c/somecode0350!", "courses.views.course_page") self.assertUrlResolvesToView( - '/c/somecode0350!', - 'courses.views.course_page') + "/course/music101/Summer/2021", "courses.views.CourseModal" + ) + self.assertUrlResolvesToView("/courses", "courses.views.all_courses") self.assertUrlResolvesToView( - '/course/music101/Summer/2021', - 'courses.views.CourseModal') - self.assertUrlResolvesToView('/courses', 'courses.views.all_courses') - + "/course_classmates/uoft/Fall/2019/id/82", + "courses.views.get_classmates_in_course", + ) self.assertUrlResolvesToView( - '/courses/Fall/2019/id/82', - 'courses.views.CourseDetail') + "/courses/Fall/2019/id/82", "courses.views.CourseDetail" + ) self.assertUrlResolvesToView( - '/school/uoft/', - 'courses.views.SchoolList', - kwargs={ - 'school': 'uoft'}) + "/school/uoft/", "courses.views.SchoolList", kwargs={"school": "uoft"} + ) diff --git a/courses/urls.py b/courses/urls.py index 5a9f149ebe..47757e88d6 100644 --- a/courses/urls.py +++ b/courses/urls.py @@ -10,26 +10,30 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from django.conf.urls import patterns, url -from django.contrib import admin +from django.conf.urls import re_path import courses.views -admin.autodiscover() - -urlpatterns = patterns('', - # old endpoints: - url(r'c/(?P.+?)$', courses.views.course_page), - url(r'^courses/?$', courses.views.all_courses), - - url(r'course/(?P.+?)/(?P.+?)/(?P.+?)/*$', - courses.views.CourseModal.as_view()), - url((r'^course_classmates/(?P.+?)/(?P.+)/' - r'(?P[0-9]{4})/id/(?P[0-9]+)/*$'), - courses.views.get_classmates_in_course), - # course info - url(r'^courses/(?P.+)/(?P[0-9]{4})/id/(?P[0-9]+)/?$', - courses.views.CourseDetail.as_view()), - # school info - url(r'^school/(?P.+?)/?$', courses.views.SchoolList.as_view()) - ) +urlpatterns = [ + re_path(r"^courses/?$", courses.views.all_courses), + re_path(r"^courses/json/?$", courses.views.all_courses_json), + re_path(r"c/(?P.+?)/?$", courses.views.course_page), + re_path( + r"course/(?P.+?)/(?P.+?)/(?P.+?)/?$", + courses.views.CourseModal.as_view(), + ), + re_path( + ( + r"^course_classmates/(?P.+?)/(?P.+)/" + r"(?P[0-9]{4})/id/(?P[0-9]+)/?$" + ), + courses.views.get_classmates_in_course, + ), + # course info + re_path( + r"^courses/(?P.+)/(?P[0-9]{4})/id/(?P[0-9]+)/?$", + courses.views.CourseDetail.as_view(), + ), + # school info + re_path(r"^school/(?P.+?)/?$", courses.views.SchoolList.as_view()), +] diff --git a/courses/utils.py b/courses/utils.py index c1cca8c754..284267df94 100644 --- a/courses/utils.py +++ b/courses/utils.py @@ -15,15 +15,23 @@ def is_waitlist_only(course, semester): - return any(sections_are_filled(sections) - for _, sections in get_sections_by_section_type(course, semester).iteritems()) + return any( + sections_are_filled(sections) + for sections in get_sections_by_section_type(course, semester).values() + ) + def get_sections_by_section_type(course, semester): - """ Return a map from section type to Sections for a given course and semester. """ - sections = course.section_set.filter(semester=semester).order_by('section_type') - return {section_type: list(grouped) - for (section_type, grouped) in itertools.groupby(sections, attrgetter('section_type'))} + """Return a map from section type to Sections for a given course and semester.""" + sections = course.section_set.filter(semester=semester).order_by("section_type") + return { + section_type: list(grouped) + for (section_type, grouped) in itertools.groupby( + sections, attrgetter("section_type") + ) + } + def sections_are_filled(sections): - """ Return True if all sections are filled beyond their max enrollment. """ - return all(section.is_full() for section in sections) \ No newline at end of file + """Return True if all sections are filled beyond their max enrollment.""" + return all(section.is_full() for section in sections) diff --git a/courses/views.py b/courses/views.py index 7529ad48da..c33d45763d 100644 --- a/courses/views.py +++ b/courses/views.py @@ -14,10 +14,11 @@ import json from datetime import datetime -from django.http import HttpResponse -from django.shortcuts import render_to_response, get_object_or_404 +from django.http import HttpResponse, JsonResponse +from django.shortcuts import render, get_object_or_404 from django.template import RequestContext from pytz import timezone +from regex import E from rest_framework import status from rest_framework.response import Response from rest_framework.views import APIView @@ -33,7 +34,6 @@ from parsing.models import DataUpdate -# TODO: use CBV @validate_subdomain def all_courses(request): """ @@ -41,24 +41,46 @@ def all_courses(request): and is sorted by department. """ school = request.subdomain - school_name = SCHOOLS_MAP[school].name # TODO: use single groupby query + school_name = SCHOOLS_MAP[school].name dep_to_courses = collections.OrderedDict() - departments = Course.objects.filter(school=school) \ - .order_by('department').values_list('department', flat=True).distinct() + departments = ( + Course.objects.filter(school=school) + .order_by("department") + .values_list("department", flat=True) + .distinct() + ) for department in departments: - dep_to_courses[department] = Course.objects.filter(school=school, - department=department).all() + dep_to_courses[department] = Course.objects.filter( + school=school, department=department + ).all() context = { - 'course_map': dep_to_courses, - 'school': school, - 'school_name': school_name} - return render_to_response("all_courses.html", - context, - context_instance=RequestContext(request)) + "course_map": dep_to_courses, + "school": school, + "school_name": school_name, + } + return render(request, "all_courses.html", context) + + +def all_courses_json(request): + """ + Returns all course names and codes in JSON. + """ + school = request.subdomain + courses = Course.objects.filter(school=school).all() + + # Create a list of dictionaries with course name and code + courses_data = [ + { + "name": course.name, + "code": course.code, + } + for course in courses + ] + + # Return as JSON + return JsonResponse(courses_data, safe=False) -# TODO: use implementation in student -# TODO: should send along with course response def get_classmates_in_course(request, school, sem_name, year, course_id): """ Finds all classmates for the authenticated user who also have a @@ -66,19 +88,17 @@ def get_classmates_in_course(request, school, sem_name, year, course_id): """ school = school.lower() sem, _ = Semester.objects.get_or_create(name=sem_name, year=year) - json_data = {'current': [], 'past': []} + json_data = {"current": [], "past": []} course = Course.objects.get(school=school, id=course_id) student = None - is_logged_in = request.user.is_authenticated() + is_logged_in = request.user.is_authenticated if is_logged_in and Student.objects.filter(user=request.user).exists(): student = Student.objects.get(user=request.user) - if student and student.user.is_authenticated() and student.social_courses: - json_data = get_classmates_from_course_id( - school, student, course.id, sem) + if student and student.user.is_authenticated and student.social_courses: + json_data = get_classmates_from_course_id(school, student, course.id, sem) return HttpResponse(json.dumps(json_data), content_type="application/json") -# TODO delete or rewrite as CBV @validate_subdomain def course_page(request, code): """ @@ -87,64 +107,94 @@ def course_page(request, code): purely via Django templates. """ school = request.subdomain - try: - school_name = SCHOOLS_MAP[school].name - course_obj = Course.objects.filter(code__iexact=code)[0] - # TODO: hard coding (section type, semester) - current_year = datetime.now().year - semester, _ = Semester.objects.get_or_create( - name='Fall', year=current_year) - course_dict = CourseSerializer(course_obj, - context={'semester': semester, 'school': school}).data - l = course_dict['sections'].get('L', {}).values() - t = course_dict['sections'].get('T', {}).values() - p = course_dict['sections'].get('P', {}).values() - avg = round(course_obj.get_avg_rating(), 2) - evals = course_dict['evals'] - clean_evals = evals - for i, v in enumerate(evals): - for k, e in v.items(): - if isinstance(evals[i][k], basestring): - clean_evals[i][k] = evals[i][k].replace(u'\xa0', u' ') - if k == "year": - clean_evals[i][k] = evals[i][k].replace(":", " ") - if school == "jhu": - course_url = "/course/" + course_dict['code'] + "/F" - else: - course_url = "/course/" + course_dict['code'] + "/F" - context = { - 'school': school, - 'school_name': school_name, - 'course': course_dict, - 'lectures': l if l else None, - 'tutorials': t if t else None, - 'practicals': p if p else None, - 'url': course_url, - 'evals': clean_evals, - 'avg': avg - } - return render_to_response("course_page.html", - context, - context_instance=RequestContext(request)) - except Exception as e: - return HttpResponse(str(e)) + school_name = SCHOOLS_MAP[school].name + course = Course.objects.get(code__iexact=code) + semester, _ = Semester.objects.get_or_create(name="Fall", year=datetime.now().year) + course_dict = CourseSerializer( + course, context={"semester": semester, "school": school} + ).data + sections = course_dict["sections"] + lectures = [s for s in sections if s["section_type"] == "L"] + tutorials = [s for s in sections if s["section_type"] == "T"] + practicals = [s for s in sections if s["section_type"] == "P"] + avg = round(course.get_avg_rating(), 2) + clean_evals = get_clean_evals(course_dict) + course_url = f"/course/{course_dict['code']}/{semester.name}/{semester.year}" + context = { + "school": school, + "school_name": school_name, + "course": course_dict, + "lectures": lectures, + "tutorials": tutorials, + "practicals": practicals, + "url": course_url, + "evals": clean_evals, + "avg": avg, + } + return render(request, "course_page.html", context) + + +def get_clean_evals(course_dict): + evals = course_dict["evals"] + for i, v in enumerate(evals): + for k in v: + if isinstance(evals[i][k], str): + evals[i][k] = evals[i][k].replace("\xa0", " ") + if k == "year": + evals[i][k] = evals[i][k].replace(":", " ") + return evals + + +class CourseModal(FeatureFlowView): + """ + A :obj:`FeatureFlowView` for loading a course share link + which directly opens the course modal on the frontend. Therefore, + this view overrides the *get_feature_flow* method to fill intData + with the detailed course json for the modal.abs + + Saves a :obj:`SharedCourseView` for analytics purposes. + """ + + feature_name = "SHARE_COURSE" + + def get_feature_flow(self, request, code, sem_name, year): + semester, _ = Semester.objects.get_or_create(name=sem_name, year=year) + code = str(code).upper() + course = get_object_or_404(Course, school=self.school, code=code) + course_json = CourseSerializer( + course, + context={ + "semester": semester, + "school": self.school, + "student": self.student, + }, + ) + + # analytics + SharedCourseView.objects.create( + student=self.student, + shared_course=course, + ).save() + + return {"sharedCourse": course_json.data, "semester": semester} class CourseDetail(ValidateSubdomainMixin, APIView): """View that handles individual course entities.""" def get(self, request, sem_name, year, course_id): - """ Return detailed data about a single course. Currently used for course modals. """ + """Return detailed data about a single course. Currently used for course modals.""" school = request.subdomain sem, _ = Semester.objects.get_or_create(name=sem_name, year=year) course = get_object_or_404(Course, school=school, id=course_id) student = None - is_logged_in = request.user.is_authenticated() + is_logged_in = request.user.is_authenticated if is_logged_in and Student.objects.filter(user=request.user).exists(): student = Student.objects.get(user=request.user) - json_data = CourseSerializer(course, - context={'semester': sem, 'student': student, - 'school': request.subdomain}) + json_data = CourseSerializer( + course, + context={"semester": sem, "student": student, "school": request.subdomain}, + ) return Response(json_data.data, status=status.HTTP_200_OK) @@ -154,61 +204,55 @@ def get(self, request, school): Provides the basic school information including the schools areas, departments, levels, and the time the data was last updated """ - # TODO - last_updated should encode per-semester last updated statuses - last_updated = DataUpdate.objects.filter( - school=school, - update_type=DataUpdate.COURSES - ).order_by('timestamp').first() + last_updated = ( + DataUpdate.objects.filter(school=school, update_type=DataUpdate.COURSES) + .order_by("timestamp") + .last() + ) if last_updated is not None: - last_updated = '{} {}'.format( - last_updated.timestamp.strftime('%Y-%m-%d %H:%M'), - last_updated.timestamp.tzname() + last_updated = "{} {}".format( + last_updated.timestamp.strftime("%Y-%m-%d %H:%M"), + last_updated.timestamp.tzname(), ) json_data = { - 'areas': sorted(list(Course.objects.filter(school=school) - .exclude(areas__exact='') - .values_list('areas', flat=True) - .distinct())), - 'departments': sorted(list(Course.objects.filter(school=school) - .exclude(department__exact='') - .values_list('department', flat=True) - .distinct())), - 'levels': sorted(list(Course.objects.filter(school=school) - .exclude(level__exact='') - .values_list('level', flat=True) - .distinct())), - 'last_updated': last_updated + "areas": get_distinct_areas( + sorted( + list( + Course.objects.filter(school=school) + .exclude(areas__exact=[]) + .values_list("areas", flat=True) + .distinct() + ) + ) + ), + "departments": sorted( + list( + Course.objects.filter(school=school) + .exclude(department__exact="") + .values_list("department", flat=True) + .distinct() + ) + ), + "levels": sorted( + list( + Course.objects.filter(school=school) + .exclude(level__exact="") + .values_list("level", flat=True) + .distinct() + ) + ), + "last_updated": last_updated, } return Response(json_data, status=status.HTTP_200_OK) -class CourseModal(FeatureFlowView): - """ - A :obj:`FeatureFlowView` for loading a course share link - which directly opens the course modal on the frontend. Therefore, - this view overrides the *get_feature_flow* method to fill intData - with the detailed course json for the modal.abs - - Saves a :obj:`SharedCourseView` for analytics purposes. - """ - - feature_name = "SHARE_COURSE" - - def get_feature_flow(self, request, code, sem_name, year): - semester, _ = Semester.objects.get_or_create(name=sem_name, year=year) - code = code.upper() - course = get_object_or_404(Course, school=self.school, code=code) - course_json = CourseSerializer(course, - context={'semester': semester, 'school': self.school, - 'student': self.student}) - - # analytics - SharedCourseView.objects.create( - student=self.student, - shared_course=course, - ).save() - - return {'sharedCourse': course_json.data, 'semester': semester} +def get_distinct_areas(areas_group): + distinct_areas = set() + for group in areas_group: + if group != list("None"): + for area in group: + distinct_areas.add(area) + return distinct_areas diff --git a/dev/adding-semesters.md b/dev/adding-semesters.md new file mode 100644 index 0000000000..8a0ce06d4b --- /dev/null +++ b/dev/adding-semesters.md @@ -0,0 +1,79 @@ +# How to add semesters to the parser (required every semester) + +## Spring + +In the Spring semester, you have to add the new year in addition to the semester. + +1. In `parsing/schools/jhu/config.json`, add the new year to the `"active_semesters"` as a + key, and add `"Spring"` as a value. + + ```js + "active_semesters": { + "2017": ["Fall", "Summer", "Spring", "Intersession"], + "2018": ["Fall", "Spring"], + "2019": ["Fall", "Spring"], + "2020": ["Fall", "Spring"], + "2021": ["Fall", "Spring"], + "2022": ["Fall", "Spring"], + "2023": ["Spring"] // Added this + } + ``` +2. In `build/run_parser.sh`, update the command to Spring. + + Before: + ```bash + python3 manage.py ingest jhu --term Fall --years 2022; + python3 manage.py digest jhu; + ``` + + After: + ```bash + python3 manage.py ingest jhu --term Spring --years 2023; + python3 manage.py digest jhu; + ``` + +3. In `parsing/schools/jhu/courses.py`, add the new year to the `years` variable. + + Before: + ```python + years = {"2022", "2021", "2020", ...} + terms = {"Spring", "Fall", "Summer", "Intersession"} + ``` + + After: + ```python + years = {"2023", "2022", "2021", ...} + terms = {"Spring", "Fall", "Summer", "Intersession"} + ``` + +## Fall + +In the Fall semester, you only have to update the new semester. + +1. In `parsing/schools/jhu/config.json`, add the new semester the value for the current + year. + + ```js + "active_semesters": { + "2017": ["Fall", "Summer", "Spring", "Intersession"], + "2018": ["Fall", "Spring"], + "2019": ["Fall", "Spring"], + "2020": ["Fall", "Spring"], + "2021": ["Fall", "Spring"], + "2022": ["Fall", "Spring"], + "2023": ["Fall", /* <- Added this */ "Spring"] + } + ``` + +2. In `build/run_parser.sh`, update the command to Fall. + + Before: + ```bash + python3 manage.py ingest jhu --term Spring --years 2023; + python3 manage.py digest jhu; + ``` + + After: + ```bash + python3 manage.py ingest jhu --term Fall --years 2023; + python3 manage.py digest jhu; \ No newline at end of file diff --git a/dev/e2etesting.md b/dev/e2etesting.md new file mode 100644 index 0000000000..9fa40b8ab0 --- /dev/null +++ b/dev/e2etesting.md @@ -0,0 +1,10 @@ +# End To End Testing + +You will need to install Google Chrome in order to run the end to end tests in +`semesterly/tests.py`. You can install it with `./build/install_chrome.sh` while +attached to a shell in the `semesterly` container. To run the tests, proceed as usual +with `python manage.py test`, or if you want to run only the end to end tests, use +`python manage.py test semesterly`. + +**Note**: This will only work if you are using Linux/WSL on Windows. You need to install +the driver for MacOS yourself if you want to run the tests on Mac. \ No newline at end of file diff --git a/dev/gotchas.md b/dev/gotchas.md new file mode 100644 index 0000000000..aae3b83aca --- /dev/null +++ b/dev/gotchas.md @@ -0,0 +1,17 @@ +* You need to have secrets for parsing courses and logging in, please ask the current + team lead if you do not have these. + +* If you're working with Facebook login, you need to be on HTTPS. This means using + `https://jhu.sem.ly` instead of `http://localhost:8000`. Notice that there's no port + number in the HTTPS link. You might also have to click past `Your connection in not + private` by going to `Advanced` and then `Proceed to jhu.sem.ly (unsafe)`. + +* If your Docker container keeps running into issues with dependencies, this likely + means that we've updated a dependency, but your container was built before this change + was made. You can fix this with `docker-compose up --build`. + +* `ImmatureSignatureError` - check if your timezone is correct with `date`. You might + need to reset it with `sudo hwclock -s`. + +* Sometimes your docker image is just wrong for no reason; you can completely wipe it + with `docker system prune -a` and then `docker-compose up`. \ No newline at end of file diff --git a/dev/onboarding.md b/dev/onboarding.md new file mode 100644 index 0000000000..0729e06736 --- /dev/null +++ b/dev/onboarding.md @@ -0,0 +1,66 @@ +# Onboarding + +**Welcome to the Semester.ly Team!** + +Congratulations on making it into the team and we are glad to have you join us. Detailed +in this guide is everything I want you to go through before we can get you started with +working on the team. + +## Getting Paid + +You should be hearing from IT Department about getting put on payroll. This is a +process that might take a while, especially if you've never worked at JHU before. While +I think it'd be ideal for you to start tracking your hours and log them later when you +can, it's up to you whether you want to start working when you know you'll actually get +paid. + +Logging hours is done through your [TimesheetX](https://studentjob.jh.edu/timesheetx.cfm). +Click on the `Student Employees` card, choose `Enter Your Hours`, choose +`Enter time and submit timesheets for JHU!`, and select the appropriate job title for +semester.ly that falls under the IT Department. Click `Start time sheet` and +`Add New Entry`. Choose your start and end time and add a brief description to log what +you did. You'll also have to click `Submit Time Sheet` when you are done logging the +current week. Pay attention to the deadline of the time sheet. + +You should log all hours you work for Semester.ly, including hours you spend learning +new material for the job. + +## Getting Started + +Please visit the [docs](https://semesterly-v2.readthedocs.io/en/latest/setup.html) for +how to set up VSCode with Semester.ly. It's actually quite a difficult setup process, so +please follow the directions carefully and ask for help if you run into issues. + +Once you have completed that, you should have your own repository in addition to a +remote to the upstream repository. Make sure you are on the `develop` branch and create +a new branch called `onboarding/your-name` + +```bash +git checkout develop +git checkout -b onboarding/your-name +``` + +You should now edit the [read the docs file](./readthedocs.md) and answer the questions +there. These questions provide some useful information that you should know while +developing at Semester.ly. + +Once you have answered all of the questions, create a pull request (PR) and I will give +you a review to ensure you've got the important parts. You can then delete your +`onboarding` branch. + +## Adding Yourself + +After completing the questions on docs, your first task is to add yourself to +[Semester.ly's about page](https://semester.ly/about)! You will want to add an image of +yourself in `static/img/` and create a portrait of yourself in the `about.html` file. +Using what you've learned about our practices from the documentation quiz, see if you +can complete this task in our preferred workflow! + +## Moving Forwards + +Before you get started on team projects, I would like to assign you a small task and +work with you on that task to help you with any first issues that you might come across +while developing for Semester.ly. Notify me when you've reached this point and we will +discuss what kind of a task we can work on together. In the meantime, please take a look +at the other documents in this directory for other information you might be interested +in. \ No newline at end of file diff --git a/dev/projects.md b/dev/projects.md new file mode 100644 index 0000000000..fd576a7987 --- /dev/null +++ b/dev/projects.md @@ -0,0 +1,43 @@ +# Starting New Projects + +This is only relevant if you are working on a project that will take multiple weeks. It +tells you how to create a Github Project and create a feature branch that everyone has +access to. + +## Creating The Project + +1. Begin by going to our [GitHub + repository](https://github.com/jhuopensource/semesterly/projects) under projects and + if your project does not already exist, hit `New project`. + +2. Give your Project an appropriate name and description, and then for `Project + template` select 'Automated kanban with reviews`. This should show you your project + board. + +3. From there, in `To do`, remove the automatically generated cards. In here, you can + add cards and convert them into issues. If you already have some issues that you want + to note down, this is where you can make them. + + +## Creating a Feature Branch + +**Note:** You do not have to do this if you are the only one working on the branch. Just +create your own local branch and create a PR there. + +1. Make sure you are on the `develop` branch in the [Github + repository](https://github.com/jhuopensource/semesterly). Click on the dropdown where + you can search or create a branch, and create a branch from here called + `feature/your-feature-name`. + +2. In your editor now, `git fetch upstream` and `git checkout feature/your-feature-name` + to switch to the branch you just created. + +3. For each file in [.github/workflows/], you want to add your branch to the `branches` + section. This is to enable the linters and automated tests workflow to run on your + newly created branch. + +4. Commit the change to upstream and create a PR; make sure that the PR is from + jhuopensource instead of your forked repository. You will have to set the base + repository to `jhuopensource` and the base branch to `develop`. Everyone can now + checkout the PR and branch off the feature branch to begin work. + diff --git a/dev/readthedocs.md b/dev/readthedocs.md new file mode 100644 index 0000000000..1d6857c9b1 --- /dev/null +++ b/dev/readthedocs.md @@ -0,0 +1,33 @@ +# Documentation Quiz + +Please visit the [docs](https://semesterly-v2.readthedocs.io/en/latest/index.html) and +answer the following questions. + +1. What is the command I run to get the courses from Fall 2021? + + +2. How do I then load those courses into my database? + + +3. How do I get a terminal running in my docker container? + + +4. Where do I store data such as passwords or secrets that I don’t want to commit? + + +5. What branch do I create a new branch off of when developing? + + +6. If I want to start on a feature called myfeature, what should the branch name be? + + +7. What is the preferred format for commit messages? + + +8. What linters do we run against our code? + + +9. What is a FeatureFlowView? + + +When you are done answering the questions, create a PR for a discussion of your answers. \ No newline at end of file diff --git a/dev/settings.json b/dev/settings.json new file mode 100644 index 0000000000..46fae69d01 --- /dev/null +++ b/dev/settings.json @@ -0,0 +1,21 @@ +{ + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.formatOnSave": true, + "editor.rulers": [88], + "search.exclude": { + "**/node_modules": true, + "static/admin/": true, + "static/bundles/": true, + "static/django_extensions/": true, + "static/drf-yasg/": true, + "static/lists/": true, + "static/rest_framework": true + }, + "python.linting.enabled": true, + "[python]": { + "editor.defaultFormatter": "ms-python.python" + }, + "python.linting.pycodestyleEnabled": true, + "python.linting.pycodestyleArgs": ["--max-line-length=88"], + "python.formatting.provider": "black" +} diff --git a/docker-compose.yml b/docker-compose.yml index b86fdd5db3..4004bad5f1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,8 +1,8 @@ -version: '3' +version: "3" services: db: - image: postgres + image: postgres:12.1 ports: - "5432:5432" web: @@ -22,6 +22,8 @@ services: - db localssl: image: jhuopensource/semesterly-caddy + logging: + driver: none volumes: - ./build/caddy/Caddyfile:/etc/Caddyfile ports: diff --git a/docker-dev.txt b/docker-dev.txt deleted file mode 100644 index 2f2df1101e..0000000000 --- a/docker-dev.txt +++ /dev/null @@ -1,38 +0,0 @@ -Developing Semester.ly on Docker - -Steps are below on getting your local development environment running: -* Download and install docker for your environment (Windows/Mac/Linux are supporter): https://www.docker.com/get-started -* Clone this repository -* Create semesterly/local_settings.py as follows: -DEBUG = True - -TEMPLATE_DEBUG = DEBUG - -DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.postgresql_psycopg2', - 'NAME': 'postgres', - 'USER': 'postgres', - 'PASSWORD': '', - 'HOST': 'db', - 'PORT': '5432', - } -} -* Edit semesterly/dev_credentials.py and add a value for JHU_API_KEY in single quotes like below. You can get this from sis.jhu.edu/api -'JHU_API_KEY': 'xxxxxxxx', -* add entry to your hosts file as follows (This file is in c:\Windows\System32\drivers\etc\hosts or /etc/hosts) -127.0.0.1 sem.ly jhu.sem.ly - - -Launch terminal or a command window and run: -* docker-compose build -* docker-compose up -You now have semesterly running. If this is the first time, you will want some data. - -Getting JHU data for a given term -* In a new terminal run the following -docker ps -q --filter "expose=8000" -(this will give you the id of your container which you will use for commands below. ex: 73f48ab997aa) -docker exec -it id_of_container python manage.py ingest jhu --term Spring --years 2018 -docker exec -it id_of_container python manage.py digest jhu -* Open a browser and visit http://jhu.sem.ly:8000 and hack away diff --git a/docs/addaschool.rst b/docs/addaschool.rst index f23b9e398d..875057e126 100644 --- a/docs/addaschool.rst +++ b/docs/addaschool.rst @@ -15,7 +15,7 @@ Running the *makeschool* command will create a directory for your school, creati python manage.py makeschool --name "University of Toronto" --code "uoft" --regex "([A-Z]{2,8}\\s\\d{3})" -Don't forget to add this new school to your /etc/hosts! (Check here for a reminder on how: :ref:`environment`) +Don't forget to add this new school to your /etc/hosts! (Check here for a reminder on how: :ref:`setup`) Develop the Parser ~~~~~~~~~~~~~~~~~~ @@ -57,7 +57,7 @@ What this boils down to is the following template:: Breaking it down ################ - The code starts out by getting the departments. It doesn't have to, but often it is easiest to go department by department. The parser then collects the courses for that department. We will talk about how it does this later in `How To Fill The Ingestor`_. + The code starts out by getting the departments. It doesn't have to, but often it is easiest to go department by department. The parser then collects the courses for that department. We will talk about how it does this in `How To Fill The Ingestor`_. For each course, the parser fills the ingestor with the fields related to the course (e.g. description, the course code). Once complete, it calls `ingest_course` to execute the creation of the course. @@ -81,7 +81,7 @@ or:: markup = self.requester.post('www.siteorapi.com', data=form) -It will automatically return a markedup version of the data returned by the request (automatically detecting JSON/XML/HTML). +It will automatically return a marked-up version of the data returned by the request (automatically detecting JSON/XML/HTML). .. note:: The requester will maintain a `session `_ for you, making sure the proper cookies are stored and sent with all future requests. It also `randomizes the user agent `_. Future updates will automatically parallelize and throttle requests (*a great project to contribute to the data pipeline*). @@ -141,4 +141,4 @@ Once it runs to completion, you can *digest* the JSON, entering it into the data python manage.py digest [SCHOOL_CODE] -.. note:: To learn more, checkout the :ref:`pipeline` \ No newline at end of file +.. note:: To learn more, checkout the :ref:`pipeline` diff --git a/docs/advanced_search.png b/docs/advanced_search.png new file mode 100644 index 0000000000..fc404d8e0d Binary files /dev/null and b/docs/advanced_search.png differ diff --git a/docs/advancedconfig.rst b/docs/advancedconfig.rst index 449b417990..2f484f24fc 100644 --- a/docs/advancedconfig.rst +++ b/docs/advancedconfig.rst @@ -1,13 +1,79 @@ .. _advancedconfig: -.. note:: **This step is not neccessary for most developers.** Only continue reading this section if you need to override the test secrets (API keys/credentials) provided by Semester.ly (which are for testing only). - Advanced Configuration ======================= -Semester.ly makes use of several secrets which allow it to interact securely with third party software providers. These providers include Facebook (for oauth and social graph), Google (oauth), and university APIs. +VSCode Extensions +----------------- + +.. tip:: + + Previously in :ref:`setup`, we told you to install the `remote containers extension by + Microsoft + `_. + When you ``docker-compose up``, in the Docker tab when right-clicking a container, + you should see ``Attach Visual Studio Code`` in addition to ``Attach Shell``. It is + recommended that you develop (and install these extensions) while using VSCode + attached to the container in order to match the build environment. + +Extensions can help you be more productive when working on Semester.ly code. Feel free +to ask current developers what extensions they use. Here are a few we suggest: + +1. `Python + PyLance `_. +With this extension, you can set your default formatter (black) and default linter +(pycodestyle). If you choose to set pycodestyle as your linter, be sure to change +max-line-length to 88. + +2. `JavaScript + TypeScript +`_. +TypeScript support for development. + +3. `ESLint `_. +As one of our checks requires ESLint to be satisfied, this will save you some time. + +4. `Prettier `_. +Formats JS/TS for you. You will want to set Prettier as your default formatter, and +we suggest you set Format Document On Save to be on in your VSCode preferences. + +5. `IntelliCode `_. +Provides useful suggestions. + +6. `GitHub Copilot +`_. Can often +write your code for you, but be sure to double check it. + +7. `Bookmarks +`_. Lets +you mark places in code that you want to revisit. + +8. `Rewrap `_. It helps +with wrapping text for you when editing documentation or code comments. -In order for Semester.ly to run out of the box, we have included credentials to test Google and Facebook applications for development purposes. We override these keys for production use thereby keeping our client secrets... well, secrets! These provided credentials can be found in ``semesterly/dev_credentials.py``:: +9. `Sourcery `_. +Sometimes will help you write cleaner Python code. + +10. `SpellChecker +`_. +Helps you find typos in documentation. + + +Overriding/Setting Secrets +-------------------------- + +.. note:: + + **This step is not neccessary for most developers.** Only continue reading this + section if you need to override the test secrets (API keys/credentials) provided by + Semester.ly (which are for testing only). + +Semester.ly makes use of several secrets which allow it to interact securely with third +party software providers. These providers include Facebook (for oauth and social graph), +Google (oauth), and university APIs. + +In order for Semester.ly to run out of the box, we have included credentials to test +Google and Facebook applications for development purposes. We override these keys for +production use thereby keeping our client secrets... well, secrets! These provided +credentials can be found in ``semesterly/dev_credentials.py``:: SECRETS = { #Credentials for a test application for Semester.ly (+ Google/Facebook) @@ -20,25 +86,32 @@ In order for Semester.ly to run out of the box, we have included credentials to 'SOCIAL_AUTH_FACEBOOK_SECRET': ..., 'FB_TEST_EMAIL': ..., 'FB_TEST_PASS': ..., + 'SOCIAL_AUTH_AZURE_TENANT_KEY': ..., + 'SOCIAL_AUTH_AZURE_TENANT_SECRET': ..., + 'SOCIAL_AUTH_AZURE_TENANT_ID': ..., + 'STUDENT_SIS_AUTH_SECRET': ..., #Not essential for testing, but can be filled in for advanced usage ... } -Overriding/Setting Secrets --------------------------- - -However, if you wish to override these credentials or add login credentials for a school which requires a client secret, you may add your key/value pair to ``semesterly/sensitive.py``. This file is gitignored and will be kept private so you can safely store the private information you wish within this file. It should have a format indentical to SECRETS above and in ``semesterly/dev_credentials.py``. +However, if you wish to override these credentials or add login credentials for a school +which requires a client secret, you may add your key/value pair to +``semesterly/sensitive.py``. This file is gitignored and will be kept private so you can +safely store the private information you wish within this file. It should have a format +indentical to SECRETS above and in ``semesterly/dev_credentials.py``. Using Secrets ------------- -In order to properly access a secret from anywhere within the code, simply import the ``get_secret`` function and use it to access the secret by key:: +In order to properly access a secret from anywhere within the code, simply import the +``get_secret`` function and use it to access the secret by key:: from semesterly.settings import get_secret hashids = Hashids(salt=get_secret('HASHING_SALT')) -This will check the following locations for the secret (in order, using the first value it finds), throwing an error if it does not find the key at all: +This will check the following locations for the secret (in order, using the first value +it finds), throwing an error if it does not find the key at all: 1. Check OS environment variables 2. Check ``semesterly/sensitive.py`` diff --git a/docs/compare_timetables.png b/docs/compare_timetables.png new file mode 100644 index 0000000000..cd4b04661c Binary files /dev/null and b/docs/compare_timetables.png differ diff --git a/docs/components/preference_modal.png b/docs/components/preference_modal.png deleted file mode 100644 index 195d4790d3..0000000000 Binary files a/docs/components/preference_modal.png and /dev/null differ diff --git a/docs/components/textbook.png b/docs/components/textbook.png deleted file mode 100644 index b2d4ec77cf..0000000000 Binary files a/docs/components/textbook.png and /dev/null differ diff --git a/docs/components/textbook_modal.png b/docs/components/textbook_modal.png deleted file mode 100644 index f20788c4fa..0000000000 Binary files a/docs/components/textbook_modal.png and /dev/null differ diff --git a/docs/conf.py b/docs/conf.py index 6a2c0f5dc7..9e6bc3134d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,16 +1,14 @@ -""" -Copyright (C) 2017 Semester.ly Technologies, LLC - -Semester.ly is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -Semester.ly is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -""" +# Copyright (C) 2017 Semester.ly Technologies, LLC +# +# Semester.ly is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Semester.ly is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. # -*- coding: utf-8 -*- # @@ -34,9 +32,10 @@ import sys import django -sys.path.insert(0, os.path.abspath('../')) +sys.path.insert(0, os.path.abspath("../")) os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") from django.conf import settings + django.setup() @@ -49,39 +48,41 @@ # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. -extensions = ['sphinx.ext.autodoc', - 'sphinx.ext.intersphinx', - 'sphinx.ext.todo', - 'sphinx.ext.coverage', - 'sphinx.ext.mathjax', - 'sphinx.ext.viewcode', - 'sphinx.ext.napoleon'] +extensions = [ + "sphinx.ext.autodoc", + "sphinx.ext.intersphinx", + "sphinx.ext.todo", + "sphinx.ext.coverage", + "sphinx.ext.mathjax", + "sphinx.ext.viewcode", + "sphinx.ext.napoleon", +] # Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] +templates_path = ["_templates"] # The suffix(es) of source filenames. # You can specify multiple suffix as a list of string: # # source_suffix = ['.rst', '.md'] -source_suffix = ['.rst', '.md'] +source_suffix = [".rst", ".md"] # The master toctree document. -master_doc = 'index' +master_doc = "index" # General information about the project. -project = u'Semester.ly' -copyright = u'2017, Semester.ly Technologies, LLC' -author = u'Semester.ly Technologies, LLC' +project = "Semester.ly" +copyright = "2017, Semester.ly Technologies, LLC" +author = "Semester.ly Technologies, LLC" # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = u'1.0' +version = "2.0" # The full version, including alpha/beta/rc tags. -release = u'1.0' +release = "2.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -93,10 +94,10 @@ # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This patterns also effect to html_static_path and html_extra_path -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] # The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'sphinx' +pygments_style = "sphinx" # If true, `todo` and `todoList` produce output, else they produce nothing. todo_include_todos = True @@ -107,7 +108,7 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = 'alabaster' +html_theme = "alabaster" # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the @@ -118,13 +119,13 @@ # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +html_static_path = ["_static"] # -- Options for HTMLHelp output ------------------------------------------ # Output file base name for HTML help builder. -htmlhelp_basename = 'Semesterlydoc' +htmlhelp_basename = "Semesterlydoc" # -- Options for LaTeX output --------------------------------------------- @@ -133,15 +134,12 @@ # The paper size ('letterpaper' or 'a4paper'). # # 'papersize': 'letterpaper', - # The font size ('10pt', '11pt' or '12pt'). # # 'pointsize': '10pt', - # Additional stuff for the LaTeX preamble. # # 'preamble': '', - # Latex figure (float) alignment # # 'figure_align': 'htbp', @@ -151,8 +149,13 @@ # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ - (master_doc, 'Semesterly.tex', u'Semester.ly Documentation', - u'Semester.ly Technologies, LLC', 'manual'), + ( + master_doc, + "Semesterly.tex", + "Semester.ly Documentation", + "Semester.ly Technologies, LLC", + "manual", + ), ] @@ -160,10 +163,7 @@ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). -man_pages = [ - (master_doc, 'semesterly', u'Semester.ly Documentation', - [author], 1) -] +man_pages = [(master_doc, "semesterly", "Semester.ly Documentation", [author], 1)] # -- Options for Texinfo output ------------------------------------------- @@ -172,20 +172,25 @@ # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ - (master_doc, 'Semesterly', u'Semester.ly Documentation', - author, 'Semesterly', 'One line description of project.', - 'Miscellaneous'), + ( + master_doc, + "Semesterly", + "Semester.ly Documentation", + author, + "Semesterly", + "One line description of project.", + "Miscellaneous", + ), ] - - # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'https://docs.python.org/': None} +intersphinx_mapping = {"https://docs.python.org/3/": None} html_theme = "sphinx_rtd_theme" -html_static_path = ['_static'] +html_static_path = ["_static"] + def setup(app): - app.add_stylesheet('theme_overrides.css') \ No newline at end of file + app.add_css_file("css/theme_overrides.css") diff --git a/docs/contributing.rst b/docs/contributing.rst index a8e77fc9f4..6437b80928 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -5,84 +5,126 @@ How to Contribute Contributing to Semester.ly follows the following simple workflow: - 1. `Fork the Repository`_ - 2. `Make Changes (fix a bug, create a feature)`_ - 3. `Open a Pull Request (and see your code go live!)`_ + 1. `Create a Branch`_ + 2. `Make Changes`_ + 3. `Clean Up Changes`_ -Fork the Repository -~~~~~~~~~~~~~~~~~~~ -Follow the instructions in the installation portion of the documentation, see :ref:`setup` +Create a Branch +~~~~~~~~~~~~~~~ -Make Changes (fix a bug, create a feature) -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Make sure you have followed all of the instructions in :ref:`setup` to set up your local +repository and upstream remote. -Add the Upstream Repo -##################### +We follow the `Gitflow workflow +`_; our +main branch is ``prod``, and our develop branch is ``develop``. The general gist is that +for anything new, you want to branch off of ``develop`` and name your branch +``feature/your-branch-name``. Two other conventions we have is for bug fixes we use +``fix/your-branch-name``, and for refactoring we use ``refactor/your-branch-name``. In +the case you need to fix something that was just released, and it needs to go straight +to production, then branch off of ``prod`` and name your branch +``hotfix/your-branch-name``. - You're going to want to add the original project repo as an upstream repo in your forked project: +To stay up to date with ``upstream/develop``, you'll want to ``git pull`` whenever you're +starting a new branch. You may need to ``git fetch upstream`` first. - .. code-block:: bash +.. code-block:: bash - git remote add upstream git@github.com:noahpresler/semesterly.git + git checkout develop + git pull upstream develop - This way you can push to your fork as "origin" and the main repo as "upstream". You'll only ever do this once. +Then, you'll want to create a new branch. -Syncing With Upstream -##################### - To stay up to date with upstream/master, you'll consistently want to checkout the master branch, fetch the upstream changes. Merge these into your local master branch and push that merge. These lines do exactly that: +.. code-block:: bash - .. code-block:: bash + git checkout -b - git checkout master - git fetch upstream - git merge upstream/master - git push origin master -Create a Working Branch -####################### - Now you'll want to checkout a branch off master to work on. This is the branch you will merge into upstream when you are done. Just do: +Make Changes +~~~~~~~~~~~~ - .. code-block:: bash +After you've made edits, git add your files, then commit. One way to do this: + +.. code-block:: bash + + git add + git commit -m "Topic: Message" + git push --set-upstream origin your-branch-name + +.. note:: + It is preferred that you follow the commit message convention of "Topic: Message". + This helps when we are browsing through commits so we can quickly identify what each + commit was about. + **Messages should be in the imperative mood**, as if you're telling someone what to + do. If it helps, you are encouraged to include the how/why - + *"Evaluation list: Duplicate state to avoid modifying redux state"*. + Furthermore, try to keep commits to "one" change at a time and commit often. - git checkout -b mybranchname +From here, you should be prompted to create a new pull request (PR). Ctrl + Left Click to +open the link. From there, add a short description on what your PR does and how/why you +did it, and then create the PR. If your PR is ready for review, add a reviewer as well. -Make Some Changes, Add and Commit -################################# - After you've made edits, git add your files, then commit. One way to do this: +.. note:: + **What If Upstream Has Changed?** If merging upstream into your branch does not + cause any conflicts, using rebase is a good option. .. code-block:: bash - git commit -a - git push origin mybranchname + git pull --rebase upstream develop + git push origin your-branch-name - .. note:: - **What If Upstream Has Changed?** Just pull and rebase onto those changes and push. You may find conflicts, that's to be expected! + However, if there are merge conflicts, I suggest creating an alternate branch off of + your branch and then merging upstream, fixing any conflicts, and then merging back + into your branch. Although more complicated, this saves you from messing up the work + on your branch if the merge conflicts aren't easily resolved, or you make a mistake + while resolving the conflicts. - .. code-block:: bash + .. code-block:: bash - git pull --rebase upstream master - git push origin mybranchname + git checkout develop + git pull upstream + git checkout your-branch-name + git checkout -b merge-develop + git merge develop + (Fix merge conflicts, git add + git commit) + git checkout your-branch-name + git merge merge-develop + git push -Open a Pull Request (and see your code go live!) -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -So you've made your changes, and you've pushed them to your branch. To open a PR, simply head over to your fork at: https://github.com/YOURGITHUBUSERNAME/semesterly. Click on "Pull Request", choose the upstream repo "master" as the destination, and your forked repo's branch (the one you've been working on) as the source, and pick the merge and squash option! +Clean Up Changes +~~~~~~~~~~~~~~~~ +We have GitHub workflows that check your changes and run them against our automated +tests. While the workflow is building, we have a few other workflows that check the +style and formatting of your code, and they will run more quickly than the build flows. +Take this time to fix any formatting or linting issues should these tests fail. Refer to +the :ref:`styleguide` to learn more about our code guidelines. -Awesome! You've made a PR. Once its merged, your code will be a part of the Semester.ly open source GitHub repository and will be deployed for tens of thousands of students to use/benefit from. .. note:: A PR must pass a few checks before it can be merged. - ✅ **LGTM:** Before your PR is merged, you'll need to pass a peer review to ensure that all the changes are clean and high quality. Usually, you'll get an "lgtm" (the comment which triggers this check to pass) or a few minor edits will be requested. This helps us maintain a quality code base and helps contrbutors learn and grow as engineers! + ✅ **LGTM:** Before your PR is merged, you'll need to pass a peer review to ensure + that all the changes are clean and high quality. Usually, you'll get an "LGTM" or a + few minor edits will be requested. This helps us maintain a quality code base and + helps contributors learn and grow as engineers! + + ✅ **PR Body:** Your pull request should reference a git issue if a related issue has + been created. Additionally, it must provide an in depth description of why the + changes were made, what they do, and how they do it. + + ✅ **Tests & Builds Pass:** All tests and builds, as run by Github Actions, must pass. - ✅ **PR Body:** Your pull request should reference a git issue if a related issue has been created. Additionally, it must provide an in depth description of why the changes were made, what they do, and how they do it. This message can be formatted as *"WHY: ...., WHAT:....., HOW:....."*, but it can take any form if this does not suit your case. + ✅ **Linting Satisfied:** All files must successfully pass our code style checks. + + .. code-block:: bash - ✅ **Tests & Builds Pass:** All tests and builds, as run by TravisCI must pass. + sh format.sh - ✅ **Linting Satisfied:** All files must successfully pass our code style checks. You can check that your code has no errors by running: + This runs the following code: .. code-block:: bash - npm run lint - - You can learn more about how lint checking is done by reading :ref:`learning`. \ No newline at end of file + npx prettier "**/*.{js,jsx,ts,tsx}" --write + eslint . --ext .js,.jsx,.ts,.tsx --fix + black . diff --git a/docs/course_modal.png b/docs/course_modal.png new file mode 100644 index 0000000000..f341933264 Binary files /dev/null and b/docs/course_modal.png differ diff --git a/docs/documentation.rst b/docs/documentation.rst index ec55f8a7ee..dfcfe089fc 100644 --- a/docs/documentation.rst +++ b/docs/documentation.rst @@ -8,7 +8,6 @@ Backend Documentation modules/course modules/student modules/searches - modules/exams modules/agreement modules/e2e modules/helpers diff --git a/docs/editing.rst b/docs/editing.rst index f4df0a09cc..c3f2b0f500 100644 --- a/docs/editing.rst +++ b/docs/editing.rst @@ -4,7 +4,7 @@ Editing This Documentation Building the Docs ~~~~~~~~~~~~~~~~~ -From the `docs` directory, execute the following command to rebuild all editted pages:: +From the `docs` directory, execute the following command to rebuild all edited pages:: make html diff --git a/docs/environment.rst b/docs/environment.rst deleted file mode 100644 index 704572b0cb..0000000000 --- a/docs/environment.rst +++ /dev/null @@ -1,170 +0,0 @@ -.. _environment: - -Setup Your Dev Environment -========================== - -Now that all of the requirements are installed, its time to get your environment up and running. - -Setup Your Database -~~~~~~~~~~~~~~~~~~~ - -Semester.ly stores objects like courses, timetables, and students in a Postgres database. Let's get one setup for you. - -Let's first initialize Postgres using the default user account ``postgres`` - -.. note:: If using Linux log into this account with - - .. code-block:: bash - - sudo -i -u postgres - -Then, enter Postgres environment with - -.. code-block:: bash - - psql postgres - -.. note:: If you see an error in CentOS / Fedora, it's most likely due to postgres is not running. Initialize it with ``sudo service postgresql initdb && sudo service postgresql start``. - -Here you can enter SQL to create/manipulate/access databases. Let's create a Semester.ly database. Enter: - -.. code-block:: psql - - CREATE DATABASE semesterly; - -Then, create a database user, set ``myusername`` and ``mypassword`` to whatever you wish - -.. code-block:: psql - - CREATE USER myusername WITH PASSWORD 'mypassword'; - -Finally, grant all access to the created database to your new user, ``myusername``: - -.. code-block:: psql - - GRANT ALL PRIVILEGES ON DATABASE semesterly TO myusername; - -Great. You are all set. Enter the following to quit psql: - -.. code-block:: psql - - \q - -.. note:: If using Linux exit postgres by - - .. code-block:: bash - - exit - -.. note:: For CentOS / Fedora, Change all occurances of ident to md5 in pg_hba.conf. You can modify the file through ``sudo vim /var/lib/pgsql9/data/pg_hba.conf``. After you change it, restart postgres with ``sudo service postgresql restart``. - -Create Local Settings -~~~~~~~~~~~~~~~~~~~~~ - -Now that you have a database created we need to inform Django of the configuration. Do so by creating a new file called ``local_settings.py`` and placing it in the ``semesterly/`` directory within your workspace. You should find that there is already a similar file called ``settings.py`` found in the same folder. - -The contents of this file should be: - -.. code-block:: python - - DEBUG = True - - TEMPLATE_DEBUG = DEBUG - - DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.postgresql_psycopg2', - 'NAME': 'semesterly', - 'USER': 'myusername', - 'PASSWORD': 'mypassword', - 'HOST': 'localhost', - 'PORT': '5432', - } - } - -.. note:: Be sure to change the values of ``myusername`` and ``mypassword`` to the values you chose when creating your user! - -Migrate Your Database -~~~~~~~~~~~~~~~~~~~~~ - -Now that Django knows about the database, it can conform the empty database to our schema. Simply execute: - -.. code-block:: bash - - python manage.py migrate - -Edit your /etc/hosts -~~~~~~~~~~~~~~~~~~~~ -For development purposes, we map http://sem.ly:8000 to http://localhost:8000. To do this locally, execute the following line of bash: - -.. code-block:: bash - - sudo sh -c "echo '127.0.0.1 sem.ly jhu.sem.ly uoft.sem.ly vandy.sem.ly chapman.sem.ly umich.sem.ly gw.sem.ly umd.sem.ly' >> /etc/hosts" - -.. note:: If you add a school, be sure to add it to this file! - - -Set your Environment Type -~~~~~~~~~~~~~~~~~~~~~~~~~ -Add the following line to either your ``~/.bashrc`` or ``~/.zshrc`` which tells webpack you are running a development environment: - -.. code-block:: bash - - export NODE_ENV=development - -Then ``source ~/.bashrc`` or ``source ~/.zshrc`` - -And make sure the following line returns "development" - -.. code-block:: bash - - echo $NODE_ENV - - -Install & Run Webpack -~~~~~~~~~~~~~~~~~~~~~ - -Webpack compiles our React componenets into one application wide javascript bundle. We use chromedriver to test them. - -To install them if you are testing in chrome install: - -.. code-block:: bash - - npm install -g webpack chromedriver - - -To install them if you are using firefox or a 32 bit operating system (like lubuntu) run: - -.. code-block:: bash - - npm install -g webpack - -Then run it with: - -.. code-block:: bash - - npm run watch - -.. note:: Always leave ``npm run watch`` running. It will continuously watch your javascript files and recompile automatically upon any edits/changes. - - -Running the Server -~~~~~~~~~~~~~~~~~~ - -Now, the moment you've all been waiting for! Let's run the server! (Be sure to leave the last ``npm run watch`` command running) - -.. code-block:: bash - - python manage.py runserver - -Navigate to http://sem.ly:8000, and if everything loads, you should be all set :). You did it! - -Your Final Setup -~~~~~~~~~~~~~~~~ -Great work. Your Semester.ly local environment is all setup. - -Don't forget: **whenever you are working on Semester.ly** you should have one terminal running the server (via ``python manage.py runserver``), and one running webpack (via ``npm run watch``). - -.. note:: Don't forget to always work from your virtual environment! From the root directory, just execute ``source /venv/bin/activate`` to enter it. - -Happy hacking! To fill up your database, be sure to checkout :ref:`parsing`. diff --git a/docs/example_schedule.png b/docs/example_schedule.png new file mode 100644 index 0000000000..7ff28ef25d Binary files /dev/null and b/docs/example_schedule.png differ diff --git a/docs/flows.rst b/docs/flows.rst index a3fc1c7078..0db5a6ade4 100644 --- a/docs/flows.rst +++ b/docs/flows.rst @@ -11,10 +11,9 @@ Initalization When a user loads the home timetable page, ``FeatureFlowView`` inside of ``timetable.utils`` is used to handle the request. On initial page load, the frontend requires some data to initialize the redux state, like -information about the current user, the list of possible semesters for the -school, and the list of student integrations. This initial data is created -inside of the view, and passed in as a single json string in the response -context: +information about the current user and the list of possible semesters for the +school. This initial data is created inside of the view, and passed in as a single json +string in the response context: .. code-block:: python @@ -29,7 +28,6 @@ context: 'currentSemester': curr_sem_index, 'allSemesters': all_semesters, 'uses12HrTime': self.school in AM_PM_SCHOOLS, - 'studentIntegrations': integrations, 'examSupportedSemesters': map(all_semesters.index, final_exams_available.get(self.school, [])), @@ -121,13 +119,13 @@ and act accordingly. In practice, this is done by switching on the name of the f const handleFlows = featureFlow => (dispatch) => { switch (featureFlow.name) { case 'SIGNUP': - dispatch({ type: ActionTypes.TRIGGER_SIGNUP_MODAL }); + dispatch(signupModalActions.showSignupModal()); break; case 'USER_ACQ': - dispatch({ type: ActionTypes.TRIGGER_ACQUISITION_MODAL }); + dispatch(userAcquisitionModalActions.triggerAcquisitionModal()); break; case 'SHARE_TIMETABLE': - dispatch({ type: ActionTypes.CACHED_TT_LOADED }); + dispatch(timetablesActions.cachedTimetableLoaded()); dispatch(lockTimetable(featureFlow.sharedTimetable, true, initData.currentUser.isLoggedIn)); break; // ... etc. @@ -149,7 +147,7 @@ We start be defining a new endpoint for this feature flow: .. code-block:: python - url(r'course/(?P.+?)/(?P.+?)/(?P.+?)/*$', + re_path(r'course/(?P.+?)/(?P.+?)/(?P.+?)/*$', courses.views.CourseModal.as_view()) Then we create a new ``FeatureFlowView`` for this endpoint which needs to do two things: define @@ -212,8 +210,7 @@ by simply declaring this view directly inside of the urls file: .. code-block:: python - url(r'^signup/*$/', FeatureFlowView.as_view(feature_name='SIGNUP') - + re_path(r'^signup/*$/', FeatureFlowView.as_view(feature_name='SIGNUP') see https://github.com/noahpresler/semesterly/pull/838 for the -original pull request implementing feature flows \ No newline at end of file +original pull request implementing feature flows diff --git a/docs/frontend.rst b/docs/frontend.rst index 4be6218659..829d59d235 100644 --- a/docs/frontend.rst +++ b/docs/frontend.rst @@ -51,7 +51,7 @@ It is this JSON, called ``initData`` which we read into state as our initial sta Other actions required for page initialization are also dispatched from ``init.jsx`` including those which load cached timetables from the browser, alerts that show on page load, the loading of user's timetables if logged in, and the triggering of the user agreement modal when appropriate. -Finally, ``init.jsx`` renders ```` to the DOM. This is the root of the application. +Finally, ``init.jsx`` renders ```` to the DOM. This is the root of the application. Actions ~~~~~~~~ @@ -82,10 +82,6 @@ The reducers directory follows this structure:: ├── exploration_modal_reducer.jsx ├── final_exams_modal_reducer.jsx ├── friends_reducer.jsx - ├── integration_modal_reducer.jsx - ├── integrations_reducer.jsx - ├── notification_token_reducer.jsx - ├── optional_courses_reducer.jsx ├── peer_modal_reducer.jsx ├── preference_modal_reducer.jsx ├── preferences_reducer.jsx @@ -98,7 +94,6 @@ The reducers directory follows this structure:: ├── signup_modal_reducer.jsx ├── terms_of_service_banner_reducer.jsx ├── terms_of_service_modal_reducer.jsx - ├── textbook_modal_reducer.jsx ├── timetables_reducer.jsx ├── ui_reducer.jsx ├── user_acquisition_modal_reducer.jsx @@ -127,29 +122,27 @@ Modals +-------------------------------+--------------------------------------------------+--------------------------+ | Component File | Screenshot | Description | +===============================+==================================================+==========================+ -|``course_modal_body.jsx`` | .. image:: components/course_modal_body.png | | +|``CourseModalBody.tsx`` | .. image:: components/course_modal_body.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``course_modal.jsx`` | .. image:: components/course_modal.png | | +|``CousreModal.tsx`` | .. image:: components/course_modal.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``exploration_modal.jsx`` | .. image:: components/exploration_modal.png | | +|``AdvancedSearchModal.jsx`` | .. image:: components/exploration_modal.png | | +-------------------------------+--------------------------------------------------+--------------------------+ |``final_exams_modal.jsx`` | .. image:: components/final_exams_modal.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``peer_modal.jsx`` | .. image:: components/peer_modal.png | | +|``PeerModal.tsx`` | .. image:: components/peer_modal.png | | +-------------------------------+--------------------------------------------------+--------------------------+ |``preference_modal.jsx`` | .. image:: components/preference_modal.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``save_calendar_modal.jsx`` | .. image:: components/save_calendar_modal.png | | +|``SaveCalendarModal.tsx`` | .. image:: components/save_calendar_modal.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``signup_modal.jsx`` | .. image:: components/signup_modal.png | | +|``SignupModal.tsx`` | .. image:: components/signup_modal.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``textbook_modal.jsx`` | .. image:: components/textbook_modal.png | | +|``TutorialModal.tsx`` | .. image:: components/tut_modal.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``tut_modal.jsx`` | .. image:: components/tut_modal.png | | +|``UserAquisitionModal.tsx`` | .. image:: components/user_acquisition_modal.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``user_acquisition_modal.jsx`` | .. image:: components/user_acquisition_modal.png | | -+-------------------------------+--------------------------------------------------+--------------------------+ -|``user_settings_modal.jsx`` | .. image:: components/user_settings_modal.png | | +|``UserSettingsModal.tsx`` | .. image:: components/user_settings_modal.png | | +-------------------------------+--------------------------------------------------+--------------------------+ General Components @@ -159,57 +152,53 @@ General Components +===============================+==================================================+==========================+ |``alert.jsx`` | .. image:: components/alert.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``calendar.jsx`` | .. image:: components/calendar.png | | -+-------------------------------+--------------------------------------------------+--------------------------+ -|``calendar.jsx`` | .. image:: components/calendar.png | | +|``Calendar.tsx`` | .. image:: components/calendar.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``course_modal_section.jsx`` | .. image:: components/course_modal_section.png | | +|``CourseModalSelection.tsx`` | .. image:: components/course_modal_section.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``credit_ticker.jsx`` | .. image:: components/credit_ticker.png | | +|``CreditTicker.tsx`` | .. image:: components/credit_ticker.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``custom_slot.jsx`` | .. image:: components/custom_slot.png | | +|``CustomSlot.tsx`` | .. image:: components/custom_slot.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``day_calendar.jsx`` | .. image:: components/day_calendar.png | | +|``DayCalendar.tsx`` | .. image:: components/day_calendar.png | | +-------------------------------+--------------------------------------------------+--------------------------+ |``evaluation_list.jsx`` | .. image:: components/evaluation_list.png | | +-------------------------------+--------------------------------------------------+--------------------------+ |``evaluation.jsx`` | .. image:: components/evaluation.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``master_slot.jsx`` | .. image:: components/master_slot.png | | +|``MasterSlot.tsx`` | .. image:: components/master_slot.png | | +-------------------------------+--------------------------------------------------+--------------------------+ |``pagination.jsx`` | .. image:: components/pagination.png | | +-------------------------------+--------------------------------------------------+--------------------------+ |``reaction.jsx`` | .. image:: components/reaction.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``search_bar.jsx`` | .. image:: components/search_bar.png | | +|``SearchBar.tsx`` | .. image:: components/search_bar.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``search_result.jsx`` | .. image:: components/search_result.png | | +|``SearchResult.tsx`` | .. image:: components/search_result.png | | +-------------------------------+--------------------------------------------------+--------------------------+ |``search_side_bar.jsx`` | .. image:: components/search_side_bar.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``semesterly.jsx`` | .. image:: components/semesterly.png | | +|``Semesterly.tsx`` | .. image:: components/semesterly.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``side_bar.jsx`` | .. image:: components/side_bar.png | | +|``SideBar.jsx`` | .. image:: components/side_bar.png | | +-------------------------------+--------------------------------------------------+--------------------------+ |``side_scroller.jsx`` | .. image:: components/side_scroller.png | | +-------------------------------+--------------------------------------------------+--------------------------+ |``slot_hover_tip.jsx`` | .. image:: components/slot_hover_tip.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``slot_manager.jsx`` | .. image:: components/slot_manager.png | | +|``SlotManager.tsx`` | .. image:: components/slot_manager.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``slot.jsx`` | .. image:: components/slot.png | | +|``Slot.tsx`` | .. image:: components/slot.png | | +-------------------------------+--------------------------------------------------+--------------------------+ |``social_profile.jsx`` | .. image:: components/social_profile.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -|``sort_menu.jsx`` | .. image:: components/sort_menu.png | | -+-------------------------------+--------------------------------------------------+--------------------------+ |``terms_of_service_banner.jsx``| .. image:: components/terms_of_service_banner.png| | +-------------------------------+--------------------------------------------------+--------------------------+ -|``terms_of_service_modal.jsx`` | .. image:: components/terms_of_service_modal.png | | +|``TermsOfServiceModal.tsx`` | .. image:: components/terms_of_service_modal.png | | +-------------------------------+--------------------------------------------------+--------------------------+ | ``timetable_loader.jsx`` | .. image:: components/timetable_loader.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -| ``timetable_name_input.jsx`` | .. image:: components/timetable_name_input.png | | +| ``TimetableNameInput.tsx`` | .. image:: components/timetable_name_input.png | | +-------------------------------+--------------------------------------------------+--------------------------+ -| ``top_bar.jsx`` | .. image:: components/top_bar.png | | +| ``TopBar.tsx`` | .. image:: components/top_bar.png | | +-------------------------------+--------------------------------------------------+--------------------------+ diff --git a/docs/general_labels.png b/docs/general_labels.png new file mode 100644 index 0000000000..11a6d9b741 Binary files /dev/null and b/docs/general_labels.png differ diff --git a/docs/howitworks.rst b/docs/howitworks.rst index 9eae79b843..8cdb384622 100644 --- a/docs/howitworks.rst +++ b/docs/howitworks.rst @@ -1,14 +1,120 @@ .. _howitworks: -How it All Works -================ -*A high level description of how Semester.ly works, and what parts do what* +High Level Design +================= +*A high level description of what Semester.ly is, how it works, and which parts do what* -Semester.ly pulls data about courses, exams, ratings, and more from all across the internet. It saves this data into a custom representation within a **Postgres database**. The data is retrieved using a variety of **webscraping, HTML parsing, and information retrieval** techniques which we've built into our own mini-library of utilities. This data is entered into the database via the **Django** ORM (Object-Relational Mapping). The ORM allows us to query the database and create rows using python code as if these rows were objects. +Problem +~~~~~~~ +Course registration is a complicated process involving several factors that influence +which courses a student decides to take, such as degree requirements, professor and +course ratings, friends, and personal interests. Trying to keep track of potential +schedules a student can take can easily become overwhelming. + +Solution +~~~~~~~~ +Semester.ly aims to make course registration easy and collaborative through a user +interface that focuses on student needs, providing quick access to necessary tools a +student may need in order to organize and decide on what courses they want to take. + +Current Features +~~~~~~~~~~~~~~~~ + +Search +^^^^^^ +.. image:: search_labels.png + +By typing in a query in the search field at the top of the site, students can quickly +search for courses that they are looking for. + +A. Clicking on the course search result will reveal more information about the course + (see below). + +B. [Deprecated] This button will add the course to your optional courses, meaning + Semester.ly will try to fit the course into your schedule if there's space for it. + +C. Add course to schedule. + +D. Hovering over these course sections will preview what your schedule looks if you were + to add the course. + +.. image:: course_modal.png + +*Example of course information, which includes how many credits the course is, a brief +description, [deprecated] course evaluations, sections, and students' reactions* + +There is also an option for Advanced Search, allowing for filtering of +department, area, course level, and day/time. + +.. image:: advanced_search.png + +The courses you add to your schedule will show up in a color-coded display to allow you +to easily distinguish between courses and when they take place. + +.. image::example_schedule.png + +Scheduling +^^^^^^^^^^ +.. image:: general_labels.png + +A. Rotate through potential schedules based on differing sections + +B. Switch the semester from, e.g. Fall 2022 to Spring 2022 + +C. Open the Advanced Search + +D. Add current courses to SIS cart; requires JHU Login + +E. Add a custom event; this is to add, e.g. an extracurricular to the schedule, or any + other activity that is not a course. + +F. Generate a share link to share the schedule with other students + +G. Create a new schedule + +H. Export the calendar to a .ics file + +I. Preferences menu, e.g. toggle on/off weekends + +J. Change schedule name + +K. Select another schedule (of the same semester) to switch to it. + +L. (Behind the dropdown) Find New Friends displays other students who are also taking + your classes. + +M. Compares two schedules together, showing same and differing courses + +N. Opens various account settings + +O. Duplicate schedule + +P. Delete schedule + +Screenshots +^^^^^^^^^^^ +.. image :: compare_timetables.png + +An example of what it looks like to compare two schedules. + +Features in Development +~~~~~~~~~~~~~~~~~~~~~~~ + +0. Enhancing Search - display more than 4 results and scroll infinitely when searching + for courses regularly + +1. Dark Mode - option to toggle between light and dark mode + +2. Study Groups - option to message students who are also taking your class to ask if + they want to study together or go to class together + +Tech Stack +~~~~~~~~~~ +Semester.ly pulls data about courses, ratings, and more from all across the internet. It saves this data into a custom representation within a **Postgres database**. The data is retrieved using a variety of **webscraping, HTML parsing, and information retrieval** techniques which we've built into our own mini-library of utilities. This data is entered into the database via the **Django** ORM (Object-Relational Mapping). The ORM allows us to query the database and create rows using python code as if these rows were objects. We manipulate and access this same data using Django **views** to respond to any web requests directed to our server. For example, when a user clicks on a course to open the course modal, the browser issues a request asking for the data related to that course. Our Django views respond with a **JSON** representation of the course data for rendering on the UI. -The browser knows when and how to make these requests, as well as how to generate the UI based on the responses using React and Redux. **React and Redux** maintain application state and use **Javascript** to render **HTML** based on that state. +The browser knows when and how to make these requests, as well as how to generate the UI based on the responses using React and Redux. **React and Redux** maintain application state and use **Javascript/Typescript** to render **HTML** based on that state. Finally, this HTML is styled with **SCSS** for an appealing, cohesively styled user experience! @@ -23,33 +129,30 @@ The overall, the Semester.ly application is made up of many smaller *apps* which * - App Name - Key Models/Functionality - Description - * - Semesterly - - Root app. No core models, views, or functionality. - - Delegates urls to sub-apps, contains end-to-end tests, other configuration. - * - Timetable - - **Models:** Course, Section, Offering, Timetable, Textbook, Evaluations - - Timetable generation and all models required for timetable representation. + * - Agreement + - Terms of Service and Privacy Policy views + - Tracks changes to terms of service and privacy policy. + * - Analytics + - **Models:** SharedTimetable, DeviceCookie, Feature Views + - Tracks analytics on the usage of features as objects in the database. Renders a dashboard at ``/analytics``. + * - Authpipe + - Authentication, login, signup + - Authentication pipeline functions for the authentication of users, creation of students, and loading of social data. * - Courses - Course Serializer, Views for returning course info - Functionality for accessing course data, the course modal, course pages - * - Authpipe - - Authentication, login, signup - - Authentication pipeline functions for the authentication of users, creation of students, and loading of social data via `Python Social Auth `_ - * - Analytics - - **Models:** SharedTimetable, DeviceCookie, Feature Views - - Tracks analytics on the usage of features as objects in the database. Renders a dashboard at /analytics. - * - Exams - - Final exam share model, views for serving final exam schedule - - Contains the logic for inferring exam schedules from course schedules - * - Integrations - - Integration views - - Functionality for integrating school specific code to appear in search or in the course modal + * - Parsing + - Scrapers, parsers, parsing utilities + - Home of the data pipeline that fills our database * - Searches - Advanced search, basic search - Views for parsing queries and returning course data + * - Semesterly + - No core models, views, or functionality; contains Django settings. + - Delegates urls to sub-apps, contains end-to-end tests, other configuration. * - Students - - Student, Personal Timetables, Reactions, Personal Event + - **Models:** Student, Personal Timetables, Reactions, Personal Event - All logic for logged-in specific users. Creating and saving a personal timetable, reacting to courses, saving custom events. - * - Parsing - - Scrapers, parsers, parsing utilities - - Home of the data pipeline that fills our database \ No newline at end of file + * - Timetable + - **Models:** Course, Section, Offering, Timetable, Semester, Evaluations + - Timetable generation and all models required for timetable representation. \ No newline at end of file diff --git a/docs/index.rst b/docs/index.rst index 7cd92670a6..b5daa7dc82 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -2,7 +2,7 @@ About Semester.ly ================= -**Built for students by students.** Semester.ly is a web platform created to bring modern technology to the most difficult and archaic parts of higher education. It all started with one problem, universal across all college campuses: course registration is a pain. Spreadsheets, sticky notes, PDFs of course evaluations, and an outdated registration platform....it is all too much in the heat of classes and exams. We set out with the mission to make college more collaborative and more stress free. +**Built for students by students.** Semester.ly is an open source web platform created to bring modern technology to the most difficult and archaic parts of higher education. It all started with one problem, universal across all college campuses: course registration is a pain. Spreadsheets, sticky notes, PDFs of course evaluations, and an outdated registration platform....it is all too much in the heat of classes and exams. We set out with the mission to make college more collaborative and more stress free. What We Believe In ------------------ @@ -19,7 +19,7 @@ Education should be collaborative Students know best ~~~~~~~~~~~~~~~~~~ - Universities can't keep up with technology. Most university systems aren't even mobile responsive! Forget about using social media. That's why Semester.ly is built by students, and always will be. That's why we are open source. Oh, and it's why we use emojis 👍. + Universities can't keep up with technology. Most university systems aren't even mobile responsive! Forget about using social media. That's why Semester.ly is built by students, and always will be. .. toctree:: @@ -28,12 +28,12 @@ Students know best self setup - environment parsing advancedconfig howitworks learning contributing + styleguide addaschool testing documentation diff --git a/docs/learning.rst b/docs/learning.rst index beb2c1c459..05b43f4a19 100644 --- a/docs/learning.rst +++ b/docs/learning.rst @@ -3,18 +3,23 @@ Learning The Stack ================== -.. note:: Learning a new thing can be scary. Especially when all you have are some docs and a massive code base to learn from. That's why we are here to help you learn, build, and contribute. Ask us questions! contact@semester.ly +.. note:: + + Learning a new thing can be scary, especially when all you have are some docs and a + massive code base to learn from. That's why we are here to help you learn, build, + and contribute. Ask us questions at our `Discord `_! + Our Stack ~~~~~~~~~~ -=================== =========== ================= ===================================================================================================================================== -Component Technology Style/Methodology Tutorials -=================== =========== ================= ===================================================================================================================================== -Database PostgreSQL Django ORM `Making Queries with Django `_ -Backend Framework Django PEP8 `Writing your first Django app `_ -Frontend Framework React Redux/Airbnb `React Basics `_, `React `_, `Redux `_. -CSS Framework SCSS BEM/Airbnb `CSS Basics `_, `SCSS `_, `BEM `_ -=================== =========== ================= ===================================================================================================================================== +=================== =========== ================= +Component Technology Style/Methodology +=================== =========== ================= +Database PostgreSQL Django ORM +Backend Framework Django pycodestyle/Black +Frontend Framework React/Redux ESLint/Prettier +CSS Framework SCSS BEM/Airbnb +=================== =========== ================= Tutorials and Resources ~~~~~~~~~~~~~~~~~~~~~~~ @@ -22,22 +27,43 @@ Tutorials and Resources Learning the Backend #################### -**Django** is a Python Web framework that provides a huge number of tools for web developers to quickly write scalable code with minimal configuration. It is used all over the tech industry by companies like Spotify, Instagram, YouTube, and DropBox! +**Django** is a Python Web framework that provides a huge number of tools for web +developers to quickly write scalable code with minimal configuration. It is used all +over the tech industry by companies like Spotify, Instagram, YouTube, and DropBox! + +`Writing your first Django app +`_ is the official Django +tutorial. It is top notch! The official documentation can be found at the same url and +provides high quality information about how to build with this modern web framework. For +example, here's the documentation on `making queries with Django +`_. -`Writing your first Django app `_ is the official Django tutorial. It is top notch! The official documentation can be found at the same url and provides high quality information about how to build with this modern web framework. Learning React/Redux #################### -React is a Javascript library created by Facebook for "building user interfaces". It allows developers to make encapsulated components that can be written once and used anywhere. +React is a Javascript library created by Facebook for building user interfaces. It +allows developers to make encapsulated components that can be written once and used +anywhere. Redux is state container that makes React development easier to manage long term! -If you're a beginner, `we've created a React tutorial `_ that will teach you the basics of developing a React app all via codepen. This is a great way to get started! +The official docs are the go-to: `React Basics +`_, `React Hooks +`_, `Redux & Redux Toolkit +`_, and `TypeScript +`_. We suggest going through the step-by-step +React tutorial rather than the practical tutorial because the practical tutorial is done +with class-based components, but we prefer functional components. -We highly recommend continuing with React via `EggHead's React Fundamentals video `_ which teaches you everything you'll need to know. +If you're looking for something more structured, one suggestion is this `Udemy +course `_, which +covers functional React, Redux concepts, TypeScript, and more. -Finally, finish off with `EggHead's Redux tutorial `_. You'll be a pro after that! +Ultimately, the best practice will be to create a small project using ``npx +create-react-app my-app --template redux-typescript`` and going from there. You will +become much more familiar with all of the concepts when you try to work through it +yourself. Learning CSS/SCSS ################# @@ -46,8 +72,11 @@ The most important step is to `learn the CSS basics `_, a css preprocesor. -For development, we use the BEM methedology (`learn about BEM here! `_) and the `Airbnb style guide `_. +For development, we use the BEM methedology (`learn about BEM here! +`_) and the `Airbnb style guide +`_. Learning Scraping/Parsing ######################### -Our own tutorial, coming soon! \ No newline at end of file + +Coming soon! \ No newline at end of file diff --git a/docs/modules/exams.rst b/docs/modules/exams.rst deleted file mode 100644 index f59e91429e..0000000000 --- a/docs/modules/exams.rst +++ /dev/null @@ -1,25 +0,0 @@ -Exams App -============= - -The exams app provides minimal infrastructure for concluding exam periods based on a timetable. So far it only supports rule based scheduling meaning "If Monday 9-12, exam is 5/12 2-5pm" and is only used at Johns Hopkins. However, the infrastructure can be used for any school using a rule based approach. - -Models -~~~~~~ -.. automodule:: exams.models - :members: - -Views -~~~~~ -.. automodule:: exams.views - :members: - - -Final Exam Scheduler -~~~~~~~~~~~~~~~~~~~~~ -.. automodule:: exams.final_exam_scheduler - :members: - -Example Implementation -###################### -.. automodule:: exams.jhu_final_exam_scheduler - :members: diff --git a/docs/modules/searches.rst b/docs/modules/searches.rst index 1401e11cc5..0cd1893dfa 100644 --- a/docs/modules/searches.rst +++ b/docs/modules/searches.rst @@ -1,11 +1,8 @@ Searches App ============= -Searches app provides a useful, efficient and scalable search backend using basic techinques of information retrieval. - -Each course model contains a vector stored as a pickled scipy sparse vector. This vector represents this course. Upon search, a vectorizer creates a similar vector representation for that query. We then fetch ~100 candidates for serving as search results. These canidates are then sorted by the cosine similarity between their vector and the query vector. - -To increase accuracy and provide for a clean search experience for key use cases, the search places a heavier weight on courses with matching titles. However, description and other fields are searched as well. +Searches app provides a useful, efficient and scalable search backend using basic +techniques of information retrieval. Views ~~~~~ @@ -15,4 +12,4 @@ Views Utils ~~~~~ .. automodule:: searches.utils - :members: \ No newline at end of file + :members: diff --git a/docs/modules/student.rst b/docs/modules/student.rst index dc75d5ff22..6cf8bea22f 100644 --- a/docs/modules/student.rst +++ b/docs/modules/student.rst @@ -1,9 +1,14 @@ Student App =========== -The Student model is an abstraction over the Django user to provide us with a more full user profile including information pulled from social authentication via Google and/or Facebook. This app handles utilities for overriding the Python Social Auth authentication pipeline, while also handling the functionality for logged in users. +The Student model is an abstraction over the Django user to provide us with a more full +user profile including information pulled from social authentication via Google and/or +Facebook (and/or Microsoft JHED at JHU). This app handles utilities for overriding the +Python Social Auth authentication pipeline, while also handling the functionality for +logged in users. -The student app also encapsulates all models tied directly to a user like PersonalTimetables, PersonalEvents, Reactions, and notification tokens. +The student app also encapsulates all models tied directly to a user like +PersonalTimetables, PersonalEvents, and Reactions. Models ~~~~~~ diff --git a/docs/parsing.rst b/docs/parsing.rst index 9773c7cecb..dcb2b083fd 100644 --- a/docs/parsing.rst +++ b/docs/parsing.rst @@ -5,18 +5,29 @@ Loading the Database To load the database you must ingest (create the course JSON), validate (make sure the data makes sense), and digest (load the JSON into the database). You can do so using the following commands: +.. tip:: + + You will often have to run commands within the Docker containers. To access + containers, open the Docker explorer on the left pane. There should be three + containers named ``jhuopensource/semesterly``, ``semesterly``, and + ``postgres:12.1``. Right clicking any of these should give you the option ``Attach + Shell``, which will open a terminal into the corresponding container. For this + section, attach the shell to the ``semesterly`` container. + Ingest ###### -.. note:: If you have ingested before and still have the JSON file on your device, you may skip ingesting and simply digest the old data. This is useful if you are resetting your database during development and wish to quickly reload course data. +.. note:: To parse JHU data, you will need to acquire an API access key from `SIS `_. Add the key to ``dev_credentials.py`` in the ``semesterly/`` directory. Also, note that the [SCHOOLCODE] is ``jhu``. .. code-block:: bash - python manage.py ingest [SCHOOLCODE] + python manage.py ingest [SCHOOLCODE] --years [YEARS] --terms [TERMS] -You may leave out the school code to parse all schools. This will run for a substantial amount of time and is not recommended. +For example, use ``python manage.py ingest jhu --years 2023 --terms Spring`` to parse +Spring 2023 courses. You may also leave out the school code to parse all schools. This +will run for a substantial amount of time and is not recommended. -.. note:: To parse JHU data, you will need to acquire an API access key from `SIS `_. Add the key to ``dev_credentials.py`` in the ``semesterly/`` directory. +.. note:: If you have ingested before and still have the JSON file on your device, you may skip ingesting and simply digest the old data. This is useful if you are resetting your database during development and wish to quickly reload course data. Digest ###### @@ -28,8 +39,70 @@ Digest You may leave out the school code to digest all schools. +Loading Course Evaluations for JHU +********************************** + +Loading JHU evaluations into Semester.ly requires two steps. First, run the selenium parser locally to crawl the evaluation HTML file and save it to a JSON file. +Then, run the digest command to load the JSON file into the database. JHU publishes evaluations for the past 5 years, so the parser will crawl the evaluations for the past 5 years and save them to a JSON file. +However, to get the evaluations for the current semester, you will need to run the parser again in the current year after the evaluations are published at the end of the semester. + +Instructions for Parsing Evaluations +#################################### + +**Prerequisites** + +Ensure your computer is using an **x86-64 architecture** since the chrome driver is only compatible with this architecture. + + +1. **Install Chrome in Docker Environment** +From your web container shell, execute the following script: + +.. code-block:: bash + + code/build/install_chrome.sh + +2. **Set the Year Variable** +Modify the `year` variable in `parsing/library/evals_parser.py` to select the desired year for the evaluations. +Run the following command in the web container shell: + +.. code-block:: bash + + python parsing/library/evals_parser.py + +.. note::Enter your **JHU email and password** when prompted. + +3. **Ingestion and Digestion to Local Database** +After the ingestion process completes, the file `parsing/schools/jhu/data/evals.json` will be generated. +To digest the evaluations into the local database, run: + +.. code-block:: bash + + python manage.py digest jhu --types evals + + +Final Step for Production Database +#################################### + +After merging `evals.json` to production, the script `run_parser.sh` will handle the digestion of the evaluations into the production database. + +Troubleshooting +############### + +**Selenium or Chrome Driver Issues:** +If you encounter any issues related to Selenium or the Chrome Driver, try running the following command in the web container shell: + +.. code-block:: bash + + pip install -r requirements.txt + +This command will install necessary dependencies that may resolve the issues + +**JSON Output Generation Issues:** +If you're facing difficulties with generating JSON output, consider executing the script locally rather than in a Docker environment. + + Learn More & Advanced Usage -########################### +*************************** There are advanced methods for using these tools. Detailed options can be viewed by running @@ -37,10 +110,12 @@ There are advanced methods for using these tools. Detailed options can be viewed python manage.py [command] --help -For example, you can use the term and year flags to parse only a specific term:: -.. code-block:: bash +If you are developing a parser or contributing to the pipeline design, you will more than likely need to learn more. Checkout :ref:`pipeline` or :ref:`addaschool` - python manage.py ingest [SCHOOLCODE] --term Fall --year 2017 +.. tip:: -If you are developing a parser or contributing to the pipeline design, you will more than likely need to learn more. Checkout :ref:`pipeline` or :ref:`addaschool` + You may need to run Postgres commands beyond what running queries through the + Postgres extension is capable of. In this case, attach a shell to the postgres + container and run ``psql -U postgres``. You should now be in the postgres shell. You + can use ``\q`` to leave it. diff --git a/docs/scss.rst b/docs/scss.rst index 5bdb8da2c9..b89aef0db0 100644 --- a/docs/scss.rst +++ b/docs/scss.rst @@ -15,8 +15,7 @@ Written in plain CSS: 1. Splash pages 2. Pages for SEO - 3. Emails and unsubscribe pages - 4. basically everything that is not the web app + 3. basically everything that is not the web app File Structure ~~~~~~~~~~~~~~ diff --git a/docs/search_labels.png b/docs/search_labels.png new file mode 100644 index 0000000000..425accb2ba Binary files /dev/null and b/docs/search_labels.png differ diff --git a/docs/setup.rst b/docs/setup.rst index bf40913e77..5df53ddb69 100644 --- a/docs/setup.rst +++ b/docs/setup.rst @@ -3,139 +3,195 @@ Installation ============= -This guide will bring you through the steps of creating a local Semester.ly server and development environment. It will walk through the setup of the core ecosystems we work within: Django/Python and React/Node/JS. It will additionally require the setup of a PostgreSQL database. +This guide will bring you through the steps of creating a local Semester.ly server and +development environment. It will walk through the setup of the core ecosystems we work +within: Django/Python and React/Node/JS. It will additionally require the setup of a +PostgreSQL database. + +Setting up Visual Studio Code +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +We recommend using `Visual Studio Code `_ +(VSCode) for its integration with WSL 2, Docker, and the Postgres database. +This section assumes you will be using Visual Studio Code for development with +Semester.ly. + +1. **If you are on Windows OS**, see the following guide on +`installing Windows Subsystem for Linux (WSL) +`_. We recommend +choosing Ubuntu 20.04 as your linux distribution. Make sure you take the extra +steps to enable WSL 2 as it will be required for Docker. + +After WSL 2 is installed, install the `Remote - WSL extension by Microsoft +`_ +in VSCode. This will allow you to open a VSCode window within your linux +subsystem. Press ``Ctrl+Shift+P`` and select the option ``Remote-WSL: New WSL +Window``. + +2. Install the `Docker extension by Microsoft +`_, the +`remote containers extension by +Microsoft +`_ +and the `Postgres extension by Chris Kolkman +`_. + +3. Ensure that you are in a WSL Window in VSCode before continuing to the next +step. You can open a terminal by selecting the menu option ``Terminal -> New +Terminal``. Fork/Clone The Repository ~~~~~~~~~~~~~~~~~~~~~~~~~ -Forking Semester.ly will create your own version of Semester.ly listed on your GitHub! -Cloning your Semester.ly fork will create a directory with all of the code required to run your own local development server. Navigate to the directory you wish to work from, then execute: +Forking Semester.ly will create your own version of Semester.ly listed on your GitHub! +Cloning your Semester.ly fork will create a directory with all of the code required to run your own local development server. Navigate to the directory you wish to work from, then execute: -1. **Fork** navigate to our `GitHub repository `_ then, in the top-right corner of the page, click Fork. +1. **Fork** navigate to our `GitHub repository `_ then, in the top-right corner of the page, click Fork. 2. **Clone** by executing this line on the command line: - .. note:: **ATTENTION:** Be sure to replace [YOUR-USERNAME] with your own git username + .. note:: **ATTENTION:** Be sure to replace [YOUR-USERNAME] with your own git username .. code-block:: bash git clone https://github.com/[YOUR-USERNAME]/semesterly +3. Enter the directory: -Setup a Python Virtual Enviroment -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Make sure you have installed Python 2.7. If you have not you can `follow this `_. Please also download the python installer, `PIP (install guide) `_. We will now install and setup a python virtual environment. This keeps your dependencies for other projects and classes seperate from those required for Semester.ly. + .. code-block:: bash -Install virtualenv: + cd semesterly -.. code-block:: bash +4. Set up the upstream remote to jhuopensource/semesterly: - sudo pip install virtualenv + .. code-block:: bash -Create a virtual environment called ``venv``: + git remote add upstream https://github.com/jhuopensource/semesterly -.. code-block:: bash +Setting up Docker +~~~~~~~~~~~~~~~~~ - virtualenv -p /usr/bin/python2.7 venv +Steps are below on getting your local development environment running: -To enter your virtual environment, execute the following code from your Semesterly directory: +1. **Download and install docker** for your environment (Windows/Mac/Linux are supported) + https://www.docker.com/get-started -.. code-block:: bash +2. Create **semesterly/local_settings.py** as follows: - source venv/bin/activate + .. code-block:: bash -.. note:: Be sure to execute the above "source" command anytime you are working on Semesterly! + DEBUG = True + SHOW_DEBUG_TOOLBAR = True + DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.postgresql_psycopg2', + 'NAME': 'postgres', + 'USER': 'postgres', + 'PASSWORD': '', + 'HOST': 'db', + 'PORT': '5432', + } + } -Check your OS info -~~~~~~~~~~~~~~~~~~ -If you're on a posix OS (Mac, Ubuntu, Fedora, CentOS, etc.) this is how you check what version of OS you're on. + .. note:: **ATTENTION:** When you clone the repo, you get a folder called semesterly and inside there is another folder called semesterly. Put this in the second semesterly folder. -.. code-block:: bash +3. Edit **semesterly/dev_credentials.py** and add a value for JHU_API_KEY in single quotes like below. - uname -n - -Install PostgreSQL -~~~~~~~~~~~~~~~~~~ -Before installing the python requirements, you must make sure to have PostgreSQL setup on your device. + You can request this API KEY from http://sis.jhu.edu/api. -**On mac**, `install Homebrew `_ and run: + .. code-block:: bash -.. code-block:: bash + 'JHU_API_KEY': 'xxxxxxxx', - brew install postgres - pg_ctl -D /usr/local/var/postgres start && brew services start postgresql + .. note:: **ATTENTION:** This is also in the second semesterly directory. -**On Ubuntu 14.x.x** use apt-get: + Now run this command in your terminal to make sure that this file isn't tracked by Git and your API key stays local to you. -.. code-block:: bash + .. code-block:: bash - sudo apt-get install postgresql python-psycopg2 libpq-dev libxslt-dev libxml2-dev + git update-index --skip-worktree semesterly/dev_credentials.py -**On Ubuntu 16.x.x** use apt: + *Alternatively*, you may create **semesterly/sensitive.py** as follows: -.. code-block:: bash + .. code-block:: bash - sudo apt install postgresql python-psycopg2 libpq-dev libxslt-dev libxml2-dev + SECRETS = { + 'JHU_API_KEY': 'xxxxxxxx', + # Other sensitive information goes here + } -**On CentOS / Fedora** use yum: + This file will automatically be ignored by git. Be sure to replace + 'xxxxxxxx' with your own API key. -.. code-block:: bash +4. **Append** this entry to your hosts file as follows (This file is in C:\\Windows\\System32\\drivers\\etc\\hosts or /etc/hosts) - sudo yum install postgresql gcc python-lxml postgresql-libs libxslt-devel libxml2-devel + .. code-block:: bash -Install Python Requirements -~~~~~~~~~~~~~~~~~~~~~~~~~~~ + 127.0.0.1 sem.ly jhu.sem.ly -.. note:: **ATTENTION MAC USERS:** you must install the xcode command line tools via ``xcode-select --install`` before proceeding. You may also need to update openssl. If so, please `follow this guide `_. + .. note:: **ATTENTION:** If you're working on other schools, add their URLs here as well (i.e. uoft.sem.ly for University of Toronto). -All python dependencies are kept in a file called ``requirements.txt``. Anytime a dependency is added or changed, we update it in this file. To bring your virutal environment up to date with all of these requirements easily, simply execute: +5. Launch terminal or a command window and run: -.. code-block:: bash + .. code-block:: bash - pip install --upgrade pip - pip install -r requirements.txt + docker-compose build && docker-compose up -There are python modules that are missing from requirements.txt. Install them with: + The **build** command creates a local database and build of your source code. + The **up** command runs everything. Be careful not to build when you don't need to as this will destroy your entire database and you'll need to ingest/digest again to get your course data (which takes about 30 minutes). -.. code-block:: bash + .. note:: + + If you run into additional errors, try the following: - pip install pyyaml pygments kombu==3.0.33 billiard + 1. Change "buildkit" from ``true`` to ``false`` in ``Settings -> Docker + Engine``. -Install Node Packages -~~~~~~~~~~~~~~~~~~~~~~ -Node and node package manager are the backbone of our frontend setup. To begin, install Node Package Manager (npm). + 2. Refer to the `Docker troubleshooting document + `_ -**On mac**: + Open a browser and visit http://jhu.sem.ly:8000 to verify you have + Semester.ly running. + + .. note:: + + In order to log in on your local running version of Semester.ly, you will need + access to auth keys. Please ask one of the current developers for access to + these keys if you require use of login authentication for development. + Furthermore, some logins require use of https, so ensure that you are on + https://jhu.sem.ly instead of http://jhu.sem.ly:8000 in these cases. -.. code-block:: bash - brew install node +.. tip:: -**On Ubuntu 14.x.x**: + If you ever need to hard reset Docker, use the command ``docker system prune -a``. + You can then follow up with ``docker-compose build && docker-compose up``. -.. code-block:: bash +Setting up Postgres +~~~~~~~~~~~~~~~~~~~ +You can easily access the Postgres database within VSCode by following the next +steps. You should have the `Postgres extension by Chris Kolkman +`_ +installed. - wget -qO- https://deb.nodesource.com/setup_6.x | sudo bash - - sudo apt-get install nodejs - sudo apt-get install npm +1. Open the Postgres explorer on the left pane and click the plus button in the top right of the explorer to add a new database connection. -**On Ubuntu 16.x.x**: +2. Enter ``127.0.0.1`` as the database connection. -.. code-block:: bash +3. Enter ``postgres`` as the user to authenticate as. - wget -qO- https://deb.nodesource.com/setup_6.x | sudo bash - - sudo apt install nodejs - sudo apt install npm +4. Enter nothing as the password of the PostgreSQL user. -**On CentOS / Fedora**: +5. Enter ``5432`` as the port number to connect to. -.. code-block:: bash +6. Select ``Standard Connection``. - sudo yum install -y gcc-c++ make - curl -sL https://rpm.nodesource.com/setup_6.x | sudo -E bash - - sudo yum install nodejs +7. Select ``postgres``. -Then use the newly installed Node Package Manager (npm) to install all javascript dependencies. When you execute this command, it reads from the file ``package.json`` which specifies all dependencies, their versions, and some additional node related configurations: +8. Enter a display name for the database connection, such as ``semesterly``. -.. code-block:: bash +Upon expanding a few tabs under the new semesterly database, you should see +several tables. Right clicking any of these tables gives you options to select +(view) the items in the table or run a query. - sudo npm install +If this is your first time running Semester.ly, you will want to populate your +database with courses. Before you continue to :ref:`parsing`, please read the +following additional tips for working with Docker and Postgres. diff --git a/docs/styleguide.rst b/docs/styleguide.rst new file mode 100644 index 0000000000..c48010934a --- /dev/null +++ b/docs/styleguide.rst @@ -0,0 +1,38 @@ +.. _styleguide: + +Style Guide +=========== + +Javascript/Typescript Style Guide +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +1. We follow the ESLint style guideline as configured in our ``.eslintrc.js`` file. + +2. We format our frontend code using Prettier. Line length is configured to 88, like the + backend. + +3. Use PascalCase for React components, camelCase for everything else. + +4. When creating new components, make them **functional** components. + +5. When adding Redux state, make them **slices**. + +As you can see, we are shifting towards using functional React components and Redux +Toolkit with TypeScript. As such, all new features are expected to use these +technologies. If you find that you can achieve what you are trying to do more easily by +refactoring a class-based component to a functional component, or a reducer to a slice, +you are encouraged to do so. + +Python Style Guide +~~~~~~~~~~~~~~~~~~ + +1. We follow the pycodestyle style guide for Python, with the exception that the +max-line-length is 88 instead of 79. This is to comply with the default settings of the +autoformatter black. + +2. Use snake_case for variable names and functions. Use PascalCase for classes. Use +f-strings over ``%s`` strings or ``.format()``. + +3. Use type annotations when the type of a variable is ambiguous. + +4. If possible, helper functions go *after* the function they appear in. Do not put them +before the method as is commonly done in languages like C. \ No newline at end of file diff --git a/docs/testing.rst b/docs/testing.rst index a15c2f7b90..8ae0238e36 100644 --- a/docs/testing.rst +++ b/docs/testing.rst @@ -47,16 +47,16 @@ Writing Tests Unit Tests ---------- -Contributors are encouraged to write unit tests for changed or new code. +Contributors are encouraged to write unit tests for changed and new code. By separating out logic into simple pure functions, you can isolate the -behaviour you care about in your unit tests, and not worry about testing +behavior you care about in your unit tests and not worry about testing for side effects. Following the design principles outlined in the resources from the :ref:`learning` section helps with this. For example, extracting all code that extract information from the state into selectors, which are pure functions that take the state (or some part of it) as input and output some data, will -make it easy to test and change any state related behavior. -Sometimes you may want to test behaviour that can't be extracted into a pure -function, or that touches external interfaces. There are a number of strategies +make it easy to test and change state-related behavior. +Sometimes you may want to test behavior that can't be extracted into a pure +function or that touches external interfaces. There are a number of strategies you can use in these cases. Integration Tests @@ -67,7 +67,7 @@ create a store with desired initial state, dispatch the action, and then check t had the desired effect on the state. Backend requests are mocked using the nock library. -For testing views, we use django's built in client to send requests to the backend. +For testing views, we use django's built-in client to send requests to the backend. It's also possible to use django's request factory to create requests to provide directly as input to your views. diff --git a/exams/__init__.py b/exams/__init__.py deleted file mode 100644 index c53afacbff..0000000000 --- a/exams/__init__.py +++ /dev/null @@ -1,12 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - diff --git a/exams/admin.py b/exams/admin.py deleted file mode 100644 index c698ff635c..0000000000 --- a/exams/admin.py +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from django.contrib import admin - -# Register your models here. diff --git a/exams/apps.py b/exams/apps.py deleted file mode 100644 index 053a5e110b..0000000000 --- a/exams/apps.py +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from __future__ import unicode_literals - -from django.apps import AppConfig - - -class ExamsConfig(AppConfig): - name = 'exams' diff --git a/exams/final_exam_scheduler.py b/exams/final_exam_scheduler.py deleted file mode 100644 index 2b62e1ebb7..0000000000 --- a/exams/final_exam_scheduler.py +++ /dev/null @@ -1,107 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -import re - - -class FinalExamScheduler: - def __init__(self): - self.list_of_rules = [] - self.s17 = [] - self.f17 = [] - self.s18 = [] - self.f18 = [] - self.s19 = [] - self.schedule = {} - self.year = "" - self.sem = "" - - def make_schedule(self, tt): - ''' - Takes a timetable - Returns a dictionary mapping each course code from the timetable to the final exam date/time - for that course based on the rules of the scheduler. - E.g. - { - 'EN.600.440' : " Monday, May 5th 12pm", - 'EN.600.440' : " Monday, May 5th 12pm", - 'EN.600.440' : " Monday, May 5th 12pm" - } - ''' - semester = tt['courses'][0]["slots"][0]["semester"] - self.year = semester["year"] - self.sem = semester["name"] - if self.year == "2017" and self.sem == "Spring": - self.list_of_rules = self.s17 - elif self.year == "2017" and self.sem == "Fall": - self.list_of_rules = self.f17 - elif self.year == "2018" and self.sem == "Fall": - self.list_of_rules = self.f18 - elif self.year == "2018" and self.sem == "Spring": - self.list_of_rules = self.s18 - elif self.year =="2019" and self.sem == "Spring": - self.list_of_rules = self.s19 - - self.schedule = {} - for course in tt['courses']: - for rule in self.list_of_rules: - result = rule.apply(course) - - if result != None: - self.schedule[int(course['id'])] = { - 'time': result, - 'name': course['name'], - 'code': course['code'], - } - break - if result is None: - self.schedule[int(course['id'])] = 'Exam time not found' - - return self.schedule - - -class Rule: - def __init__(self, list_of_days=None, start_time=None, result=None, end_time="24:00", - start_only=False, list_of_codes=None, code_regex=None): - self.list_of_days = list_of_days - self.start_time = start_time - self.end_time = end_time - self.result = result - self.start_only = start_only - self.list_of_codes = list_of_codes - self.code_regex = re.compile(code_regex) if code_regex else None - - def check_times(self, slot): - return (not self.start_only and ( - int(slot['time_start'].split(':')[0]) >= int(self.start_time.split(':')[0]) and int( - slot['time_end'].split(':')[0]) <= int(self.end_time.split(':')[0]))) | ( - self.start_only and ( - int(slot['time_start'].split(':')[0]) == int(self.start_time.split(':')[0]))) - - def apply(self, course): - if self.code_regex: - if self.code_regex.match(course['code']): - return self.result - elif self.list_of_codes: - if course['code'] in self.list_of_codes: - return self.result - else: - filtered_slots = filter(lambda slot: slot['section_type'] == 'L', course['slots']) - for slot in filtered_slots: - if slot['day'] in self.list_of_days and self.check_times(slot): - return self.result - return None - - def __repr__(self): - return 'Days: {0], Start time: {1}, End Time {2}, Results: {3}'.format( - self.list_of_days, self.start_time, self.end_time, self.result - ) \ No newline at end of file diff --git a/exams/jhu_final_exam_scheduler.py b/exams/jhu_final_exam_scheduler.py deleted file mode 100644 index d3d971b9ef..0000000000 --- a/exams/jhu_final_exam_scheduler.py +++ /dev/null @@ -1,175 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from final_exam_scheduler import FinalExamScheduler, Rule - - -class JHUFinalExamScheduler(FinalExamScheduler): - """ - Database Object that has a list of JHU's rules for the current semester. - Should be updated every semester. Initialize each Rule with select fields - depending on what determines whether the Rule is valid for. See Final Exam Scheduler - for more information - """ - - def __init__(self): - # SPRING 2017 - self.s17 = [ - Rule( - list_of_codes=['AS.110.105', 'AS.110.106', 'AS.110.107', 'AS.110.108', 'AS.110.109', - 'AS.110.201', 'AS.110.202', 'AS.110.302'], result='5/10 9-12'), - Rule(code_regex=r'AS\.(210|373|375|377|378|380|381|384).(1|2)..', - result='Exam time not found'), - Rule(list_of_codes=['AS.171.102', 'AS.171.108'], result='5/18 9-12'), - Rule(list_of_codes=['AS.020.152'], result='5/14 9-12'), - Rule(list_of_codes=['EN.600.226'], result='5/14 2-5'), - Rule(list_of_codes=['EN.600.120'], result='5/10 6-9'), - Rule(list_of_days=['M'], start_time='8:00', result='5/18 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='9:00', result='5/17 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='10:00', result='5/16 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='11:00', result='5/15 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='12:00', result='5/12 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='13:30', result='5/11 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='15:00', result='5/13 2-5', start_only=True), - Rule(list_of_days=['M'], start_time='16:30', result='5/16 2-5', start_only=True), - Rule(list_of_days=['M'], start_time='18:00', result='5/15 6-9', start_only=True), - Rule(list_of_days=['W'], start_time='18:00', result='5/17 6-9', start_only=True), - Rule(list_of_days=['R'], start_time='18:00', result='5/11 6-9', start_only=True), - Rule(list_of_days=['T'], start_time='9:00', result='5/12 2-5', start_only=True), - Rule(list_of_days=['T'], start_time='10:30', result='5/13 9-12', start_only=True), - Rule(list_of_days=['T'], start_time='12:00', result='5/17 2-5', start_only=True), - Rule(list_of_days=['T'], start_time='13:30', result='5/18 2-5', start_only=True), - Rule(list_of_days=['T'], start_time='15:00', result='5/11 2-5', start_only=True), - Rule(list_of_days=['T'], start_time='16:30', result='5/15 2-5', start_only=True), - Rule(list_of_days=['T'], start_time='18:00', result='5/16 6-9', start_only=True) - ] - - # FALL 2017 - self.f17 = [ - Rule( - list_of_codes=['AS.110.105', 'AS.110.106', 'AS.110.107', 'AS.110.108', 'AS.110.109', - 'AS.110.201', 'AS.110.202', 'AS.110.302'], result='12/13 9-12'), - Rule(code_regex=r'AS\.(210|373|375|377|378|380|381|384).(1|2)..', - result='Exam time not found'), - Rule(list_of_codes=['AS.171.101', 'AS.171.107'], result='12/18 2-5'), - Rule(list_of_codes=['AS.020.151'], result='12/17 9-12'), - Rule(list_of_codes=['EN.601.226'], result='12/17 9-12'), - Rule(list_of_codes=['EN.601.107', 'EN.601.220'], result='12/17 2-5'), - Rule(list_of_codes=['EN.540.202'], result='12/17 6-9'), - Rule(list_of_days=['M'], start_time='8:00', result='12/18 2-5', start_only=True), - Rule(list_of_days=['M'], start_time='9:00', result='12/21 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='10:00', result='12/16 2-5', start_only=True), - Rule(list_of_days=['M'], start_time='11:00', result='12/14 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='12:00', result='12/22 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='13:30', result='12/14 2-5', start_only=True), - Rule(list_of_days=['M'], start_time='15:00', result='12/20 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='16:30', result='12/15 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='18:00', result='12/18 6-9', start_only=True), - Rule(list_of_days=['W'], start_time='18:00', result='12/20 6-9', start_only=True), - Rule(list_of_days=['T'], start_time='9:00', result='12/20 2-5', start_only=True), - Rule(list_of_days=['T'], start_time='10:30', result='12/18 9-12', start_only=True), - Rule(list_of_days=['T'], start_time='12:00', result='12/19 9-12', start_only=True), - Rule(list_of_days=['T'], start_time='13:30', result='12/15 2-5', start_only=True), - Rule(list_of_days=['T'], start_time='15:00', result='12/21 2-5', start_only=True), - Rule(list_of_days=['T'], start_time='16:30', result='12/19 2-5', start_only=True), - Rule(list_of_days=['T'], start_time='18:00', result='12/19 6-9', start_only=True), - Rule(list_of_days=['R'], start_time='18:00', result='12/14 6-9', start_only=True) - ] - - # SPRING 2018 - self.s18 = [ - Rule( - list_of_codes=['AS.110.105', 'AS.110.106', 'AS.110.107', 'AS.110.108', 'AS.110.109', - 'AS.110.201', 'AS.110.202', 'AS.110.302'], result='5/9 9-12'), - Rule(code_regex=r'AS\.(210|373|375|377|378|380|381|384).(1|2)..', - result='Exam time not found'), - Rule(list_of_codes=['AS.171.102', 'AS.171.108'], result='5/10 2-5'), - Rule(list_of_codes=['AS.020.152'], result='5/13 9-12'), - Rule(list_of_days=['M'], start_time='8:00', result='5/10 2-5', start_only=True), - Rule(list_of_days=['M'], start_time='9:00', result='5/12 2-5', start_only=True), - Rule(list_of_days=['M'], start_time='10:00', result='5/16 2-5', start_only=True), - Rule(list_of_days=['M'], start_time='11:00', result='5/11 2-5', start_only=True), - Rule(list_of_days=['M'], start_time='12:00', result='5/14 2-5', start_only=True), - Rule(list_of_days=['M'], start_time='13:30', result='5/10 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='15:00', result='5/15 2-5', start_only=True), - Rule(list_of_days=['M'], start_time='16:30', result='5/14 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='18:00', result='5/14 6-9', start_only=True), - Rule(list_of_days=['W'], start_time='18:00', result='5/16 6-9', start_only=True), - Rule(list_of_days=['T'], start_time='9:00', result='5/16 9-12', start_only=True), - Rule(list_of_days=['T'], start_time='10:30', result='5/17 2-5', start_only=True), - Rule(list_of_days=['T'], start_time='12:00', result='5/15 9-12', start_only=True), - Rule(list_of_days=['T'], start_time='13:30', result='5/11 9-12', start_only=True), - Rule(list_of_days=['T'], start_time='15:00', result='5/17 9-12', start_only=True), - Rule(list_of_days=['T'], start_time='16:30', result='5/12 9-12', start_only=True), - Rule(list_of_days=['T'], start_time='18:00', result='5/15 6-9', start_only=True), - Rule(list_of_days=['R'], start_time='18:00', result='5/10 6-9', start_only=True) - ] - - #FALL 2018 - self.f18 = [ - Rule( - list_of_codes=['AS.110.105', 'AS.110.106', 'AS.110.107', 'AS.110.108', 'AS.110.109', - 'AS.110.201', 'AS.110.202', 'AS.110.302'], result='12/12 9-12'), - Rule(code_regex=r'AS\.(210|373|375|377|378|380|381|384).(1|2)..', - result='Exam time not found'), - Rule(list_of_codes=['AS.171.101', 'AS.171.107'], result='12/19 9-12'), - Rule(list_of_codes=['EN.601.220, EN.500.112'], result='12/18 2-5'), - Rule(list_of_days=['M'], start_time='8:00', result='12/19 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='9:00', result='12/14 2-5', start_only=True), - Rule(list_of_days=['M'], start_time='10:00', result='12/20 2-5', start_only=True), - Rule(list_of_days=['M'], start_time='11:00', result='12/19 2-5', start_only=True), - Rule(list_of_days=['M'], start_time='12:00', result='12/15 10-1', start_only=True), - Rule(list_of_days=['M'], start_time='13:30', result='12/13 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='15:00', result='12/14 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='16:30', result='12/18 2-5', start_only=True), - Rule(list_of_days=['M'], start_time='18:00', result='12/17 6-9', start_only=True), - Rule(list_of_days=['W'], start_time='18:00', result='12/19 6-9', start_only=True), - Rule(list_of_days=['T'], start_time='9:00', result='12/17 2-5', start_only=True), - Rule(list_of_days=['T'], start_time='10:30', result='12/18 9-12', start_only=True), - Rule(list_of_days=['T'], start_time='12:00', result='12/17 9-12', start_only=True), - Rule(list_of_days=['T'], start_time='13:30', result='12/21 9-12', start_only=True), - Rule(list_of_days=['T'], start_time='15:00', result='12/12 2-5', start_only=True), - Rule(list_of_days=['T'], start_time='16:30', result='12/20 9-12', start_only=True), - Rule(list_of_days=['T'], start_time='18:00', result='12/18 6-9', start_only=True), - Rule(list_of_days=['R'], start_time='18:00', result='12/13 6-9', start_only=True) - ] - - self.s19 = [ - Rule( - list_of_codes=['AS.110.105', 'AS.110.106', 'AS.110.107', 'AS.110.108', 'AS.110.109', - 'AS.110.201', 'AS.110.202', 'AS.110.302'], result='5/9 9-12'), - Rule(code_regex=r'AS\.(210|373|375|377|378|380|381|384).(1|2)..', - result='Exam time not found'), - Rule(list_of_codes=['AS.171.102', 'AS.171.108'], result='5/10 9-12'), - Rule(list_of_codes =['EN.601.220'], result= '5/11 10-1'), - Rule(list_of_codes=['EN.500.112', 'EN.500.113', 'EN.500.114'], result='5/11 10-1'), - Rule(list_of_days=['M'], start_time='8:00', result='5/10 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='9:00', result='5/8 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='10:00', result='5/14 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='11:00', result='5/15 2-5', start_only=True), - Rule(list_of_days=['M'], start_time='12:00', result='5/13 9-12', start_only=True), - Rule(list_of_days=['M'], start_time='13:30', result='5/11 2-5', start_only=True), - Rule(list_of_days=['M'], start_time='15:00', result='5/8 6-9', start_only=True), - Rule(list_of_days=['M'], start_time='16:30', result='5/8 2-5', start_only=True), - Rule(list_of_days=['M'], start_time='18:00', result='5/13 6-9', start_only=True), - Rule(list_of_days=['W'], start_time='18:00', result='5/9 6-9', start_only=True), - Rule(list_of_days=['T'], start_time='9:00', result='5/16 2-5', start_only=True), - Rule(list_of_days=['T'], start_time='10:30', result='5/10 2-5', start_only=True), - Rule(list_of_days=['T'], start_time='12:00', result='5/16 9-12', start_only=True), - Rule(list_of_days=['T'], start_time='13:30', result='5/9 2-5', start_only=True), - Rule(list_of_days=['T'], start_time='15:00', result='5/15 9-12', start_only=True), - Rule(list_of_days=['T'], start_time='16:30', result='5/14 2-5', start_only=True), - Rule(list_of_days=['T'], start_time='18:00', result='5/14 6-9', start_only=True), - Rule(list_of_days=['R'], start_time='18:00', result='5/9 6-9', start_only=True) - ] - - self.schedule = {} diff --git a/exams/migrations/0001_initial.py b/exams/migrations/0001_initial.py deleted file mode 100644 index f7ac6b18c1..0000000000 --- a/exams/migrations/0001_initial.py +++ /dev/null @@ -1,43 +0,0 @@ -""" -Copyright (C) 2017 Semester.ly Technologies, LLC - -Semester.ly is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -Semester.ly is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -""" - -# -*- coding: utf-8 -*- -# Generated by Django 1.9.2 on 2017-05-14 19:02 -from __future__ import unicode_literals - -from django.db import migrations, models -import django.db.models.deletion -import jsonfield.fields - - -class Migration(migrations.Migration): - - initial = True - - dependencies = [ - ('student', '0018_update_semester_field'), - ] - - operations = [ - migrations.CreateModel( - name='FinalExamShare', - fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('school', models.CharField(max_length=50)), - ('exam_json', jsonfield.fields.JSONField()), - ('last_updated', models.DateTimeField(auto_now=True)), - ('student', models.ForeignKey(default=None, null=True, on_delete=django.db.models.deletion.CASCADE, to='student.Student')), - ], - ), - ] diff --git a/exams/migrations/__init__.py b/exams/migrations/__init__.py deleted file mode 100644 index 48cb47ffcf..0000000000 --- a/exams/migrations/__init__.py +++ /dev/null @@ -1,14 +0,0 @@ -""" -Copyright (C) 2017 Semester.ly Technologies, LLC - -Semester.ly is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -Semester.ly is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -""" - diff --git a/exams/models.py b/exams/models.py deleted file mode 100644 index 9a20b77037..0000000000 --- a/exams/models.py +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from __future__ import unicode_literals - -from django.db import models -from jsonfield import JSONField - -from student.models import Student - - -class FinalExamShare(models.Model): - """ Database object representing a shared final exam schedule. - A final exam schedule belongs to a Student and contains the list of - classes which the user needs to check finals for - """ - school = models.CharField(max_length=50) - student = models.ForeignKey(Student, null=True, default=None) - exam_json = JSONField() - last_updated = models.DateTimeField(auto_now=True) \ No newline at end of file diff --git a/exams/tests.py b/exams/tests.py deleted file mode 100644 index f15e1af2e6..0000000000 --- a/exams/tests.py +++ /dev/null @@ -1,1027 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -import unittest - -from rest_framework import status -from rest_framework.test import APITestCase - -from jhu_final_exam_scheduler import * -from helpers.test.test_cases import UrlTestCase - -SCHEDULER = JHUFinalExamScheduler() - - -class UrlsTest(UrlTestCase): - """ Test exams/urls.py """ - - def test_urls_call_correct_views(self): - self.assertUrlResolvesToView('/final_exams/', - 'helpers.mixins.FeatureFlowView') - - self.assertUrlResolvesToView('/exams/', 'exams.views.ExamView') - self.assertUrlResolvesToView('/exams/links/', 'exams.views.ExamLink') - self.assertUrlResolvesToView( - '/exams/links/AbC/', 'exams.views.ExamLink') - - -class ExamLinkTest(APITestCase): - request_headers = { - 'HTTP_HOST': 'uoft.sem.ly:8000' - } - - def test_create_then_get_link(self): - data = { - "courses": [ - { - "code": "EN.550.171", - "id": "3546", - "name": "Discrete Mathematics", - "slots": [ - { - "time_start": "9:00", - "section_type": "L", - "time_end": "9:50", - "day": "M", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"year": "2017", "name": "Fall"}, - } - ] - } - ] - } - response = self.client.post( - '/exams/links/', - data, - format='json', - **self.request_headers) - self.assertEqual(response.status_code, status.HTTP_200_OK) - self.assertIn('slug', response.data) - - slug = response.data['slug'] - - # assumes that the response will be a 404 if post did not actually - # create a shared timetable - response = self.client.get( - '/exams/links/{}/'.format(slug), - **self.request_headers) - self.assertEqual(response.status_code, status.HTTP_200_OK) - - -class ExamSchedulerTest(unittest.TestCase): - def test_monday_8am(self): - fixture = { - "courses": [ - { - "code": "EN.550.171", - "name": "Discrete Mathematics", - "id": "3546", - "slots": [ - { - "time_start": "12:00", - "section_type": "L", - "time_end": "12:50", - "day": "R", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }, - { - "time_start": "8:00", - "section_type": "L", - "time_end": "8:50", - "day": "F", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }, - { - "time_start": "8:00", - "section_type": "L", - "time_end": "8:50", - "day": "W", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }, - { - "time_start": "8:00", - "section_type": "L", - "time_end": "8:50", - "day": "M", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - } - ] - } - ] - } - self.assertDictEqual( - SCHEDULER.make_schedule(fixture), - {3546: {'time': '5/18 9-12', 'code': 'EN.550.171', 'name': 'Discrete Mathematics'}} - ) - - def test_monday_9am(self): - fixture = { - "courses": [{ - "code": "EN.550.171", - "id": "3546", - "name": "Discrete Mathematics", - "slots": [{ - "time_start": "9:00", - "section_type": "L", - "time_end": "9:50", - "day": "M", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": { - "year": "2017", - "name": "Spring" - } - }] - }] - } - self.assertDictEqual( - SCHEDULER.make_schedule(fixture), { - 3546: { - 'time': '5/17 9-12', - 'code': 'EN.550.171', - 'name': 'Discrete Mathematics' - } - } - ) - - def test_monday_10am(self): - fixture = { - "courses": [{ - "code": "EN.550.171", - "id": "3546", - "name": "Discrete Mathematics", - "slots": [{ - "time_start": "10:00", - "section_type": "L", - "time_end": "10:50", - "day": "M", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }] - }] - } - self.assertDictEqual( - SCHEDULER.make_schedule(fixture), { - 3546: { - 'time': '5/16 9-12', - 'code': 'EN.550.171', - 'name': 'Discrete Mathematics' - } - } - ) - - def test_monday_11am(self): - fixture = { - "courses": [{ - "code": "EN.550.171", - "id": "3546", - "name": "Discrete Mathematics", - "slots": [{ - "time_start": "11:00", - "section_type": "L", - "time_end": "_", - "day": "M", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": { - "year": "2017", - "name": "Spring" - } - }] - }] - } - self.assertDictEqual( - SCHEDULER.make_schedule(fixture), { - 3546: { - 'time': '5/15 9-12', - 'code': 'EN.550.171', - 'name': 'Discrete Mathematics' - } - } - ) - - def test_monday_12am(self): - fixture = { - "courses": [{ - "code": "EN.550.171", - "id": "3546", - "name": "Discrete Mathematics", - "slots": [{ - "time_start": "12:00", - "section_type": "L", - "time_end": "12:50", - "day": "M", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }] - }] - } - self.assertDictEqual( - SCHEDULER.make_schedule(fixture), { - 3546: { - 'time': '5/12 9-12', - 'code': 'EN.550.171', - 'name': 'Discrete Mathematics' - } - } - ) - - def test_monday_1_30pm(self): - fixture = { - "courses": [{ - "code": "EN.550.171", - "id": "3546", - "name": "Discrete Mathematics", - "slots": [{ - "time_start": "13:30", - "section_type": "L", - "time_end": "14:20", - "day": "M", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }] - }] - } - self.assertDictEqual( - SCHEDULER.make_schedule(fixture), { - 3546: { - 'time': '5/11 9-12', - 'code': 'EN.550.171', - 'name': 'Discrete Mathematics' - } - } - ) - - def test_monday_3pm(self): - fixture = { - "courses": [{ - "code": "EN.550.171", - "id": "3546", - "name": "Discrete Mathematics", - "slots": [{ - "time_start": "15:00", - "section_type": "L", - "time_end": "15:50", - "day": "M", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }] - }] - } - self.assertDictEqual(SCHEDULER.make_schedule(fixture), { - 3546: { - 'time': '5/13 2-5', - 'code': 'EN.550.171', - 'name': 'Discrete Mathematics', - } - }) - - def test_monday_4_30pm(self): - fixture = { - "courses": [{ - "code": "EN.550.171", - "id": "3546", - "name": "Discrete Mathematics", - "slots": [{ - "time_start": "16:30", - "section_type": "L", - "time_end": "17:20", - "day": "M", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }] - }] - } - self.assertDictEqual(SCHEDULER.make_schedule(fixture), { - 3546: { - 'time': '5/16 2-5', - 'code': 'EN.550.171', - 'name': 'Discrete Mathematics', - } - }) - - def test_monday_6pm(self): - fixture = { - "courses": [{ - "code": "EN.550.171", - "id": "3546", - "name": "Discrete Mathematics", - "slots": [{ - "time_start": "18:00", - "section_type": "L", - "time_end": "18:50", - "day": "M", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }, ], - }] - } - self.assertDictEqual(SCHEDULER.make_schedule(fixture), { - 3546: { - 'time': '5/15 6-9', - 'code': 'EN.550.171', - 'name': 'Discrete Mathematics', - } - }) - - def test_wednesday_6pm(self): - fixture = { - "courses": [{ - "code": "EN.550.171", - "id": "3546", - "name": "Discrete Mathematics", - "slots": [{ - "time_start": "12:00", - "section_type": "L", - "time_end": "12:50", - "day": "R", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }, { - "time_start": "18:00", - "section_type": "L", - "time_end": "18:50", - "day": "F", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }, { - "time_start": "18:00", - "section_type": "L", - "time_end": "18:50", - "day": "W", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }, { - "time_start": "18:00", - "section_type": "L", - "time_end": "18:50", - "day": "M", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }] - }] - } - self.assertDictEqual(SCHEDULER.make_schedule(fixture), { - 3546: { - 'time': '5/15 6-9', - 'code': 'EN.550.171', - 'name': 'Discrete Mathematics', - } - }) - - def test_tuesday_9am(self): - fixture = { - "courses": [{ - "code": "EN.550.171", - "name": "Discrete Mathematics", - "id": "3546", - "slots": [{ - "time_start": "12:00", - "section_type": "L", - "time_end": "12:50", - "day": "R", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }, { - "time_start": "9:00", - "section_type": "L", - "time_end": "9:50", - "day": "F", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }, { - "time_start": "9:00", - "section_type": "L", - "time_end": "9:50", - "day": "W", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }, { - "time_start": "9:00", - "section_type": "L", - "time_end": "9:50", - "day": "T", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }] - }] - } - self.assertDictEqual(SCHEDULER.make_schedule(fixture), { - 3546: { - 'time': '5/12 2-5', - 'code': 'EN.550.171', - 'name': 'Discrete Mathematics', - } - }) - - def test_tuesday_10_30am(self): - fixture = { - "courses": [{ - "code": "EN.550.171", - "id": "3546", - "name": "Discrete Mathematics", - "slots": [{ - "time_start": "10:30", - "section_type": "L", - "time_end": "11:50", - "day": "T", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }, ], - }] - } - self.assertDictEqual(SCHEDULER.make_schedule(fixture), { - 3546: { - 'time': '5/13 9-12', - 'code': 'EN.550.171', - 'name': 'Discrete Mathematics', - } - }) - - def test_tuesday_12am(self): - fixture = { - "courses": [{ - "code": "EN.550.171", - "id": "3546", - "name": "Discrete Mathematics", - "slots": [{ - "time_start": "12:00", - "section_type": "L", - "time_end": "13:50", - "day": "T", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }, ], - }] - } - self.assertDictEqual(SCHEDULER.make_schedule(fixture), { - 3546: { - 'time': '5/17 2-5', - 'code': 'EN.550.171', - 'name': 'Discrete Mathematics', - } - }) - - def test_tuesday_1_30pm(self): - fixture = { - "courses": [{ - "code": "EN.550.171", - "id": "3546", - "name": "Discrete Mathematics", - "slots": [{ - "time_start": "13:30", - "section_type": "L", - "time_end": "16:50", - "day": "T", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }, ], - }] - } - self.assertDictEqual(SCHEDULER.make_schedule(fixture), { - 3546: { - 'time': '5/18 2-5', - 'code': 'EN.550.171', - 'name': 'Discrete Mathematics', - } - }) - - def test_tuesday_3pm(self): - fixture = { - "courses": [{ - "code": "EN.550.171", - "id": "3546", - "name": "Discrete Mathematics", - "slots": [{ - "time_start": "15:00", - "section_type": "L", - "time_end": "15:50", - "day": "T", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }, ], - }] - } - - self.assertDictEqual(SCHEDULER.make_schedule(fixture), { - 3546: { - 'time': '5/11 2-5', - 'code': 'EN.550.171', - 'name': 'Discrete Mathematics', - } - }) - - def test_tuesday_4_30pm(self): - fixture = { - "courses": [{ - "code": "EN.550.171", - "id": "3546", - "name": "Discrete Mathematics", - "slots": [{ - "time_start": "16:30", - "section_type": "L", - "time_end": "17:50", - "day": "T", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }, ], - }] - } - self.assertDictEqual(SCHEDULER.make_schedule(fixture), { - 3546: { - 'time': '5/15 2-5', - 'code': 'EN.550.171', - 'name': 'Discrete Mathematics', - } - }) - - def test_tuesday_6pm(self): - fixture = { - "courses": [{ - "code": "EN.550.171", - "id": "3546", - "name": "Discrete Mathematics", - "slots": [{ - "time_start": "18:00", - "section_type": "L", - "time_end": "20:50", - "day": "T", - "code": "EN.550.171", - "name": "Discrete Mathematics", - "semester": {"name": "Spring", "year": "2017"} - }, ], - }] - } - self.assertDictEqual(SCHEDULER.make_schedule(fixture), { - 3546: { - 'time': '5/16 6-9', - 'code': 'EN.550.171', - 'name': 'Discrete Mathematics', - } - }) - - def test_multiple_courses(self): - fixture = { - "courses": [{ - "code": "EN.550.171", - "num_credits": 4, - "name": "Discrete Mathematics", - "textbooks": { - "(06)": [] - }, - "department": "EN Applied Mathematics & Statistics", - "slots": [{ - "time_start": "12:00", - "waitlist": -1, - "meeting_section": "(06)", - "section": 6874, - "instructors": "B. Castello", - "section_type": "L", - "enrolment": 25, - "time_end": "12:50", - "waitlist_size": -1, - "course": 3297, - "semester": "S", - "location": " ", - "textbooks": [], - "id": 8047, - "day": "R", - "size": 25, - "colourId": 0, - "code": "EN.550.171", - "name": "Discrete Mathematics", - "num_conflicts": 1, - "shift_index": 0, - "depth_level": 0, - "semester": {"name": "Spring", "year": "2017"} - }, { - "time_start": "10:00", - "waitlist": -1, - "meeting_section": "(06)", - "section": 6874, - "instructors": "B. Castello", - "section_type": "L", - "enrolment": 25, - "time_end": "10:50", - "waitlist_size": -1, - "course": 3297, - "semester": "S", - "location": " ", - "textbooks": [], - "id": 8046, - "day": "F", - "size": 25, - "colourId": 0, - "code": "EN.550.171", - "name": "Discrete Mathematics", - "num_conflicts": 1, - "shift_index": 0, - "depth_level": 0, - "semester": {"name": "Spring", "year": "2017"} - }, { - "time_start": "10:00", - "waitlist": -1, - "meeting_section": "(06)", - "section": 6874, - "instructors": "B. Castello", - "section_type": "L", - "enrolment": 25, - "time_end": "10:50", - "waitlist_size": -1, - "course": 3297, - "semester": "S", - "location": " ", - "textbooks": [], - "id": 8045, - "day": "W", - "size": 25, - "colourId": 0, - "code": "EN.550.171", - "name": "Discrete Mathematics", - "num_conflicts": 1, - "shift_index": 0, - "depth_level": 0, - "semester": {"name": "Spring", "year": "2017"} - }, { - "time_start": "10:00", - "waitlist": -1, - "meeting_section": "(06)", - "section": 6874, - "instructors": "B. Castello", - "section_type": "L", - "enrolment": 25, - "time_end": "10:50", - "waitlist_size": -1, - "course": 3297, - "semester": "S", - "location": " ", - "textbooks": [], - "id": 8044, - "day": "M", - "size": 25, - "colourId": 0, - "code": "EN.550.171", - "name": "Discrete Mathematics", - "num_conflicts": 1, - "shift_index": 0, - "depth_level": 0, - "semester": {"name": "Spring", "year": "2017"} - }], - "enrolled_sections": ["(06)"], - "id": 3297 - }, { - "code": "EN.660.310", - "num_credits": 3, - "name": "Case Studies in Business Ethics", - "textbooks": { - "(02)": [] - }, - "department": "EN Entrepreneurship and Management", - "slots": [{ - "time_start": "08:30", - "waitlist": -1, - "meeting_section": "(02)", - "section": 7800, - "instructors": "I. Izenberg", - "section_type": "L", - "enrolment": 12, - "time_end": "09:45", - "waitlist_size": -1, - "course": 3560, - "semester": "S", - "location": "Croft Hall B32", - "textbooks": [], - "id": 8743, - "day": "W", - "size": 19, - "colourId": 3, - "code": "EN.660.310", - "name": "Case Studies in Business Ethics", - "num_conflicts": 1, - "shift_index": 0, - "depth_level": 0, - "semester": {"name": "Spring", "year": "2017"} - }, { - "time_start": "08:30", - "waitlist": -1, - "meeting_section": "(02)", - "section": 7800, - "instructors": "I. Izenberg", - "section_type": "L", - "enrolment": 12, - "time_end": "09:45", - "waitlist_size": -1, - "course": 3560, - "semester": "S", - "location": "Croft Hall B32", - "textbooks": [], - "id": 8742, - "day": "M", - "size": 19, - "colourId": 3, - "code": "EN.660.310", - "name": "Case Studies in Business Ethics", - "num_conflicts": 1, - "shift_index": 0, - "depth_level": 0, - "semester": {"name": "Spring", "year": "2017"} - }], - "enrolled_sections": ["(02)"], - "id": 3560 - }, { - "code": "AS.110.107", - "num_credits": 4, - "name": "Calculus II (For Biological and Social Science)", - "textbooks": { - "(08)": [] - }, - "department": "AS Mathematics", - "slots": [{ - "time_start": "13:30", - "waitlist": -1, - "meeting_section": "(08)", - "section": 1653, - "instructors": "V. Lorman", - "section_type": "L", - "enrolment": 30, - "time_end": "14:20", - "waitlist_size": -1, - "course": 800, - "semester": "S", - "location": " ", - "textbooks": [], - "id": 4447, - "day": "R", - "size": 30, - "colourId": 2, - "code": "AS.110.107", - "name": "Calculus II (For Biological and Social Science)", - "num_conflicts": 1, - "shift_index": 0, - "depth_level": 0, - "semester": {"name": "Spring", "year": "2017"} - }, { - "time_start": "11:00", - "waitlist": -1, - "meeting_section": "(08)", - "section": 1653, - "instructors": "V. Lorman", - "section_type": "L", - "enrolment": 30, - "time_end": "11:50", - "waitlist_size": -1, - "course": 800, - "semester": "S", - "location": " ", - "textbooks": [], - "id": 4446, - "day": "F", - "size": 30, - "colourId": 2, - "code": "AS.110.107", - "name": "Calculus II (For Biological and Social Science)", - "num_conflicts": 1, - "shift_index": 0, - "depth_level": 0, - "semester": {"name": "Spring", "year": "2017"} - }, { - "time_start": "11:00", - "waitlist": -1, - "meeting_section": "(08)", - "section": 1653, - "instructors": "V. Lorman", - "section_type": "L", - "enrolment": 30, - "time_end": "11:50", - "waitlist_size": -1, - "course": 800, - "semester": "S", - "location": " ", - "textbooks": [], - "id": 4445, - "day": "W", - "size": 30, - "colourId": 2, - "code": "AS.110.107", - "name": "Calculus II (For Biological and Social Science)", - "num_conflicts": 1, - "shift_index": 0, - "depth_level": 0, - "semester": {"name": "Spring", "year": "2017"} - }, { - "time_start": "11:00", - "waitlist": -1, - "meeting_section": "(08)", - "section": 1653, - "instructors": "V. Lorman", - "section_type": "L", - "enrolment": 30, - "time_end": "11:50", - "waitlist_size": -1, - "course": 800, - "semester": "S", - "location": " ", - "textbooks": [], - "id": 4444, - "day": "M", - "size": 30, - "colourId": 2, - "code": "AS.110.107", - "name": "Calculus II (For Biological and Social Science)", - "num_conflicts": 1, - "shift_index": 0, - "depth_level": 0, - "semester": {"name": "Spring", "year": "2017"} - }], - "enrolled_sections": ["(08)"], - "id": 800 - }, { - "code": "EN.550.436", - "num_credits": 4, - "name": "Data Mining", - "textbooks": { - "(02)": [] - }, - "department": "EN Applied Mathematics & Statistics", - "slots": [{ - "time_start": "12:00", - "waitlist": -1, - "meeting_section": "(02)", - "section": 6914, - "instructors": "T. Budavari", - "section_type": "L", - "enrolment": 25, - "time_end": "12:50", - "waitlist_size": -1, - "course": 3315, - "semester": "S", - "location": " ", - "textbooks": [], - "id": 8193, - "day": "F", - "size": 25, - "colourId": 1, - "code": "EN.550.436", - "name": "Data Mining", - "num_conflicts": 1, - "shift_index": 0, - "depth_level": 0, - "semester": {"name": "Spring", "year": "2017"} - }, { - "time_start": "12:00", - "waitlist": -1, - "meeting_section": "(02)", - "section": 6914, - "instructors": "T. Budavari", - "section_type": "L", - "enrolment": 25, - "time_end": "13:15", - "waitlist_size": -1, - "course": 3315, - "semester": "S", - "location": " ", - "textbooks": [], - "id": 8192, - "day": "W", - "size": 25, - "colourId": 1, - "code": "EN.550.436", - "name": "Data Mining", - "num_conflicts": 1, - "shift_index": 0, - "depth_level": 0, - "semester": {"name": "Spring", "year": "2017"} - }, { - "time_start": "12:00", - "waitlist": -1, - "meeting_section": "(02)", - "section": 6914, - "instructors": "T. Budavari", - "section_type": "L", - "enrolment": 25, - "time_end": "13:15", - "waitlist_size": -1, - "course": 3315, - "semester": "S", - "location": " ", - "textbooks": [], - "id": 8191, - "day": "M", - "size": 25, - "colourId": 1, - "code": "EN.550.436", - "name": "Data Mining", - "num_conflicts": 1, - "shift_index": 0, - "depth_level": 0, - "semester": {"name": "Spring", "year": "2017"} - }], - "enrolled_sections": ["(02)"], - "id": 3315 - }, { - "code": "EN.600.411", - "num_credits": 3, - "name": "Computer Science Innovation & Entrepreneurship II", - "textbooks": { - "(01)": [] - }, - "department": "EN Computer Science", - "slots": [{ - "time_start": "16:30", - "waitlist": -1, - "meeting_section": "(01)", - "section": 7315, - "instructors": "L. Aronhime, A. Dahbura", - "section_type": "L", - "enrolment": 12, - "time_end": "19:00", - "waitlist_size": -1, - "course": 3484, - "semester": "S", - "location": "Malone 107", - "textbooks": [], - "id": 8550, - "day": "T", - "size": 20, - "colourId": 4, - "code": "EN.600.411", - "name": "Computer Science Innovation & Entrepreneurship II", - "num_conflicts": 1, - "shift_index": 0, - "depth_level": 0, - "semester": {"name": "Spring", "year": "2017"} - }], - "enrolled_sections": ["(01)"], - "id": 3484 - }], - "num_conflicts": 0, - "days_with_class": 5, - "time_on_campus": 41.2, - "avg_rating": 0, - "num_friends": 0 - } - self.assertDictEqual( - SCHEDULER.make_schedule(fixture), { - 3560: { - 'code': 'EN.660.310', - 'name': 'Case Studies in Business Ethics', - 'time': '5/18 9-12' - }, - 3297: { - 'code': 'EN.550.171', - 'name': 'Discrete Mathematics', - 'time': '5/16 9-12' - }, - 3315: { - 'code': 'EN.550.436', - 'name': 'Data Mining', - 'time': '5/12 9-12' - }, - 3484: { - 'code': 'EN.600.411', - 'name': 'Computer Science Innovation & Entrepreneurship II', - 'time': '5/15 2-5' - }, - 800: { - 'code': 'AS.110.107', - 'name': 'Calculus II (For Biological and Social Science)', - 'time': '5/10 9-12' - } - }) \ No newline at end of file diff --git a/exams/urls.py b/exams/urls.py deleted file mode 100644 index daae6e40c4..0000000000 --- a/exams/urls.py +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from django.conf.urls import patterns, url -from django.contrib import admin - -import exams.views -from helpers.mixins import FeatureFlowView - -admin.autodiscover() - -urlpatterns = patterns('', - url(r'^final_exams/*$', FeatureFlowView.as_view(feature_name='FINAL_EXAMS')), - - url(r'^exams/?$', exams.views.ExamView.as_view()), - url(r'^exams/links/?$', exams.views.ExamLink.as_view()), - url(r'^exams/links/(?P.+)/$', exams.views.ExamLink.as_view()) - ) diff --git a/exams/views.py b/exams/views.py deleted file mode 100644 index 612d0617ef..0000000000 --- a/exams/views.py +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from rest_framework.views import APIView -from rest_framework.response import Response -from rest_framework import status -from django.shortcuts import get_object_or_404 -from hashids import Hashids - -from jhu_final_exam_scheduler import JHUFinalExamScheduler -from helpers.mixins import FeatureFlowView, CsrfExemptMixin -from exams.models import FinalExamShare -from student.utils import get_student -from semesterly.settings import get_secret - -hashids = Hashids(salt=get_secret('HASHING_SALT')) - - -# TODO: use new request shape -class ExamView(CsrfExemptMixin, APIView): - - def post(self, request): - final_exam_schedule = JHUFinalExamScheduler().make_schedule(request.data) - return Response(final_exam_schedule, status=status.HTTP_200_OK) - - -class ExamLink(FeatureFlowView): - feature_name = 'SHARE_EXAM' - - def get_feature_flow(self, request, slug): - exam_id = hashids.decrypt(slug)[0] - exam_json = get_object_or_404(FinalExamShare, id=exam_id).exam_json - exam_schedule = JHUFinalExamScheduler().make_schedule(exam_json) - return {'exam': exam_schedule} - - def post(self, request): - new_link = FinalExamShare.objects.create( - school=request.subdomain, - student=get_student(request), - exam_json=request.data - ) - new_link.save() - - response = {'slug': hashids.encrypt(new_link.id)} - return Response(response, status.HTTP_200_OK) diff --git a/format.sh b/format.sh new file mode 100644 index 0000000000..24bb9d4295 --- /dev/null +++ b/format.sh @@ -0,0 +1,7 @@ +echo "Running black..." +black . +echo "Running Prettier..." +npx prettier "**/*.{js,jsx,ts,tsx}" --write +echo "Running ESLint..." +npx eslint . --ext .js,.jsx,.ts,.tsx --fix +echo "Done!" \ No newline at end of file diff --git a/logs/.gitkeep b/friends/__init__.py similarity index 100% rename from logs/.gitkeep rename to friends/__init__.py diff --git a/friends/apps.py b/friends/apps.py new file mode 100644 index 0000000000..5b49d1af1f --- /dev/null +++ b/friends/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class FriendsConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = "friends" diff --git a/friends/migrations/0001_initial.py b/friends/migrations/0001_initial.py new file mode 100644 index 0000000000..e4a76a74c2 --- /dev/null +++ b/friends/migrations/0001_initial.py @@ -0,0 +1,45 @@ +# Generated by Django 3.2.20 on 2024-01-29 05:31 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + initial = True + + dependencies = [ + ("student", "0046_delete_registrationtoken"), + ] + + operations = [ + migrations.CreateModel( + name="FriendRequest", + fields=[ + ( + "id", + models.BigAutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ( + "from_friend", + models.ForeignKey( + on_delete=django.db.models.deletion.CASCADE, + related_name="from_friend", + to="student.student", + ), + ), + ( + "to_friend", + models.ForeignKey( + on_delete=django.db.models.deletion.CASCADE, + related_name="to_friend", + to="student.student", + ), + ), + ], + ), + ] diff --git a/friends/migrations/__init__.py b/friends/migrations/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/friends/models.py b/friends/models.py new file mode 100644 index 0000000000..eb91107aa1 --- /dev/null +++ b/friends/models.py @@ -0,0 +1,13 @@ +from django.db import models +from student.models import Student + +# Create your models here. + + +class FriendRequest(models.Model): + from_friend = models.ForeignKey( + Student, related_name="from_friend", on_delete=models.CASCADE + ) + to_friend = models.ForeignKey( + Student, related_name="to_friend", on_delete=models.CASCADE + ) diff --git a/friends/tests.py b/friends/tests.py new file mode 100644 index 0000000000..38143c8b38 --- /dev/null +++ b/friends/tests.py @@ -0,0 +1,167 @@ +from django.test import TestCase +from django.urls import reverse +from .models import FriendRequest +from .models import Student +from helpers.test.utils import ( + create_user, + create_student, + get_response, + get_auth_response, +) +from rest_framework.test import APITestCase +from friends.views import ( + send_friend_request, + accept_friend_request, + reject_friend_request, +) + + +class FriendRequestTest(APITestCase): + def setUp(self): + self.user1 = create_user(username="Alice", password="security") + self.student1 = create_student(user=self.user1) + self.user2 = create_user(username="Bob", password="security2") + self.student2 = create_student(user=self.user2) + self.user3 = create_user(username="Charlie", password="security3") + self.student3 = create_student(user=self.user3) + + def test_get_friends(self): + self.client.force_login(self.user1) + response = self.client.get(reverse("get friends")) + self.assertEqual(response.status_code, 200) + self.assertEqual(len(response.json()), 0) + + def test_get_friends_with_data(self): + self.student1.friends.add(self.student2) + self.client.force_login(self.user1) + response = self.client.get(reverse("get friends")) + self.assertEqual(response.status_code, 200) + self.assertEqual(len(response.json()), 1) + + def test_remove_friend(self): + self.student1.friends.add(self.student2) + self.client.force_login(self.user1) + response = self.client.post(reverse("remove friend", args=[self.user2.id])) + self.assertEqual(response.status_code, 200) + self.assertEqual(self.student1.friends.count(), 0) + + def test_remove_nonexistent_friend(self): + self.client.force_login(self.user1) + response = self.client.post(reverse("remove friend", args=[self.user2.id])) + self.assertEqual(response.status_code, 200) + self.assertEqual(self.student1.friends.count(), 0) + + def test_send_request(self): + self.client.force_login(self.user1) + response = self.client.post( + reverse("send friend request", args=[self.user2.id]) + ) + self.assertEqual(response.status_code, 201) + self.assertEqual(FriendRequest.objects.count(), 1) + self.assertEqual(response.json()["message"], "Friend request created") + + def test_send_duplicate_request(self): + FriendRequest.objects.create(from_friend=self.student1, to_friend=self.student2) + self.client.force_login(self.user1) + response = self.client.post( + reverse("send friend request", args=[self.user2.id]) + ) + self.assertEqual(response.status_code, 400) + self.assertEqual(FriendRequest.objects.count(), 1) + self.assertEqual(response.json()["message"], "Friend request already exists") + + def test_requests_sent(self): + FriendRequest.objects.create(from_friend=self.student1, to_friend=self.student2) + self.client.force_login(self.user1) + response = self.client.get(reverse("friend requests sent")) + self.assertEqual(response.status_code, 200) + requests_sent = response.json() + self.assertEqual(len(requests_sent), 1) + self.assertIn( + self.user1.username, + [request["sender"]["username"] for request in requests_sent], + ) + self.assertIn( + self.user2.username, + [request["receiver"]["username"] for request in requests_sent], + ) + + def test_requests_sent_empty(self): + self.client.force_login(self.user1) + response = self.client.get(reverse("friend requests sent")) + self.assertEqual(response.status_code, 200) + self.assertEqual(len(response.json()), 0) + + def test_requests_received(self): + FriendRequest.objects.create(from_friend=self.student2, to_friend=self.student1) + self.client.force_login(self.user1) + response = self.client.get(reverse("friend requests received")) + self.assertEqual(response.status_code, 200) + requests_received = response.json() + self.assertEqual(len(requests_received), 1) + self.assertIn( + self.user2.username, + [request["sender"]["username"] for request in requests_received], + ) + self.assertIn( + self.user1.username, + [request["receiver"]["username"] for request in requests_received], + ) + + def test_requests_received_empty(self): + self.client.force_login(self.user1) + response = self.client.get(reverse("friend requests received")) + self.assertEqual(response.status_code, 200) + self.assertEqual(len(response.json()), 0) + + def test_accept_request(self): + friend_request = FriendRequest.objects.create( + from_friend=self.student2, to_friend=self.student1 + ) + self.client.force_login(self.user1) + response = self.client.post( + reverse("accept friend request", args=[friend_request.id]) + ) + self.assertEqual(response.status_code, 200) + self.assertEqual(FriendRequest.objects.count(), 0) + self.assertTrue(self.student1.friends.filter(id=self.student2.id).exists()) + self.assertEqual(response.json()["message"], "Friend request accepted") + + def test_accept_nonexistent_request(self): + self.client.force_login(self.user1) + response = self.client.post(reverse("accept friend request", args=[999])) + self.assertEqual(response.status_code, 404) + self.assertEqual(FriendRequest.objects.count(), 0) + self.assertFalse(self.student1.friends.filter(id=self.student2.id).exists()) + + def test_reject_request(self): + friend_request = FriendRequest.objects.create( + from_friend=self.student2, to_friend=self.student1 + ) + self.client.force_login(self.user1) + response = self.client.post( + reverse("reject friend request", args=[friend_request.id]) + ) + self.assertEqual(response.status_code, 200) + self.assertEqual(FriendRequest.objects.count(), 0) + self.assertFalse(self.student1.friends.filter(id=self.student2.id).exists()) + self.assertEqual(response.json()["message"], "Friend request rejected") + + def test_reject_nonexistent_request(self): + self.client.force_login(self.user1) + response = self.client.post(reverse("reject friend request", args=[999])) + self.assertEqual(response.status_code, 404) + self.assertEqual(FriendRequest.objects.count(), 0) + self.assertFalse(self.student1.friends.filter(id=self.student2.id).exists()) + + def test_search_friends(self): + self.client.force_login(self.user1) + response = self.client.get(reverse("search friends", args=["Bob"])) + self.assertEqual(response.status_code, 200) + self.assertEqual(len(response.json()), 1) + + def test_search_friends_no_results(self): + self.client.force_login(self.user1) + response = self.client.get(reverse("search friends", args=["David"])) + self.assertEqual(response.status_code, 200) + self.assertEqual(len(response.json()), 0) diff --git a/friends/urls.py b/friends/urls.py new file mode 100644 index 0000000000..4beaa410ac --- /dev/null +++ b/friends/urls.py @@ -0,0 +1,38 @@ +from django.urls import path +from friends.views import ( + get_friends, + remove_friend, + send_friend_request, + accept_friend_request, + reject_friend_request, + search_friends, + get_requests_sent, + get_requests_received, +) + +urlpatterns = [ + path("friends/", get_friends, name="get friends"), + path("friends/remove/", remove_friend, name="remove friend"), + path( + "friends/send_request/", + send_friend_request, + name="send friend request", + ), + path("friends/requests_sent", get_requests_sent, name="friend requests sent"), + path( + "friends/requests_received", + get_requests_received, + name="friend requests received", + ), + path( + "friends/accept_request//", + accept_friend_request, + name="accept friend request", + ), + path( + "friends/reject_request//", + reject_friend_request, + name="reject friend request", + ), + path("friends/search/", search_friends, name="search friends"), +] diff --git a/friends/views.py b/friends/views.py new file mode 100644 index 0000000000..12720c87ef --- /dev/null +++ b/friends/views.py @@ -0,0 +1,144 @@ +from django.shortcuts import get_object_or_404 +from django.http import JsonResponse +from django.db.models import Q +from django.contrib.auth.models import User +from student.models import Student +from friends.models import FriendRequest + + +def get_student_data(student): + """ + Returns relevant data for a given student. + """ + return { + "userId": student.user.id, + "email": student.user.email, + "first_name": student.user.first_name, + "last_name": student.user.last_name, + "username": student.user.username, + "major": student.major, + "class_year": student.class_year, + "img_url": getattr(student, "img_url", None), + } + + +def get_friend_request_data(friend_request): + """ + Returns relevant data for a given friend request. + """ + return { + "friendRequestId": friend_request.id, + "userId": friend_request.to_friend.user.id, + "email": friend_request.to_friend.user.email, + "sender": get_student_data(friend_request.from_friend.user.student), + "receiver": get_student_data(friend_request.to_friend.user.student), + "img_url": getattr(friend_request.to_friend, "img_url", None), + } + + +def get_friends(request): + """ + Returns a list of the logged-in student's friends. + """ + logged_in_student = get_object_or_404(Student, user=request.user) + friends_queryset = logged_in_student.friends.all().select_related("user") + friends = [get_student_data(friend) for friend in friends_queryset] + return JsonResponse(friends, safe=False) + + +def remove_friend(request, userId): + """ + Removes a friend from the logged-in student's friends list. + """ + from_student = get_object_or_404(Student, user=request.user) + to_student = get_object_or_404(Student, user__id=userId) + from_student.friends.remove(to_student) + to_student.friends.remove(from_student) + return JsonResponse({"message": "Friend removed"}) + + +def search_friends(request, query): + """ + Searches for friends based on the given query and returns a list of matches. Excludes existing friends. + """ + logged_in_student = get_object_or_404(Student, user=request.user) + search_results = ( + User.objects.filter( + Q(first_name__icontains=query) + | Q(last_name__icontains=query) + | Q(username__icontains=query) + ) + .select_related("student") + .only("email", "first_name", "last_name", "username", "student__img_url") + ) + search_results_excluding_friends = [] + for user in search_results: + if ( + hasattr(user, "student") + and user.student not in logged_in_student.friends.all() + ): + search_results_excluding_friends.append(get_student_data(user.student)) + return JsonResponse(search_results_excluding_friends, safe=False) + + +def send_friend_request(request, userId): + """ + Sends a friend request from the logged-in student to the student with the given user ID. + """ + from_student = get_object_or_404(Student, user=request.user) + to_student = get_object_or_404(Student, user__id=userId) + friend_request, created = FriendRequest.objects.get_or_create( + from_friend=from_student, to_friend=to_student + ) + if created: + return JsonResponse({"message": "Friend request created"}, status=201) + else: + return JsonResponse({"message": "Friend request already exists"}, status=400) + + +def get_requests_sent(request): + """ + Returns a list of friend requests sent by the logged-in student. + """ + from_student = get_object_or_404(Student, user=request.user) + friend_requests = FriendRequest.objects.filter( + from_friend=from_student + ).select_related("to_friend__user") + friends = [ + get_friend_request_data(friend_request) for friend_request in friend_requests + ] + return JsonResponse(friends, safe=False) + + +def get_requests_received(request): + """ + Returns a list of friend requests received by the logged-in student. + """ + to_student = get_object_or_404(Student, user=request.user) + friend_requests = FriendRequest.objects.filter(to_friend=to_student).select_related( + "from_friend__user" + ) + friends = [ + get_friend_request_data(friend_request) for friend_request in friend_requests + ] + return JsonResponse(friends, safe=False) + + +def accept_friend_request(request, friendRequestId): + """ + Accepts a friend request with the given ID for the logged-in student and returns a JSON response. + """ + friend_request = get_object_or_404(FriendRequest, id=friendRequestId) + friend_request.to_friend.friends.add(friend_request.from_friend) + friend_request.from_friend.friends.add(friend_request.to_friend) + friend_request.delete() + return JsonResponse({"message": "Friend request accepted"}) + + +def reject_friend_request(request, friendRequestId): + """ + Rejects a friend request with the given ID for the logged-in student and returns a JSON response. + """ + friend_request = get_object_or_404(FriendRequest, id=friendRequestId) + friend_request.delete() + return JsonResponse({"message": "Friend request rejected"}) diff --git a/helpers/__init__.py b/helpers/__init__.py index c53afacbff..defc0f99ee 100644 --- a/helpers/__init__.py +++ b/helpers/__init__.py @@ -9,4 +9,3 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - diff --git a/helpers/decorators.py b/helpers/decorators.py index f6113c26aa..e76de8c129 100644 --- a/helpers/decorators.py +++ b/helpers/decorators.py @@ -19,16 +19,17 @@ def validate_subdomain(view_func): """ - Validates subdomain, redirecting user to - index iof the school is invalid. + Validates subdomain (jhu, uoft), redirecting user to + index if the school is invalid. """ + @wraps(view_func) def wrapper(request, *args, **kwargs): if request.subdomain not in ACTIVE_SCHOOLS: - return render(request, 'index.html') + return render(request, "index.html") else: return view_func(request, *args, **kwargs) # mark function for testing - wrapper.func_dict['requires_subdomain'] = True - return wrapper \ No newline at end of file + wrapper.__dict__["requires_subdomain"] = True + return wrapper diff --git a/helpers/mixins.py b/helpers/mixins.py index 1604ef680c..c1daf944d6 100644 --- a/helpers/mixins.py +++ b/helpers/mixins.py @@ -30,25 +30,26 @@ from timetable.utils import get_current_semesters -class ValidateSubdomainMixin(object): +class ValidateSubdomainMixin: """ - Mixin which validates subdomain, redirecting user to index if the school + Mixin which validates subdomain (jhu, uoft), redirecting user to index if the school is not in :obj:`ACTIVE_SCHOOLS`. """ def dispatch(self, request, *args, **kwargs): if request.subdomain == "queens": - return render(request, 'queens_error.html') + return render(request, "queens_error.html") elif request.subdomain not in ACTIVE_SCHOOLS: - return render(request, 'index.html') + return render(request, "index.html") return super(ValidateSubdomainMixin, self).dispatch(request, *args, **kwargs) class FeatureFlowView(ValidateSubdomainMixin, APIView): """ - Template that handles GET requests by rendering the homepage. Feature_name or get_feature_flow() - can be overridden to launch a feature or action on homepage load. + Template that handles GET requests by rendering the homepage. Feature_name or + get_feature_flow() can be overridden to launch a feature or action on homepage load. """ + feature_name = None allow_unauthenticated = True @@ -62,8 +63,8 @@ def get_feature_flow(self, request, *args, **kwargs): return {} def get(self, request, *args, **kwargs): - if not self.allow_unauthenticated and not request.user.is_authenticated(): - return HttpResponseRedirect('/') + if not self.allow_unauthenticated and not request.user.is_authenticated: + return HttpResponseRedirect("/") self.school = request.subdomain self.student = get_student(request) @@ -71,9 +72,9 @@ def get(self, request, *args, **kwargs): # take semester provided by feature flow if available, otherwise the first available sem all_semesters = get_current_semesters(self.school) - if 'semester' in feature_flow: - sem = feature_flow.pop('semester') - sem_dict = {'name': sem.name, 'year': sem.year} + if "semester" in feature_flow: + sem = feature_flow.pop("semester") + sem_dict = {"name": sem.name, "year": sem.year} if sem_dict not in all_semesters: all_semesters.append(sem_dict) curr_sem_index = all_semesters.index(sem_dict) @@ -81,12 +82,9 @@ def get(self, request, *args, **kwargs): curr_sem_index = 0 sem = Semester.objects.get(**all_semesters[curr_sem_index]) - integrations = [] - if self.student and self.student.user.is_authenticated(): + if self.student and self.student.user.is_authenticated: self.student.school = self.school self.student.save() - for i in self.student.integrations.all(): - integrations.append(i.name) final_exams = [] if SCHOOLS_MAP[self.school].final_exams is None: @@ -94,28 +92,23 @@ def get(self, request, *args, **kwargs): else: for year, terms in SCHOOLS_MAP[self.school].final_exams.items(): for term in terms: - final_exams.append({ - 'name': term, - 'year': str(year) - }) + final_exams.append({"name": term, "year": str(year)}) init_data = { - 'school': self.school, - 'currentUser': get_student_dict(self.school, self.student, sem), - 'currentSemester': curr_sem_index, - 'allSemesters': all_semesters, + "school": self.school, + "currentUser": get_student_dict(self.school, self.student, sem), + "currentSemester": curr_sem_index, + "allSemesters": all_semesters, # 'oldSemesters': get_old_semesters(self.school), - 'uses12HrTime': SCHOOLS_MAP[self.school].ampm, - 'studentIntegrations': integrations, - 'examSupportedSemesters': map(all_semesters.index, - final_exams), - 'latestAgreement': AgreementSerializer(Agreement.objects.latest()).data, - 'registrar': SCHOOLS_MAP[self.school].registrar, - - 'featureFlow': dict(feature_flow, name=self.feature_name) + "uses12HrTime": SCHOOLS_MAP[self.school].ampm, + "latestAgreement": AgreementSerializer(Agreement.objects.latest()).data, + "registrar": SCHOOLS_MAP[self.school].registrar, + "examSupportedSemesters": list(map(all_semesters.index, final_exams)), + "timeUpdatedTos": Agreement.objects.latest().last_updated.isoformat(), + "featureFlow": dict(feature_flow, name=self.feature_name), } - return render(request, 'timetable.html', {'init_data': json.dumps(init_data)}) + return render(request, "timetable.html", {"init_data": json.dumps(init_data)}) class CsrfExemptSessionAuthentication(SessionAuthentication): @@ -128,5 +121,5 @@ class CsrfExemptMixin: class RedirectToSignupMixin(LoginRequiredMixin): - login_url = '/signup/' - redirect_field_name = None \ No newline at end of file + login_url = "/signup/" + redirect_field_name = None diff --git a/helpers/test/__init__.py b/helpers/test/__init__.py index 48cb47ffcf..defc0f99ee 100644 --- a/helpers/test/__init__.py +++ b/helpers/test/__init__.py @@ -1,14 +1,11 @@ -""" -Copyright (C) 2017 Semester.ly Technologies, LLC - -Semester.ly is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -Semester.ly is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -""" - +# Copyright (C) 2017 Semester.ly Technologies, LLC +# +# Semester.ly is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Semester.ly is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. diff --git a/helpers/test/data.py b/helpers/test/data.py index b8747dbd1e..413ca96425 100644 --- a/helpers/test/data.py +++ b/helpers/test/data.py @@ -1,35 +1,26 @@ -""" -Copyright (C) 2017 Semester.ly Technologies, LLC +# Copyright (C) 2017 Semester.ly Technologies, LLC +# +# Semester.ly is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Semester.ly is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. -Semester.ly is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -Semester.ly is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -""" def get_default_tt_request(): return { - 'courseSections': {}, - 'customSlots': [], - 'numOptionCourses': 0, - 'optionCourses': [], - 'preferences': { - 'try_with_conflicts': False, - 'sort_metrics': [ - {'metric': 'days with class', 'selected': False, 'order': 'least'}, - {'metric': 'number of conflicts', 'selected': False, 'order': 'least'}, - {'metric': 'time on campus', 'selected': False, 'order': 'least'}, - {'metric': 'course rating stars', 'selected': False, 'order': 'most'} - ] + "courseSections": {}, + "customSlots": [], + "preferences": { + "tryWithConflicts": False, }, - 'try_with_conflicts': False, - 'school': 'uoft', - 'semester': {'name': 'Fall', 'year': '2016'}, - 'updated_courses': [], - 'sid': '' - } \ No newline at end of file + "tryWithConflicts": False, + "school": "uoft", + "semester": {"name": "Fall", "year": "2016"}, + "updated_courses": [], + "sid": "", + } diff --git a/helpers/test/test_cases.py b/helpers/test/test_cases.py index a598da17ed..f4ed8db18c 100644 --- a/helpers/test/test_cases.py +++ b/helpers/test/test_cases.py @@ -1,25 +1,22 @@ -""" -Copyright (C) 2017 Semester.ly Technologies, LLC - -Semester.ly is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -Semester.ly is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -""" +# Copyright (C) 2017 Semester.ly Technologies, LLC +# +# Semester.ly is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Semester.ly is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. from django.test import SimpleTestCase -from django.core.urlresolvers import resolve +from django.urls import resolve class UrlTestCase(SimpleTestCase): - def assertUrlResolvesToView(self, url, view_name, kwargs=None): resolved = resolve(url) self.assertEqual(resolved.view_name, view_name) if kwargs is not None: - self.assertDictEqual(resolved.kwargs, kwargs) \ No newline at end of file + self.assertDictEqual(resolved.kwargs, kwargs) diff --git a/helpers/test/test_runners.py b/helpers/test/test_runners.py index c7ba3c755d..fc27cc8d33 100644 --- a/helpers/test/test_runners.py +++ b/helpers/test/test_runners.py @@ -1,16 +1,14 @@ -""" -Copyright (C) 2017 Semester.ly Technologies, LLC - -Semester.ly is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -Semester.ly is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -""" +# Copyright (C) 2017 Semester.ly Technologies, LLC +# +# Semester.ly is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Semester.ly is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. from django.test import TransactionTestCase from django.test.runner import DiscoverRunner @@ -18,9 +16,9 @@ from mock import patch -class NoDatabaseMixin(object): +class NoDatabaseMixin: """ - Test runner mixin which skips the DB setup/teardown when there are no subclasses of + Test runner mixin which skips the DB setup/teardown when there are no subclasses of TransactionTestCase to improve the speed of running the tests. Adapted from: https://www.caktusgroup.com/blog/2013/10/02/skipping-test-db-creation/ """ @@ -39,10 +37,10 @@ def setup_databases(self, *args, **kwargs): if self._needs_db: return super(NoDatabaseMixin, self).setup_databases(*args, **kwargs) if self.verbosity >= 1: - print 'No DB tests detected. Skipping Test DB creation...' - self._db_patch = patch('django.db.backends.utils.CursorWrapper') + print("No DB tests detected. Skipping Test DB creation...") + self._db_patch = patch("django.db.backends.utils.CursorWrapper") self._db_mock = self._db_patch.start() - self._db_mock.side_effect = RuntimeError('No testing the database!') + self._db_mock.side_effect = RuntimeError("No testing the database!") return None def teardown_databases(self, *args, **kwargs): diff --git a/helpers/test/utils.py b/helpers/test/utils.py new file mode 100644 index 0000000000..e92da068ae --- /dev/null +++ b/helpers/test/utils.py @@ -0,0 +1,30 @@ +from django.contrib.auth.models import User +from student.models import Student +from rest_framework.test import force_authenticate +from django.urls import resolve + + +def create_user(**kwargs) -> None: + user, _ = User.objects.get_or_create(**kwargs) + user.save() + return user + + +def create_student(user: User, **kwargs) -> None: + student, _ = Student.objects.get_or_create(user=user, **kwargs) + student.save() + return student + + +def get_response(request, url, *args): + request.subdomain = "uoft" + view = resolve(url).func + return view(request, *args) + + +def get_auth_response(request, user, url, *args, **kwargs): + force_authenticate(request, user=user) + request.user = user + request.subdomain = "uoft" + view = resolve(url).func + return view(request, *args, **kwargs) diff --git a/integrations/__init__.py b/integrations/__init__.py deleted file mode 100644 index c53afacbff..0000000000 --- a/integrations/__init__.py +++ /dev/null @@ -1,12 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - diff --git a/integrations/admin.py b/integrations/admin.py deleted file mode 100644 index c698ff635c..0000000000 --- a/integrations/admin.py +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from django.contrib import admin - -# Register your models here. diff --git a/integrations/apps.py b/integrations/apps.py deleted file mode 100644 index 7a45df6d2a..0000000000 --- a/integrations/apps.py +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from __future__ import unicode_literals - -from django.apps import AppConfig - - -class IntegrationsConfig(AppConfig): - name = 'integrations' diff --git a/integrations/migrations/__init__.py b/integrations/migrations/__init__.py deleted file mode 100644 index 48cb47ffcf..0000000000 --- a/integrations/migrations/__init__.py +++ /dev/null @@ -1,14 +0,0 @@ -""" -Copyright (C) 2017 Semester.ly Technologies, LLC - -Semester.ly is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -Semester.ly is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -""" - diff --git a/integrations/models.py b/integrations/models.py deleted file mode 100644 index 2003a3876f..0000000000 --- a/integrations/models.py +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from __future__ import unicode_literals - -from django.db import models - -# Create your models here. diff --git a/integrations/serializers.py b/integrations/serializers.py deleted file mode 100644 index 2483f9ff4b..0000000000 --- a/integrations/serializers.py +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from rest_framework import serializers - -from timetable.models import CourseIntegration - - -class CourseIntegrationSerializer(serializers.ModelSerializer): - class Meta: - model = CourseIntegration - fields = '__all__' diff --git a/integrations/tests.py b/integrations/tests.py deleted file mode 100644 index e3ea162508..0000000000 --- a/integrations/tests.py +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from rest_framework import status -from rest_framework.test import APITestCase - -from timetable.models import Course, Integration, CourseIntegration -from helpers.test.test_cases import UrlTestCase - - -class UrlsTest(UrlTestCase): - """ Test integrations/urls.py """ - - def test_urls_call_correct_views(self): - self.assertUrlResolvesToView('/integrations/1234/course/5678/', 'integrations.views.IntegrationsView', - kwargs={'integration_id': '1234', 'course_id': '5678'}) - - -class IntegrationsGetAddTest(APITestCase): - request_headers = { - 'HTTP_HOST': 'uoft.sem.ly:8000' - } - - def setUp(self): - #get or create - self.integration = Integration.objects.create(name='myint') - self.integrationIdStr = str(self.integration.id) - self.course = Course.objects.create(school='uoft', code='SEA101', name='Intro') - self.courseIdStr = str(self.course.id) - self.courseIntegration = CourseIntegration.objects.create(course_id=self.course.id, integration_id=self.integration.id, json='oldstuff') - - def test_get_existing_integration(self): - response = self.client.get('/integrations/' + self.integrationIdStr + '/course/' + self.courseIdStr + '/', format='json', **self.request_headers) - self.assertEqual(response.status_code, status.HTTP_200_OK) - - def test_get_nonexistent_integration(self): - nonexistentIntegrationIdStr = str(self.integration.id + 1) - nonexistentCourseIdStr = str(self.course.id + 1) - response = self.client.get('/integrations/' + nonexistentIntegrationIdStr + '/course/' + nonexistentCourseIdStr + '/', format='json', **self.request_headers) - self.assertEqual(response.status_code, status.HTTP_404_NOT_FOUND) - - def test_add_integration(self): - data = {'json': 'newstuff'} - response = self.client.post('/integrations/' + self.integrationIdStr + '/course/' + self.courseIdStr + '/', data, format='json', **self.request_headers) - self.assertEqual(response.status_code, status.HTTP_204_NO_CONTENT) - CourseIntegration.objects.get(course_id=self.course.id, integration_id=self.integration.id, **data) - - -class IntegrationsDeleteTest(APITestCase): - request_headers = { - 'HTTP_HOST': 'uoft.sem.ly:8000' - } - - def setUp(self): - self.integration = Integration.objects.create(name='myint') - self.integrationIdStr = str(self.integration.id) - self.course = Course.objects.create(school='uoft', code='SEA101', name='Intro') - self.courseIdStr = str(self.course.id) - self.courseIntegration = CourseIntegration.objects.create(course_id=self.course.id, integration_id=self.integration.id, json='oldstuff') - - def test_delete_integration(self): - response = self.client.delete('/integrations/' + self.integrationIdStr + '/course/' + self.courseIdStr + '/', **self.request_headers) - self.assertEqual(response.status_code, status.HTTP_204_NO_CONTENT) - self.assertFalse(CourseIntegration.objects.filter(course_id=self.course.id, integration_id=self.integration.id).exists()) diff --git a/integrations/urls.py b/integrations/urls.py deleted file mode 100644 index 527649dc37..0000000000 --- a/integrations/urls.py +++ /dev/null @@ -1,23 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from django.conf.urls import patterns, url -from django.contrib import admin - -import integrations.views - -admin.autodiscover() - -urlpatterns = patterns('', - url(r'^integrations/(?P.+?)/course/(?P.+?)/$', - integrations.views.IntegrationsView.as_view()) - ) diff --git a/integrations/views.py b/integrations/views.py deleted file mode 100644 index 75e0cf248c..0000000000 --- a/integrations/views.py +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from django.shortcuts import get_object_or_404 -from rest_framework.views import APIView -from rest_framework.response import Response -from rest_framework import status - -from timetable.models import CourseIntegration -from helpers.mixins import ValidateSubdomainMixin -from integrations.serializers import CourseIntegrationSerializer - - -class IntegrationsView(ValidateSubdomainMixin, APIView): - - def get(self, request, integration_id, course_id): - integration = get_object_or_404(CourseIntegration, integration_id=integration_id, course_id=course_id) - return Response(CourseIntegrationSerializer(integration).data, status=status.HTTP_200_OK) - - def post(self, request, integration_id, course_id): - CourseIntegration.objects.update_or_create(course_id=course_id, - integration_id=integration_id, - defaults={'json': request.data['json']}) - return Response(status=status.HTTP_204_NO_CONTENT) - - def delete(self, request, integration_id, course_id): - CourseIntegration.objects.filter(course_id=course_id, integration_id=integration_id).delete() - return Response(status=status.HTTP_204_NO_CONTENT) diff --git a/manifests/azure-pipeline-stage-prod.yml b/manifests/azure-pipeline-stage-prod.yml new file mode 100644 index 0000000000..065e6350de --- /dev/null +++ b/manifests/azure-pipeline-stage-prod.yml @@ -0,0 +1,172 @@ +# Deploy to Azure Kubernetes Service +# Build and push image to Azure Container Registry; Deploy to Azure Kubernetes Service +# https://docs.microsoft.com/azure/devops/pipelines/languages/docker + +trigger: + branches: + include: + - prod + +pr: none # will disable PR builds + +resources: +- repo: self + +variables: + + # Container registry service connection established during pipeline creation + dockerRegistryServiceConnection: '7ab1d48e-244b-4080-9ced-d2c1bb7eccd6' + imageRepository: 'semesterly' + containerRegistry: 'semesterly.azurecr.io' + tag: '$(Build.BuildId)' + imagePullSecret: 'semesterly193122b2-auth' + + # Agent VM image name + vmImageName: 'ubuntu-latest' + + # Name of the new namespace being created to deploy the PR changes. + k8sNamespaceForPR: 'review-app-$(System.PullRequest.PullRequestId)' + +stages: +- stage: Build + displayName: Build + condition: not(startsWith(variables['Build.SourceBranch'], 'refs/pull/')) + jobs: + - job: Build + displayName: Build + pool: + vmImage: $(vmImageName) + steps: + - task: Docker@2 + displayName: Build Django Container + inputs: + command: build + repository: $(imageRepository) + arguments: '--build-arg BASE_IMAGE=semesterly.azurecr.io/semesterly-base-py3:latest' + dockerfile: ./Dockerfile + containerRegistry: $(dockerRegistryServiceConnection) + tags: | + $(tag) + - task: Docker@2 + displayName: Push Django Container + inputs: + containerRegistry: $(dockerRegistryServiceConnection) + repository: $(imageRepository) + command: push + tags: | + $(tag) + - task: Docker@2 + displayName: Build nginx Container + inputs: + command: 'build' + repository: 'semesterly-nginx' + arguments: '--build-arg djangoImage=$(containerRegistry)/$(imageRepository):$(tag)' + Dockerfile: './build/semesterly-nginx/Dockerfile' + containerRegistry: $(dockerRegistryServiceConnection) + tags: | + $(tag) + - task: Docker@2 + displayName: Push nginx Container + inputs: + containerRegistry: $(dockerRegistryServiceConnection) + repository: 'semesterly-nginx' + command: 'push' + tags: | + $(tag) + + - upload: manifests + artifact: manifests + + +- stage: DeployStage + displayName: DeployStage + dependsOn: Build + +# Deploy to stage environment + jobs: + - deployment: DeployStage + condition: and(succeeded(), not(startsWith(variables['Build.SourceBranch'], 'refs/pull/'))) + displayName: DeployStage + pool: + vmImage: $(vmImageName) + environment: 'uis-prod.semesterly-stage' + strategy: + runOnce: + deploy: + steps: + - task: KubernetesManifest@0 + displayName: Create imagePullSecret + inputs: + action: createSecret + secretName: $(imagePullSecret) + dockerRegistryEndpoint: $(dockerRegistryServiceConnection) + + - task: KubernetesManifest@0 + displayName: Deploy to Kubernetes cluster + inputs: + action: deploy + manifests: | + $(Pipeline.Workspace)/manifests/stage/deployment.yml + $(Pipeline.Workspace)/manifests/stage/service.yml + $(Pipeline.Workspace)/manifests/stage/ingress.yml + $(Pipeline.Workspace)/manifests/stage/ingress-config-map.yml + $(Pipeline.Workspace)/manifests/stage/cronjob.yml + containers: | + $(containerRegistry)/$(imageRepository):$(tag) + $(containerRegistry)/semesterly-nginx:$(tag) + + +- stage: Validation + displayName: Validation + dependsOn: DeployStage +# Await stage environment validation + jobs: + - job: waitForValidation + displayName: Wait for external validation + pool: server + timeoutInMinutes: 10080 # job times out in 7 days + steps: + - task: ManualValidation@0 + timeoutInMinutes: 10080 # task times out in 7 days + inputs: + notifyUsers: | + isistechops@lists.johnshopkins.edu + instructions: 'Please validate the build as deployed to https://semesterly-stage.az.sis.jhu.edu' + onTimeout: 'reject' + + +- stage: DeployProd + displayName: DeployProd + dependsOn: Validation +# Deploy to prod + jobs: + - deployment: DeployProd + condition: and(succeeded(), not(startsWith(variables['Build.SourceBranch'], 'refs/pull/'))) + displayName: DeployProd + pool: + vmImage: $(vmImageName) + environment: 'uis-prod.semesterly-prod' + strategy: + runOnce: + deploy: + steps: + - task: KubernetesManifest@0 + displayName: Create imagePullSecret + inputs: + action: createSecret + secretName: $(imagePullSecret) + dockerRegistryEndpoint: $(dockerRegistryServiceConnection) + + - task: KubernetesManifest@0 + displayName: Deploy to Kubernetes cluster + inputs: + action: deploy + manifests: | + $(Pipeline.Workspace)/manifests/prod/deployment.yml + $(Pipeline.Workspace)/manifests/prod/service.yml + $(Pipeline.Workspace)/manifests/prod/ingress.yml + $(Pipeline.Workspace)/manifests/prod/ingress-config-map.yml + $(Pipeline.Workspace)/manifests/prod/cronjob.yml + containers: | + $(containerRegistry)/$(imageRepository):$(tag) + $(containerRegistry)/semesterly-nginx:$(tag) diff --git a/manifests/azure-pipelines-dev.yml b/manifests/azure-pipelines-dev.yml new file mode 100644 index 0000000000..0fe2c27f62 --- /dev/null +++ b/manifests/azure-pipelines-dev.yml @@ -0,0 +1,117 @@ +# Deploy to Azure Kubernetes Service +# Build and push image to Azure Container Registry; Deploy to Azure Kubernetes Service +# https://docs.microsoft.com/azure/devops/pipelines/languages/docker + +trigger: + branches: + include: + - develop + +pr: none # will disable PR builds + +resources: +- repo: self + +variables: + + # Container registry service connection established during pipeline creation + dockerRegistryServiceConnection: '7ab1d48e-244b-4080-9ced-d2c1bb7eccd6' + imageRepository: 'semesterly' + containerRegistry: 'semesterly.azurecr.io' + tag: '$(Build.BuildId)' + imagePullSecret: 'semesterly193122b2-auth' + + # Agent VM image name + vmImageName: 'ubuntu-latest' + + # Name of the new namespace being created to deploy the PR changes. + k8sNamespaceForPR: 'review-app-$(System.PullRequest.PullRequestId)' + +stages: +- stage: Build + displayName: Build + condition: not(startsWith(variables['Build.SourceBranch'], 'refs/pull/')) + jobs: + - job: Build + displayName: Build + pool: + vmImage: $(vmImageName) + steps: + - task: Docker@2 + displayName: Build Django Container + inputs: + command: build + repository: $(imageRepository) + arguments: '--build-arg BASE_IMAGE=semesterly.azurecr.io/semesterly-base-py3:latest' + dockerfile: ./Dockerfile + containerRegistry: $(dockerRegistryServiceConnection) + tags: | + $(tag) + - task: Docker@2 + displayName: Push Django Container + inputs: + containerRegistry: $(dockerRegistryServiceConnection) + repository: $(imageRepository) + command: push + tags: | + $(tag) + - task: Docker@2 + displayName: Build nginx Container + inputs: + command: 'build' + repository: 'semesterly-nginx' + arguments: '--build-arg djangoImage=$(containerRegistry)/$(imageRepository):$(tag)' + Dockerfile: './build/semesterly-nginx/Dockerfile' + containerRegistry: $(dockerRegistryServiceConnection) + tags: | + $(tag) + - task: Docker@2 + displayName: Push nginx Container + inputs: + containerRegistry: $(dockerRegistryServiceConnection) + repository: 'semesterly-nginx' + command: 'push' + tags: | + $(tag) + + - upload: manifests + artifact: manifests + + +- stage: Deployment + displayName: Deployment + dependsOn: Build + +# Deploy to dev environment + jobs: + - deployment: Deployment + condition: and(succeeded(), not(startsWith(variables['Build.SourceBranch'], 'refs/pull/'))) + displayName: Deployment + pool: + vmImage: $(vmImageName) + environment: 'uis-prod.semesterly-dev' + strategy: + runOnce: + deploy: + steps: + - task: KubernetesManifest@0 + displayName: Create imagePullSecret + inputs: + action: createSecret + secretName: $(imagePullSecret) + dockerRegistryEndpoint: $(dockerRegistryServiceConnection) + + - task: KubernetesManifest@0 + displayName: Deploy to Kubernetes cluster + inputs: + action: deploy + manifests: | + $(Pipeline.Workspace)/manifests/dev/deployment.yml + $(Pipeline.Workspace)/manifests/dev/service.yml + $(Pipeline.Workspace)/manifests/dev/ingress.yml + $(Pipeline.Workspace)/manifests/dev/ingress-config-map.yml + $(Pipeline.Workspace)/manifests/dev/cronjob.yml + containers: | + $(containerRegistry)/$(imageRepository):$(tag) + $(containerRegistry)/semesterly-nginx:$(tag) + \ No newline at end of file diff --git a/manifests/dev/cronjob.yml b/manifests/dev/cronjob.yml new file mode 100644 index 0000000000..045a3d67cd --- /dev/null +++ b/manifests/dev/cronjob.yml @@ -0,0 +1,55 @@ +apiVersion: batch/v1 +kind: CronJob +metadata: + name: semesterly-parsing + namespace: semesterly-dev +spec: + schedule: "40 19 * * *" + successfulJobsHistoryLimit: 1 + failedJobsHistoryLimit: 1 + jobTemplate: + spec: + template: + spec: + containers: + - image: semesterly.azurecr.io/semesterly:Version + name: gunicorn-cron + command: ["/bin/bash","/code/run_parser.sh"] + workingDir: /code + envFrom: + - secretRef: + name: semesterly-secrets + env: + - name: NODE_ENV + value: stage + - name: DB_HOST + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_HOST + - name: DB_NAME + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_NAME + - name: DB_PASSWORD + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_PASSWORD + - name: DB_PORT + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_PORT + - name: DB_USER + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_USER + - name: JHU_API_KEY + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: JHU_API_KEY + restartPolicy: OnFailure diff --git a/manifests/dev/deployment.yml b/manifests/dev/deployment.yml new file mode 100644 index 0000000000..516f7b266e --- /dev/null +++ b/manifests/dev/deployment.yml @@ -0,0 +1,193 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: semesterly + namespace: semesterly-dev +spec: + selector: + matchLabels: + app: semesterly + replicas: 1 + strategy: + rollingUpdate: + maxSurge: 1 + maxUnavailable: 1 + minReadySeconds: 5 + template: + metadata: + labels: + app: semesterly + spec: + containers: + - name: nginx + image: semesterly.azurecr.io/semesterly-nginx:Version + ports: + - containerPort: 80 + livenessProbe: + httpGet: + path: / + port: 80 + initialDelaySeconds: 3 + periodSeconds: 60 + successThreshold: 1 + failureThreshold: 3 + timeoutSeconds: 60 + resources: + requests: + cpu: 100m + limits: + cpu: 250m + memory: 2048M + - name: pgbouncer + image: uisacr.azurecr.io/pgbouncer:latest + ports: + - containerPort: 5432 + volumeMounts: + - mountPath: /etc/pgbouncer/client_root_ca.crt + name: semesterly-az-postgres-tls-root-ca + subPath: client_root_ca.crt + resources: + requests: + cpu: 100m + memory: 250M + limits: + cpu: 250m + memory: 2000M + env: + - name: DB_HOST + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_HOST + - name: DB_NAME + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_NAME + - name: DB_USER + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_USER + - name: DB_PASSWORD + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_PASSWORD + - name: DB_PORT + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_PORT + - name: AUTH_TYPE + value: plain + - name: SERVER_TLS_SSLMODE + value: verify-ca + - name: PGBOUNCER_CLIENT_TLS_CA_FILE + value: "/etc/pgbouncer/client_root_ca.crt" + - name: MAX_CLIENT_CONN + value: "10000" + - name: DEFAULT_POOL_SIZE + value: "100" + - name: MAX_DB_CONNECTIONS + value: "100" + - name: MAX_USER_CONNECTIONS + value: "100" + - name: gunicorn + image: semesterly.azurecr.io/semesterly:Version + command: ["bash"] + args: ["-c","python manage.py migrate; gunicorn semesterly.wsgi wsgi:application --bind=0.0.0.0:8000 --preload --workers=16 --max-requests=16384 --access-logfile - --error-logfile - --log-level info"] + workingDir: /code + ports: + - containerPort: 8000 + livenessProbe: + httpGet: + path: / + port: 8000 + initialDelaySeconds: 3 + periodSeconds: 60 + successThreshold: 1 + failureThreshold: 5 + timeoutSeconds: 5 + resources: + requests: + cpu: "2" + memory: 2000M + limits: + cpu: "4" + memory: 4000M + env: + - name: NODE_ENV + value: stage + - name: DB_HOST + value: localhost + - name: DB_NAME + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_NAME + - name: DB_PASSWORD + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_PASSWORD + - name: DB_PORT + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_PORT + - name: DB_USER + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_USER + - name: JHU_API_KEY + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: JHU_API_KEY + - name: SOCIAL_AUTH_GOOGLE_OAUTH2_KEY + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_GOOGLE_OAUTH2_KEY + - name: SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET + - name: SOCIAL_AUTH_FACEBOOK_KEY + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_FACEBOOK_OAUTH2_KEY + - name: SOCIAL_AUTH_FACEBOOK_SECRET + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_FACEBOOK_OAUTH2_SECRET + - name: SOCIAL_AUTH_AZURE_TENANT_ID + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_AZURE_TENANT_ID + - name: SOCIAL_AUTH_AZURE_TENANT_KEY + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_AZURE_TENANT_KEY + - name: SOCIAL_AUTH_AZURE_TENANT_SECRET + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_AZURE_TENANT_SECRET + - name: STUDENT_SIS_AUTH_SECRET + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: JHU_JWT_AUTH_SECRET + volumes: + - configMap: + defaultMode: 420 + name: semesterly-az-postgres-tls-root-ca.crt + name: semesterly-az-postgres-tls-root-ca \ No newline at end of file diff --git a/manifests/dev/ingress-config-map.yml b/manifests/dev/ingress-config-map.yml new file mode 100644 index 0000000000..6e07c42ce9 --- /dev/null +++ b/manifests/dev/ingress-config-map.yml @@ -0,0 +1,8 @@ +kind: ConfigMap +apiVersion: v1 +metadata: + name: ingress-config + namespace: semesterly-dev +data: + use-forwarded-headers: "true" + forwarded-for-header: "X-Forwarded-For" diff --git a/manifests/dev/ingress.yml b/manifests/dev/ingress.yml new file mode 100644 index 0000000000..55f88726c9 --- /dev/null +++ b/manifests/dev/ingress.yml @@ -0,0 +1,33 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: semesterly-ingress + namespace: semesterly-dev +spec: + ingressClassName: nginx + rules: + - host: semesterly-dev.az.sis.jhu.edu + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + service: + name: semesterly-service + port: + number: 80 + - host: "*.semesterly-dev.az.sis.jhu.edu" + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + service: + name: semesterly-service + port: + number: 80 + tls: + - hosts: + - semesterly-dev.az.sis.jhu.edu + - "*.semesterly-dev.az.sis.jhu.edu" + secretName: az-wildcard-tls diff --git a/manifests/dev/service.yml b/manifests/dev/service.yml new file mode 100644 index 0000000000..9c8dc24503 --- /dev/null +++ b/manifests/dev/service.yml @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: Service +metadata: + name: semesterly-service + namespace: semesterly-dev +spec: + selector: + app: semesterly + ports: + - name: http + protocol: TCP + port: 80 + targetPort: 80 diff --git a/manifests/prod/cronjob.yml b/manifests/prod/cronjob.yml new file mode 100644 index 0000000000..64182c0ea1 --- /dev/null +++ b/manifests/prod/cronjob.yml @@ -0,0 +1,55 @@ +apiVersion: batch/v1 +kind: CronJob +metadata: + name: semesterly-parsing + namespace: semesterly-prod +spec: + schedule: "40 19 * * *" + successfulJobsHistoryLimit: 1 + failedJobsHistoryLimit: 1 + jobTemplate: + spec: + template: + spec: + containers: + - image: semesterly.azurecr.io/semesterly:Version + name: gunicorn-cron + command: ["/bin/bash", "/code/run_parser.sh"] + workingDir: /code + envFrom: + - secretRef: + name: semesterly-secrets + env: + - name: NODE_ENV + value: stage + - name: DB_HOST + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_HOST + - name: DB_NAME + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_NAME + - name: DB_PASSWORD + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_PASSWORD + - name: DB_PORT + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_PORT + - name: DB_USER + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_USER + - name: JHU_API_KEY + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: JHU_API_KEY + restartPolicy: OnFailure diff --git a/manifests/prod/deployment.yml b/manifests/prod/deployment.yml new file mode 100644 index 0000000000..a91b6d7ee2 --- /dev/null +++ b/manifests/prod/deployment.yml @@ -0,0 +1,193 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: semesterly + namespace: semesterly-prod +spec: + selector: + matchLabels: + app: semesterly + replicas: 3 + strategy: + rollingUpdate: + maxSurge: 1 + maxUnavailable: 1 + minReadySeconds: 5 + template: + metadata: + labels: + app: semesterly + spec: + containers: + - name: nginx + image: semesterly.azurecr.io/semesterly-nginx:Version + ports: + - containerPort: 80 + livenessProbe: + httpGet: + path: / + port: 80 + initialDelaySeconds: 3 + periodSeconds: 60 + successThreshold: 1 + failureThreshold: 3 + timeoutSeconds: 60 + resources: + requests: + cpu: 100m + memory: 250M + limits: + cpu: 250m + memory: 500M + - name: pgbouncer + image: uisacr.azurecr.io/pgbouncer:latest + ports: + - containerPort: 5432 + volumeMounts: + - mountPath: /etc/pgbouncer/client_root_ca.crt + name: semesterly-az-postgres-tls-root-ca + subPath: client_root_ca.crt + resources: + requests: + cpu: 500m + limits: + cpu: 2048m + memory: 4096M + env: + - name: DB_HOST + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_HOST + - name: DB_NAME + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_NAME + - name: DB_USER + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_USER + - name: DB_PASSWORD + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_PASSWORD + - name: DB_PORT + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_PORT + - name: AUTH_TYPE + value: plain + - name: SERVER_TLS_SSLMODE + value: allow + - name: PGBOUNCER_CLIENT_TLS_CA_FILE + value: "/etc/pgbouncer/client_root_ca.crt" + - name: MAX_CLIENT_CONN + value: "10000" + - name: DEFAULT_POOL_SIZE + value: "100" + - name: MAX_DB_CONNECTIONS + value: "100" + - name: MAX_USER_CONNECTIONS + value: "100" + - name: gunicorn + image: semesterly.azurecr.io/semesterly:Version + command: ["bash"] + args: ["-c","python manage.py migrate; gunicorn semesterly.wsgi wsgi:application --bind=0.0.0.0:8000 --preload --workers=16 --max-requests=16384 --access-logfile - --error-logfile - --log-level info"] + workingDir: /code + ports: + - containerPort: 8000 + livenessProbe: + httpGet: + path: / + port: 8000 + initialDelaySeconds: 3 + periodSeconds: 60 + successThreshold: 1 + failureThreshold: 5 + timeoutSeconds: 60 + resources: + requests: + cpu: "2" + memory: 2000M + limits: + cpu: "4" + memory: 4000M + env: + - name: NODE_ENV + value: production + - name: DB_HOST + value: localhost + - name: DB_NAME + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_NAME + - name: DB_PASSWORD + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_PASSWORD + - name: DB_PORT + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_PORT + - name: DB_USER + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_USER + - name: JHU_API_KEY + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: JHU_API_KEY + - name: SOCIAL_AUTH_GOOGLE_OAUTH2_KEY + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_GOOGLE_OAUTH2_KEY + - name: SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET + - name: SOCIAL_AUTH_FACEBOOK_KEY + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_FACEBOOK_OAUTH2_KEY + - name: SOCIAL_AUTH_FACEBOOK_SECRET + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_FACEBOOK_OAUTH2_SECRET + - name: SOCIAL_AUTH_AZURE_TENANT_ID + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_AZURE_TENANT_ID + - name: SOCIAL_AUTH_AZURE_TENANT_KEY + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_AZURE_TENANT_KEY + - name: SOCIAL_AUTH_AZURE_TENANT_SECRET + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_AZURE_TENANT_SECRET + - name: STUDENT_SIS_AUTH_SECRET + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: JHU_JWT_AUTH_SECRET + volumes: + - configMap: + defaultMode: 420 + name: semesterly-az-postgres-tls-root-ca.crt + name: semesterly-az-postgres-tls-root-ca \ No newline at end of file diff --git a/manifests/prod/ingress-config-map.yml b/manifests/prod/ingress-config-map.yml new file mode 100644 index 0000000000..e244d1531e --- /dev/null +++ b/manifests/prod/ingress-config-map.yml @@ -0,0 +1,8 @@ +kind: ConfigMap +apiVersion: v1 +metadata: + name: ingress-config + namespace: semesterly-prod +data: + use-forwarded-headers: "true" + forwarded-for-header: "X-Forwarded-For" diff --git a/manifests/prod/ingress.yml b/manifests/prod/ingress.yml new file mode 100644 index 0000000000..9e86da00f8 --- /dev/null +++ b/manifests/prod/ingress.yml @@ -0,0 +1,33 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: semesterly-ingress + namespace: semesterly-prod +spec: + ingressClassName: nginx + rules: + - host: "semesterly-prod.az.sis.jhu.edu" + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + service: + name: semesterly-service + port: + number: 80 + - host: "*.semesterly-prod.az.sis.jhu.edu" + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + service: + name: semesterly-service + port: + number: 80 + tls: + - hosts: + - "semesterly-prod.az.sis.jhu.edu" + - "*.semesterly-prod.az.sis.jhu.edu" + secretName: az-wildcard-tls diff --git a/manifests/prod/service.yml b/manifests/prod/service.yml new file mode 100644 index 0000000000..d9d3437636 --- /dev/null +++ b/manifests/prod/service.yml @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: Service +metadata: + name: semesterly-service + namespace: semesterly-prod +spec: + selector: + app: semesterly + ports: + - name: http + protocol: TCP + port: 80 + targetPort: 80 diff --git a/manifests/stage/cronjob.yml b/manifests/stage/cronjob.yml new file mode 100644 index 0000000000..04baabc335 --- /dev/null +++ b/manifests/stage/cronjob.yml @@ -0,0 +1,55 @@ +apiVersion: batch/v1 +kind: CronJob +metadata: + name: semesterly-parsing + namespace: semesterly-stage +spec: + schedule: "40 19 * * *" + successfulJobsHistoryLimit: 1 + failedJobsHistoryLimit: 1 + jobTemplate: + spec: + template: + spec: + containers: + - image: semesterly.azurecr.io/semesterly:Version + name: gunicorn-cron + command: ["/bin/bash","/code/run_parser.sh"] + workingDir: /code + envFrom: + - secretRef: + name: semesterly-secrets + env: + - name: NODE_ENV + value: stage + - name: DB_HOST + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_HOST + - name: DB_NAME + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_NAME + - name: DB_PASSWORD + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_PASSWORD + - name: DB_PORT + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_PORT + - name: DB_USER + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_USER + - name: JHU_API_KEY + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: JHU_API_KEY + restartPolicy: OnFailure diff --git a/manifests/stage/deployment.yml b/manifests/stage/deployment.yml new file mode 100644 index 0000000000..924a7ea7ee --- /dev/null +++ b/manifests/stage/deployment.yml @@ -0,0 +1,194 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: semesterly + namespace: semesterly-stage +spec: + selector: + matchLabels: + app: semesterly + replicas: 2 + strategy: + rollingUpdate: + maxSurge: 1 + maxUnavailable: 1 + minReadySeconds: 5 + template: + metadata: + labels: + app: semesterly + spec: + containers: + - name: nginx + image: semesterly.azurecr.io/semesterly-nginx:Version + ports: + - containerPort: 80 + livenessProbe: + httpGet: + path: / + port: 80 + initialDelaySeconds: 3 + periodSeconds: 60 + successThreshold: 1 + failureThreshold: 3 + timeoutSeconds: 60 + resources: + requests: + cpu: 100m + memory: 2000M + limits: + cpu: 250m + memory: 4000M + - name: pgbouncer + image: uisacr.azurecr.io/pgbouncer:latest + ports: + - containerPort: 5432 + volumeMounts: + - mountPath: /etc/pgbouncer/client_root_ca.crt + name: semesterly-az-postgres-tls-root-ca + subPath: client_root_ca.crt + resources: + requests: + cpu: 100m + memory: 250M + limits: + cpu: 250m + memory: 2000M + env: + - name: DB_HOST + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_HOST + - name: DB_NAME + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_NAME + - name: DB_USER + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_USER + - name: DB_PASSWORD + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_PASSWORD + - name: DB_PORT + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_PORT + - name: AUTH_TYPE + value: plain + - name: SERVER_TLS_SSLMODE + value: verify-ca + - name: PGBOUNCER_CLIENT_TLS_CA_FILE + value: "/etc/pgbouncer/client_root_ca.crt" + - name: MAX_CLIENT_CONN + value: "10000" + - name: DEFAULT_POOL_SIZE + value: "100" + - name: MAX_DB_CONNECTIONS + value: "100" + - name: MAX_USER_CONNECTIONS + value: "100" + - name: gunicorn + image: semesterly.azurecr.io/semesterly:Version + command: ["bash"] + args: ["-c","python manage.py migrate; gunicorn semesterly.wsgi wsgi:application --bind=0.0.0.0:8000 --preload --workers=16 --max-requests=16384 --access-logfile - --error-logfile - --log-level info"] + workingDir: /code + ports: + - containerPort: 8000 + livenessProbe: + httpGet: + path: / + port: 8000 + initialDelaySeconds: 3 + periodSeconds: 60 + successThreshold: 1 + failureThreshold: 5 + timeoutSeconds: 5 + resources: + requests: + cpu: "2" + memory: 2000M + limits: + cpu: "4" + memory: 4000M + env: + - name: NODE_ENV + value: stage + - name: DB_HOST + value: localhost + - name: DB_NAME + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_NAME + - name: DB_PASSWORD + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_PASSWORD + - name: DB_PORT + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_PORT + - name: DB_USER + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: DB_USER + - name: JHU_API_KEY + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: JHU_API_KEY + - name: SOCIAL_AUTH_GOOGLE_OAUTH2_KEY + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_GOOGLE_OAUTH2_KEY + - name: SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET + - name: SOCIAL_AUTH_FACEBOOK_KEY + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_FACEBOOK_OAUTH2_KEY + - name: SOCIAL_AUTH_FACEBOOK_SECRET + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_FACEBOOK_OAUTH2_SECRET + - name: SOCIAL_AUTH_AZURE_TENANT_ID + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_AZURE_TENANT_ID + - name: SOCIAL_AUTH_AZURE_TENANT_KEY + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_AZURE_TENANT_KEY + - name: SOCIAL_AUTH_AZURE_TENANT_SECRET + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: SOCIAL_AUTH_AZURE_TENANT_SECRET + - name: STUDENT_SIS_AUTH_SECRET + valueFrom: + secretKeyRef: + name: semesterly-secrets + key: JHU_JWT_AUTH_SECRET + volumes: + - configMap: + defaultMode: 420 + name: semesterly-az-postgres-tls-root-ca.crt + name: semesterly-az-postgres-tls-root-ca \ No newline at end of file diff --git a/manifests/stage/ingress-config-map.yml b/manifests/stage/ingress-config-map.yml new file mode 100644 index 0000000000..0312768996 --- /dev/null +++ b/manifests/stage/ingress-config-map.yml @@ -0,0 +1,8 @@ +kind: ConfigMap +apiVersion: v1 +metadata: + name: ingress-config + namespace: semesterly-stage +data: + use-forwarded-headers: "true" + forwarded-for-header: "X-Forwarded-For" diff --git a/manifests/stage/ingress.yml b/manifests/stage/ingress.yml new file mode 100644 index 0000000000..7b86590d3d --- /dev/null +++ b/manifests/stage/ingress.yml @@ -0,0 +1,33 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: semesterly-ingress + namespace: semesterly-stage +spec: + ingressClassName: nginx + rules: + - host: "semesterly-stage.az.sis.jhu.edu" + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + service: + name: semesterly-service + port: + number: 80 + - host: "*.semesterly-stage.az.sis.jhu.edu" + http: + paths: + - path: / + pathType: ImplementationSpecific + backend: + service: + name: semesterly-service + port: + number: 80 + tls: + - hosts: + - semesterly-stage.az.sis.jhu.edu + - "*.semesterly-stage.az.sis.jhu.edu" + secretName: az-wildcard-tls diff --git a/manifests/stage/service.yml b/manifests/stage/service.yml new file mode 100644 index 0000000000..801bbfdb0b --- /dev/null +++ b/manifests/stage/service.yml @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: Service +metadata: + name: semesterly-service + namespace: semesterly-stage +spec: + selector: + app: semesterly + ports: + - name: http + protocol: TCP + port: 80 + targetPort: 80 diff --git a/misc/server.js b/misc/server.js index 7bdeb8200d..88d412d565 100644 --- a/misc/server.js +++ b/misc/server.js @@ -12,20 +12,26 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. */ -var webpack = require('webpack') -var WebpackDevServer = require('webpack-dev-server') -var config = require('../webpack.config') +/* eslint-disable no-console */ +const webpack = require("webpack"); +const WebpackDevServer = require("webpack-dev-server"); +const config = require("../webpack.config"); new WebpackDevServer(webpack(config), { publicPath: config.output.publicPath, - disableHostCheck : true, // This is needed for SSL reverse proxy in development environment + disableHostCheck: true, // This is needed for SSL reverse proxy in development environment hot: true, inline: true, - historyApiFallback: true -}).listen(3000, '0.0.0.0', function (err, result) { + watchOptions: { + aggregateTimeout: 500, + poll: 1000, + }, + historyApiFallback: true, + // eslint-disable-next-line no-unused-vars +}).listen(3000, "0.0.0.0", (err, result) => { if (err) { - console.log(err) + console.log(err); } - console.log('Listening at 0.0.0.0:3000') -}) + console.log("Listening at 0.0.0.0:3000"); +}); diff --git a/misc/test_env.jsx b/misc/test_env.jsx index ea7c5c72dc..21a9ba244e 100644 --- a/misc/test_env.jsx +++ b/misc/test_env.jsx @@ -13,8 +13,8 @@ GNU General Public License for more details. */ /* eslint-disable */ -import $ from 'jquery'; -import 'babel-polyfill'; // e.g. Object.values() +import $ from "jquery"; +import "babel-polyfill"; // e.g. Object.values() window.$ = global.$ = global.jQuery = $; diff --git a/notifications/__init__.py b/notifications/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/notifications/admin.py b/notifications/admin.py new file mode 100644 index 0000000000..834ea35a80 --- /dev/null +++ b/notifications/admin.py @@ -0,0 +1,9 @@ +from django.contrib import admin +from .models import NewsUpdate + + +@admin.register(NewsUpdate) +class NewsUpdateAdmin(admin.ModelAdmin): + """Enables admins to create, view, and edit news updates at /admin""" + + list_display = ("title", "body", "date") diff --git a/notifications/apps.py b/notifications/apps.py new file mode 100644 index 0000000000..3a0847668f --- /dev/null +++ b/notifications/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class NotificationsConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = "notifications" diff --git a/notifications/migrations/0001_initial.py b/notifications/migrations/0001_initial.py new file mode 100644 index 0000000000..0960ae00e6 --- /dev/null +++ b/notifications/migrations/0001_initial.py @@ -0,0 +1,30 @@ +# Generated by Django 3.2.7 on 2022-03-05 23:03 + +import ckeditor.fields +from django.db import migrations, models + + +class Migration(migrations.Migration): + initial = True + + dependencies = [] + + operations = [ + migrations.CreateModel( + name="NewsUpdate", + fields=[ + ( + "id", + models.BigAutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("title", models.CharField(max_length=255)), + ("body", ckeditor.fields.RichTextField()), + ("date", models.DateTimeField(auto_now_add=True)), + ], + ), + ] diff --git a/notifications/migrations/__init__.py b/notifications/migrations/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/notifications/models.py b/notifications/models.py new file mode 100644 index 0000000000..453c27919e --- /dev/null +++ b/notifications/models.py @@ -0,0 +1,10 @@ +from django.db import models +from ckeditor.fields import RichTextField + + +class NewsUpdate(models.Model): + """Represents a news update that is displayed on the home page.""" + + title = models.CharField(max_length=255) + body = RichTextField() + date = models.DateTimeField(auto_now_add=True) diff --git a/notifications/serializers.py b/notifications/serializers.py new file mode 100644 index 0000000000..7debcb33e1 --- /dev/null +++ b/notifications/serializers.py @@ -0,0 +1,8 @@ +from rest_framework import serializers +from notifications.models import NewsUpdate + + +class NewsUpdateSerializer(serializers.ModelSerializer): + class Meta: + model = NewsUpdate + fields = ("title", "body", "date") diff --git a/notifications/tests.py b/notifications/tests.py new file mode 100644 index 0000000000..7ce503c2dd --- /dev/null +++ b/notifications/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/notifications/urls.py b/notifications/urls.py new file mode 100644 index 0000000000..e3a729d6d1 --- /dev/null +++ b/notifications/urls.py @@ -0,0 +1,11 @@ +from django.urls import path + +from notifications.views import NewsUpateView + + +urlpatterns = [ + path( + "notifications/news/", + NewsUpateView.as_view(), + ), +] diff --git a/notifications/views.py b/notifications/views.py new file mode 100644 index 0000000000..b46d974021 --- /dev/null +++ b/notifications/views.py @@ -0,0 +1,15 @@ +from rest_framework.views import APIView +from rest_framework.response import Response +from django.http import HttpRequest + +from notifications.models import NewsUpdate +from notifications.serializers import NewsUpdateSerializer +from helpers.mixins import ValidateSubdomainMixin + + +class NewsUpateView(ValidateSubdomainMixin, APIView): + def get(self, request: HttpRequest): + """Returns the most recent news update.""" + query = NewsUpdate.objects.order_by("-date").first() + data = NewsUpdateSerializer(query).data + return Response(data) diff --git a/package-lock.json b/package-lock.json index 504599754a..d9f968e411 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4,2392 +4,14264 @@ "lockfileVersion": 1, "requires": true, "dependencies": { - "@mapbox/togeojson": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/@mapbox/togeojson/-/togeojson-0.16.0.tgz", - "integrity": "sha1-WygwAQeEMYIdx04oesr1ahHOs3w=", - "requires": { - "concat-stream": "~1.5.1", - "minimist": "1.2.0", - "xmldom": "~0.1.19" + "@babel/code-frame": { + "version": "7.15.8", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz", + "integrity": "sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==", + "requires": { + "@babel/highlight": "^7.14.5" + } + }, + "@babel/compat-data": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz", + "integrity": "sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==" + }, + "@babel/core": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.16.0.tgz", + "integrity": "sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==", + "requires": { + "@babel/code-frame": "^7.16.0", + "@babel/generator": "^7.16.0", + "@babel/helper-compilation-targets": "^7.16.0", + "@babel/helper-module-transforms": "^7.16.0", + "@babel/helpers": "^7.16.0", + "@babel/parser": "^7.16.0", + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.1.2", + "semver": "^6.3.0", + "source-map": "^0.5.0" }, "dependencies": { + "@babel/code-frame": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz", + "integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==", + "requires": { + "@babel/highlight": "^7.16.0" + } + }, + "@babel/highlight": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz", + "integrity": "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==", + "requires": { + "@babel/helper-validator-identifier": "^7.15.7", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "debug": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "requires": { + "ms": "2.1.2" + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "requires": { + "minimist": "^1.2.5" + } + }, "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" } } }, - "@types/node": { - "version": "10.3.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.3.2.tgz", - "integrity": "sha512-9NfEUDp3tgRhmoxzTpTo+lq+KIVFxZahuRX0LHF/9IzKHaWuoWsIrrJ61zw5cnnlGINX8lqJzXYfQTOICS5Q+A==" + "@babel/generator": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.0.tgz", + "integrity": "sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew==", + "requires": { + "@babel/types": "^7.16.0", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + } + } }, - "JSONStream": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.1.tgz", - "integrity": "sha1-cH92HgHa6eFvG8+TcDt4xwlmV5o=", + "@babel/helper-compilation-targets": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz", + "integrity": "sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==", "requires": { - "jsonparse": "^1.2.0", - "through": ">=2.2.7 <3" + "@babel/compat-data": "^7.16.0", + "@babel/helper-validator-option": "^7.14.5", + "browserslist": "^4.17.5", + "semver": "^6.3.0" + }, + "dependencies": { + "browserslist": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.18.1.tgz", + "integrity": "sha512-8ScCzdpPwR2wQh8IT82CA2VgDwjHyqMovPBZSNH54+tm4Jk2pCuv90gmAdH6J84OCRWi0b4gMe6O6XPXuJnjgQ==", + "requires": { + "caniuse-lite": "^1.0.30001280", + "electron-to-chromium": "^1.3.896", + "escalade": "^3.1.1", + "node-releases": "^2.0.1", + "picocolors": "^1.0.0" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } } }, - "abab": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/abab/-/abab-1.0.3.tgz", - "integrity": "sha1-uB3l9ydOxOdW15fNg08wNkJyTl0=" + "@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==" }, - "abbrev": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.0.tgz", - "integrity": "sha1-0FVMIlZjbi9W58LlrRg/hZQo2B8=" + "@babel/helper-member-expression-to-functions": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.0.tgz", + "integrity": "sha512-bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ==", + "requires": { + "@babel/types": "^7.16.0" + } }, - "accepts": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz", - "integrity": "sha1-w8p0NJOGSMPg2cHjKN1otiLChMo=", + "@babel/helper-module-imports": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz", + "integrity": "sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==", "requires": { - "mime-types": "~2.1.11", - "negotiator": "0.6.1" + "@babel/types": "^7.16.0" } }, - "acorn": { - "version": "4.0.13", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", - "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=" + "@babel/helper-module-transforms": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.0.tgz", + "integrity": "sha512-My4cr9ATcaBbmaEa8M0dZNA74cfI6gitvUAskgDtAFmAqyFKDSHQo5YstxPbN+lzHl2D9l/YOEFqb2mtUh4gfA==", + "requires": { + "@babel/helper-module-imports": "^7.16.0", + "@babel/helper-replace-supers": "^7.16.0", + "@babel/helper-simple-access": "^7.16.0", + "@babel/helper-split-export-declaration": "^7.16.0", + "@babel/helper-validator-identifier": "^7.15.7", + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0" + } }, - "acorn-dynamic-import": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz", - "integrity": "sha1-x1K9IQvvZ5UBtsbLf8hPj0cVjMQ=", + "@babel/helper-optimise-call-expression": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz", + "integrity": "sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw==", "requires": { - "acorn": "^4.0.3" + "@babel/types": "^7.16.0" } }, - "acorn-globals": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-3.1.0.tgz", - "integrity": "sha1-/YJw9x+7SZawBPqIDuXUZXOnMb8=", + "@babel/helper-plugin-utils": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz", + "integrity": "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==" + }, + "@babel/helper-replace-supers": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.0.tgz", + "integrity": "sha512-TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA==", "requires": { - "acorn": "^4.0.4" + "@babel/helper-member-expression-to-functions": "^7.16.0", + "@babel/helper-optimise-call-expression": "^7.16.0", + "@babel/traverse": "^7.16.0", + "@babel/types": "^7.16.0" } }, - "acorn-jsx": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", - "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=", + "@babel/helper-simple-access": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz", + "integrity": "sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==", "requires": { - "acorn": "^3.0.4" - }, - "dependencies": { - "acorn": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", - "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=" - } + "@babel/types": "^7.16.0" } }, - "adjust-sourcemap-loader": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-1.2.0.tgz", - "integrity": "sha512-958oaHHVEXMvsY7v7cC5gEkNIcoaAVIhZ4mBReYVZJOTP9IgKmzLjIOhTtzpLMu+qriXvLsVjJ155EeInp45IQ==", + "@babel/helper-split-export-declaration": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz", + "integrity": "sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==", "requires": { - "assert": "^1.3.0", - "camelcase": "^1.2.1", - "loader-utils": "^1.1.0", - "lodash.assign": "^4.0.1", - "lodash.defaults": "^3.1.2", - "object-path": "^0.9.2", - "regex-parser": "^2.2.9" - }, - "dependencies": { - "camelcase": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", - "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=" - }, - "lodash.defaults": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-3.1.2.tgz", - "integrity": "sha1-xzCLGNv4vJNy1wGnNJPGEZK9Liw=", - "requires": { - "lodash.assign": "^3.0.0", - "lodash.restparam": "^3.0.0" - }, - "dependencies": { - "lodash.assign": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-3.2.0.tgz", - "integrity": "sha1-POnwI0tLIiPilrj6CsH+6OvKZPo=", - "requires": { - "lodash._baseassign": "^3.0.0", - "lodash._createassigner": "^3.0.0", - "lodash.keys": "^3.0.0" - } - } - } - } + "@babel/types": "^7.16.0" } }, - "ajv": { - "version": "4.11.8", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz", - "integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=", + "@babel/helper-string-parser": { + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz", + "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==" + }, + "@babel/helper-validator-identifier": { + "version": "7.15.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz", + "integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==" + }, + "@babel/helper-validator-option": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz", + "integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==" + }, + "@babel/helpers": { + "version": "7.16.3", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.3.tgz", + "integrity": "sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w==", "requires": { - "co": "^4.6.0", - "json-stable-stringify": "^1.0.1" + "@babel/template": "^7.16.0", + "@babel/traverse": "^7.16.3", + "@babel/types": "^7.16.0" + } + }, + "@babel/highlight": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", + "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", + "requires": { + "@babel/helper-validator-identifier": "^7.14.5", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" }, "dependencies": { - "json-stable-stringify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", - "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", - "requires": { - "jsonify": "~0.0.0" - } + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" } } }, - "ajv-keywords": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz", - "integrity": "sha1-MU3QpLM2j609/NxU7eYXG4htrzw=" + "@babel/parser": { + "version": "7.16.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.4.tgz", + "integrity": "sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==" }, - "align-text": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", - "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "requires": { - "kind-of": "^3.0.2", - "longest": "^1.0.1", - "repeat-string": "^1.5.2" + "@babel/helper-plugin-utils": "^7.8.0" } }, - "alphanum-sort": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", - "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" - }, - "amdefine": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", - "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" - }, - "amplitude": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/amplitude/-/amplitude-3.5.0.tgz", - "integrity": "sha1-Y+2tvZoK70lGf2bBE0D+mzcc18M=", + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "requires": { - "superagent": "^3.3.1" + "@babel/helper-plugin-utils": "^7.8.0" } }, - "ansi-escapes": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz", - "integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4=" - }, - "ansi-html": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", - "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=" - }, - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } }, - "ansi-styles": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.1.0.tgz", - "integrity": "sha1-CcIC1ckX7CMYjKpcnLkXnNlUd1A=", + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "requires": { - "color-convert": "^1.0.0" + "@babel/helper-plugin-utils": "^7.10.4" } }, - "any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8=" + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } }, - "anymatch": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz", - "integrity": "sha1-o+Uvo5FoyCX/V7AkgSbOWo/5VQc=", + "@babel/plugin-syntax-jsx": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", + "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", "requires": { - "arrify": "^1.0.0", - "micromatch": "^2.1.5" + "@babel/helper-plugin-utils": "^7.18.6" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz", + "integrity": "sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==" + } } }, - "app-root-path": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/app-root-path/-/app-root-path-2.0.1.tgz", - "integrity": "sha1-zWLc+OT9WkF+/GZNLlsQZTxlG0Y=", - "dev": true + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } }, - "append-transform": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/append-transform/-/append-transform-0.4.0.tgz", - "integrity": "sha1-126/jKlNJ24keja61EpLdKthGZE=", + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "requires": { - "default-require-extensions": "^1.0.0" + "@babel/helper-plugin-utils": "^7.8.0" } }, - "aproba": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.1.2.tgz", - "integrity": "sha512-ZpYajIfO0j2cOFTO955KUMIKNmj6zhX8kVztMAxFsDaMwz+9Z9SV0uou2pC9HJqcfpffOsjnbrDMvkNy+9RXPw==" + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } }, - "are-we-there-yet": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz", - "integrity": "sha1-u13KOCu5TwXhUZQ3PRb9O6HKEQ0=", + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" + "@babel/helper-plugin-utils": "^7.8.0" } }, - "argparse": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz", - "integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=", + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "requires": { - "sprintf-js": "~1.0.2" + "@babel/helper-plugin-utils": "^7.8.0" } }, - "aria-query": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-0.7.0.tgz", - "integrity": "sha512-/r2lHl09V3o74+2MLKEdewoj37YZqiQZnfen1O4iNlrOjUgeKuu1U2yF3iKh6HJxqF+OXkLMfQv65Z/cvxD6vA==", + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "requires": { - "ast-types-flow": "0.0.7" + "@babel/helper-plugin-utils": "^7.8.0" } }, - "arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", + "@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "requires": { - "arr-flatten": "^1.0.1" + "@babel/helper-plugin-utils": "^7.14.5" } }, - "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==" - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" - }, - "array-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", - "integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=" - }, - "array-filter": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz", - "integrity": "sha1-fajPLiZijtcygDWB/SH2fKzS7uw=" - }, - "array-find": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-find/-/array-find-1.0.0.tgz", - "integrity": "sha1-bI4obRHtdoMn+OYuzuhzU8o+eLg=" - }, - "array-find-index": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", - "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=" - }, - "array-flatten": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.1.tgz", - "integrity": "sha1-Qmu52oQJDBg42BLIFQryCoMx4pY=" + "@babel/plugin-syntax-typescript": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz", + "integrity": "sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.18.6" + }, + "dependencies": { + "@babel/helper-plugin-utils": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz", + "integrity": "sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==", + "dev": true + } + } }, - "array-includes": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.0.3.tgz", - "integrity": "sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0=", + "@babel/runtime": { + "version": "7.15.4", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz", + "integrity": "sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==", "requires": { - "define-properties": "^1.1.2", - "es-abstract": "^1.7.0" + "regenerator-runtime": "^0.13.4" + }, + "dependencies": { + "regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + } } }, - "array-map": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/array-map/-/array-map-0.0.0.tgz", - "integrity": "sha1-iKK6tz0c97zVwbEYoAP2b2ZfpmI=" + "@babel/template": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz", + "integrity": "sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==", + "requires": { + "@babel/code-frame": "^7.16.0", + "@babel/parser": "^7.16.0", + "@babel/types": "^7.16.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz", + "integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==", + "requires": { + "@babel/highlight": "^7.16.0" + } + }, + "@babel/highlight": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz", + "integrity": "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==", + "requires": { + "@babel/helper-validator-identifier": "^7.15.7", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + } + } }, - "array-reduce": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/array-reduce/-/array-reduce-0.0.0.tgz", - "integrity": "sha1-FziZ0//Rx9k4PkR5Ul2+J4yrXys=" + "@babel/traverse": { + "version": "7.23.2", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.2.tgz", + "integrity": "sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==", + "requires": { + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.23.0", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.0", + "@babel/types": "^7.23.0", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.22.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", + "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", + "requires": { + "@babel/highlight": "^7.22.13", + "chalk": "^2.4.2" + } + }, + "@babel/generator": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz", + "integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==", + "requires": { + "@babel/types": "^7.23.0", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + } + }, + "@babel/helper-function-name": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "requires": { + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "requires": { + "@babel/types": "^7.22.5" + } + }, + "@babel/helper-string-parser": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", + "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==" + }, + "@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==" + }, + "@babel/highlight": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", + "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", + "requires": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz", + "integrity": "sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==" + }, + "@babel/template": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "requires": { + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" + } + }, + "@babel/types": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.0.tgz", + "integrity": "sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==", + "requires": { + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.20", + "to-fast-properties": "^2.0.0" + } + }, + "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==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + }, + "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==" + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" + } + } }, - "array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "@babel/types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz", + "integrity": "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==", "requires": { - "array-uniq": "^1.0.1" + "@babel/helper-validator-identifier": "^7.15.7", + "to-fast-properties": "^2.0.0" + }, + "dependencies": { + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + } } }, - "array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" - }, - "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=" + "@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true }, - "arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" + "@emotion/babel-plugin": { + "version": "11.10.2", + "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.10.2.tgz", + "integrity": "sha512-xNQ57njWTFVfPAc3cjfuaPdsgLp5QOSuRsj9MA6ndEhH/AzuZM86qIQzt6rq+aGBwj3n5/TkLmU5lhAfdRmogA==", + "requires": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/plugin-syntax-jsx": "^7.17.12", + "@babel/runtime": "^7.18.3", + "@emotion/hash": "^0.9.0", + "@emotion/memoize": "^0.8.0", + "@emotion/serialize": "^1.1.0", + "babel-plugin-macros": "^3.1.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.0.13" + }, + "dependencies": { + "@babel/helper-module-imports": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "requires": { + "@babel/types": "^7.18.6" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==" + }, + "@babel/runtime": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz", + "integrity": "sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/types": { + "version": "7.19.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.3.tgz", + "integrity": "sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw==", + "requires": { + "@babel/helper-string-parser": "^7.18.10", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" + } + }, + "@emotion/memoize": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.0.tgz", + "integrity": "sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==" + }, + "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==" + }, + "regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" + } + } }, - "asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + "@emotion/cache": { + "version": "11.7.1", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.7.1.tgz", + "integrity": "sha512-r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A==", + "requires": { + "@emotion/memoize": "^0.7.4", + "@emotion/sheet": "^1.1.0", + "@emotion/utils": "^1.0.0", + "@emotion/weak-memoize": "^0.2.5", + "stylis": "4.0.13" + } }, - "asn1": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz", - "integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=" + "@emotion/hash": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.0.tgz", + "integrity": "sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==" }, - "asn1.js": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.9.1.tgz", - "integrity": "sha1-SLokC0WpKA6UdImQull9IWYX/UA=", + "@emotion/is-prop-valid": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.0.tgz", + "integrity": "sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==", "requires": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" + "@emotion/memoize": "^0.8.0" + }, + "dependencies": { + "@emotion/memoize": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.0.tgz", + "integrity": "sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==" + } } }, - "assert": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz", - "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=", - "requires": { - "util": "0.10.3" + "@emotion/memoize": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.5.tgz", + "integrity": "sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==" + }, + "@emotion/react": { + "version": "11.10.4", + "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.10.4.tgz", + "integrity": "sha512-j0AkMpr6BL8gldJZ6XQsQ8DnS9TxEQu1R+OGmDZiWjBAJtCcbt0tS3I/YffoqHXxH6MjgI7KdMbYKw3MEiU9eA==", + "requires": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.10.0", + "@emotion/cache": "^11.10.0", + "@emotion/serialize": "^1.1.0", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", + "@emotion/utils": "^1.2.0", + "@emotion/weak-memoize": "^0.3.0", + "hoist-non-react-statics": "^3.3.1" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz", + "integrity": "sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@emotion/cache": { + "version": "11.10.3", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.10.3.tgz", + "integrity": "sha512-Psmp/7ovAa8appWh3g51goxu/z3iVms7JXOreq136D8Bbn6dYraPnmL6mdM8GThEx9vwSn92Fz+mGSjBzN8UPQ==", + "requires": { + "@emotion/memoize": "^0.8.0", + "@emotion/sheet": "^1.2.0", + "@emotion/utils": "^1.2.0", + "@emotion/weak-memoize": "^0.3.0", + "stylis": "4.0.13" + } + }, + "@emotion/memoize": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.0.tgz", + "integrity": "sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==" + }, + "@emotion/sheet": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.0.tgz", + "integrity": "sha512-OiTkRgpxescko+M51tZsMq7Puu/KP55wMT8BgpcXVG2hqXc0Vo0mfymJ/Uj24Hp0i083ji/o0aLddh08UEjq8w==" + }, + "@emotion/utils": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.0.tgz", + "integrity": "sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==" + }, + "@emotion/weak-memoize": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.0.tgz", + "integrity": "sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==" + }, + "hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "requires": { + "react-is": "^16.7.0" + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + } } }, - "assert-plus": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", - "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=" + "@emotion/serialize": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.0.tgz", + "integrity": "sha512-F1ZZZW51T/fx+wKbVlwsfchr5q97iW8brAnXmsskz4d0hVB4O3M/SiA3SaeH06x02lSNzkkQv+n3AX3kCXKSFA==", + "requires": { + "@emotion/hash": "^0.9.0", + "@emotion/memoize": "^0.8.0", + "@emotion/unitless": "^0.8.0", + "@emotion/utils": "^1.2.0", + "csstype": "^3.0.2" + }, + "dependencies": { + "@emotion/memoize": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.0.tgz", + "integrity": "sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==" + }, + "@emotion/utils": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.0.tgz", + "integrity": "sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==" + } + } }, - "assertion-error": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.0.2.tgz", - "integrity": "sha1-E8pRXYYgbaC6xm6DTdOX2HWBCUw=" + "@emotion/sheet": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.1.0.tgz", + "integrity": "sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g==" + }, + "@emotion/styled": { + "version": "11.10.4", + "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.10.4.tgz", + "integrity": "sha512-pRl4R8Ez3UXvOPfc2bzIoV8u9P97UedgHS4FPX594ntwEuAMA114wlaHvOK24HB48uqfXiGlYIZYCxVJ1R1ttQ==", + "requires": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.10.0", + "@emotion/is-prop-valid": "^1.2.0", + "@emotion/serialize": "^1.1.0", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", + "@emotion/utils": "^1.2.0" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz", + "integrity": "sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@emotion/utils": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.0.tgz", + "integrity": "sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==" + }, + "regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + } + } }, - "assign-symbols": { + "@emotion/unitless": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.0.tgz", + "integrity": "sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==" + }, + "@emotion/use-insertion-effect-with-fallbacks": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.0.tgz", + "integrity": "sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A==" }, - "ast-types": { - "version": "0.9.6", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz", - "integrity": "sha1-ECyenpAF0+fjgpvwxPok7oYu6bk=" + "@emotion/utils": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.1.0.tgz", + "integrity": "sha512-iRLa/Y4Rs5H/f2nimczYmS5kFJEbpiVvgN3XVfZ022IYhuNA1IRSHEizcof88LtCTXtl9S2Cxt32KgaXEu72JQ==" }, - "ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" - }, - "astral-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", - "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==" + "@emotion/weak-memoize": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz", + "integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==" }, - "astw": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/astw/-/astw-2.2.0.tgz", - "integrity": "sha1-e9QXhNMkk5h66yOba04cV6hzuRc=", - "requires": { - "acorn": "^4.0.3" + "@eslint/eslintrc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz", + "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", + "requires": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.4.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==" + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "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" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "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==" + }, + "espree": { + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", + "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", + "requires": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.3.0" + } + }, + "globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "requires": { + "type-fest": "^0.20.2" + } + }, + "ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "requires": { + "argparse": "^2.0.1" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "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==" + } } }, - "async": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/async/-/async-2.5.0.tgz", - "integrity": "sha512-e+lJAJeNWuPCNyxZKOBdaJGyLGHugXVQtrAwtuAe2vhxTYxFTKE73p8JuTmdH0qdQZtDvI4dhJwjZc5zsfIsYw==", + "@floating-ui/core": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.0.tgz", + "integrity": "sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==", "requires": { - "lodash": "^4.14.0" + "@floating-ui/utils": "^0.2.1" } }, - "async-each": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", - "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=" - }, - "async-foreach": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", - "integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=" - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - }, - "atob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.1.tgz", - "integrity": "sha1-ri1acpR38onWDdf5amMUoi3Wwio=" - }, - "autobind-decorator": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/autobind-decorator/-/autobind-decorator-1.4.3.tgz", - "integrity": "sha1-TJb/p3sQYi7eJPEQ9du/VmkUF9E=" - }, - "autoprefixer": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-7.1.2.tgz", - "integrity": "sha1-++rwfUj9h44Ggr98vurecorbKxg=", + "@floating-ui/dom": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.1.tgz", + "integrity": "sha512-iA8qE43/H5iGozC3W0YSnVSW42Vh522yyM1gj+BqRwVsTNOyr231PsXDaV04yT39PsO0QL2QpbI/M0ZaLUQgRQ==", "requires": { - "browserslist": "^2.1.5", - "caniuse-lite": "^1.0.30000697", - "normalize-range": "^0.1.2", - "num2fraction": "^1.2.2", - "postcss": "^6.0.6", - "postcss-value-parser": "^3.2.3" + "@floating-ui/core": "^1.6.0", + "@floating-ui/utils": "^0.2.1" } }, - "aws-sign2": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", - "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=" - }, - "aws4": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", - "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=" - }, - "axobject-query": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-0.1.0.tgz", - "integrity": "sha1-YvWdvFnJ+SQnWco0mWDnov48NsA=", + "@floating-ui/react-dom": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.0.8.tgz", + "integrity": "sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==", "requires": { - "ast-types-flow": "0.0.7" + "@floating-ui/dom": "^1.6.1" } }, - "babel": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel/-/babel-6.23.0.tgz", - "integrity": "sha1-0NHn2APpdHZb7qMjLU4VPA77kPQ=" + "@floating-ui/utils": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.1.tgz", + "integrity": "sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==" }, - "babel-code-frame": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.22.0.tgz", - "integrity": "sha1-AnYgvuVnqIwyVhV05/0IAdMxGOQ=", + "@humanwhocodes/config-array": { + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", + "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", "requires": { - "chalk": "^1.1.0", - "esutils": "^2.0.2", - "js-tokens": "^3.0.0" + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "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" + "brace-expansion": "^1.1.7" } }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" } } }, - "babel-core": { - "version": "6.25.0", - "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.25.0.tgz", - "integrity": "sha1-fdQrBGPHQunVKW3rPsZ6kyLa1yk=", - "requires": { - "babel-code-frame": "^6.22.0", - "babel-generator": "^6.25.0", - "babel-helpers": "^6.24.1", - "babel-messages": "^6.23.0", - "babel-register": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.25.0", - "babel-traverse": "^6.25.0", - "babel-types": "^6.25.0", - "babylon": "^6.17.2", - "convert-source-map": "^1.1.0", - "debug": "^2.1.1", - "json5": "^0.5.0", - "lodash": "^4.2.0", - "minimatch": "^3.0.2", - "path-is-absolute": "^1.0.0", - "private": "^0.1.6", - "slash": "^1.0.0", - "source-map": "^0.5.0" - } - }, - "babel-generator": { - "version": "6.25.0", - "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.25.0.tgz", - "integrity": "sha1-M6GvcNXyiQrrRlpKd5PB32qeqfw=", - "requires": { - "babel-messages": "^6.23.0", - "babel-runtime": "^6.22.0", - "babel-types": "^6.25.0", - "detect-indent": "^4.0.0", - "jsesc": "^1.3.0", - "lodash": "^4.2.0", - "source-map": "^0.5.0", - "trim-right": "^1.0.1" - } - }, - "babel-helper-bindify-decorators": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz", - "integrity": "sha1-FMGeXxQte0fxmlJDHlKxzLxAozA=", - "requires": { - "babel-runtime": "^6.22.0", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" }, - "babel-helper-builder-binary-assignment-operator-visitor": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz", - "integrity": "sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=", - "requires": { - "babel-helper-explode-assignable-expression": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } + "@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==" }, - "babel-helper-builder-react-jsx": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz", - "integrity": "sha1-CteRfjPI11HmRtrKTnfMGTd9LLw=", - "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1", - "esutils": "^2.0.0" + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "requires": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "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==", + "requires": { + "p-limit": "^2.2.0" + } + }, + "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==" + }, + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + } } }, - "babel-helper-call-delegate": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz", - "integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=", - "requires": { - "babel-helper-hoist-variables": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } + "@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" }, - "babel-helper-define-map": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz", - "integrity": "sha1-epdH8ljYlH0y1RX2qhx70CIEoIA=", + "@jest/console": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", + "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "dev": true, "requires": { - "babel-helper-function-name": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1", - "lodash": "^4.2.0" - } - }, - "babel-helper-explode-assignable-expression": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz", - "integrity": "sha1-8luCz33BBDPFX3BZLVdGQArCLKo=", - "requires": { - "babel-runtime": "^6.22.0", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, - "babel-helper-explode-class": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz", - "integrity": "sha1-fcKjkQ3uAHBW4eMdZAztPVTqqes=", - "requires": { - "babel-helper-bindify-decorators": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, - "babel-helper-function-name": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz", - "integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=", - "requires": { - "babel-helper-get-function-arity": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, - "babel-helper-get-function-arity": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz", - "integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=", - "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-helper-hoist-variables": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz", - "integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=", - "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-helper-optimise-call-expression": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz", - "integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=", - "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } - }, - "babel-helper-regex": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz", - "integrity": "sha1-024i+rEAjXnYhkjjIRaGgShFbOg=", - "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1", - "lodash": "^4.2.0" - } - }, - "babel-helper-remap-async-to-generator": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz", - "integrity": "sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=", - "requires": { - "babel-helper-function-name": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, - "babel-helper-replace-supers": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz", - "integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=", - "requires": { - "babel-helper-optimise-call-expression": "^6.24.1", - "babel-messages": "^6.23.0", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } - }, - "babel-helpers": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz", - "integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=", - "requires": { - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - } - }, - "babel-jest": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-20.0.3.tgz", - "integrity": "sha1-5KA7E9wQOJ4UD8ZF0J/8TO0wFnE=", - "requires": { - "babel-core": "^6.0.0", - "babel-plugin-istanbul": "^4.0.0", - "babel-preset-jest": "^20.0.3" - } - }, - "babel-loader": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-7.1.1.tgz", - "integrity": "sha1-uHE0yLEuPkwqlOBUYIW8aAorhIg=", - "requires": { - "find-cache-dir": "^1.0.0", - "loader-utils": "^1.0.2", - "mkdirp": "^0.5.1" - } - }, - "babel-messages": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", - "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=", - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-check-es2015-constants": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz", - "integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=", - "requires": { - "babel-runtime": "^6.22.0" - } - }, - "babel-plugin-istanbul": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz", - "integrity": "sha1-GN3oS/POMp/d8/QQP66SFFbY5Yc=", - "requires": { - "find-up": "^2.1.0", - "istanbul-lib-instrument": "^1.7.2", - "test-exclude": "^4.1.1" + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0" + }, + "dependencies": { + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "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" + } + }, + "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" + } + }, + "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" + } + }, + "ci-info": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz", + "integrity": "sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==", + "dev": true + }, + "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 + }, + "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" + } + }, + "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 + }, + "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 + }, + "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 + }, + "jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + } + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "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" + } + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": 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": { + "has-flag": "^4.0.0" + } + }, + "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" + } + } } }, - "babel-plugin-jest-hoist": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz", - "integrity": "sha1-r+3IU70/jcNUjqZx++adA8wsF2c=" - }, - "babel-plugin-react-transform": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/babel-plugin-react-transform/-/babel-plugin-react-transform-2.0.2.tgz", - "integrity": "sha1-UVu/qZaJOYEULZCx+bFjXeKZUQk=", + "@jest/core": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", + "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "dev": true, "requires": { - "lodash": "^4.6.1" - } - }, - "babel-plugin-syntax-async-functions": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz", - "integrity": "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=" - }, - "babel-plugin-syntax-async-generators": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz", - "integrity": "sha1-a8lj67FuzLrmuStZbrfzXDQqi5o=" - }, - "babel-plugin-syntax-class-properties": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz", - "integrity": "sha1-1+sjt5oxf4VDlixQW4J8fWysJ94=" - }, + "@jest/console": "^27.5.1", + "@jest/reporters": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^27.5.1", + "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-resolve-dependencies": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "jest-watcher": "^27.5.1", + "micromatch": "^4.0.4", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dev": true, + "requires": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + } + }, + "@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + } + }, + "@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + } + }, + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true + }, + "acorn": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", + "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", + "dev": true + }, + "acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dev": true, + "requires": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + } + } + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, + "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" + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } + }, + "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" + } + }, + "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" + } + }, + "ci-info": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz", + "integrity": "sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==", + "dev": true + }, + "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 + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "dev": true + }, + "cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + } + } + }, + "escodegen": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "dev": true, + "requires": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + } + }, + "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 + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": 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" + } + }, + "form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "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" + }, + "dependencies": { + "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" + } + } + } + }, + "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 + }, + "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 + }, + "html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dev": true, + "requires": { + "whatwg-encoding": "^1.0.5" + } + }, + "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" + } + }, + "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 + }, + "istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + } + }, + "jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "dev": true, + "requires": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + } + }, + "jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + } + }, + "jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + } + }, + "jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*" + } + }, + "jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true + }, + "jest-runner": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "dev": true, + "requires": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + } + }, + "jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + } + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "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": { + "has-flag": "^4.0.0" + } + } + } + }, + "jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dev": true, + "requires": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + } + }, + "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" + }, + "dependencies": { + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "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 + }, + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true + }, + "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 + }, + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "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": { + "glob": "^7.1.3" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "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 + }, + "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" + } + }, + "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": { + "ansi-regex": "^5.0.1" + } + }, + "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": { + "has-flag": "^4.0.0" + } + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "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" + } + }, + "tough-cookie": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", + "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", + "dev": true, + "requires": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + } + }, + "tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dev": true, + "requires": { + "punycode": "^2.1.1" + } + }, + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + }, + "universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true + }, + "webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "dev": true + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, + "requires": { + "iconv-lite": "0.4.24" + } + }, + "whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dev": true, + "requires": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + } + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "dev": true + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true + } + } + }, + "@jest/environment": { + "version": "27.4.4", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.4.4.tgz", + "integrity": "sha512-q+niMx7cJgt/t/b6dzLOh4W8Ef/8VyKG7hxASK39jakijJzbFBGpptx3RXz13FFV7OishQ9lTbv+dQ5K3EhfDQ==", + "dev": true, + "requires": { + "@jest/fake-timers": "^27.4.2", + "@jest/types": "^27.4.2", + "@types/node": "*", + "jest-mock": "^27.4.2" + }, + "dependencies": { + "@jest/types": { + "version": "27.4.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz", + "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "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" + } + }, + "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" + } + }, + "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 + }, + "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": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/fake-timers": { + "version": "27.4.2", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.4.2.tgz", + "integrity": "sha512-f/Xpzn5YQk5adtqBgvw1V6bF8Nx3hY0OIRRpCvWcfPl0EAjdqWPdhH3t/3XpiWZqtjIEHDyMKP9ajpva1l4Zmg==", + "dev": true, + "requires": { + "@jest/types": "^27.4.2", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.4.2", + "jest-mock": "^27.4.2", + "jest-util": "^27.4.2" + }, + "dependencies": { + "@jest/types": { + "version": "27.4.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz", + "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "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" + } + }, + "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" + } + }, + "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 + }, + "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": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/globals": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", + "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "dev": true, + "requires": { + "@jest/environment": "^27.5.1", + "@jest/types": "^27.5.1", + "expect": "^27.5.1" + }, + "dependencies": { + "@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dev": true, + "requires": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + } + }, + "@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + } + }, + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "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" + } + }, + "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" + } + }, + "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" + } + }, + "ci-info": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz", + "integrity": "sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==", + "dev": true + }, + "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 + }, + "expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.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" + } + }, + "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 + }, + "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 + }, + "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 + }, + "jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "dev": true + }, + "jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + } + }, + "jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*" + } + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "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" + } + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": 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": { + "has-flag": "^4.0.0" + } + }, + "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" + } + } + } + }, + "@jest/reporters": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", + "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "dev": true, + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-haste-map": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^8.1.0" + }, + "dependencies": { + "@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + } + }, + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "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" + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } + }, + "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" + } + }, + "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" + } + }, + "ci-info": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz", + "integrity": "sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==", + "dev": true + }, + "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 + }, + "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" + } + }, + "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" + } + }, + "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 + }, + "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 + }, + "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 + }, + "istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + } + }, + "istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + } + }, + "istanbul-reports": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.5.tgz", + "integrity": "sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==", + "dev": true, + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + } + }, + "jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true + }, + "jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + } + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "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": { + "has-flag": "^4.0.0" + } + } + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + } + }, + "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" + }, + "dependencies": { + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + } + } + }, + "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 + }, + "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 + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "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 + }, + "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": { + "has-flag": "^4.0.0" + } + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "dependencies": { + "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" + }, + "dependencies": { + "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" + } + } + } + } + } + }, + "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" + } + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + } + } + }, + "@jest/source-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", + "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "dev": true, + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9", + "source-map": "^0.6.0" + }, + "dependencies": { + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "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 + }, + "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 + } + } + }, + "@jest/test-result": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", + "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "dev": true, + "requires": { + "@jest/console": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "dependencies": { + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "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" + } + }, + "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" + } + }, + "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 + }, + "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": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jest/test-sequencer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", + "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "dev": true, + "requires": { + "@jest/test-result": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-runtime": "^27.5.1" + }, + "dependencies": { + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "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" + } + }, + "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" + } + }, + "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" + } + }, + "ci-info": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz", + "integrity": "sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==", + "dev": true + }, + "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 + }, + "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" + } + }, + "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 + }, + "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 + }, + "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 + }, + "jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + } + }, + "jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true + }, + "jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + } + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "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": { + "has-flag": "^4.0.0" + } + } + } + }, + "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" + }, + "dependencies": { + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "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 + }, + "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": { + "has-flag": "^4.0.0" + } + }, + "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" + } + } + } + }, + "@jest/transform": { + "version": "27.4.4", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.4.4.tgz", + "integrity": "sha512-7U/nDSrGsGzL7+X8ScNFV71w8u8knJQWSa9C2xsrrKLMOgb+rWuCG4VAyWke/53BU96GnT+Ka81xCAHA5gk6zA==", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.4.2", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^27.4.4", + "jest-regex-util": "^27.4.0", + "jest-util": "^27.4.2", + "micromatch": "^4.0.4", + "pirates": "^4.0.1", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "dependencies": { + "@jest/types": { + "version": "27.4.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz", + "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "requires": { + "fill-range": "^7.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "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==", + "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==" + }, + "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==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "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" + } + }, + "graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==" + }, + "istanbul-lib-instrument": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz", + "integrity": "sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==", + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + } + }, + "micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "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==", + "requires": { + "has-flag": "^4.0.0" + } + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "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==", + "requires": { + "is-number": "^7.0.0" + } + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + } + } + }, + "@jest/types": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.2.5.tgz", + "integrity": "sha512-nmuM4VuDtCZcY+eTpw+0nvstwReMsjPoj7ZR80/BbixulhLaiX+fbv8oeLW8WZlJMcsGQsTmMKT/iTZu1Uy/lQ==", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "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==", + "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==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "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==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "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.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==" + }, + "@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==" + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "@jridgewell/trace-mapping": { + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "requires": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "@mapbox/togeojson": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/@mapbox/togeojson/-/togeojson-0.16.0.tgz", + "integrity": "sha1-WygwAQeEMYIdx04oesr1ahHOs3w=", + "requires": { + "concat-stream": "~1.5.1", + "minimist": "1.2.0", + "xmldom": "~0.1.19" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" + } + } + }, + "@mui/base": { + "version": "5.0.0-beta.33", + "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-beta.33.tgz", + "integrity": "sha512-WcSpoJUw/UYHXpvgtl4HyMar2Ar97illUpqiS/X1gtSBp6sdDW6kB2BJ9OlVQ+Kk/RL2GDp/WHA9sbjAYV35ow==", + "requires": { + "@babel/runtime": "^7.23.8", + "@floating-ui/react-dom": "^2.0.6", + "@mui/types": "^7.2.13", + "@mui/utils": "^5.15.6", + "@popperjs/core": "^2.11.8", + "clsx": "^2.1.0", + "prop-types": "^15.8.1" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz", + "integrity": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==", + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, + "regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + } + } + }, + "@mui/core-downloads-tracker": { + "version": "5.15.6", + "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-5.15.6.tgz", + "integrity": "sha512-0aoWS4qvk1uzm9JBs83oQmIMIQeTBUeqqu8u+3uo2tMznrB5fIKqQVCbCgq+4Tm4jG+5F7dIvnjvQ2aV7UKtdw==" + }, + "@mui/material": { + "version": "5.15.6", + "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.15.6.tgz", + "integrity": "sha512-rw7bDdpi2kzfmcDN78lHp8swArJ5sBCKsn+4G3IpGfu44ycyWAWX0VdlvkjcR9Yrws2KIm7c+8niXpWHUDbWoA==", + "requires": { + "@babel/runtime": "^7.23.8", + "@mui/base": "5.0.0-beta.33", + "@mui/core-downloads-tracker": "^5.15.6", + "@mui/system": "^5.15.6", + "@mui/types": "^7.2.13", + "@mui/utils": "^5.15.6", + "@types/react-transition-group": "^4.4.10", + "clsx": "^2.1.0", + "csstype": "^3.1.2", + "prop-types": "^15.8.1", + "react-is": "^18.2.0", + "react-transition-group": "^4.4.5" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz", + "integrity": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==", + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, + "@types/react-transition-group": { + "version": "4.4.10", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.10.tgz", + "integrity": "sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==", + "requires": { + "@types/react": "*" + } + }, + "csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "requires": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "requires": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + } + }, + "regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + } + } + }, + "@mui/private-theming": { + "version": "5.15.6", + "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.15.6.tgz", + "integrity": "sha512-ZBX9E6VNUSscUOtU8uU462VvpvBS7eFl5VfxAzTRVQBHflzL+5KtnGrebgf6Nd6cdvxa1o0OomiaxSKoN2XDmg==", + "requires": { + "@babel/runtime": "^7.23.8", + "@mui/utils": "^5.15.6", + "prop-types": "^15.8.1" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz", + "integrity": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==", + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, + "regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + } + } + }, + "@mui/styled-engine": { + "version": "5.15.6", + "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.15.6.tgz", + "integrity": "sha512-KAn8P8xP/WigFKMlEYUpU9z2o7jJnv0BG28Qu1dhNQVutsLVIFdRf5Nb+0ijp2qgtcmygQ0FtfRuXv5LYetZTg==", + "requires": { + "@babel/runtime": "^7.23.8", + "@emotion/cache": "^11.11.0", + "csstype": "^3.1.2", + "prop-types": "^15.8.1" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz", + "integrity": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==", + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, + "@emotion/cache": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz", + "integrity": "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==", + "requires": { + "@emotion/memoize": "^0.8.1", + "@emotion/sheet": "^1.2.2", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "stylis": "4.2.0" + } + }, + "@emotion/memoize": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", + "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==" + }, + "@emotion/sheet": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz", + "integrity": "sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==" + }, + "@emotion/utils": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz", + "integrity": "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==" + }, + "@emotion/weak-memoize": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz", + "integrity": "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==" + }, + "csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + }, + "stylis": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", + "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" + } + } + }, + "@mui/system": { + "version": "5.15.6", + "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.15.6.tgz", + "integrity": "sha512-J01D//u8IfXvaEHMBQX5aO2l7Q+P15nt96c4NskX7yp5/+UuZP8XCQJhtBtLuj+M2LLyXHYGmCPeblsmmscP2Q==", + "requires": { + "@babel/runtime": "^7.23.8", + "@mui/private-theming": "^5.15.6", + "@mui/styled-engine": "^5.15.6", + "@mui/types": "^7.2.13", + "@mui/utils": "^5.15.6", + "clsx": "^2.1.0", + "csstype": "^3.1.2", + "prop-types": "^15.8.1" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz", + "integrity": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==", + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, + "csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + } + } + }, + "@mui/types": { + "version": "7.2.13", + "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.2.13.tgz", + "integrity": "sha512-qP9OgacN62s+l8rdDhSFRe05HWtLLJ5TGclC9I1+tQngbssu0m2dmFZs+Px53AcOs9fD7TbYd4gc9AXzVqO/+g==" + }, + "@mui/utils": { + "version": "5.15.6", + "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.15.6.tgz", + "integrity": "sha512-qfEhf+zfU9aQdbzo1qrSWlbPQhH1nCgeYgwhOVnj9Bn39shJQitEnXpSQpSNag8+uty5Od6PxmlNKPTnPySRKA==", + "requires": { + "@babel/runtime": "^7.23.8", + "@types/prop-types": "^15.7.11", + "prop-types": "^15.8.1", + "react-is": "^18.2.0" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz", + "integrity": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==", + "requires": { + "regenerator-runtime": "^0.14.0" + } + }, + "@types/prop-types": { + "version": "15.7.11", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz", + "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==" + }, + "react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + }, + "regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + } + } + }, + "@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==", + "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==" + }, + "@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==", + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } + }, + "@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==" + }, + "@react-dnd/asap": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@react-dnd/asap/-/asap-4.0.0.tgz", + "integrity": "sha512-0XhqJSc6pPoNnf8DhdsPHtUhRzZALVzYMTzRwV4VI6DJNJ/5xxfL9OQUwb8IH5/2x7lSf7nAZrnzUD+16VyOVQ==" + }, + "@react-dnd/invariant": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@react-dnd/invariant/-/invariant-2.0.0.tgz", + "integrity": "sha512-xL4RCQBCBDJ+GRwKTFhGUW8GXa4yoDfJrPbLblc3U09ciS+9ZJXJ3Qrcs/x2IODOdIE5kQxvMmE2UKyqUictUw==" + }, + "@react-dnd/shallowequal": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@react-dnd/shallowequal/-/shallowequal-2.0.0.tgz", + "integrity": "sha512-Pc/AFTdwZwEKJxFJvlxrSmGe/di+aAOBn60sremrpLo6VI/6cmiUYNNwlI5KNYttg7uypzA3ILPMPgxB2GYZEg==" + }, + "@reduxjs/toolkit": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.6.2.tgz", + "integrity": "sha512-HbfI/hOVrAcMGAYsMWxw3UJyIoAS9JTdwddsjlr5w3S50tXhWb+EMyhIw+IAvCVCLETkzdjgH91RjDSYZekVBA==", + "requires": { + "immer": "^9.0.6", + "redux": "^4.1.0", + "redux-thunk": "^2.3.0", + "reselect": "^4.0.0" + }, + "dependencies": { + "reselect": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.1.2.tgz", + "integrity": "sha512-wg60ebcPOtxcptIUfrr7Jt3h4BR86cCW3R7y4qt65lnNb4yz4QgrXcbSioVsIOYguyz42+XTHIyJ5TEruzkFgQ==" + } + } + }, + "@sinonjs/commons": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", + "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.7.0" + } + }, + "@testing-library/dom": { + "version": "8.10.1", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.10.1.tgz", + "integrity": "sha512-rab7vpf1uGig5efWwsCOn9j4/doy+W3VBoUyzX7C4y77u0wAckwc7R8nyH6e2rw0rRzKJR+gWPiAg8zhiFbxWQ==", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^4.2.0", + "aria-query": "^5.0.0", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.4.4", + "pretty-format": "^27.0.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "aria-query": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.0.0.tgz", + "integrity": "sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==" + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "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==", + "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==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "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==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@testing-library/jest-dom": { + "version": "5.16.1", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.16.1.tgz", + "integrity": "sha512-ajUJdfDIuTCadB79ukO+0l8O+QwN0LiSxDaYUTI4LndbbUsGi6rWU1SCexXzBA2NSjlVB9/vbkasQIL3tmPBjw==", + "requires": { + "@babel/runtime": "^7.9.2", + "@types/testing-library__jest-dom": "^5.9.1", + "aria-query": "^5.0.0", + "chalk": "^3.0.0", + "css": "^3.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.5.6", + "lodash": "^4.17.15", + "redent": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "aria-query": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.0.0.tgz", + "integrity": "sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==" + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "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==", + "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==" + }, + "css": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/css/-/css-3.0.0.tgz", + "integrity": "sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==", + "requires": { + "inherits": "^2.0.4", + "source-map": "^0.6.1", + "source-map-resolve": "^0.6.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "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==" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "source-map-resolve": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.6.0.tgz", + "integrity": "sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0" + } + }, + "strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "requires": { + "min-indent": "^1.0.0" + } + }, + "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==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "@testing-library/react": { + "version": "12.1.2", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-12.1.2.tgz", + "integrity": "sha512-ihQiEOklNyHIpo2Y8FREkyD1QAea054U0MVbwH1m8N9TxeFz+KoJ9LkqoKqJlzx2JDm56DVwaJ1r36JYxZM05g==", + "requires": { + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^8.0.0" + } + }, + "@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "dev": true + }, + "@types/aria-query": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-4.2.2.tgz", + "integrity": "sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==" + }, + "@types/babel__core": { + "version": "7.1.17", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.17.tgz", + "integrity": "sha512-6zzkezS9QEIL8yCBvXWxPTJPNuMeECJVxSOhxNY/jfq9LxOTHivaYTqr37n9LknWWRTIkzqH2UilS5QFvfa90A==", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.3.tgz", + "integrity": "sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==", + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.14.2", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz", + "integrity": "sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==", + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/clipboard": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@types/clipboard/-/clipboard-2.0.7.tgz", + "integrity": "sha512-VwVFUHlneOsWfv/GaaY7Kwk4XasDqkAlyFQtsHxnOw0yyBYWTrlEXtmb9RtC+VFBCdtuOeIXECmELNd5RrKp/g==", + "dev": true, + "requires": { + "clipboard": "*" + } + }, + "@types/graceful-fs": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", + "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "requires": { + "@types/node": "*" + } + }, + "@types/hoist-non-react-statics": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", + "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==", + "requires": { + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0" + }, + "dependencies": { + "hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "requires": { + "react-is": "^16.7.0" + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + } + }, + "@types/html2canvas": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@types/html2canvas/-/html2canvas-1.0.0.tgz", + "integrity": "sha512-BJpVf+FIN9UERmzhbtUgpXj6XBZpG67FMgBLLoj9HZKd9XifcCpSV+UnFcwTZfEyun4U/KmCrrVOG7829L589w==", + "dev": true, + "requires": { + "html2canvas": "*" + } + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", + "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==" + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "requires": { + "@types/istanbul-lib-report": "*" + } + }, + "@types/jest": { + "version": "27.0.3", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.0.3.tgz", + "integrity": "sha512-cmmwv9t7gBYt7hNKH5Spu7Kuu/DotGa+Ff+JGRKZ4db5eh8PnKS4LuebJ3YLUoyOyIHraTGyULn23YtEAm0VSg==", + "requires": { + "jest-diff": "^27.0.0", + "pretty-format": "^27.0.0" + } + }, + "@types/jquery": { + "version": "3.5.14", + "resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.14.tgz", + "integrity": "sha512-X1gtMRMbziVQkErhTQmSe2jFwwENA/Zr+PprCkF63vFq+Yt5PZ4AlKqgmeNlwgn7dhsXEK888eIW2520EpC+xg==", + "dev": true, + "requires": { + "@types/sizzle": "*" + } + }, + "@types/js-cookie": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/js-cookie/-/js-cookie-3.0.1.tgz", + "integrity": "sha512-7wg/8gfHltklehP+oyJnZrz9XBuX5ZPP4zB6UsI84utdlkRYLnOm2HfpLXazTwZA+fpGn0ir8tGNgVnMEleBGQ==", + "dev": true + }, + "@types/json-schema": { + "version": "7.0.9", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz", + "integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==" + }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=" + }, + "@types/lodash": { + "version": "4.14.178", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.178.tgz", + "integrity": "sha512-0d5Wd09ItQWH1qFbEyQ7oTQ3GZrMfth5JkbN3EvTKLXcHLRDSXeLnlvlOn0wvxVIwK5o2M8JzP/OWz7T3NRsbw==" + }, + "@types/minimist": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", + "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==" + }, + "@types/node": { + "version": "10.3.2", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.3.2.tgz", + "integrity": "sha512-9NfEUDp3tgRhmoxzTpTo+lq+KIVFxZahuRX0LHF/9IzKHaWuoWsIrrJ61zw5cnnlGINX8lqJzXYfQTOICS5Q+A==" + }, + "@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==" + }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + }, + "@types/prettier": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.1.tgz", + "integrity": "sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow==", + "dev": true + }, + "@types/prop-types": { + "version": "15.7.4", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz", + "integrity": "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ==" + }, + "@types/react": { + "version": "17.0.34", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.34.tgz", + "integrity": "sha512-46FEGrMjc2+8XhHXILr+3+/sTe3OfzSPU9YGKILLrUYbQ1CLQC9Daqo1KzENGXAWwrFwiY0l4ZbF20gRvgpWTg==", + "requires": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "@types/react-copy-to-clipboard": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@types/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.2.tgz", + "integrity": "sha512-O29AThfxrkUFRsZXjfSWR2yaWo0ppB1yLEnHA+Oh24oNetjBAwTDu1PmolIqdJKzsZiO4J1jn6R6TmO96uBvGg==", + "dev": true, + "requires": { + "@types/react": "*" + } + }, + "@types/react-redux": { + "version": "7.1.20", + "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.20.tgz", + "integrity": "sha512-q42es4c8iIeTgcnB+yJgRTTzftv3eYYvCZOh1Ckn2eX/3o5TdsQYKUWpLoLuGlcY/p+VAhV9IOEZJcWk/vfkXw==", + "requires": { + "@types/hoist-non-react-statics": "^3.3.0", + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0", + "redux": "^4.0.0" + }, + "dependencies": { + "hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "requires": { + "react-is": "^16.7.0" + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + } + }, + "@types/react-swipeable": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@types/react-swipeable/-/react-swipeable-5.2.0.tgz", + "integrity": "sha512-aQMubLpV45W8fTQufnm5j8yxYVEp/d3JJkqpPr9xcRPQ6Q6MSJUdNpsaR2uogILSIFzrAisC8AqdR1JlvjuZMA==", + "dev": true, + "requires": { + "react-swipeable": "*" + } + }, + "@types/react-tooltip": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/@types/react-tooltip/-/react-tooltip-4.2.4.tgz", + "integrity": "sha512-UzjzmgY/VH3Str6DcAGTLMA1mVVhGOyARNTANExrirtp+JgxhaIOVDxq4TIRmpSi4voLv+w4HA9CC5GvhhCA0A==", + "dev": true, + "requires": { + "react-tooltip": "*" + } + }, + "@types/react-transition-group": { + "version": "4.4.4", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.4.tgz", + "integrity": "sha512-7gAPz7anVK5xzbeQW9wFBDg7G++aPLAFY0QaSMOou9rJZpbuI58WAuJrgu+qR92l61grlnCUe7AFX8KGahAgug==", + "requires": { + "@types/react": "*" + } + }, + "@types/scheduler": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", + "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + }, + "@types/sizzle": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz", + "integrity": "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ==", + "dev": true + }, + "@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "@types/testing-library__jest-dom": { + "version": "5.14.2", + "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.2.tgz", + "integrity": "sha512-vehbtyHUShPxIa9SioxDwCvgxukDMH//icJG90sXQBUm5lJOHLT5kNeU9tnivhnA/TkOFMzGIXN2cTc4hY8/kg==", + "requires": { + "@types/jest": "*" + } + }, + "@types/tinycolor2": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/@types/tinycolor2/-/tinycolor2-1.4.3.tgz", + "integrity": "sha512-Kf1w9NE5HEgGxCRyIcRXR/ZYtDv0V8FVPtYHwLxl0O+maGX0erE77pQlD0gpP+/KByMZ87mOA79SjifhSB3PjQ==", + "dev": true + }, + "@types/twemoji": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/@types/twemoji/-/twemoji-13.1.2.tgz", + "integrity": "sha512-vPNsrN08aRI2Gmdo+Ds3zZXzUk6igp1Hg+JPCeHavpiUGfgth/tGiHLQxfSrKzPXeRC0zbLs8WaUZSYxRWPbNg==", + "requires": { + "twemoji": "*" + } + }, + "@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "20.2.1", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.1.tgz", + "integrity": "sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==" + }, + "@typescript-eslint/eslint-plugin": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.6.0.tgz", + "integrity": "sha512-MIbeMy5qfLqtgs1hWd088k1hOuRsN9JrHUPwVVKCD99EOUqScd7SrwoZl4Gso05EAP9w1kvLWUVGJOVpRPkDPA==", + "requires": { + "@typescript-eslint/experimental-utils": "5.6.0", + "@typescript-eslint/scope-manager": "5.6.0", + "debug": "^4.3.2", + "functional-red-black-tree": "^1.0.1", + "ignore": "^5.1.8", + "regexpp": "^3.2.0", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "dependencies": { + "debug": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "requires": { + "ms": "2.1.2" + } + }, + "ignore": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.9.tgz", + "integrity": "sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==" + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "@typescript-eslint/experimental-utils": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.6.0.tgz", + "integrity": "sha512-VDoRf3Qj7+W3sS/ZBXZh3LBzp0snDLEgvp6qj0vOAIiAPM07bd5ojQ3CTzF/QFl5AKh7Bh1ycgj6lFBJHUt/DA==", + "requires": { + "@types/json-schema": "^7.0.9", + "@typescript-eslint/scope-manager": "5.6.0", + "@typescript-eslint/types": "5.6.0", + "@typescript-eslint/typescript-estree": "5.6.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0" + } + }, + "@typescript-eslint/parser": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.6.0.tgz", + "integrity": "sha512-YVK49NgdUPQ8SpCZaOpiq1kLkYRPMv9U5gcMrywzI8brtwZjr/tG3sZpuHyODt76W/A0SufNjYt9ZOgrC4tLIQ==", + "requires": { + "@typescript-eslint/scope-manager": "5.6.0", + "@typescript-eslint/types": "5.6.0", + "@typescript-eslint/typescript-estree": "5.6.0", + "debug": "^4.3.2" + }, + "dependencies": { + "debug": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "@typescript-eslint/scope-manager": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.6.0.tgz", + "integrity": "sha512-1U1G77Hw2jsGWVsO2w6eVCbOg0HZ5WxL/cozVSTfqnL/eB9muhb8THsP0G3w+BB5xAHv9KptwdfYFAUfzcIh4A==", + "requires": { + "@typescript-eslint/types": "5.6.0", + "@typescript-eslint/visitor-keys": "5.6.0" + } + }, + "@typescript-eslint/types": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.6.0.tgz", + "integrity": "sha512-OIZffked7mXv4mXzWU5MgAEbCf9ecNJBKi+Si6/I9PpTaj+cf2x58h2oHW5/P/yTnPkKaayfjhLvx+crnl5ubA==" + }, + "@typescript-eslint/typescript-estree": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.6.0.tgz", + "integrity": "sha512-92vK5tQaE81rK7fOmuWMrSQtK1IMonESR+RJR2Tlc7w4o0MeEdjgidY/uO2Gobh7z4Q1hhS94Cr7r021fMVEeA==", + "requires": { + "@typescript-eslint/types": "5.6.0", + "@typescript-eslint/visitor-keys": "5.6.0", + "debug": "^4.3.2", + "globby": "^11.0.4", + "is-glob": "^4.0.3", + "semver": "^7.3.5", + "tsutils": "^3.21.0" + }, + "dependencies": { + "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==" + }, + "debug": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "requires": { + "ms": "2.1.2" + } + }, + "globby": { + "version": "11.0.4", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz", + "integrity": "sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "ignore": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.9.tgz", + "integrity": "sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==" + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^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==" + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + } + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.6.0.tgz", + "integrity": "sha512-1p7hDp5cpRFUyE3+lvA74egs+RWSgumrBpzBCDzfTFv0aQ7lIeay80yU0hIxgAhwQ6PcasW35kaOCyDOv6O/Ng==", + "requires": { + "@typescript-eslint/types": "5.6.0", + "eslint-visitor-keys": "^3.0.0" + } + }, + "@webassemblyjs/ast": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.7.6.tgz", + "integrity": "sha512-8nkZS48EVsMUU0v6F1LCIOw4RYWLm2plMtbhFTjNgeXmsTNLuU3xTRtnljt9BFQB+iPbLRobkNrCWftWnNC7wQ==", + "requires": { + "@webassemblyjs/helper-module-context": "1.7.6", + "@webassemblyjs/helper-wasm-bytecode": "1.7.6", + "@webassemblyjs/wast-parser": "1.7.6", + "mamacro": "^0.0.3" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.6.tgz", + "integrity": "sha512-VBOZvaOyBSkPZdIt5VBMg3vPWxouuM13dPXGWI1cBh3oFLNcFJ8s9YA7S9l4mPI7+Q950QqOmqj06oa83hNWBA==" + }, + "@webassemblyjs/helper-api-error": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.6.tgz", + "integrity": "sha512-SCzhcQWHXfrfMSKcj8zHg1/kL9kb3aa5TN4plc/EREOs5Xop0ci5bdVBApbk2yfVi8aL+Ly4Qpp3/TRAUInjrg==" + }, + "@webassemblyjs/helper-buffer": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.6.tgz", + "integrity": "sha512-1/gW5NaGsEOZ02fjnFiU8/OEEXU1uVbv2um0pQ9YVL3IHSkyk6xOwokzyqqO1qDZQUAllb+V8irtClPWntbVqw==" + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.6.tgz", + "integrity": "sha512-+suMJOkSn9+vEvDvgyWyrJo5vJsWSDXZmJAjtoUq4zS4eqHyXImpktvHOZwXp1XQjO5H+YQwsBgqTQEc0J/5zg==", + "requires": { + "@webassemblyjs/wast-printer": "1.7.6" + } + }, + "@webassemblyjs/helper-fsm": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.6.tgz", + "integrity": "sha512-HCS6KN3wgxUihGBW7WFzEC/o8Eyvk0d56uazusnxXthDPnkWiMv+kGi9xXswL2cvfYfeK5yiM17z2K5BVlwypw==" + }, + "@webassemblyjs/helper-module-context": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.6.tgz", + "integrity": "sha512-e8/6GbY7OjLM+6OsN7f2krC2qYVNaSr0B0oe4lWdmq5sL++8dYDD1TFbD1TdAdWMRTYNr/Qq7ovXWzia2EbSjw==", + "requires": { + "mamacro": "^0.0.3" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.6.tgz", + "integrity": "sha512-PzYFCb7RjjSdAOljyvLWVqd6adAOabJW+8yRT+NWhXuf1nNZWH+igFZCUK9k7Cx7CsBbzIfXjJc7u56zZgFj9Q==" + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.6.tgz", + "integrity": "sha512-3GS628ppDPSuwcYlQ7cDCGr4W2n9c4hLzvnRKeuz+lGsJSmc/ADVoYpm1ts2vlB1tGHkjtQMni+yu8mHoMlKlA==", + "requires": { + "@webassemblyjs/ast": "1.7.6", + "@webassemblyjs/helper-buffer": "1.7.6", + "@webassemblyjs/helper-wasm-bytecode": "1.7.6", + "@webassemblyjs/wasm-gen": "1.7.6" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.7.6.tgz", + "integrity": "sha512-V4cIp0ruyw+hawUHwQLn6o2mFEw4t50tk530oKsYXQhEzKR+xNGDxs/SFFuyTO7X3NzEu4usA3w5jzhl2RYyzQ==", + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.7.6.tgz", + "integrity": "sha512-ojdlG8WpM394lBow4ncTGJoIVZ4aAtNOWHhfAM7m7zprmkVcKK+2kK5YJ9Bmj6/ketTtOn7wGSHCtMt+LzqgYQ==", + "requires": { + "@xtuc/long": "4.2.1" + } + }, + "@webassemblyjs/utf8": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.7.6.tgz", + "integrity": "sha512-oId+tLxQ+AeDC34ELRYNSqJRaScB0TClUU6KQfpB8rNT6oelYlz8axsPhf6yPTg7PBJ/Z5WcXmUYiHEWgbbHJw==" + }, + "@webassemblyjs/wasm-edit": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.7.6.tgz", + "integrity": "sha512-pTNjLO3o41v/Vz9VFLl+I3YLImpCSpodFW77pNoH4agn5I6GgSxXHXtvWDTvYJFty0jSeXZWLEmbaSIRUDlekg==", + "requires": { + "@webassemblyjs/ast": "1.7.6", + "@webassemblyjs/helper-buffer": "1.7.6", + "@webassemblyjs/helper-wasm-bytecode": "1.7.6", + "@webassemblyjs/helper-wasm-section": "1.7.6", + "@webassemblyjs/wasm-gen": "1.7.6", + "@webassemblyjs/wasm-opt": "1.7.6", + "@webassemblyjs/wasm-parser": "1.7.6", + "@webassemblyjs/wast-printer": "1.7.6" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.7.6.tgz", + "integrity": "sha512-mQvFJVumtmRKEUXMohwn8nSrtjJJl6oXwF3FotC5t6e2hlKMh8sIaW03Sck2MDzw9xPogZD7tdP5kjPlbH9EcQ==", + "requires": { + "@webassemblyjs/ast": "1.7.6", + "@webassemblyjs/helper-wasm-bytecode": "1.7.6", + "@webassemblyjs/ieee754": "1.7.6", + "@webassemblyjs/leb128": "1.7.6", + "@webassemblyjs/utf8": "1.7.6" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.7.6.tgz", + "integrity": "sha512-go44K90fSIsDwRgtHhX14VtbdDPdK2sZQtZqUcMRvTojdozj5tLI0VVJAzLCfz51NOkFXezPeVTAYFqrZ6rI8Q==", + "requires": { + "@webassemblyjs/ast": "1.7.6", + "@webassemblyjs/helper-buffer": "1.7.6", + "@webassemblyjs/wasm-gen": "1.7.6", + "@webassemblyjs/wasm-parser": "1.7.6" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.7.6.tgz", + "integrity": "sha512-t1T6TfwNY85pDA/HWPA8kB9xA4sp9ajlRg5W7EKikqrynTyFo+/qDzIpvdkOkOGjlS6d4n4SX59SPuIayR22Yg==", + "requires": { + "@webassemblyjs/ast": "1.7.6", + "@webassemblyjs/helper-api-error": "1.7.6", + "@webassemblyjs/helper-wasm-bytecode": "1.7.6", + "@webassemblyjs/ieee754": "1.7.6", + "@webassemblyjs/leb128": "1.7.6", + "@webassemblyjs/utf8": "1.7.6" + } + }, + "@webassemblyjs/wast-parser": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.7.6.tgz", + "integrity": "sha512-1MaWTErN0ziOsNUlLdvwS+NS1QWuI/kgJaAGAMHX8+fMJFgOJDmN/xsG4h/A1Gtf/tz5VyXQciaqHZqp2q0vfg==", + "requires": { + "@webassemblyjs/ast": "1.7.6", + "@webassemblyjs/floating-point-hex-parser": "1.7.6", + "@webassemblyjs/helper-api-error": "1.7.6", + "@webassemblyjs/helper-code-frame": "1.7.6", + "@webassemblyjs/helper-fsm": "1.7.6", + "@xtuc/long": "4.2.1", + "mamacro": "^0.0.3" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.7.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.7.6.tgz", + "integrity": "sha512-vHdHSK1tOetvDcl1IV1OdDeGNe/NDDQ+KzuZHMtqTVP1xO/tZ/IKNpj5BaGk1OYFdsDWQqb31PIwdEyPntOWRQ==", + "requires": { + "@webassemblyjs/ast": "1.7.6", + "@webassemblyjs/wast-parser": "1.7.6", + "@xtuc/long": "4.2.1" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "@xtuc/long": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.1.tgz", + "integrity": "sha512-FZdkNBDqBRHKQ2MEbSC17xnPFOhZxeJ2YGSfr2BKf3sujG49Qe3bB+rGCwQfIaA7WHnGeGkSijX4FuBCdrzW/g==" + }, + "JSONStream": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", + "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", + "requires": { + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" + } + }, + "abab": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/abab/-/abab-1.0.3.tgz", + "integrity": "sha1-uB3l9ydOxOdW15fNg08wNkJyTl0=" + }, + "abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "accepts": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz", + "integrity": "sha1-w8p0NJOGSMPg2cHjKN1otiLChMo=", + "requires": { + "mime-types": "~2.1.11", + "negotiator": "0.6.1" + } + }, + "acorn": { + "version": "4.0.13", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", + "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=" + }, + "acorn-dynamic-import": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz", + "integrity": "sha1-x1K9IQvvZ5UBtsbLf8hPj0cVjMQ=", + "requires": { + "acorn": "^4.0.3" + } + }, + "acorn-globals": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-3.1.0.tgz", + "integrity": "sha1-/YJw9x+7SZawBPqIDuXUZXOnMb8=", + "requires": { + "acorn": "^4.0.4" + } + }, + "acorn-jsx": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", + "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=", + "requires": { + "acorn": "^3.0.4" + }, + "dependencies": { + "acorn": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", + "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=" + } + } + }, + "acorn-node": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", + "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", + "requires": { + "acorn": "^7.0.0", + "acorn-walk": "^7.0.0", + "xtend": "^4.0.2" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + } + } + }, + "acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" + }, + "adjust-sourcemap-loader": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-1.2.0.tgz", + "integrity": "sha512-958oaHHVEXMvsY7v7cC5gEkNIcoaAVIhZ4mBReYVZJOTP9IgKmzLjIOhTtzpLMu+qriXvLsVjJ155EeInp45IQ==", + "requires": { + "assert": "^1.3.0", + "camelcase": "^1.2.1", + "loader-utils": "^1.1.0", + "lodash.assign": "^4.0.1", + "lodash.defaults": "^3.1.2", + "object-path": "^0.9.2", + "regex-parser": "^2.2.9" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "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==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "lodash.defaults": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-3.1.2.tgz", + "integrity": "sha1-xzCLGNv4vJNy1wGnNJPGEZK9Liw=", + "requires": { + "lodash.assign": "^3.0.0", + "lodash.restparam": "^3.0.0" + }, + "dependencies": { + "lodash.assign": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-3.2.0.tgz", + "integrity": "sha1-POnwI0tLIiPilrj6CsH+6OvKZPo=", + "requires": { + "lodash._baseassign": "^3.0.0", + "lodash._createassigner": "^3.0.0", + "lodash.keys": "^3.0.0" + } + } + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + } + } + }, + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "requires": { + "debug": "4" + }, + "dependencies": { + "debug": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "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 + } + } + }, + "airbnb-prop-types": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/airbnb-prop-types/-/airbnb-prop-types-2.16.0.tgz", + "integrity": "sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==", + "requires": { + "array.prototype.find": "^2.1.1", + "function.prototype.name": "^1.1.2", + "is-regex": "^1.1.0", + "object-is": "^1.1.2", + "object.assign": "^4.1.0", + "object.entries": "^1.1.2", + "prop-types": "^15.7.2", + "prop-types-exact": "^1.2.0", + "react-is": "^16.13.1" + }, + "dependencies": { + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + }, + "dependencies": { + "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==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + } + } + }, + "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==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "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==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + }, + "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==" + }, + "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==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "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==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "object-inspect": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==" + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "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==" + }, + "object.entries": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", + "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + } + }, + "ajv": { + "version": "4.11.8", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz", + "integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=", + "requires": { + "co": "^4.6.0", + "json-stable-stringify": "^1.0.1" + }, + "dependencies": { + "json-stable-stringify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", + "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", + "requires": { + "jsonify": "~0.0.0" + } + } + } + }, + "ajv-keywords": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz", + "integrity": "sha1-MU3QpLM2j609/NxU7eYXG4htrzw=" + }, + "align-text": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", + "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", + "requires": { + "kind-of": "^3.0.2", + "longest": "^1.0.1", + "repeat-string": "^1.5.2" + } + }, + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" + }, + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" + }, + "amplitude": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/amplitude/-/amplitude-3.5.0.tgz", + "integrity": "sha1-Y+2tvZoK70lGf2bBE0D+mzcc18M=", + "requires": { + "superagent": "^3.3.1" + } + }, + "ansi-escapes": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz", + "integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4=" + }, + "ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", + "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=" + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "ansi-styles": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.1.0.tgz", + "integrity": "sha1-CcIC1ckX7CMYjKpcnLkXnNlUd1A=", + "requires": { + "color-convert": "^1.0.0" + } + }, + "any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8=" + }, + "anymatch": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz", + "integrity": "sha1-o+Uvo5FoyCX/V7AkgSbOWo/5VQc=", + "requires": { + "arrify": "^1.0.0", + "micromatch": "^2.1.5" + } + }, + "append-transform": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/append-transform/-/append-transform-0.4.0.tgz", + "integrity": "sha1-126/jKlNJ24keja61EpLdKthGZE=", + "requires": { + "default-require-extensions": "^1.0.0" + } + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "are-we-there-yet": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz", + "integrity": "sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==", + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + } + }, + "argparse": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz", + "integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "aria-query": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-0.7.0.tgz", + "integrity": "sha512-/r2lHl09V3o74+2MLKEdewoj37YZqiQZnfen1O4iNlrOjUgeKuu1U2yF3iKh6HJxqF+OXkLMfQv65Z/cvxD6vA==", + "requires": { + "ast-types-flow": "0.0.7" + } + }, + "arr-diff": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", + "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", + "requires": { + "arr-flatten": "^1.0.1" + } + }, + "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==" + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" + }, + "array-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", + "integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=" + }, + "array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=" + }, + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + }, + "array-includes": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.0.3.tgz", + "integrity": "sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0=", + "requires": { + "define-properties": "^1.1.2", + "es-abstract": "^1.7.0" + } + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "requires": { + "array-uniq": "^1.0.1" + } + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + }, + "array-unique": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", + "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=" + }, + "array.prototype.find": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-2.1.2.tgz", + "integrity": "sha512-00S1O4ewO95OmmJW7EesWfQlrCrLEL8kZ40w3+GkLX2yTt0m2ggcePPa2uHPJ9KUmJvwRq+lCV9bD8Yim23x/Q==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + }, + "dependencies": { + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "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==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + }, + "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==" + }, + "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==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "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==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "object-inspect": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "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==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + } + } + }, + "array.prototype.flat": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.5.tgz", + "integrity": "sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + }, + "dependencies": { + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "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==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + }, + "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==" + }, + "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==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "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==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "object-inspect": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.1.tgz", + "integrity": "sha512-If7BjFlpkzzBeV1cqgT3OSWT3azyoxDGajR+iGnFBfVV2EWyDyWaZZW2ERDjUaY2QM8i5jI3Sj7mhsM4DDAqWA==" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "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==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + } + } + }, + "array.prototype.flatmap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.5.tgz", + "integrity": "sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0" + }, + "dependencies": { + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "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==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + }, + "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==" + }, + "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==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "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==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "object-inspect": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.1.tgz", + "integrity": "sha512-If7BjFlpkzzBeV1cqgT3OSWT3azyoxDGajR+iGnFBfVV2EWyDyWaZZW2ERDjUaY2QM8i5jI3Sj7mhsM4DDAqWA==" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "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==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + } + } + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=" + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + }, + "asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "asn1.js": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.9.1.tgz", + "integrity": "sha1-SLokC0WpKA6UdImQull9IWYX/UA=", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "assert": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz", + "integrity": "sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=", + "requires": { + "util": "0.10.3" + } + }, + "assert-plus": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz", + "integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ=" + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" + }, + "ast-types": { + "version": "0.9.6", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz", + "integrity": "sha1-ECyenpAF0+fjgpvwxPok7oYu6bk=" + }, + "ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" + }, + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==" + }, + "async": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/async/-/async-2.5.0.tgz", + "integrity": "sha512-e+lJAJeNWuPCNyxZKOBdaJGyLGHugXVQtrAwtuAe2vhxTYxFTKE73p8JuTmdH0qdQZtDvI4dhJwjZc5zsfIsYw==", + "requires": { + "lodash": "^4.14.0" + } + }, + "async-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz", + "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=" + }, + "async-foreach": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", + "integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=" + }, + "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==" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "atob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.1.tgz", + "integrity": "sha1-ri1acpR38onWDdf5amMUoi3Wwio=" + }, + "autobind-decorator": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/autobind-decorator/-/autobind-decorator-1.4.3.tgz", + "integrity": "sha1-TJb/p3sQYi7eJPEQ9du/VmkUF9E=" + }, + "autoprefixer": { + "version": "7.2.6", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-7.2.6.tgz", + "integrity": "sha512-Iq8TRIB+/9eQ8rbGhcP7ct5cYb/3qjNYAR2SnzLCEcwF6rvVOax8+9+fccgXk4bEhQGjOZd5TLhsksmAdsbGqQ==", + "requires": { + "browserslist": "^2.11.3", + "caniuse-lite": "^1.0.30000805", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^6.0.17", + "postcss-value-parser": "^3.2.3" + } + }, + "aws-sign2": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz", + "integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8=" + }, + "aws4": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz", + "integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=" + }, + "axobject-query": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-0.1.0.tgz", + "integrity": "sha1-YvWdvFnJ+SQnWco0mWDnov48NsA=", + "requires": { + "ast-types-flow": "0.0.7" + } + }, + "babel": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel/-/babel-6.23.0.tgz", + "integrity": "sha1-0NHn2APpdHZb7qMjLU4VPA77kPQ=" + }, + "babel-code-frame": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.22.0.tgz", + "integrity": "sha1-AnYgvuVnqIwyVhV05/0IAdMxGOQ=", + "requires": { + "chalk": "^1.1.0", + "esutils": "^2.0.2", + "js-tokens": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "babel-core": { + "version": "6.26.3", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz", + "integrity": "sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==", + "requires": { + "babel-code-frame": "^6.26.0", + "babel-generator": "^6.26.0", + "babel-helpers": "^6.24.1", + "babel-messages": "^6.23.0", + "babel-register": "^6.26.0", + "babel-runtime": "^6.26.0", + "babel-template": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "convert-source-map": "^1.5.1", + "debug": "^2.6.9", + "json5": "^0.5.1", + "lodash": "^4.17.4", + "minimatch": "^3.0.4", + "path-is-absolute": "^1.0.1", + "private": "^0.1.8", + "slash": "^1.0.0", + "source-map": "^0.5.7" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "babel-code-frame": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", + "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", + "requires": { + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" + } + }, + "babel-generator": { + "version": "6.26.1", + "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz", + "integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==", + "requires": { + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "detect-indent": "^4.0.0", + "jsesc": "^1.3.0", + "lodash": "^4.17.4", + "source-map": "^0.5.7", + "trim-right": "^1.0.1" + } + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + } + }, + "babel-template": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz", + "integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=", + "requires": { + "babel-runtime": "^6.26.0", + "babel-traverse": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "lodash": "^4.17.4" + } + }, + "babel-traverse": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz", + "integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=", + "requires": { + "babel-code-frame": "^6.26.0", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.26.0", + "babel-types": "^6.26.0", + "babylon": "^6.18.0", + "debug": "^2.6.8", + "globals": "^9.18.0", + "invariant": "^2.2.2", + "lodash": "^4.17.4" + } + }, + "babel-types": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz", + "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=", + "requires": { + "babel-runtime": "^6.26.0", + "esutils": "^2.0.2", + "lodash": "^4.17.4", + "to-fast-properties": "^1.0.3" + } + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", + "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + } + }, + "convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "private": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", + "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==" + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "babel-generator": { + "version": "6.25.0", + "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.25.0.tgz", + "integrity": "sha1-M6GvcNXyiQrrRlpKd5PB32qeqfw=", + "requires": { + "babel-messages": "^6.23.0", + "babel-runtime": "^6.22.0", + "babel-types": "^6.25.0", + "detect-indent": "^4.0.0", + "jsesc": "^1.3.0", + "lodash": "^4.2.0", + "source-map": "^0.5.0", + "trim-right": "^1.0.1" + } + }, + "babel-helper-bindify-decorators": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz", + "integrity": "sha1-FMGeXxQte0fxmlJDHlKxzLxAozA=", + "requires": { + "babel-runtime": "^6.22.0", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-helper-builder-binary-assignment-operator-visitor": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz", + "integrity": "sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=", + "requires": { + "babel-helper-explode-assignable-expression": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-helper-builder-react-jsx": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.24.1.tgz", + "integrity": "sha1-CteRfjPI11HmRtrKTnfMGTd9LLw=", + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1", + "esutils": "^2.0.0" + } + }, + "babel-helper-call-delegate": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz", + "integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=", + "requires": { + "babel-helper-hoist-variables": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-helper-define-map": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.24.1.tgz", + "integrity": "sha1-epdH8ljYlH0y1RX2qhx70CIEoIA=", + "requires": { + "babel-helper-function-name": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1", + "lodash": "^4.2.0" + } + }, + "babel-helper-explode-assignable-expression": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz", + "integrity": "sha1-8luCz33BBDPFX3BZLVdGQArCLKo=", + "requires": { + "babel-runtime": "^6.22.0", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-helper-explode-class": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz", + "integrity": "sha1-fcKjkQ3uAHBW4eMdZAztPVTqqes=", + "requires": { + "babel-helper-bindify-decorators": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-helper-function-name": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz", + "integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=", + "requires": { + "babel-helper-get-function-arity": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-helper-get-function-arity": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz", + "integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=", + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-helper-hoist-variables": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz", + "integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=", + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-helper-optimise-call-expression": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz", + "integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=", + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-helper-regex": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.24.1.tgz", + "integrity": "sha1-024i+rEAjXnYhkjjIRaGgShFbOg=", + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1", + "lodash": "^4.2.0" + } + }, + "babel-helper-remap-async-to-generator": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz", + "integrity": "sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=", + "requires": { + "babel-helper-function-name": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-helper-replace-supers": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz", + "integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=", + "requires": { + "babel-helper-optimise-call-expression": "^6.24.1", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-helpers": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz", + "integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=", + "requires": { + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "babel-jest": { + "version": "27.2.5", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.2.5.tgz", + "integrity": "sha512-GC9pWCcitBhSuF7H3zl0mftoKizlswaF0E3qi+rPL417wKkCB0d+Sjjb0OfXvxj7gWiBf497ldgRMii68Xz+2g==", + "requires": { + "@jest/transform": "^27.2.5", + "@jest/types": "^27.2.5", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^27.2.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "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==", + "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==" + }, + "glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "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" + } + }, + "graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==" + }, + "istanbul-lib-instrument": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz", + "integrity": "sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==", + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + }, + "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==", + "requires": { + "has-flag": "^4.0.0" + } + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + } + } + }, + "babel-loader": { + "version": "7.1.5", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-7.1.5.tgz", + "integrity": "sha512-iCHfbieL5d1LfOQeeVJEUyD9rTwBcP/fcEbRCfempxTDuqrKpu0AZjLAQHEQa3Yqyj9ORKe2iHfoj4rHLf7xpw==", + "requires": { + "find-cache-dir": "^1.0.0", + "loader-utils": "^1.0.2", + "mkdirp": "^0.5.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "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==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + } + } + }, + "babel-messages": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", + "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=", + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-check-es2015-constants": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz", + "integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=", + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-istanbul": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.4.tgz", + "integrity": "sha1-GN3oS/POMp/d8/QQP66SFFbY5Yc=", + "requires": { + "find-up": "^2.1.0", + "istanbul-lib-instrument": "^1.7.2", + "test-exclude": "^4.1.1" + } + }, + "babel-plugin-jest-hoist": { + "version": "27.4.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.4.0.tgz", + "integrity": "sha512-Jcu7qS4OX5kTWBc45Hz7BMmgXuJqRnhatqpUhnzGC3OBYpOmf2tv6jFNwZpwM7wU7MUuv2r9IPS/ZlYOuburVw==", + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "requires": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", + "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "is-core-module": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz", + "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", + "requires": { + "has": "^1.0.3" + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + }, + "resolve": { + "version": "1.22.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "requires": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "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==" + } + } + }, + "babel-plugin-react-transform": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/babel-plugin-react-transform/-/babel-plugin-react-transform-2.0.2.tgz", + "integrity": "sha1-UVu/qZaJOYEULZCx+bFjXeKZUQk=", + "requires": { + "lodash": "^4.6.1" + } + }, + "babel-plugin-syntax-async-functions": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz", + "integrity": "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=" + }, + "babel-plugin-syntax-async-generators": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz", + "integrity": "sha1-a8lj67FuzLrmuStZbrfzXDQqi5o=" + }, + "babel-plugin-syntax-class-properties": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz", + "integrity": "sha1-1+sjt5oxf4VDlixQW4J8fWysJ94=" + }, "babel-plugin-syntax-decorators": { "version": "6.13.0", "resolved": "https://registry.npmjs.org/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz", "integrity": "sha1-MSVjtNvePMgGzuPkFszurd0RrAs=" }, - "babel-plugin-syntax-dynamic-import": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz", - "integrity": "sha1-jWomIpyDdFqZgqRBBRVyyqF5sdo=" + "babel-plugin-syntax-dynamic-import": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz", + "integrity": "sha1-jWomIpyDdFqZgqRBBRVyyqF5sdo=" + }, + "babel-plugin-syntax-exponentiation-operator": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz", + "integrity": "sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=" + }, + "babel-plugin-syntax-flow": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz", + "integrity": "sha1-TDqyCiryaqIM0lmVw5jE63AxDI0=" + }, + "babel-plugin-syntax-jsx": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", + "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" + }, + "babel-plugin-syntax-object-rest-spread": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", + "integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=" + }, + "babel-plugin-syntax-trailing-function-commas": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz", + "integrity": "sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=" + }, + "babel-plugin-transform-async-generator-functions": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz", + "integrity": "sha1-8FiQAUX9PpkHpt3yjaWfIVJYpds=", + "requires": { + "babel-helper-remap-async-to-generator": "^6.24.1", + "babel-plugin-syntax-async-generators": "^6.5.0", + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-async-to-generator": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz", + "integrity": "sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=", + "requires": { + "babel-helper-remap-async-to-generator": "^6.24.1", + "babel-plugin-syntax-async-functions": "^6.8.0", + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-class-properties": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz", + "integrity": "sha1-anl2PqYdM9NvN7YRqp3vgagbRqw=", + "requires": { + "babel-helper-function-name": "^6.24.1", + "babel-plugin-syntax-class-properties": "^6.8.0", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "babel-plugin-transform-decorators": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz", + "integrity": "sha1-eIAT2PjGtSIr33s0Q5Df13Vp4k0=", + "requires": { + "babel-helper-explode-class": "^6.24.1", + "babel-plugin-syntax-decorators": "^6.13.0", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-arrow-functions": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz", + "integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=", + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-block-scoped-functions": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz", + "integrity": "sha1-u8UbSflk1wy42OC5ToICRs46YUE=", + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-block-scoping": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz", + "integrity": "sha1-dsKV3DpHQbFmWt/TFnIV3P8ypXY=", + "requires": { + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1", + "lodash": "^4.2.0" + } + }, + "babel-plugin-transform-es2015-classes": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz", + "integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=", + "requires": { + "babel-helper-define-map": "^6.24.1", + "babel-helper-function-name": "^6.24.1", + "babel-helper-optimise-call-expression": "^6.24.1", + "babel-helper-replace-supers": "^6.24.1", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-computed-properties": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz", + "integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=", + "requires": { + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-destructuring": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz", + "integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=", + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-duplicate-keys": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz", + "integrity": "sha1-c+s9MQypaePvnskcU3QabxV2Qj4=", + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-for-of": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz", + "integrity": "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=", + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-function-name": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz", + "integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=", + "requires": { + "babel-helper-function-name": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-literals": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz", + "integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=", + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-modules-amd": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz", + "integrity": "sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=", + "requires": { + "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-modules-commonjs": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz", + "integrity": "sha1-0+MQtA72ZKNmIiAAl8bUQCmPK/4=", + "requires": { + "babel-plugin-transform-strict-mode": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-modules-systemjs": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz", + "integrity": "sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=", + "requires": { + "babel-helper-hoist-variables": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-modules-umd": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz", + "integrity": "sha1-rJl+YoXNGO1hdq22B9YCNErThGg=", + "requires": { + "babel-plugin-transform-es2015-modules-amd": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-object-super": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz", + "integrity": "sha1-JM72muIcuDp/hgPa0CH1cusnj40=", + "requires": { + "babel-helper-replace-supers": "^6.24.1", + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-parameters": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz", + "integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=", + "requires": { + "babel-helper-call-delegate": "^6.24.1", + "babel-helper-get-function-arity": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-template": "^6.24.1", + "babel-traverse": "^6.24.1", + "babel-types": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-shorthand-properties": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz", + "integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=", + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-spread": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz", + "integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=", + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-sticky-regex": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz", + "integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=", + "requires": { + "babel-helper-regex": "^6.24.1", + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-plugin-transform-es2015-template-literals": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz", + "integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=", + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-typeof-symbol": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz", + "integrity": "sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=", + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-es2015-unicode-regex": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz", + "integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=", + "requires": { + "babel-helper-regex": "^6.24.1", + "babel-runtime": "^6.22.0", + "regexpu-core": "^2.0.0" + } + }, + "babel-plugin-transform-exponentiation-operator": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz", + "integrity": "sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=", + "requires": { + "babel-helper-builder-binary-assignment-operator-visitor": "^6.24.1", + "babel-plugin-syntax-exponentiation-operator": "^6.8.0", + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-flow-strip-types": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz", + "integrity": "sha1-hMtnKTXUNxT9wyvOhFaNh0Qc988=", + "requires": { + "babel-plugin-syntax-flow": "^6.18.0", + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-object-rest-spread": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz", + "integrity": "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=", + "requires": { + "babel-plugin-syntax-object-rest-spread": "^6.8.0", + "babel-runtime": "^6.26.0" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + } + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + } + } + }, + "babel-plugin-transform-react-display-name": { + "version": "6.25.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz", + "integrity": "sha1-Z+K/Hx6ck6sI25Z5LgU5K/LMKNE=", + "requires": { + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-react-jsx": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz", + "integrity": "sha1-hAoCjn30YN/DotKfDA2R9jduZqM=", + "requires": { + "babel-helper-builder-react-jsx": "^6.24.1", + "babel-plugin-syntax-jsx": "^6.8.0", + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-react-jsx-self": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz", + "integrity": "sha1-322AqdomEqEh5t3XVYvL7PBuY24=", + "requires": { + "babel-plugin-syntax-jsx": "^6.8.0", + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-react-jsx-source": { + "version": "6.22.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz", + "integrity": "sha1-ZqwSFT9c0tF7PBkmj0vwGX9E7NY=", + "requires": { + "babel-plugin-syntax-jsx": "^6.8.0", + "babel-runtime": "^6.22.0" + } + }, + "babel-plugin-transform-regenerator": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz", + "integrity": "sha1-uNowWtQ8PJm0hI5P5AN7dw0jxBg=", + "requires": { + "regenerator-transform": "0.9.11" + } + }, + "babel-plugin-transform-strict-mode": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz", + "integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=", + "requires": { + "babel-runtime": "^6.22.0", + "babel-types": "^6.24.1" + } + }, + "babel-polyfill": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz", + "integrity": "sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=", + "requires": { + "babel-runtime": "^6.26.0", + "core-js": "^2.5.0", + "regenerator-runtime": "^0.10.5" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + } + } + }, + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" + } + } + }, + "babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + } + }, + "babel-preset-es2015": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz", + "integrity": "sha1-1EBQ1rwsn+6nAqrzjXJ6AhBTiTk=", + "requires": { + "babel-plugin-check-es2015-constants": "^6.22.0", + "babel-plugin-transform-es2015-arrow-functions": "^6.22.0", + "babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0", + "babel-plugin-transform-es2015-block-scoping": "^6.24.1", + "babel-plugin-transform-es2015-classes": "^6.24.1", + "babel-plugin-transform-es2015-computed-properties": "^6.24.1", + "babel-plugin-transform-es2015-destructuring": "^6.22.0", + "babel-plugin-transform-es2015-duplicate-keys": "^6.24.1", + "babel-plugin-transform-es2015-for-of": "^6.22.0", + "babel-plugin-transform-es2015-function-name": "^6.24.1", + "babel-plugin-transform-es2015-literals": "^6.22.0", + "babel-plugin-transform-es2015-modules-amd": "^6.24.1", + "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1", + "babel-plugin-transform-es2015-modules-systemjs": "^6.24.1", + "babel-plugin-transform-es2015-modules-umd": "^6.24.1", + "babel-plugin-transform-es2015-object-super": "^6.24.1", + "babel-plugin-transform-es2015-parameters": "^6.24.1", + "babel-plugin-transform-es2015-shorthand-properties": "^6.24.1", + "babel-plugin-transform-es2015-spread": "^6.22.0", + "babel-plugin-transform-es2015-sticky-regex": "^6.24.1", + "babel-plugin-transform-es2015-template-literals": "^6.22.0", + "babel-plugin-transform-es2015-typeof-symbol": "^6.22.0", + "babel-plugin-transform-es2015-unicode-regex": "^6.24.1", + "babel-plugin-transform-regenerator": "^6.24.1" + } + }, + "babel-preset-flow": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz", + "integrity": "sha1-5xIYiHCFrpoktb5Baa/7WZgWxJ0=", + "requires": { + "babel-plugin-transform-flow-strip-types": "^6.22.0" + } + }, + "babel-preset-jest": { + "version": "27.4.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.4.0.tgz", + "integrity": "sha512-NK4jGYpnBvNxcGo7/ZpZJr51jCGT+3bwwpVIDY2oNfTxJJldRtB4VAcYdgp1loDE50ODuTu+yBjpMAswv5tlpg==", + "requires": { + "babel-plugin-jest-hoist": "^27.4.0", + "babel-preset-current-node-syntax": "^1.0.0" + } + }, + "babel-preset-react": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-preset-react/-/babel-preset-react-6.24.1.tgz", + "integrity": "sha1-umnfrqRfw+xjm2pOzqbhdwLJE4A=", + "requires": { + "babel-plugin-syntax-jsx": "^6.3.13", + "babel-plugin-transform-react-display-name": "^6.23.0", + "babel-plugin-transform-react-jsx": "^6.24.1", + "babel-plugin-transform-react-jsx-self": "^6.22.0", + "babel-plugin-transform-react-jsx-source": "^6.22.0", + "babel-preset-flow": "^6.23.0" + } + }, + "babel-preset-stage-2": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz", + "integrity": "sha1-2eKWD7PXEYfw5k7sYrwHdnIZvcE=", + "requires": { + "babel-plugin-syntax-dynamic-import": "^6.18.0", + "babel-plugin-transform-class-properties": "^6.24.1", + "babel-plugin-transform-decorators": "^6.24.1", + "babel-preset-stage-3": "^6.24.1" + } + }, + "babel-preset-stage-3": { + "version": "6.24.1", + "resolved": "https://registry.npmjs.org/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz", + "integrity": "sha1-g2raCp56f6N8sTj7kyb4eTSkg5U=", + "requires": { + "babel-plugin-syntax-trailing-function-commas": "^6.22.0", + "babel-plugin-transform-async-generator-functions": "^6.24.1", + "babel-plugin-transform-async-to-generator": "^6.24.1", + "babel-plugin-transform-exponentiation-operator": "^6.24.1", + "babel-plugin-transform-object-rest-spread": "^6.22.0" + } + }, + "babel-register": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz", + "integrity": "sha1-btAhFz4vy0htestFxgCahW9kcHE=", + "requires": { + "babel-core": "^6.26.0", + "babel-runtime": "^6.26.0", + "core-js": "^2.5.0", + "home-or-tmp": "^2.0.0", + "lodash": "^4.17.4", + "mkdirp": "^0.5.1", + "source-map-support": "^0.4.15" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + } + }, + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + } + } + }, + "babel-runtime": { + "version": "6.23.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz", + "integrity": "sha1-CpSJ8UTecO+zzkMArM2zKeL8VDs=", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.10.0" + } + }, + "babel-template": { + "version": "6.25.0", + "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.25.0.tgz", + "integrity": "sha1-ZlJBFmt8KqTGGdceGSlpVSsQwHE=", + "requires": { + "babel-runtime": "^6.22.0", + "babel-traverse": "^6.25.0", + "babel-types": "^6.25.0", + "babylon": "^6.17.2", + "lodash": "^4.2.0" + } + }, + "babel-traverse": { + "version": "6.25.0", + "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.25.0.tgz", + "integrity": "sha1-IldJfi/NGbie3BPEyROB+VEklvE=", + "requires": { + "babel-code-frame": "^6.22.0", + "babel-messages": "^6.23.0", + "babel-runtime": "^6.22.0", + "babel-types": "^6.25.0", + "babylon": "^6.17.2", + "debug": "^2.2.0", + "globals": "^9.0.0", + "invariant": "^2.2.0", + "lodash": "^4.2.0" + } + }, + "babel-types": { + "version": "6.25.0", + "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.25.0.tgz", + "integrity": "sha1-cK+ySNVmDl0Y+BHZHIMDtUE0oY4=", + "requires": { + "babel-runtime": "^6.22.0", + "esutils": "^2.0.2", + "lodash": "^4.2.0", + "to-fast-properties": "^1.0.1" + } + }, + "babelify": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/babelify/-/babelify-7.3.0.tgz", + "integrity": "sha1-qlau3nBn/XvVSWZu4W3ChQh+iOU=", + "requires": { + "babel-core": "^6.0.14", + "object-assign": "^4.0.0" + } + }, + "babylon": { + "version": "6.17.4", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.17.4.tgz", + "integrity": "sha512-kChlV+0SXkjE0vUn9OZ7pBMWRFd8uq3mZe8x1K6jhuNcAFAtEnjchFAqB+dYEXKyd+JpT6eppRR78QAr5gTsUw==" + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "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": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "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==", + "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==", + "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==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + } + } + }, + "base62": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/base62/-/base62-0.1.1.tgz", + "integrity": "sha1-e0F0wvlESXU7EcJlHAg9qEGnsIQ=" + }, + "base64-arraybuffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz", + "integrity": "sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==" + }, + "base64-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.2.1.tgz", + "integrity": "sha512-dwVUVIXsBZXwTuwnXI9RK8sBmgq09NDHzyR9SAph9eqk76gKK2JSQmZARC2zRC81JC2QTtxD0ARU5qTS25gIGw==" + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "big.js": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.1.3.tgz", + "integrity": "sha1-TK2iGTZS6zyp7I5VyQFWacmAaXg=" + }, + "binary-extensions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.8.0.tgz", + "integrity": "sha1-SOyNFt9Dd+rl+liEaCSAr02Vx3Q=" + }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "bluebird": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz", + "integrity": "sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA==" + }, + "bn.js": { + "version": "4.11.7", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.7.tgz", + "integrity": "sha512-LxFiV5mefv0ley0SzqkOPR1bC4EbpPx8LkOz5vMe/Yi15t5hzwgO/G+tc7wOtL4PZTYjwHu8JnEiSLumuSjSfA==" + }, + "body-parser": { + "version": "1.18.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz", + "integrity": "sha1-WykhmP/dVTs6DyDe0FkrlWlVyLQ=", + "requires": { + "bytes": "3.0.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "~1.6.3", + "iconv-lite": "0.4.23", + "on-finished": "~2.3.0", + "qs": "6.5.2", + "raw-body": "2.3.3", + "type-is": "~1.6.16" + }, + "dependencies": { + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "iconv-lite": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", + "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "mime-db": { + "version": "1.33.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", + "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==" + }, + "mime-types": { + "version": "2.1.18", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz", + "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", + "requires": { + "mime-db": "~1.33.0" + } + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + }, + "type-is": { + "version": "1.6.16", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz", + "integrity": "sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.18" + } + } + } + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "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": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + }, + "boom": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", + "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", + "requires": { + "hoek": "2.x.x" + } + }, + "boron-15": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/boron-15/-/boron-15-0.3.3.tgz", + "integrity": "sha512-/ibCSj70SLjE9ZuNlGCbVQbSSxodRq2PKLp7j9UjZ0bccBeeon7wSz257LNPOap66H+ruM1ZvfD2f8SHbFvWpA==", + "requires": { + "domkit": "^0.0.1" + } + }, + "bowser": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/bowser/-/bowser-1.9.4.tgz", + "integrity": "sha512-9IdMmj2KjigRq6oWhmwv1W36pDuA4STQZ8q6YO9um+x07xgYNCD3Oou+WP/3L1HNz7iqythGet3/p4wvc8AAwQ==" + }, + "brace-expansion": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", + "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", + "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "requires": { + "expand-range": "^1.8.1", + "preserve": "^0.2.0", + "repeat-element": "^1.1.2" + } + }, + "brcast": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brcast/-/brcast-2.0.2.tgz", + "integrity": "sha512-Tfn5JSE7hrUlFcOoaLzVvkbgIemIorMIyoMr3TgvszWW7jFt2C9PdeMLtysYD9RU0MmU17b69+XJG1eRY2OBRg==" + }, + "broadway": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/broadway/-/broadway-0.3.6.tgz", + "integrity": "sha1-fb7waLlUt5B5Jf1USWO1eKkCuno=", + "requires": { + "cliff": "0.1.9", + "eventemitter2": "0.4.14", + "nconf": "0.6.9", + "utile": "0.2.1", + "winston": "0.8.0" + }, + "dependencies": { + "async": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", + "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=" + }, + "cliff": { + "version": "0.1.9", + "resolved": "https://registry.npmjs.org/cliff/-/cliff-0.1.9.tgz", + "integrity": "sha1-ohHgnGo947oa8n0EnTASUNGIErw=", + "requires": { + "colors": "0.x.x", + "eyes": "0.1.x", + "winston": "0.8.x" + } + }, + "colors": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz", + "integrity": "sha1-JCP+ZnisDF2uiFLl0OW+CMmXq8w=" + }, + "winston": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/winston/-/winston-0.8.0.tgz", + "integrity": "sha1-YdCDD6aZcGISIGsKK1ymmpMENmg=", + "requires": { + "async": "0.2.x", + "colors": "0.6.x", + "cycle": "1.0.x", + "eyes": "0.1.x", + "pkginfo": "0.3.x", + "stack-trace": "0.0.x" + } + } + } + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" + }, + "browser-filesaver": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/browser-filesaver/-/browser-filesaver-1.1.1.tgz", + "integrity": "sha1-HDUbL1dvWwDx0p1EIcTAQo7uX6E=" + }, + "browser-pack": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/browser-pack/-/browser-pack-6.1.0.tgz", + "integrity": "sha512-erYug8XoqzU3IfcU8fUgyHqyOXqIE4tUTTQ+7mqUjQlvnXkOO6OlT9c/ZoJVHYoAaqGxr09CN53G7XIsO4KtWA==", + "requires": { + "JSONStream": "^1.0.3", + "combine-source-map": "~0.8.0", + "defined": "^1.0.0", + "safe-buffer": "^5.1.1", + "through2": "^2.0.0", + "umd": "^3.0.0" + } + }, + "browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "dev": true + }, + "browser-resolve": { + "version": "1.11.2", + "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.2.tgz", + "integrity": "sha1-j/CbCixCFxihBRwmCzLkj0QpOM4=", + "requires": { + "resolve": "1.1.7" + }, + "dependencies": { + "resolve": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=" + } + } + }, + "browserify": { + "version": "14.5.0", + "resolved": "https://registry.npmjs.org/browserify/-/browserify-14.5.0.tgz", + "integrity": "sha512-gKfOsNQv/toWz+60nSPfYzuwSEdzvV2WdxrVPUbPD/qui44rAkB3t3muNtmmGYHqrG56FGwX9SUEQmzNLAeS7g==", + "requires": { + "JSONStream": "^1.0.3", + "assert": "^1.4.0", + "browser-pack": "^6.0.1", + "browser-resolve": "^1.11.0", + "browserify-zlib": "~0.2.0", + "buffer": "^5.0.2", + "cached-path-relative": "^1.0.0", + "concat-stream": "~1.5.1", + "console-browserify": "^1.1.0", + "constants-browserify": "~1.0.0", + "crypto-browserify": "^3.0.0", + "defined": "^1.0.0", + "deps-sort": "^2.0.0", + "domain-browser": "~1.1.0", + "duplexer2": "~0.1.2", + "events": "~1.1.0", + "glob": "^7.1.0", + "has": "^1.0.0", + "htmlescape": "^1.1.0", + "https-browserify": "^1.0.0", + "inherits": "~2.0.1", + "insert-module-globals": "^7.0.0", + "labeled-stream-splicer": "^2.0.0", + "module-deps": "^4.0.8", + "os-browserify": "~0.3.0", + "parents": "^1.0.1", + "path-browserify": "~0.0.0", + "process": "~0.11.0", + "punycode": "^1.3.2", + "querystring-es3": "~0.2.0", + "read-only-stream": "^2.0.0", + "readable-stream": "^2.0.2", + "resolve": "^1.1.4", + "shasum": "^1.0.0", + "shell-quote": "^1.6.1", + "stream-browserify": "^2.0.0", + "stream-http": "^2.0.0", + "string_decoder": "~1.0.0", + "subarg": "^1.0.0", + "syntax-error": "^1.1.1", + "through2": "^2.0.0", + "timers-browserify": "^1.0.1", + "tty-browserify": "~0.0.0", + "url": "~0.11.0", + "util": "~0.10.1", + "vm-browserify": "~0.0.1", + "xtend": "^4.0.0" + }, + "dependencies": { + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "requires": { + "pako": "~1.0.5" + } + }, + "pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + } + } + }, + "browserify-aes": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.0.6.tgz", + "integrity": "sha1-Xncl297x/Vkw1OurSFZ85FHEigo=", + "requires": { + "buffer-xor": "^1.0.2", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.0", + "inherits": "^2.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.0.tgz", + "integrity": "sha1-mYgkSHS/XtTijalWZtzWasj8Njo=", + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.0.tgz", + "integrity": "sha1-2qJ3cXRwki7S/hhZQRihdUOXId0=", + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1" + } + }, + "browserify-rsa": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", + "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", + "requires": { + "bn.js": "^4.1.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.2.tgz", + "integrity": "sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg==", + "requires": { + "bn.js": "^5.2.1", + "browserify-rsa": "^4.1.0", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.4", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.6", + "readable-stream": "^3.6.2", + "safe-buffer": "^5.2.1" + }, + "dependencies": { + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + } + } + }, + "bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "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==" + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "requires": { + "safe-buffer": "~5.2.0" + } + } + } + }, + "browserify-zlib": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", + "integrity": "sha1-uzX4pRn2AOD6a4SFJByXnQFB+y0=", + "requires": { + "pako": "~0.2.0" + } + }, + "browserslist": { + "version": "2.11.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-2.11.3.tgz", + "integrity": "sha512-yWu5cXT7Av6mVwzWc8lMsJMHWn4xyjSuGYi4IozbVTLUOEYPSagUB8kiMDUHA1fS3zjr8nkxkn9jdvug4BBRmA==", + "requires": { + "caniuse-lite": "^1.0.30000792", + "electron-to-chromium": "^1.3.30" + } + }, + "bs-logger": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz", + "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==", + "dev": true, + "requires": { + "fast-json-stable-stringify": "2.x" + } + }, + "bser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.0.0.tgz", + "integrity": "sha1-mseNPtXZFYBP2HrLFYvHlxR6Fxk=", + "requires": { + "node-int64": "^0.4.0" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + }, + "dependencies": { + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + } + } + }, + "buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=" + }, + "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==" + }, + "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==" + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + }, + "builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=" + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" + }, + "bytes": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-2.5.0.tgz", + "integrity": "sha1-TJQj6i0lLCcMQbK97+/5u2tiwGo=" + }, + "cacache": { + "version": "10.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz", + "integrity": "sha512-Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA==", + "requires": { + "bluebird": "^3.5.1", + "chownr": "^1.0.1", + "glob": "^7.1.2", + "graceful-fs": "^4.1.11", + "lru-cache": "^4.1.1", + "mississippi": "^2.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.2", + "ssri": "^5.2.4", + "unique-filename": "^1.1.0", + "y18n": "^4.0.0" + }, + "dependencies": { + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + }, + "dependencies": { + "glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "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" + } + } + } + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + } + } + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "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" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + } + } + }, + "cached-path-relative": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/cached-path-relative/-/cached-path-relative-1.1.0.tgz", + "integrity": "sha512-WF0LihfemtesFcJgO7xfOoOcnWzY/QHR4qeDqV44jPU3HTI54+LnfXK3SA27AVVGCdZFgjjFFaqUA9Jx7dMJZA==" + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + } + } + }, + "caller": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/caller/-/caller-0.0.1.tgz", + "integrity": "sha1-83odbqEOgp2UchrimpC7T7Uqt2c=", + "requires": { + "tape": "~2.3.2" + } + }, + "caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "requires": { + "callsites": "^2.0.0" + }, + "dependencies": { + "callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" + } + } + }, + "caller-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz", + "integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=", + "requires": { + "callsites": "^0.2.0" + } + }, + "callsites": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz", + "integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=" + }, + "camel-case": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", + "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=", + "requires": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + } + }, + "camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=" + }, + "camelcase-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "requires": { + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" + } + }, + "caniuse-api": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-1.6.1.tgz", + "integrity": "sha1-tTTnxzTE+B7F++isoq0kNUuWLGw=", + "requires": { + "browserslist": "^1.3.6", + "caniuse-db": "^1.0.30000529", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + }, + "dependencies": { + "browserslist": { + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", + "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", + "requires": { + "caniuse-db": "^1.0.30000639", + "electron-to-chromium": "^1.2.7" + } + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + } + } + }, + "caniuse-db": { + "version": "1.0.30001286", + "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30001286.tgz", + "integrity": "sha512-r5F4eY7LpqtmNdMe1tZmut2fKKE0SFjuUoX3PlYLE4UHK1rLw1m64792vg6iuOucZI5HNhocB1F7YEo4aJe0lg==" + }, + "caniuse-lite": { + "version": "1.0.30001286", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001286.tgz", + "integrity": "sha512-zaEMRH6xg8ESMi2eQ3R4eZ5qw/hJiVsO/HlLwniIwErij0JDr9P+8V4dtx1l+kLq6j3yy8l8W4fst1lBnat5wQ==" + }, + "capture-exit": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-1.2.0.tgz", + "integrity": "sha1-HF/MSJ/QqwDU8ax64QcuMXP7q28=", + "requires": { + "rsvp": "^3.3.3" + } + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "center-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", + "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", + "requires": { + "align-text": "^0.1.3", + "lazy-cache": "^1.0.3" + }, + "dependencies": { + "lazy-cache": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", + "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=" + } + } + }, + "chain-function": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/chain-function/-/chain-function-1.0.1.tgz", + "integrity": "sha512-SxltgMwL9uCko5/ZCLiyG2B7R9fY4pDZUw7hJ4MhirdjBLosoDqkWABi3XMucddHdLiFJMb7PD2MZifZriuMTg==" + }, + "chalk": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.0.1.tgz", + "integrity": "sha512-Mp+FXEI+FrwY/XYV45b2YD3E8i3HwnEAoFcM0qlZzq/RZ9RwWitt2Y/c7cqRAz70U7hfekqx6qNYthuKFO6K0g==", + "requires": { + "ansi-styles": "^3.1.0", + "escape-string-regexp": "^1.0.5", + "supports-color": "^4.0.0" + } + }, + "char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true + }, + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" + }, + "cheerio": { + "version": "0.22.0", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz", + "integrity": "sha1-qbqoYKP5tZWmuBsahocxIe06Jp4=", + "requires": { + "css-select": "~1.2.0", + "dom-serializer": "~0.1.0", + "entities": "~1.1.1", + "htmlparser2": "^3.9.1", + "lodash.assignin": "^4.0.9", + "lodash.bind": "^4.1.4", + "lodash.defaults": "^4.0.1", + "lodash.filter": "^4.4.0", + "lodash.flatten": "^4.2.0", + "lodash.foreach": "^4.3.0", + "lodash.map": "^4.4.0", + "lodash.merge": "^4.4.0", + "lodash.pick": "^4.2.1", + "lodash.reduce": "^4.4.0", + "lodash.reject": "^4.4.0", + "lodash.some": "^4.4.0" + }, + "dependencies": { + "entities": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz", + "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA=" + }, + "htmlparser2": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz", + "integrity": "sha1-G9+HrMoPP55T+k/M6w9LTLsAszg=", + "requires": { + "domelementtype": "^1.3.0", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^2.0.2" + } + } + } + }, + "chokidar": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", + "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", + "requires": { + "anymatch": "^1.3.0", + "async-each": "^1.0.0", + "fsevents": "^1.0.0", + "glob-parent": "^2.0.0", + "inherits": "^2.0.1", + "is-binary-path": "^1.0.0", + "is-glob": "^2.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.0.0" + }, + "dependencies": { + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "nan": { + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", + "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==", + "optional": true + } + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + }, + "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==" + }, + "chromedriver": { + "version": "2.46.0", + "resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-2.46.0.tgz", + "integrity": "sha512-dLtKIJW3y/PuFrPmcw6Mb8Nh+HwSqgVrK1rWgTARXhHfWvV822X2VRkx2meU/tg2+YQL6/nNgT6n5qWwIDHbwg==", + "requires": { + "del": "^3.0.0", + "extract-zip": "^1.6.7", + "mkdirp": "^0.5.1", + "request": "^2.88.0", + "tcp-port-used": "^1.0.1" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "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" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" + }, + "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" + } + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "del": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/del/-/del-3.0.0.tgz", + "integrity": "sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU=", + "requires": { + "globby": "^6.1.0", + "is-path-cwd": "^1.0.0", + "is-path-in-cwd": "^1.0.0", + "p-map": "^1.1.1", + "pify": "^3.0.0", + "rimraf": "^2.2.8" + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extract-zip": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", + "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", + "requires": { + "concat-stream": "^1.6.2", + "debug": "^2.6.9", + "mkdirp": "^0.5.4", + "yauzl": "^2.10.0" + } + }, + "fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", + "requires": { + "pend": "~1.2.0" + } + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + } + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "mime-db": { + "version": "1.51.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz", + "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==" + }, + "mime-types": { + "version": "2.1.34", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz", + "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", + "requires": { + "mime-db": "1.51.0" + } + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "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.3", + "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.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + } + }, + "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==" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + }, + "yauzl": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", + "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", + "requires": { + "buffer-crc32": "~0.2.3", + "fd-slicer": "~1.1.0" + } + } + } + }, + "ci-info": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.0.0.tgz", + "integrity": "sha1-3FKF8rTiUYIWg2gcOBwziPRuxTQ=" + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "circular-json": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.1.tgz", + "integrity": "sha1-vos2rvzN6LPKeqLWr8B6NyQsDS0=" + }, + "cjs-module-lexer": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", + "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", + "dev": true + }, + "clap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz", + "integrity": "sha512-4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA==", + "requires": { + "chalk": "^1.1.3" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "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==", + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + } + } + }, + "classnames": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.1.tgz", + "integrity": "sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==" + }, + "clean-css": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.1.11.tgz", + "integrity": "sha1-Ls3xRaujj1R0DybO/Q/z4D4SXWo=", + "requires": { + "source-map": "0.5.x" + } + }, + "cli-color": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/cli-color/-/cli-color-1.4.0.tgz", + "integrity": "sha512-xu6RvQqqrWEo6MPR1eixqGPywhYBHRs653F9jfXB2Hx4jdM/3WxiNE1vppRmxtMIfl16SFYTpYlrnqH/HsK/2w==", + "requires": { + "ansi-regex": "^2.1.1", + "d": "1", + "es5-ext": "^0.10.46", + "es6-iterator": "^2.0.3", + "memoizee": "^0.4.14", + "timers-ext": "^0.1.5" + }, + "dependencies": { + "es5-ext": { + "version": "0.10.53", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", + "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", + "requires": { + "es6-iterator": "~2.0.3", + "es6-symbol": "~3.1.3", + "next-tick": "~1.0.0" + } + }, + "es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", + "requires": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "requires": { + "d": "^1.0.1", + "ext": "^1.1.2" + }, + "dependencies": { + "d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "requires": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + } + } + } + } + }, + "cli-cursor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz", + "integrity": "sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=", + "requires": { + "restore-cursor": "^1.0.1" + } + }, + "cli-width": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.1.0.tgz", + "integrity": "sha1-sjTKIJsp72b8UY2bmNWEewDt8Ao=" + }, + "cliff": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/cliff/-/cliff-0.1.10.tgz", + "integrity": "sha1-U74z6p9ZvshWCe4wCsQgdgPlIBM=", + "requires": { + "colors": "~1.0.3", + "eyes": "~0.1.8", + "winston": "0.8.x" + }, + "dependencies": { + "async": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", + "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=" + }, + "colors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", + "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=" + }, + "winston": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/winston/-/winston-0.8.3.tgz", + "integrity": "sha1-ZLar9M0Brcrv1QCTk7HY6L7BnbA=", + "requires": { + "async": "0.2.x", + "colors": "0.6.x", + "cycle": "1.0.x", + "eyes": "0.1.x", + "isstream": "0.1.x", + "pkginfo": "0.3.x", + "stack-trace": "0.0.x" + }, + "dependencies": { + "colors": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz", + "integrity": "sha1-JCP+ZnisDF2uiFLl0OW+CMmXq8w=" + } + } + } + } + }, + "clipboard": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.8.tgz", + "integrity": "sha512-Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ==", + "requires": { + "good-listener": "^1.2.2", + "select": "^1.1.2", + "tiny-emitter": "^2.0.0" + } + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "clone": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz", + "integrity": "sha1-Jgt6meux7f4kdTgXX3gyQ8sZ0Uk=" + }, + "clone-deep": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-2.0.2.tgz", + "integrity": "sha512-SZegPTKjCgpQH63E+eN6mVEEPdQBOUzjyJm5Pora4lrwWRFS8I0QAxV/KD6vV/i0WuijHZWQC1fMsPEdxfdVCQ==", + "dev": true, + "requires": { + "for-own": "^1.0.0", + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.0", + "shallow-clone": "^1.0.0" + }, + "dependencies": { + "for-own": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", + "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", + "dev": true, + "requires": { + "for-in": "^1.0.1" + } + }, + "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 + } + } + }, + "clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=" + }, + "clsx": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.0.tgz", + "integrity": "sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==" + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" + }, + "coa": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/coa/-/coa-1.0.4.tgz", + "integrity": "sha1-qe8VNmDWqGqL3sAomlxoTSF0Mv0=", + "requires": { + "q": "^1.1.2" + } + }, + "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=" + }, + "collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "dev": true + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/color/-/color-0.11.4.tgz", + "integrity": "sha1-bXtcdPtl6EHNSHkq0e1eB7kE12Q=", + "requires": { + "clone": "^1.0.2", + "color-convert": "^1.3.0", + "color-string": "^0.3.0" + } + }, + "color-convert": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.0.tgz", + "integrity": "sha1-Gsz5fdc5uYO/mU1W/sj5WFNkG3o=", + "requires": { + "color-name": "^1.1.1" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "color-string": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz", + "integrity": "sha1-J9RvtnAlxcL6JZk7+/V55HhBuZE=", + "requires": { + "color-name": "^1.0.0" + } + }, + "color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==" + }, + "colormin": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/colormin/-/colormin-1.1.2.tgz", + "integrity": "sha1-6i90IKcrlogaOKrlnsEkpvcpgTM=", + "requires": { + "color": "^0.11.0", + "css-color-names": "0.0.4", + "has": "^1.0.1" + } + }, + "colors": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz", + "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=" + }, + "combine-source-map": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.8.0.tgz", + "integrity": "sha1-pY0N8ELBhvz4IqjoAV9UUNLXmos=", + "requires": { + "convert-source-map": "~1.1.0", + "inline-source-map": "~0.6.0", + "lodash.memoize": "~3.0.3", + "source-map": "~0.5.3" + }, + "dependencies": { + "convert-source-map": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz", + "integrity": "sha1-SCnId+n+SbMWHzvzZziI4gRpmGA=" + } + } + }, + "combined-stream": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", + "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-1.1.1.tgz", + "integrity": "sha1-UNFlGGiuYOzP8KLZ80WVN2vGsEE=", + "requires": { + "keypress": "0.1.x" + } + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + }, + "commoner": { + "version": "0.10.8", + "resolved": "https://registry.npmjs.org/commoner/-/commoner-0.10.8.tgz", + "integrity": "sha1-NPw2cs0kOT6LtH5wyqApOBH08sU=", + "requires": { + "commander": "^2.5.0", + "detective": "^4.3.1", + "glob": "^5.0.15", + "graceful-fs": "^4.1.2", + "iconv-lite": "^0.4.5", + "mkdirp": "^0.5.0", + "private": "^0.1.6", + "q": "^1.1.2", + "recast": "^0.11.17" + }, + "dependencies": { + "commander": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz", + "integrity": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==" + }, + "glob": { + "version": "5.0.15", + "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", + "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", + "requires": { + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "2 || 3", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + } + } + }, + "component-emitter": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", + "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=" + }, + "compressible": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.10.tgz", + "integrity": "sha1-/tocf3YXkScyspv4zyYlKiC57s0=", + "requires": { + "mime-db": ">= 1.27.0 < 2" + } + }, + "compression": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.0.tgz", + "integrity": "sha1-AwyfGY8WQ6BX13anOOki2kNzAS0=", + "requires": { + "accepts": "~1.3.3", + "bytes": "2.5.0", + "compressible": "~2.0.10", + "debug": "2.6.8", + "on-headers": "~1.0.1", + "safe-buffer": "5.1.1", + "vary": "~1.1.1" + }, + "dependencies": { + "debug": { + "version": "2.6.8", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz", + "integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=", + "requires": { + "ms": "2.0.0" + } + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "concat-stream": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz", + "integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "~2.0.0", + "typedarray": "~0.0.5" + }, + "dependencies": { + "readable-stream": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", + "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "string_decoder": "~0.10.x", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + } + } + }, + "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==" + }, + "console-browserify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", + "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", + "requires": { + "date-now": "^0.1.4" + } + }, + "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=" + }, + "console-polyfill": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/console-polyfill/-/console-polyfill-0.3.0.tgz", + "integrity": "sha512-w+JSDZS7XML43Xnwo2x5O5vxB0ID7T5BdqDtyqT6uiCAX2kZAgcWxNaGqT97tZfSHzfOcvrfsDAodKcJ3UvnXQ==" + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" + }, + "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==" + }, + "content-type-parser": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/content-type-parser/-/content-type-parser-1.0.1.tgz", + "integrity": "sha1-w+VpiMU8ZRJ/tG1AMqOpACRv3JQ=" + }, + "convert-source-map": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.0.tgz", + "integrity": "sha1-ms1whRxtXf3ZPZKC5e35SgP/RrU=" + }, + "cookie": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", + "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "cookiejar": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.4.tgz", + "integrity": "sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==" + }, + "copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "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" + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" + }, + "copy-to-clipboard": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz", + "integrity": "sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==", + "requires": { + "toggle-selection": "^1.0.6" + } + }, + "core-js": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz", + "integrity": "sha1-TekR5mew6ukSTjQlS1OupvxhjT4=" + }, + "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=" + }, + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "dependencies": { + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + } + } + }, + "crc": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz", + "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==", + "requires": { + "buffer": "^5.1.0" + } + }, + "create-ecdh": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.0.tgz", + "integrity": "sha1-iIxyNZbN92EvZJgjPuvXo1MBc30=", + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.0.0" + } + }, + "create-hash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.1.3.tgz", + "integrity": "sha1-YGBCrIuSYnUPSDyt2rD1gZFy2P0=", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.6.tgz", + "integrity": "sha1-rLniIaThe9sHbpBlfEK5PjcmzwY=", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "create-react-class": { + "version": "15.7.0", + "resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.7.0.tgz", + "integrity": "sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng==", + "requires": { + "loose-envify": "^1.3.1", + "object-assign": "^4.1.1" + } + }, + "cross-env": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-5.2.0.tgz", + "integrity": "sha512-jtdNFfFW1hB7sMhr/H6rW1Z45LFqyI431m3qU6bFXcQ3Eh7LtBuG3h74o7ohHZ3crrRkkqHlo4jYHFPcjroANg==", + "requires": { + "cross-spawn": "^6.0.5", + "is-windows": "^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==", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + } + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "dependencies": { + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + }, + "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==", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + }, + "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" + } + } + } + }, + "cryptiles": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", + "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", + "requires": { + "boom": "2.x.x" + } + }, + "crypto-browserify": { + "version": "3.11.1", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.11.1.tgz", + "integrity": "sha512-Na7ZlwCOqoaW5RwUK1WpXws2kv8mNhWdTlzob0UXulk6G9BDbyiJaGTYBIX61Ozn9l1EPPJpICZb4DaOpT9NlQ==", + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "css": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/css/-/css-2.2.3.tgz", + "integrity": "sha512-0W171WccAjQGGTKLhw4m2nnl0zPHUlTO/I8td4XzJgIB8Hg3ZZx71qT4G4eX8OVsSiaAKiUMy73E3nsbPlg2DQ==", + "requires": { + "inherits": "^2.0.1", + "source-map": "^0.1.38", + "source-map-resolve": "^0.5.1", + "urix": "^0.1.0" + }, + "dependencies": { + "source-map": { + "version": "0.1.43", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", + "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=", + "requires": { + "amdefine": ">=0.0.4" + } + } + } + }, + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=" + }, + "css-in-js-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/css-in-js-utils/-/css-in-js-utils-2.0.1.tgz", + "integrity": "sha512-PJF0SpJT+WdbVVt0AOYp9C8GnuruRlL/UFW7932nLWmFLQTaWEzTBQEx7/hn4BuV+WON75iAViSUJLiU3PKbpA==", + "requires": { + "hyphenate-style-name": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + } + } + }, + "css-line-break": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-line-break/-/css-line-break-2.1.0.tgz", + "integrity": "sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==", + "requires": { + "utrie": "^1.0.2" + } + }, + "css-loader": { + "version": "0.28.11", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-0.28.11.tgz", + "integrity": "sha512-wovHgjAx8ZIMGSL8pTys7edA1ClmzxHeY6n/d97gg5odgsxEgKjULPR0viqyC+FWMCL9sfqoC/QCUBo62tLvPg==", + "requires": { + "babel-code-frame": "^6.26.0", + "css-selector-tokenizer": "^0.7.0", + "cssnano": "^3.10.0", + "icss-utils": "^2.1.0", + "loader-utils": "^1.0.2", + "lodash.camelcase": "^4.3.0", + "object-assign": "^4.1.1", + "postcss": "^5.0.6", + "postcss-modules-extract-imports": "^1.2.0", + "postcss-modules-local-by-default": "^1.2.0", + "postcss-modules-scope": "^1.1.0", + "postcss-modules-values": "^1.3.0", + "postcss-value-parser": "^3.3.0", + "source-list-map": "^2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "babel-code-frame": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", + "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", + "requires": { + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" + } + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + } + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "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==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + }, + "dependencies": { + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.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=" + } + } + }, + "css-select": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", + "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", + "requires": { + "boolbase": "~1.0.0", + "css-what": "2.1", + "domutils": "1.5.1", + "nth-check": "~1.0.1" + } + }, + "css-selector-tokenizer": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.3.tgz", + "integrity": "sha512-jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg==", + "requires": { + "cssesc": "^3.0.0", + "fastparse": "^1.1.2" + } + }, + "css-what": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz", + "integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==" + }, + "css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=" + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + }, + "cssnano": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz", + "integrity": "sha1-Tzj2zqK5sX+gFJDyPx3GjqZcHDg=", + "requires": { + "autoprefixer": "^6.3.1", + "decamelize": "^1.1.2", + "defined": "^1.0.0", + "has": "^1.0.1", + "object-assign": "^4.0.1", + "postcss": "^5.0.14", + "postcss-calc": "^5.2.0", + "postcss-colormin": "^2.1.8", + "postcss-convert-values": "^2.3.4", + "postcss-discard-comments": "^2.0.4", + "postcss-discard-duplicates": "^2.0.1", + "postcss-discard-empty": "^2.0.1", + "postcss-discard-overridden": "^0.1.1", + "postcss-discard-unused": "^2.2.1", + "postcss-filter-plugins": "^2.0.0", + "postcss-merge-idents": "^2.1.5", + "postcss-merge-longhand": "^2.0.1", + "postcss-merge-rules": "^2.0.3", + "postcss-minify-font-values": "^1.0.2", + "postcss-minify-gradients": "^1.0.1", + "postcss-minify-params": "^1.0.4", + "postcss-minify-selectors": "^2.0.4", + "postcss-normalize-charset": "^1.1.0", + "postcss-normalize-url": "^3.0.7", + "postcss-ordered-values": "^2.1.0", + "postcss-reduce-idents": "^2.2.2", + "postcss-reduce-initial": "^1.0.0", + "postcss-reduce-transforms": "^1.0.3", + "postcss-svgo": "^2.1.1", + "postcss-unique-selectors": "^2.0.2", + "postcss-value-parser": "^3.2.3", + "postcss-zindex": "^2.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "autoprefixer": { + "version": "6.7.7", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz", + "integrity": "sha1-Hb0cg1ZY41zj+ZhAmdsAWFx4IBQ=", + "requires": { + "browserslist": "^1.7.6", + "caniuse-db": "^1.0.30000634", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^5.2.16", + "postcss-value-parser": "^3.2.3" + } + }, + "browserslist": { + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", + "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", + "requires": { + "caniuse-db": "^1.0.30000639", + "electron-to-chromium": "^1.2.7" + } + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } + } + } + }, + "csso": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz", + "integrity": "sha1-3dUsWHAz9J6Utx/FVWnyUuj/X4U=", + "requires": { + "clap": "^1.0.9", + "source-map": "^0.5.3" + } + }, + "cssom": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.2.tgz", + "integrity": "sha1-uANhcMefB6kP8vFuIihAJ6JDhIs=" + }, + "cssstyle": { + "version": "0.2.37", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-0.2.37.tgz", + "integrity": "sha1-VBCXI0yyUTyDzu06zdwn/yeYfVQ=", + "requires": { + "cssom": "0.3.x" + } + }, + "csstype": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz", + "integrity": "sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==" + }, + "currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", + "requires": { + "array-find-index": "^1.0.1" + } + }, + "cycle": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz", + "integrity": "sha1-IegLK+hYD5i0aPN5QwZisEbDStI=" + }, + "cyclist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=" + }, + "d": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.0.tgz", + "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=", + "requires": { + "es5-ext": "^0.10.9" + } + }, + "damerau-levenshtein": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz", + "integrity": "sha1-AxkcQyy27qFou3fzpV/9zLiXhRQ=" + }, + "dash-ast": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dash-ast/-/dash-ast-1.0.0.tgz", + "integrity": "sha512-Vy4dx7gquTeMcQR/hDkYLGUnwVil6vk4FOOct+djUnHOUWt+zJPJAaRIXaAFkPXtJjvlY7o3rfRu0/3hpnwoUA==" + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "^1.0.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + } + } + }, + "data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "dev": true, + "requires": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "dependencies": { + "abab": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", + "dev": true + }, + "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 + }, + "tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dev": true, + "requires": { + "punycode": "^2.1.1" + } + }, + "webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "dev": true + }, + "whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dev": true, + "requires": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + } + } + } + }, + "date-now": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", + "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=" + }, + "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" + } + }, + "decache": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/decache/-/decache-3.1.0.tgz", + "integrity": "sha1-T1A2+9ZYH8yXI3rDlUokS5U2wto=", + "optional": true, + "requires": { + "find": "^0.2.4" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + }, + "decamelize-keys": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz", + "integrity": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=", + "requires": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + } + }, + "decimal.js": { + "version": "10.3.1", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz", + "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==", + "dev": true + }, + "decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==" + }, + "dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=", + "dev": true + }, + "deep-diff": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/deep-diff/-/deep-diff-0.3.8.tgz", + "integrity": "sha1-wB3mPvsO7JeYgB1Ax+Da4ltYLIQ=" + }, + "deep-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", + "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=" + }, + "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==" + }, + "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=" + }, + "deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "dev": true + }, + "default-require-extensions": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-1.0.0.tgz", + "integrity": "sha1-836hXT4T/9m0N9M+GnW1+5eHTLg=", + "requires": { + "strip-bom": "^2.0.0" + } + }, + "define-properties": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz", + "integrity": "sha1-g6c/L+pWmJj7c3GTyPhzyvbUXJQ=", + "requires": { + "foreach": "^2.0.5", + "object-keys": "^1.0.8" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "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==", + "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==", + "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==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + }, + "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==" + } + } + }, + "defined": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", + "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" + }, + "del": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", + "integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=", + "requires": { + "globby": "^5.0.0", + "is-path-cwd": "^1.0.0", + "is-path-in-cwd": "^1.0.0", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "rimraf": "^2.2.8" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "delegate": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz", + "integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==" + }, + "delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" + }, + "deps-sort": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/deps-sort/-/deps-sort-2.0.1.tgz", + "integrity": "sha512-1orqXQr5po+3KI6kQb9A4jnXT1PBwggGl2d7Sq2xsnOeI9GPcE/tGcF9UiSZtZBM7MukY4cAh7MemS6tZYipfw==", + "requires": { + "JSONStream": "^1.0.3", + "shasum-object": "^1.0.0", + "subarg": "^1.0.0", + "through2": "^2.0.0" + } + }, + "des.js": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", + "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "detect-indent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz", + "integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=", + "requires": { + "repeating": "^2.0.0" + } + }, + "detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "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==" + }, + "detective": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/detective/-/detective-4.5.0.tgz", + "integrity": "sha1-blqMaybmx6JUsca210kNmOyR7dE=", + "requires": { + "acorn": "^4.0.3", + "defined": "^1.0.0" + } + }, + "diff": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", + "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==" + }, + "diff-sequences": { + "version": "27.4.0", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.4.0.tgz", + "integrity": "sha512-YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww==" + }, + "diffie-hellman": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.2.tgz", + "integrity": "sha1-tYNXOScM/ias9jIJn97SoH8gnl4=", + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "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==" + } + } + }, + "director": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/director/-/director-1.2.7.tgz", + "integrity": "sha1-v9N0EHX9f7GlsuE2WMX0vsd3NvM=" + }, + "discontinuous-range": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz", + "integrity": "sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=" + }, + "dnd-core": { + "version": "14.0.1", + "resolved": "https://registry.npmjs.org/dnd-core/-/dnd-core-14.0.1.tgz", + "integrity": "sha512-+PVS2VPTgKFPYWo3vAFEA8WPbTf7/xo43TifH9G8S1KqnrQu0o77A3unrF5yOugy4mIz7K5wAVFHUcha7wsz6A==", + "requires": { + "@react-dnd/asap": "^4.0.0", + "@react-dnd/invariant": "^2.0.0", + "redux": "^4.1.1" + } + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + }, + "dns-packet": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", + "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": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "requires": { + "buffer-indexof": "^1.0.0" + } + }, + "dnscache": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dnscache/-/dnscache-1.0.1.tgz", + "integrity": "sha1-Qssrm/tej736OVqsdOEn/AUHTTE=", + "requires": { + "asap": "~2.0.3", + "lodash.clone": "~4.3.2" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "requires": { + "esutils": "^2.0.2" + } + }, + "dom-accessibility-api": { + "version": "0.5.9", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.9.tgz", + "integrity": "sha512-+KPF4o71fl6NrdnqIrJc6m44NA+Rhf1h7In2MRznejSQasWkjqmHOBUlk+pXJ77cVOSYyZeNHFwn/sjotB6+Sw==" + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "requires": { + "utila": "~0.4" + } + }, + "dom-helpers": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz", + "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==", + "requires": { + "@babel/runtime": "^7.1.2" + } + }, + "dom-serializer": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz", + "integrity": "sha1-BzxpdUbOB4DOI75KKOKT5AvDDII=", + "requires": { + "domelementtype": "~1.1.1", + "entities": "~1.1.1" + }, + "dependencies": { + "domelementtype": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz", + "integrity": "sha1-vSh3PiZCiBrsUVRJJCmcXNgiGFs=" + }, + "entities": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz", + "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA=" + } + } + }, + "dom-walk": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz", + "integrity": "sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg=" + }, + "domain-browser": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.1.7.tgz", + "integrity": "sha1-hnqksJP6oF8d4IwG9NeyH9+GmLw=" + }, + "domelementtype": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz", + "integrity": "sha1-sXrtguirWeUt2cGbF1bg/BhyBMI=" + }, + "domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "dev": true, + "requires": { + "webidl-conversions": "^5.0.0" + }, + "dependencies": { + "webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "dev": true + } + } + }, + "domhandler": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz", + "integrity": "sha1-LeWaCCLVAn+r/28DLCsloqir5zg=", + "requires": { + "domelementtype": "1" + } + }, + "domkit": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/domkit/-/domkit-0.0.1.tgz", + "integrity": "sha1-iDmdWGeU78EVT+xsIs/lDxm9Tbs=" + }, + "domutils": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", + "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "duplexer2": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", + "requires": { + "readable-stream": "^2.0.2" + } + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "elasticlunr": { + "version": "0.9.5", + "resolved": "https://registry.npmjs.org/elasticlunr/-/elasticlunr-0.9.5.tgz", + "integrity": "sha1-ZVQbswnd3Qz5Ty0ciGGyvmUbsNU=" + }, + "electron-to-chromium": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.15.tgz", + "integrity": "sha512-WDw2IUL3k4QpbzInV3JZK+Zd1NjWJPDZ28oUSchWb/kf6AVj7/niaAlgcJlvojFa1d7pJSyQ/KSZsEtq5W7aGQ==" + }, + "elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "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==" + } + } + }, + "emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "dev": true + }, + "emoji-regex": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.5.0.tgz", + "integrity": "sha512-Vja85njef5T0kGfRUFkyl0etU9+49L1LNKR5oE41wAGRtJR64/a+JX3I8YCIur/uXj4Kt4cNe5i8bfd58ilgKQ==" + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + }, + "encoding": { + "version": "0.1.12", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz", + "integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=", + "requires": { + "iconv-lite": "~0.4.13" + } + }, + "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==", + "requires": { + "once": "^1.4.0" + } + }, + "enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + } + } + }, + "entities": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", + "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==" + }, + "env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" + }, + "enzyme": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/enzyme/-/enzyme-3.3.0.tgz", + "integrity": "sha512-l8csyPyLmtxskTz6pX9W8eDOyH1ckEtDttXk/vlFWCjv00SkjTjtoUrogqp4yEvMyneU9dUJoOLnqFoiHb8IHA==", + "requires": { + "cheerio": "^1.0.0-rc.2", + "function.prototype.name": "^1.0.3", + "has": "^1.0.1", + "is-boolean-object": "^1.0.0", + "is-callable": "^1.1.3", + "is-number-object": "^1.0.3", + "is-string": "^1.0.4", + "is-subset": "^0.1.1", + "lodash": "^4.17.4", + "object-inspect": "^1.5.0", + "object-is": "^1.0.1", + "object.assign": "^4.1.0", + "object.entries": "^1.0.4", + "object.values": "^1.0.4", + "raf": "^3.4.0", + "rst-selector-parser": "^2.2.3" + }, + "dependencies": { + "cheerio": { + "version": "1.0.0-rc.2", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.2.tgz", + "integrity": "sha1-S59TqBsn5NXawxwP/Qz6A8xoMNs=", + "requires": { + "css-select": "~1.2.0", + "dom-serializer": "~0.1.0", + "entities": "~1.1.1", + "htmlparser2": "^3.9.1", + "lodash": "^4.15.0", + "parse5": "^3.0.1" + } + }, + "entities": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz", + "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA=" + }, + "htmlparser2": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz", + "integrity": "sha1-G9+HrMoPP55T+k/M6w9LTLsAszg=", + "requires": { + "domelementtype": "^1.3.0", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^2.0.2" + } + }, + "object-inspect": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.6.0.tgz", + "integrity": "sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ==" + }, + "parse5": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz", + "integrity": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==", + "requires": { + "@types/node": "*" + } + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "raf": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.0.tgz", + "integrity": "sha512-pDP/NMRAXoTfrhCfyfSEwJAKLaxBU9eApMeBPB1TkDouZmvPerIClV8lTAd+uF8ZiTaVl69e1FCxQrAd/VTjGw==", + "requires": { + "performance-now": "^2.1.0" + } + } + } + }, + "enzyme-adapter-react-16": { + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.6.tgz", + "integrity": "sha512-yFlVJCXh8T+mcQo8M6my9sPgeGzj85HSHi6Apgf1Cvq/7EL/J9+1JoJmJsRxZgyTvPMAqOEpRSu/Ii/ZpyOk0g==", + "requires": { + "enzyme-adapter-utils": "^1.14.0", + "enzyme-shallow-equal": "^1.0.4", + "has": "^1.0.3", + "object.assign": "^4.1.2", + "object.values": "^1.1.2", + "prop-types": "^15.7.2", + "react-is": "^16.13.1", + "react-test-renderer": "^16.0.0-0", + "semver": "^5.7.0" + }, + "dependencies": { + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "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==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + }, + "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==" + }, + "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==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "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==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "object-inspect": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "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==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.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==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + } + } + }, + "enzyme-adapter-utils": { + "version": "1.14.0", + "resolved": "https://registry.npmjs.org/enzyme-adapter-utils/-/enzyme-adapter-utils-1.14.0.tgz", + "integrity": "sha512-F/z/7SeLt+reKFcb7597IThpDp0bmzcH1E9Oabqv+o01cID2/YInlqHbFl7HzWBl4h3OdZYedtwNDOmSKkk0bg==", + "requires": { + "airbnb-prop-types": "^2.16.0", + "function.prototype.name": "^1.1.3", + "has": "^1.0.3", + "object.assign": "^4.1.2", + "object.fromentries": "^2.0.3", + "prop-types": "^15.7.2", + "semver": "^5.7.1" + }, + "dependencies": { + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "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==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "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==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + }, + "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==" + }, + "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==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "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==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "object-inspect": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "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==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + } + } + }, + "enzyme-shallow-equal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.4.tgz", + "integrity": "sha512-MttIwB8kKxypwHvRynuC3ahyNc+cFbR8mjVIltnmzQ0uKGqmsfO4bfBuLxb0beLNPhjblUEYvEbsg+VSygvF1Q==", + "requires": { + "has": "^1.0.3", + "object-is": "^1.1.2" + }, + "dependencies": { + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "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==" + } + } + }, + "errno": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.4.tgz", + "integrity": "sha1-uJbiOp5ei6M4cfyZar02NfyaHH0=", + "requires": { + "prr": "~0.0.0" + } + }, + "error-ex": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", + "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "error-stack-parser": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-1.3.6.tgz", + "integrity": "sha1-4Oc7k+QXE40c18C3RrGkoUhUwpI=", + "requires": { + "stackframe": "^0.3.1" + } + }, + "es-abstract": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.7.0.tgz", + "integrity": "sha1-363ndOAb/Nl/lhgCmMRJyGI/uUw=", + "requires": { + "es-to-primitive": "^1.1.1", + "function-bind": "^1.1.0", + "is-callable": "^1.1.3", + "is-regex": "^1.0.3" + } + }, + "es-to-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz", + "integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=", + "requires": { + "is-callable": "^1.1.1", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.1" + } + }, + "es5-ext": { + "version": "0.10.24", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.24.tgz", + "integrity": "sha1-pVh3yZJLwMjZvTwsvhdJWsFwmxQ=", + "requires": { + "es6-iterator": "2", + "es6-symbol": "~3.1" + } + }, + "es6-iterator": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.1.tgz", + "integrity": "sha1-jjGcnwRTv1ddN0lAplWSDlnKVRI=", + "requires": { + "d": "1", + "es5-ext": "^0.10.14", + "es6-symbol": "^3.1" + } + }, + "es6-map": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz", + "integrity": "sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA=", + "requires": { + "d": "1", + "es5-ext": "~0.10.14", + "es6-iterator": "~2.0.1", + "es6-set": "~0.1.5", + "es6-symbol": "~3.1.1", + "event-emitter": "~0.3.5" + } + }, + "es6-promise": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", + "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" + }, + "es6-set": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz", + "integrity": "sha1-0rPsXU2ADO2BjbU40ol02wpzzLE=", + "requires": { + "d": "1", + "es5-ext": "~0.10.14", + "es6-iterator": "~2.0.1", + "es6-symbol": "3.1.1", + "event-emitter": "~0.3.5" + } + }, + "es6-symbol": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz", + "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=", + "requires": { + "d": "1", + "es5-ext": "~0.10.14" + } + }, + "es6-weak-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.2.tgz", + "integrity": "sha1-XjqzIlH/0VOKH45f+hNXdy+S2W8=", + "requires": { + "d": "1", + "es5-ext": "^0.10.14", + "es6-iterator": "^2.0.1", + "es6-symbol": "^3.1.1" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "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=" + }, + "escodegen": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz", + "integrity": "sha1-WltTr0aTEQvrsIZ6o0MN07cKEBg=", + "requires": { + "esprima": "^2.7.1", + "estraverse": "^1.9.1", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.2.0" + }, + "dependencies": { + "estraverse": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz", + "integrity": "sha1-r2fy3JIlgkFZUJJgkaQAXSnJu0Q=" + }, + "source-map": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz", + "integrity": "sha1-2rc/vPwrqBm03gO9b26qSBZLP50=", + "optional": true, + "requires": { + "amdefine": ">=0.0.4" + } + } + } + }, + "escope": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz", + "integrity": "sha1-4Bl16BJ4GhY6ba392AOY3GTIicM=", + "requires": { + "es6-map": "^0.1.3", + "es6-weak-map": "^2.0.1", + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "eslint": { + "version": "8.34.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.34.0.tgz", + "integrity": "sha512-1Z8iFsucw+7kSqXNZVslXS8Ioa4u2KM7GPwuKtkTFAqZ/cHMcEaR+1+Br0wLlot49cNxIiZk5wp8EAbPcYZxTg==", + "requires": { + "@eslint/eslintrc": "^1.4.1", + "@humanwhocodes/config-array": "^0.11.8", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.1.1", + "eslint-utils": "^3.0.0", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.4.0", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-sdsl": "^4.1.4", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "regexpp": "^3.2.0", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "dependencies": { + "acorn": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", + "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==" + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "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" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "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==", + "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==" + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "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==" + }, + "eslint-scope": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", + "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "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==" + }, + "espree": { + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", + "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", + "requires": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.3.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==", + "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==" + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "requires": { + "is-glob": "^4.0.3" + } + }, + "globals": { + "version": "13.20.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", + "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", + "requires": { + "type-fest": "^0.20.2" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==" + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "requires": { + "argparse": "^2.0.1" + } + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "requires": { + "p-locate": "^5.0.0" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "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-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "requires": { + "p-limit": "^3.0.2" + } + }, + "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==" + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + }, + "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==" + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "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==", + "requires": { + "has-flag": "^4.0.0" + } + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "requires": { + "prelude-ls": "^1.2.1" + } + } + } }, - "babel-plugin-syntax-exponentiation-operator": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz", - "integrity": "sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4=" + "eslint-config-airbnb": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb/-/eslint-config-airbnb-15.1.0.tgz", + "integrity": "sha512-m0q9fiMBzDAIbirlGnpJNWToIhdhJmXXnMG+IFflYzzod9231ZhtmGKegKg8E9T8F1YuVaDSU1FnCm5b9iXVhQ==", + "requires": { + "eslint-config-airbnb-base": "^11.3.0" + } }, - "babel-plugin-syntax-flow": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz", - "integrity": "sha1-TDqyCiryaqIM0lmVw5jE63AxDI0=" + "eslint-config-airbnb-base": { + "version": "11.3.2", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.3.2.tgz", + "integrity": "sha512-/fhjt/VqzBA2SRsx7ErDtv6Ayf+XLw9LIOqmpBuHFCVwyJo2EtzGWMB9fYRFBoWWQLxmNmCpenNiH0RxyeS41w==", + "requires": { + "eslint-restricted-globals": "^0.1.1" + } }, - "babel-plugin-syntax-jsx": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", - "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" + "eslint-config-prettier": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.3.0.tgz", + "integrity": "sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==", + "dev": true }, - "babel-plugin-syntax-object-rest-spread": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", - "integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=" + "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==", + "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==", + "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==" + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + } + } }, - "babel-plugin-syntax-trailing-function-commas": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz", - "integrity": "sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=" + "eslint-loader": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-1.9.0.tgz", + "integrity": "sha512-40aN976qSNPyb9ejTqjEthZITpls1SVKtwguahmH1dzGCwQU/vySE+xX33VZmD8csU0ahVNCtFlsPgKqRBiqgg==", + "requires": { + "loader-fs-cache": "^1.0.0", + "loader-utils": "^1.0.2", + "object-assign": "^4.0.1", + "object-hash": "^1.1.4", + "rimraf": "^2.6.1" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "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==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + } + } }, - "babel-plugin-transform-async-generator-functions": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz", - "integrity": "sha1-8FiQAUX9PpkHpt3yjaWfIVJYpds=", + "eslint-module-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.1.tgz", + "integrity": "sha512-fjoetBXQZq2tSTWZ9yWVl2KuFrTZZH3V+9iD1V1RfpDgxzJR+mPd/KZmMiA8gbPqdBzpNiEHOuT7IYEWxrH0zQ==", "requires": { - "babel-helper-remap-async-to-generator": "^6.24.1", - "babel-plugin-syntax-async-generators": "^6.5.0", - "babel-runtime": "^6.22.0" + "debug": "^3.2.7", + "find-up": "^2.1.0", + "pkg-dir": "^2.0.0" + }, + "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==" + } } }, - "babel-plugin-transform-async-to-generator": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz", - "integrity": "sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E=", + "eslint-plugin-import": { + "version": "2.25.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.25.3.tgz", + "integrity": "sha512-RzAVbby+72IB3iOEL8clzPLzL3wpDrlwjsTBAQXgyp5SeTqqY+0bFubwuo+y/HLhNZcXV4XqTBO4LGsfyHIDXg==", + "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.1", + "has": "^1.0.3", + "is-core-module": "^2.8.0", + "is-glob": "^4.0.3", + "minimatch": "^3.0.4", + "object.values": "^1.1.5", + "resolve": "^1.20.0", + "tsconfig-paths": "^3.11.0" + }, + "dependencies": { + "array-includes": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz", + "integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.7" + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "requires": { + "esutils": "^2.0.2" + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "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==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + }, + "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==" + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.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==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "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==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "object-inspect": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.1.tgz", + "integrity": "sha512-If7BjFlpkzzBeV1cqgT3OSWT3azyoxDGajR+iGnFBfVV2EWyDyWaZZW2ERDjUaY2QM8i5jI3Sj7mhsM4DDAqWA==" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "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==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.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==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + } + } + }, + "eslint-plugin-jsx-a11y": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.1.1.tgz", + "integrity": "sha512-5I9SpoP7gT4wBFOtXT8/tXNPYohHBVfyVfO17vkbC7r9kEIxYJF12D3pKqhk8+xnk12rfxKClS3WCFpVckFTPQ==", "requires": { - "babel-helper-remap-async-to-generator": "^6.24.1", - "babel-plugin-syntax-async-functions": "^6.8.0", - "babel-runtime": "^6.22.0" + "aria-query": "^0.7.0", + "array-includes": "^3.0.3", + "ast-types-flow": "0.0.7", + "axobject-query": "^0.1.0", + "damerau-levenshtein": "^1.0.0", + "emoji-regex": "^6.1.0", + "jsx-ast-utils": "^1.4.0" + } + }, + "eslint-plugin-react": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.27.1.tgz", + "integrity": "sha512-meyunDjMMYeWr/4EBLTV1op3iSG3mjT/pz5gti38UzfM4OPpNc2m0t2xvKCOMU5D6FSdd34BIMFOvQbW+i8GAA==", + "requires": { + "array-includes": "^3.1.4", + "array.prototype.flatmap": "^1.2.5", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.0.4", + "object.entries": "^1.1.5", + "object.fromentries": "^2.0.5", + "object.hasown": "^1.1.0", + "object.values": "^1.1.5", + "prop-types": "^15.7.2", + "resolve": "^2.0.0-next.3", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.6" + }, + "dependencies": { + "array-includes": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.4.tgz", + "integrity": "sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.7" + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "requires": { + "esutils": "^2.0.2" + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "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==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + }, + "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==" + }, + "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==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "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==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "jsx-ast-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.1.tgz", + "integrity": "sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==", + "requires": { + "array-includes": "^3.1.3", + "object.assign": "^4.1.2" + } + }, + "object-inspect": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.1.tgz", + "integrity": "sha512-If7BjFlpkzzBeV1cqgT3OSWT3azyoxDGajR+iGnFBfVV2EWyDyWaZZW2ERDjUaY2QM8i5jI3Sj7mhsM4DDAqWA==" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "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==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "object.entries": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", + "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.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==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" + } + }, + "resolve": { + "version": "2.0.0-next.3", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.3.tgz", + "integrity": "sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" + } } }, - "babel-plugin-transform-class-properties": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz", - "integrity": "sha1-anl2PqYdM9NvN7YRqp3vgagbRqw=", - "requires": { - "babel-helper-function-name": "^6.24.1", - "babel-plugin-syntax-class-properties": "^6.8.0", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - } + "eslint-restricted-globals": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz", + "integrity": "sha1-NfDVy8ZMLj7WLpO0saevBbp+1Nc=" }, - "babel-plugin-transform-decorators": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz", - "integrity": "sha1-eIAT2PjGtSIr33s0Q5Df13Vp4k0=", + "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==", "requires": { - "babel-helper-explode-class": "^6.24.1", - "babel-plugin-syntax-decorators": "^6.13.0", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-types": "^6.24.1" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "dependencies": { + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + } + } + } } }, - "babel-plugin-transform-es2015-arrow-functions": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz", - "integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=", + "eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", "requires": { - "babel-runtime": "^6.22.0" + "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==" + } } }, - "babel-plugin-transform-es2015-block-scoped-functions": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz", - "integrity": "sha1-u8UbSflk1wy42OC5ToICRs46YUE=", - "requires": { - "babel-runtime": "^6.22.0" - } + "eslint-visitor-keys": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.1.0.tgz", + "integrity": "sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA==" }, - "babel-plugin-transform-es2015-block-scoping": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz", - "integrity": "sha1-dsKV3DpHQbFmWt/TFnIV3P8ypXY=", + "espree": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/espree/-/espree-3.4.3.tgz", + "integrity": "sha1-KRC1zNSc6JPC//+qtP2LOjG4I3Q=", "requires": { - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1", - "lodash": "^4.2.0" + "acorn": "^5.0.1", + "acorn-jsx": "^3.0.0" + }, + "dependencies": { + "acorn": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.1.1.tgz", + "integrity": "sha512-vOk6uEMctu0vQrvuSqFdJyqj1Q0S5VTDL79qtjo+DhRr+1mmaD+tluFSCZqhvi/JUhXSzoZN2BhtstaPEeE8cw==" + } } }, - "babel-plugin-transform-es2015-classes": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz", - "integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=", - "requires": { - "babel-helper-define-map": "^6.24.1", - "babel-helper-function-name": "^6.24.1", - "babel-helper-optimise-call-expression": "^6.24.1", - "babel-helper-replace-supers": "^6.24.1", - "babel-messages": "^6.23.0", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" - } + "esprima": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", + "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=" }, - "babel-plugin-transform-es2015-computed-properties": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz", - "integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=", + "esquery": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.2.tgz", + "integrity": "sha512-JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng==", "requires": { - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" + } } }, - "babel-plugin-transform-es2015-destructuring": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz", - "integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=", + "esrecurse": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.0.tgz", + "integrity": "sha1-+pVo2Y04I/mkHZHpAtyrnqblsWM=", "requires": { - "babel-runtime": "^6.22.0" + "estraverse": "^4.1.0", + "object-assign": "^4.0.1" } }, - "babel-plugin-transform-es2015-duplicate-keys": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz", - "integrity": "sha1-c+s9MQypaePvnskcU3QabxV2Qj4=", - "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } + "estraverse": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", + "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=" }, - "babel-plugin-transform-es2015-for-of": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz", - "integrity": "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=", - "requires": { - "babel-runtime": "^6.22.0" - } + "esutils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" }, - "babel-plugin-transform-es2015-function-name": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz", - "integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=", - "requires": { - "babel-helper-function-name": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" }, - "babel-plugin-transform-es2015-literals": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz", - "integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=", + "event-emitter": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", + "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=", "requires": { - "babel-runtime": "^6.22.0" + "d": "1", + "es5-ext": "~0.10.14" } }, - "babel-plugin-transform-es2015-modules-amd": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz", - "integrity": "sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ=", + "event-stream": { + "version": "0.5.3", + "resolved": "http://registry.npmjs.org/event-stream/-/event-stream-0.5.3.tgz", + "integrity": "sha1-t3uTCfcQet3+q2PwwOr9jbC9jBw=", "requires": { - "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" + "optimist": "0.2" + }, + "dependencies": { + "optimist": { + "version": "0.2.8", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.2.8.tgz", + "integrity": "sha1-6YGrfiaLRXlIWTtVZ0wJmoFcrDE=", + "requires": { + "wordwrap": ">=0.0.1 <0.1.0" + } + }, + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=" + } } }, - "babel-plugin-transform-es2015-modules-commonjs": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz", - "integrity": "sha1-0+MQtA72ZKNmIiAAl8bUQCmPK/4=", - "requires": { - "babel-plugin-transform-strict-mode": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-types": "^6.24.1" - } + "eventemitter2": { + "version": "0.4.14", + "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz", + "integrity": "sha1-j2G3XN4BKy6esoTUVFWDtWQ7Yas=" }, - "babel-plugin-transform-es2015-modules-systemjs": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz", - "integrity": "sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM=", - "requires": { - "babel-helper-hoist-variables": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - } + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" }, - "babel-plugin-transform-es2015-modules-umd": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz", - "integrity": "sha1-rJl+YoXNGO1hdq22B9YCNErThGg=", - "requires": { - "babel-plugin-transform-es2015-modules-amd": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1" - } + "events": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz", + "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=" }, - "babel-plugin-transform-es2015-object-super": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz", - "integrity": "sha1-JM72muIcuDp/hgPa0CH1cusnj40=", + "eventsource": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-0.1.6.tgz", + "integrity": "sha1-Cs7ehJ7X3RzMMsgRuxG5RNTykjI=", "requires": { - "babel-helper-replace-supers": "^6.24.1", - "babel-runtime": "^6.22.0" + "original": ">=0.0.5" } }, - "babel-plugin-transform-es2015-parameters": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz", - "integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=", + "evp_bytestokey": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz", + "integrity": "sha1-SXtmrZ/vZc18CKYYCCS6FHa2blM=", "requires": { - "babel-helper-call-delegate": "^6.24.1", - "babel-helper-get-function-arity": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-template": "^6.24.1", - "babel-traverse": "^6.24.1", - "babel-types": "^6.24.1" + "create-hash": "^1.1.1" } }, - "babel-plugin-transform-es2015-shorthand-properties": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz", - "integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=", + "exec-sh": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.2.0.tgz", + "integrity": "sha1-FPdd4/INKG75MwmbLOUKkDWc7xA=", "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" + "merge": "^1.1.3" } }, - "babel-plugin-transform-es2015-spread": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz", - "integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=", + "execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", "requires": { - "babel-runtime": "^6.22.0" + "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": { + "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=", + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + } } }, - "babel-plugin-transform-es2015-sticky-regex": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz", - "integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=", - "requires": { - "babel-helper-regex": "^6.24.1", - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" - } + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "dev": true }, - "babel-plugin-transform-es2015-template-literals": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz", - "integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=", + "exit-hook": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz", + "integrity": "sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=" + }, + "expand-brackets": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", + "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", "requires": { - "babel-runtime": "^6.22.0" + "is-posix-bracket": "^0.1.0" } }, - "babel-plugin-transform-es2015-typeof-symbol": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz", - "integrity": "sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I=", + "expand-range": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", + "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", "requires": { - "babel-runtime": "^6.22.0" + "fill-range": "^2.1.0" } }, - "babel-plugin-transform-es2015-unicode-regex": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz", - "integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=", + "expect": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/expect/-/expect-1.20.2.tgz", + "integrity": "sha1-1Fj+TFYAQDa64yMkFqP2Nh8E+WU=", "requires": { - "babel-helper-regex": "^6.24.1", - "babel-runtime": "^6.22.0", - "regexpu-core": "^2.0.0" + "define-properties": "~1.1.2", + "has": "^1.0.1", + "is-equal": "^1.5.1", + "is-regex": "^1.0.3", + "object-inspect": "^1.1.0", + "object-keys": "^1.0.9", + "tmatch": "^2.0.1" } }, - "babel-plugin-transform-exponentiation-operator": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz", - "integrity": "sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=", + "express": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", "requires": { - "babel-helper-builder-binary-assignment-operator-visitor": "^6.24.1", - "babel-plugin-syntax-exponentiation-operator": "^6.8.0", - "babel-runtime": "^6.22.0" + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "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.11.0", + "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": { + "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==", + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "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.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + } + }, + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, + "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==", + "requires": { + "safe-buffer": "5.2.1" + } + }, + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + }, + "depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + }, + "finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "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" + } + }, + "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==", + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "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" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "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" + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + }, + "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==", + "requires": { + "ee-first": "1.1.1" + } + }, + "qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "requires": { + "side-channel": "^1.0.4" + } + }, + "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==" + }, + "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==", + "requires": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "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==" + }, + "send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "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" + } + }, + "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==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + } + }, + "setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + }, + "toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + }, + "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" + } + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + } } }, - "babel-plugin-transform-flow-strip-types": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz", - "integrity": "sha1-hMtnKTXUNxT9wyvOhFaNh0Qc988=", + "express-async-wrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/express-async-wrap/-/express-async-wrap-1.0.0.tgz", + "integrity": "sha1-+ZctK3Jv5owNrwSVuPwhN8VEV6o=" + }, + "express-x-hub": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/express-x-hub/-/express-x-hub-1.0.4.tgz", + "integrity": "sha1-k5F9pHj1xRf1t0onAHlfYWoqDR0=", "requires": { - "babel-plugin-syntax-flow": "^6.18.0", - "babel-runtime": "^6.22.0" + "raw-body": "^2.1.4", + "type-is": "^1.6.9" } }, - "babel-plugin-transform-object-rest-spread": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz", - "integrity": "sha1-h11ryb52HFiirj/u5dxIldjH+SE=", + "ext": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz", + "integrity": "sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==", "requires": { - "babel-plugin-syntax-object-rest-spread": "^6.8.0", - "babel-runtime": "^6.22.0" + "type": "^2.5.0" + }, + "dependencies": { + "type": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/type/-/type-2.5.0.tgz", + "integrity": "sha512-180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw==" + } } }, - "babel-plugin-transform-react-display-name": { - "version": "6.25.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz", - "integrity": "sha1-Z+K/Hx6ck6sI25Z5LgU5K/LMKNE=", + "extend": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", + "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", "requires": { - "babel-runtime": "^6.22.0" + "assign-symbols": "^1.0.0", + "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==", + "requires": { + "is-plain-object": "^2.0.4" + } + } } }, - "babel-plugin-transform-react-jsx": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz", - "integrity": "sha1-hAoCjn30YN/DotKfDA2R9jduZqM=", + "external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", "requires": { - "babel-helper-builder-react-jsx": "^6.24.1", - "babel-plugin-syntax-jsx": "^6.8.0", - "babel-runtime": "^6.22.0" + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "dependencies": { + "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" + } + } } }, - "babel-plugin-transform-react-jsx-self": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz", - "integrity": "sha1-322AqdomEqEh5t3XVYvL7PBuY24=", + "extglob": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", + "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", "requires": { - "babel-plugin-syntax-jsx": "^6.8.0", - "babel-runtime": "^6.22.0" + "is-extglob": "^1.0.0" } }, - "babel-plugin-transform-react-jsx-source": { - "version": "6.22.0", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz", - "integrity": "sha1-ZqwSFT9c0tF7PBkmj0vwGX9E7NY=", + "extract-text-webpack-plugin": { + "version": "4.0.0-beta.0", + "resolved": "https://registry.npmjs.org/extract-text-webpack-plugin/-/extract-text-webpack-plugin-4.0.0-beta.0.tgz", + "integrity": "sha512-Hypkn9jUTnFr0DpekNam53X47tXn3ucY08BQumv7kdGgeVUBLq3DJHJTi6HNxv4jl9W+Skxjz9+RnK0sJyqqjA==", "requires": { - "babel-plugin-syntax-jsx": "^6.8.0", - "babel-runtime": "^6.22.0" + "async": "^2.4.1", + "loader-utils": "^1.1.0", + "schema-utils": "^0.4.5", + "webpack-sources": "^1.1.0" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + } } }, - "babel-plugin-transform-regenerator": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.24.1.tgz", - "integrity": "sha1-uNowWtQ8PJm0hI5P5AN7dw0jxBg=", - "requires": { - "regenerator-transform": "0.9.11" + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "eyes": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz", + "integrity": "sha1-Ys8SAjTGg3hdkCNIqADvPgzCC8A=" + }, + "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==" + }, + "fast-glob": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", + "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", + "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" + }, + "dependencies": { + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "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==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "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==", + "requires": { + "is-number": "^7.0.0" + } + } } }, - "babel-plugin-transform-strict-mode": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz", - "integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=", + "fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + }, + "fast-memoize": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/fast-memoize/-/fast-memoize-2.5.2.tgz", + "integrity": "sha512-Ue0LwpDYErFbmNnZSF0UH6eImUwDmogUO1jyE+JbN2gsQz/jICm1Ve7t9QT0rNSsfJt+Hs4/S3GnsDVjL4HVrw==" + }, + "fast-safe-stringify": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", + "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" + }, + "fastparse": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz", + "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==" + }, + "fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", "requires": { - "babel-runtime": "^6.22.0", - "babel-types": "^6.24.1" + "reusify": "^1.0.4" } }, - "babel-polyfill": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.23.0.tgz", - "integrity": "sha1-g2TKYt+Or7gwSZ9pkXdGbDsDSZ0=", + "faye-websocket": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", + "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", "requires": { - "babel-runtime": "^6.22.0", - "core-js": "^2.4.0", - "regenerator-runtime": "^0.10.0" + "websocket-driver": ">=0.5.1" } }, - "babel-preset-es2015": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz", - "integrity": "sha1-1EBQ1rwsn+6nAqrzjXJ6AhBTiTk=", + "fb-watchman": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.0.tgz", + "integrity": "sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg=", "requires": { - "babel-plugin-check-es2015-constants": "^6.22.0", - "babel-plugin-transform-es2015-arrow-functions": "^6.22.0", - "babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0", - "babel-plugin-transform-es2015-block-scoping": "^6.24.1", - "babel-plugin-transform-es2015-classes": "^6.24.1", - "babel-plugin-transform-es2015-computed-properties": "^6.24.1", - "babel-plugin-transform-es2015-destructuring": "^6.22.0", - "babel-plugin-transform-es2015-duplicate-keys": "^6.24.1", - "babel-plugin-transform-es2015-for-of": "^6.22.0", - "babel-plugin-transform-es2015-function-name": "^6.24.1", - "babel-plugin-transform-es2015-literals": "^6.22.0", - "babel-plugin-transform-es2015-modules-amd": "^6.24.1", - "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1", - "babel-plugin-transform-es2015-modules-systemjs": "^6.24.1", - "babel-plugin-transform-es2015-modules-umd": "^6.24.1", - "babel-plugin-transform-es2015-object-super": "^6.24.1", - "babel-plugin-transform-es2015-parameters": "^6.24.1", - "babel-plugin-transform-es2015-shorthand-properties": "^6.24.1", - "babel-plugin-transform-es2015-spread": "^6.22.0", - "babel-plugin-transform-es2015-sticky-regex": "^6.24.1", - "babel-plugin-transform-es2015-template-literals": "^6.22.0", - "babel-plugin-transform-es2015-typeof-symbol": "^6.22.0", - "babel-plugin-transform-es2015-unicode-regex": "^6.24.1", - "babel-plugin-transform-regenerator": "^6.24.1" + "bser": "^2.0.0" } }, - "babel-preset-flow": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-preset-flow/-/babel-preset-flow-6.23.0.tgz", - "integrity": "sha1-5xIYiHCFrpoktb5Baa/7WZgWxJ0=", + "fbjs": { + "version": "0.8.18", + "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.18.tgz", + "integrity": "sha512-EQaWFK+fEPSoibjNy8IxUtaFOMXcWsY0JaVrQoZR9zC8N2Ygf9iDITPWjUTVIax95b6I742JFLqASHfsag/vKA==", "requires": { - "babel-plugin-transform-flow-strip-types": "^6.22.0" + "core-js": "^1.0.0", + "isomorphic-fetch": "^2.1.1", + "loose-envify": "^1.0.0", + "object-assign": "^4.1.0", + "promise": "^7.1.1", + "setimmediate": "^1.0.5", + "ua-parser-js": "^0.7.30" + }, + "dependencies": { + "core-js": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", + "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=" + }, + "ua-parser-js": { + "version": "0.7.31", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.31.tgz", + "integrity": "sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==" + } } }, - "babel-preset-jest": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz", - "integrity": "sha1-y6yq3stdaJyh4d4TYOv8ZoYsF4o=", + "figures": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", + "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", "requires": { - "babel-plugin-jest-hoist": "^20.0.3" + "escape-string-regexp": "^1.0.5", + "object-assign": "^4.1.0" } }, - "babel-preset-react": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-preset-react/-/babel-preset-react-6.24.1.tgz", - "integrity": "sha1-umnfrqRfw+xjm2pOzqbhdwLJE4A=", + "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==", "requires": { - "babel-plugin-syntax-jsx": "^6.3.13", - "babel-plugin-transform-react-display-name": "^6.23.0", - "babel-plugin-transform-react-jsx": "^6.24.1", - "babel-plugin-transform-react-jsx-self": "^6.22.0", - "babel-plugin-transform-react-jsx-source": "^6.22.0", - "babel-preset-flow": "^6.23.0" + "flat-cache": "^3.0.4" + }, + "dependencies": { + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "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" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + } } }, - "babel-preset-stage-2": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz", - "integrity": "sha1-2eKWD7PXEYfw5k7sYrwHdnIZvcE=", + "file-loader": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-0.11.2.tgz", + "integrity": "sha512-N+uhF3mswIFeziHQjGScJ/yHXYt3DiLBeC+9vWW+WjUBiClMSOlV1YrXQi+7KM2aA3Rn4Bybgv+uXFQbfkzpvg==", "requires": { - "babel-plugin-syntax-dynamic-import": "^6.18.0", - "babel-plugin-transform-class-properties": "^6.24.1", - "babel-plugin-transform-decorators": "^6.24.1", - "babel-preset-stage-3": "^6.24.1" + "loader-utils": "^1.0.2" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "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==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + } } }, - "babel-preset-stage-3": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz", - "integrity": "sha1-g2raCp56f6N8sTj7kyb4eTSkg5U=", + "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==", + "optional": true + }, + "filename-regex": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", + "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=" + }, + "fileset": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/fileset/-/fileset-2.0.3.tgz", + "integrity": "sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA=", "requires": { - "babel-plugin-syntax-trailing-function-commas": "^6.22.0", - "babel-plugin-transform-async-generator-functions": "^6.24.1", - "babel-plugin-transform-async-to-generator": "^6.24.1", - "babel-plugin-transform-exponentiation-operator": "^6.24.1", - "babel-plugin-transform-object-rest-spread": "^6.22.0" + "glob": "^7.0.3", + "minimatch": "^3.0.3" } }, - "babel-register": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.24.1.tgz", - "integrity": "sha1-fhDhOi9xBlvfrVoXh7pFvKbe118=", + "fill-range": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", + "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", "requires": { - "babel-core": "^6.24.1", - "babel-runtime": "^6.22.0", - "core-js": "^2.4.0", - "home-or-tmp": "^2.0.0", - "lodash": "^4.2.0", - "mkdirp": "^0.5.1", - "source-map-support": "^0.4.2" + "is-number": "^2.1.0", + "isobject": "^2.0.0", + "randomatic": "^3.0.0", + "repeat-element": "^1.1.2", + "repeat-string": "^1.5.2" } }, - "babel-runtime": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz", - "integrity": "sha1-CpSJ8UTecO+zzkMArM2zKeL8VDs=", + "find": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/find/-/find-0.2.9.tgz", + "integrity": "sha1-S3Px/55WrZG3bnFkB/5f/mVUu4w=", + "optional": true, "requires": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.10.0" + "traverse-chain": "~0.1.0" } }, - "babel-template": { - "version": "6.25.0", - "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.25.0.tgz", - "integrity": "sha1-ZlJBFmt8KqTGGdceGSlpVSsQwHE=", + "find-cache-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz", + "integrity": "sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=", "requires": { - "babel-runtime": "^6.22.0", - "babel-traverse": "^6.25.0", - "babel-types": "^6.25.0", - "babylon": "^6.17.2", - "lodash": "^4.2.0" + "commondir": "^1.0.1", + "make-dir": "^1.0.0", + "pkg-dir": "^2.0.0" } }, - "babel-traverse": { - "version": "6.25.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.25.0.tgz", - "integrity": "sha1-IldJfi/NGbie3BPEyROB+VEklvE=", + "find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + }, + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", "requires": { - "babel-code-frame": "^6.22.0", - "babel-messages": "^6.23.0", - "babel-runtime": "^6.22.0", - "babel-types": "^6.25.0", - "babylon": "^6.17.2", - "debug": "^2.2.0", - "globals": "^9.0.0", - "invariant": "^2.2.0", - "lodash": "^4.2.0" + "locate-path": "^2.0.0" } }, - "babel-types": { - "version": "6.25.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.25.0.tgz", - "integrity": "sha1-cK+ySNVmDl0Y+BHZHIMDtUE0oY4=", + "flat-cache": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.2.2.tgz", + "integrity": "sha1-+oZxTnLCHbiGAXYezy9VXRq8a5Y=", "requires": { - "babel-runtime": "^6.22.0", - "esutils": "^2.0.2", - "lodash": "^4.2.0", - "to-fast-properties": "^1.0.1" + "circular-json": "^0.3.1", + "del": "^2.0.2", + "graceful-fs": "^4.1.2", + "write": "^0.2.1" } }, - "babelify": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/babelify/-/babelify-7.3.0.tgz", - "integrity": "sha1-qlau3nBn/XvVSWZu4W3ChQh+iOU=", + "flatiron": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/flatiron/-/flatiron-0.4.3.tgz", + "integrity": "sha1-JIz3mj2n19w3nioRySonGcu1QPY=", "requires": { - "babel-core": "^6.0.14", - "object-assign": "^4.0.0" + "broadway": "~0.3.2", + "director": "1.2.7", + "optimist": "0.6.0", + "prompt": "0.2.14" + }, + "dependencies": { + "optimist": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.0.tgz", + "integrity": "sha1-aUJIJvNAX3nxQub8PZrljU27kgA=", + "requires": { + "minimist": "~0.0.1", + "wordwrap": "~0.0.2" + } + }, + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=" + } } }, - "babylon": { - "version": "6.17.4", - "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.17.4.tgz", - "integrity": "sha512-kChlV+0SXkjE0vUn9OZ7pBMWRFd8uq3mZe8x1K6jhuNcAFAtEnjchFAqB+dYEXKyd+JpT6eppRR78QAr5gTsUw==" + "flatted": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", + "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + "flatten": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz", + "integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==" }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", "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" + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" }, "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "requires": { - "is-descriptor": "^1.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==" }, - "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==", + "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": { - "kind-of": "^6.0.0" + "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" } }, - "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==", + "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==", "requires": { - "kind-of": "^6.0.0" + "safe-buffer": "~5.1.0" } + } + } + }, + "follow-redirects": { + "version": "1.14.8", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.8.tgz", + "integrity": "sha512-1x0S9UVJHsQprFcEC/qnNzBLcIxsjAV905f/UkQxbclCsoTWlacCNOpQa/anodLl2uaEKFhfWOvM2Qg77+15zA==" + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" + }, + "for-own": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", + "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", + "requires": { + "for-in": "^1.0.1" + } + }, + "foreach": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", + "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" + }, + "forever": { + "version": "0.15.3", + "resolved": "https://registry.npmjs.org/forever/-/forever-0.15.3.tgz", + "integrity": "sha1-d9nX4V/S9RGtnYShEMfdj8js68I=", + "requires": { + "cliff": "~0.1.9", + "clone": "^1.0.2", + "colors": "~0.6.2", + "flatiron": "~0.4.2", + "forever-monitor": "~1.7.0", + "nconf": "~0.6.9", + "nssocket": "~0.5.1", + "object-assign": "^3.0.0", + "optimist": "~0.6.0", + "path-is-absolute": "~1.0.0", + "prettyjson": "^1.1.2", + "shush": "^1.0.0", + "timespan": "~2.3.0", + "utile": "~0.2.1", + "winston": "~0.8.1" + }, + "dependencies": { + "async": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", + "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=" }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } + "colors": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz", + "integrity": "sha1-JCP+ZnisDF2uiFLl0OW+CMmXq8w=" }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + "object-assign": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", + "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=" }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + "winston": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/winston/-/winston-0.8.3.tgz", + "integrity": "sha1-ZLar9M0Brcrv1QCTk7HY6L7BnbA=", + "requires": { + "async": "0.2.x", + "colors": "0.6.x", + "cycle": "1.0.x", + "eyes": "0.1.x", + "isstream": "0.1.x", + "pkginfo": "0.3.x", + "stack-trace": "0.0.x" + } } } }, - "base62": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/base62/-/base62-0.1.1.tgz", - "integrity": "sha1-e0F0wvlESXU7EcJlHAg9qEGnsIQ=" + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" }, - "base64-js": { + "forever-monitor": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/forever-monitor/-/forever-monitor-1.7.1.tgz", + "integrity": "sha1-XYIPSjp42y2BriZx8Vi56GoJG7g=", + "requires": { + "broadway": "~0.3.6", + "chokidar": "^1.0.1", + "minimatch": "~3.0.2", + "ps-tree": "0.0.x", + "utile": "~0.2.1" + } + }, + "form-data": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz", + "integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.5", + "mime-types": "^2.1.12" + } + }, + "form-urlencoded": { + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/form-urlencoded/-/form-urlencoded-2.0.9.tgz", + "integrity": "sha512-fWUzNiOnYa126vFAT6TFXd1mhJrvD8IqmQ9ilZPjkLYQfaRreBr5fIUoOpPlWtqaAG64nzoE7u5zSetifab9IA==" + }, + "formidable": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.2.1.tgz", - "integrity": "sha512-dwVUVIXsBZXwTuwnXI9RK8sBmgq09NDHzyR9SAph9eqk76gKK2JSQmZARC2zRC81JC2QTtxD0ARU5qTS25gIGw==" + "resolved": "https://registry.npmjs.org/formidable/-/formidable-1.2.1.tgz", + "integrity": "sha512-Fs9VRguL0gqGHkXS5GQiMCr1VhZBxz0JnJs4JmMp/2jL18Fmbzvv7vOFRU+U8TBkHEE/CX1qDXzJplVULgsLeg==" }, - "batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" + "forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" }, - "bcrypt-pbkdf": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz", - "integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=", - "optional": true, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", "requires": { - "tweetnacl": "^0.14.3" + "map-cache": "^0.2.2" } }, - "big.js": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.1.3.tgz", - "integrity": "sha1-TK2iGTZS6zyp7I5VyQFWacmAaXg=" + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" }, - "binary-extensions": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.8.0.tgz", - "integrity": "sha1-SOyNFt9Dd+rl+liEaCSAr02Vx3Q=" + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } }, - "bl": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.3.tgz", - "integrity": "sha1-/FQhoo/UImA2w7OJGmaiW8ZNIm4=", + "front-matter": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/front-matter/-/front-matter-2.1.2.tgz", + "integrity": "sha1-91mDufL0E75ljJPf172M5AePXNs=", + "requires": { + "js-yaml": "^3.4.6" + } + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "requires": { + "minipass": "^3.0.0" + } + }, + "fs-promise": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/fs-promise/-/fs-promise-2.0.3.tgz", + "integrity": "sha1-9k5PhUvPaJqovdy6JokW2z20aFQ=", "requires": { - "readable-stream": "~2.0.5" + "any-promise": "^1.3.0", + "fs-extra": "^2.0.0", + "mz": "^2.6.0", + "thenify-all": "^1.6.0" }, "dependencies": { - "readable-stream": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", - "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", + "fs-extra": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-2.1.2.tgz", + "integrity": "sha1-BGxwFjzvmq1GsOSn+kZ/si1x3jU=", "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "~1.0.0", - "process-nextick-args": "~1.0.6", - "string_decoder": "~0.10.x", - "util-deprecate": "~1.0.1" + "graceful-fs": "^4.1.2", + "jsonfile": "^2.1.0" } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" } } }, - "block-stream": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", - "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=", + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", "requires": { - "inherits": "~2.0.0" + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" } }, - "bluebird": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz", - "integrity": "sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA==" + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, - "bn.js": { - "version": "4.11.7", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.7.tgz", - "integrity": "sha512-LxFiV5mefv0ley0SzqkOPR1bC4EbpPx8LkOz5vMe/Yi15t5hzwgO/G+tc7wOtL4PZTYjwHu8JnEiSLumuSjSfA==" + "fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "optional": true }, - "body-parser": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz", - "integrity": "sha1-WykhmP/dVTs6DyDe0FkrlWlVyLQ=", + "function-bind": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.0.tgz", + "integrity": "sha1-FhdnFMgBeY5Ojyz391KUZ7tKV3E=" + }, + "function.prototype.name": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.0.tgz", + "integrity": "sha512-Bs0VRrTz4ghD8pTmbJQD1mZ8A/mN0ur/jGz+A6FBxPDUPkm1tNfF6bhTYPA7i7aF4lZJVr+OXTNNrnnIl58Wfg==", "requires": { - "bytes": "3.0.0", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "~1.6.3", - "iconv-lite": "0.4.23", - "on-finished": "~2.3.0", - "qs": "6.5.2", - "raw-body": "2.3.3", - "type-is": "~1.6.16" + "define-properties": "^1.1.2", + "function-bind": "^1.1.1", + "is-callable": "^1.1.3" }, "dependencies": { - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" - }, - "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==" - }, - "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": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" - }, - "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - } - }, - "iconv-lite": { - "version": "0.4.23", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", - "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "mime-db": { - "version": "1.33.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", - "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==" - }, - "mime-types": { - "version": "2.1.18", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz", - "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", - "requires": { - "mime-db": "~1.33.0" - } - }, - "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" - }, - "type-is": { - "version": "1.6.16", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz", - "integrity": "sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==", - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.18" - } - } - } - }, - "bonjour": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", - "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", - "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" + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + } } }, - "boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + "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=" }, - "boom": { - "version": "2.10.1", - "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", - "integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=", + "functions-have-names": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.2.tgz", + "integrity": "sha512-bLgc3asbWdwPbx2mNk2S49kmJCuQeu0nfmaOgbs8WIyzzkw3r4htszdIi9Q9EMezDPTYuJx2wvjZ/EwgAthpnA==" + }, + "gauge": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", "requires": { - "hoek": "2.x.x" + "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" } }, - "boron": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/boron/-/boron-0.2.3.tgz", - "integrity": "sha1-Y6GAB3HAyysNj2Fmh8YsEkjPuKA=", + "gaze": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", + "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", "requires": { - "domkit": "^0.0.1" + "globule": "^1.0.0" } }, - "bowser": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/bowser/-/bowser-1.7.1.tgz", - "integrity": "sha1-pN6PGKGg3JUx6yqSoVIftqm6lqU=" - }, - "brace-expansion": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz", - "integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=", + "generate-function": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz", + "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==", "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "is-property": "^1.0.2" } }, - "braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", + "generate-object-property": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", + "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", "requires": { - "expand-range": "^1.8.1", - "preserve": "^0.2.0", - "repeat-element": "^1.1.2" + "is-property": "^1.0.0" } }, - "brcast": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brcast/-/brcast-2.0.1.tgz", - "integrity": "sha512-Hm6AjEjr2hg5P/+tfAi7IARUW6mRNweni7ezt7vvOF53qn4++rdJoPsg8dDGS7KcwT2cRDucuFNMRYi3nkCD6Q==" + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" }, - "broadway": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/broadway/-/broadway-0.3.6.tgz", - "integrity": "sha1-fb7waLlUt5B5Jf1USWO1eKkCuno=", + "get-assigned-identifiers": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/get-assigned-identifiers/-/get-assigned-identifiers-1.2.0.tgz", + "integrity": "sha512-mBBwmeGTrxEMO4pMaaf/uUEFHnYtwr8FTe8Y/mer4rcV/bye0qGm6pw1bGZFGStxC5O76c5ZAVBGnqHmOaJpdQ==" + }, + "get-caller-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", + "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", "requires": { - "cliff": "0.1.9", - "eventemitter2": "0.4.14", - "nconf": "0.6.9", - "utile": "0.2.1", - "winston": "0.8.0" + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" }, "dependencies": { - "async": { - "version": "0.2.10", - "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", - "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=" + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, - "cliff": { - "version": "0.1.9", - "resolved": "https://registry.npmjs.org/cliff/-/cliff-0.1.9.tgz", - "integrity": "sha1-ohHgnGo947oa8n0EnTASUNGIErw=", + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "requires": { - "colors": "0.x.x", - "eyes": "0.1.x", - "winston": "0.8.x" + "function-bind": "^1.1.1" } }, - "colors": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz", - "integrity": "sha1-JCP+ZnisDF2uiFLl0OW+CMmXq8w=" - }, - "winston": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/winston/-/winston-0.8.0.tgz", - "integrity": "sha1-YdCDD6aZcGISIGsKK1ymmpMENmg=", - "requires": { - "async": "0.2.x", - "colors": "0.6.x", - "cycle": "1.0.x", - "eyes": "0.1.x", - "pkginfo": "0.3.x", - "stack-trace": "0.0.x" - } + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" } } }, - "brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" + "get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" }, - "browser-filesaver": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/browser-filesaver/-/browser-filesaver-1.1.1.tgz", - "integrity": "sha1-HDUbL1dvWwDx0p1EIcTAQo7uX6E=" + "get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=" }, - "browser-pack": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/browser-pack/-/browser-pack-6.0.2.tgz", - "integrity": "sha1-+GzWzvT1MAyOY+B6TVEvZfv/RTE=", + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" + }, + "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==", "requires": { - "JSONStream": "^1.0.3", - "combine-source-map": "~0.7.1", - "defined": "^1.0.0", - "through2": "^2.0.0", - "umd": "^3.0.0" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" } }, - "browser-resolve": { - "version": "1.11.2", - "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.2.tgz", - "integrity": "sha1-j/CbCixCFxihBRwmCzLkj0QpOM4=", + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", "requires": { - "resolve": "1.1.7" + "assert-plus": "^1.0.0" }, "dependencies": { - "resolve": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", - "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=" + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" } } }, - "browserify": { - "version": "14.4.0", - "resolved": "https://registry.npmjs.org/browserify/-/browserify-14.4.0.tgz", - "integrity": "sha1-CJo0Y69Y0OSNjNQHCz90ZU1avKk=", + "glamor": { + "version": "2.20.40", + "resolved": "https://registry.npmjs.org/glamor/-/glamor-2.20.40.tgz", + "integrity": "sha512-DNXCd+c14N9QF8aAKrfl4xakPk5FdcFwmH7sD0qnC0Pr7xoZ5W9yovhUrY/dJc3psfGGXC58vqQyRtuskyUJxA==", "requires": { - "JSONStream": "^1.0.3", - "assert": "^1.4.0", - "browser-pack": "^6.0.1", - "browser-resolve": "^1.11.0", - "browserify-zlib": "~0.1.2", - "buffer": "^5.0.2", - "cached-path-relative": "^1.0.0", - "concat-stream": "~1.5.1", - "console-browserify": "^1.1.0", - "constants-browserify": "~1.0.0", - "crypto-browserify": "^3.0.0", - "defined": "^1.0.0", - "deps-sort": "^2.0.0", - "domain-browser": "~1.1.0", - "duplexer2": "~0.1.2", - "events": "~1.1.0", - "glob": "^7.1.0", - "has": "^1.0.0", - "htmlescape": "^1.1.0", - "https-browserify": "^1.0.0", - "inherits": "~2.0.1", - "insert-module-globals": "^7.0.0", - "labeled-stream-splicer": "^2.0.0", - "module-deps": "^4.0.8", - "os-browserify": "~0.1.1", - "parents": "^1.0.1", - "path-browserify": "~0.0.0", - "process": "~0.11.0", - "punycode": "^1.3.2", - "querystring-es3": "~0.2.0", - "read-only-stream": "^2.0.0", - "readable-stream": "^2.0.2", - "resolve": "^1.1.4", - "shasum": "^1.0.0", - "shell-quote": "^1.6.1", - "stream-browserify": "^2.0.0", - "stream-http": "^2.0.0", - "string_decoder": "~1.0.0", - "subarg": "^1.0.0", - "syntax-error": "^1.1.1", - "through2": "^2.0.0", - "timers-browserify": "^1.0.1", - "tty-browserify": "~0.0.0", - "url": "~0.11.0", - "util": "~0.10.1", - "vm-browserify": "~0.0.1", - "xtend": "^4.0.0" + "fbjs": "^0.8.12", + "inline-style-prefixer": "^3.0.6", + "object-assign": "^4.1.1", + "prop-types": "^15.5.10", + "through": "^2.3.8" + }, + "dependencies": { + "inline-style-prefixer": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/inline-style-prefixer/-/inline-style-prefixer-3.0.8.tgz", + "integrity": "sha1-hVG45bTVcyROZqNLBPfTIHaitTQ=", + "requires": { + "bowser": "^1.7.3", + "css-in-js-utils": "^2.0.0" + } + } + } + }, + "glamorous": { + "version": "3.25.0", + "resolved": "https://registry.npmjs.org/glamorous/-/glamorous-3.25.0.tgz", + "integrity": "sha512-Y2ZykdbY+w1Bz97aUdOzmLr//vV6nQmBnnBfJfXG1AYi7zbp37m7X+giBGqZiyLCA65HgQ8yH89sZyD6sGMROg==", + "requires": { + "brcast": "^2.0.0", + "fast-memoize": "^2.2.7", + "html-tag-names": "^1.1.1", + "react-html-attributes": "^1.3.0", + "svg-tag-names": "^1.1.0" + } + }, + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "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" + } + }, + "glob-base": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", + "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", + "requires": { + "glob-parent": "^2.0.0", + "is-glob": "^2.0.0" + } + }, + "glob-parent": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", + "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", + "requires": { + "is-glob": "^2.0.0" + } + }, + "global": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/global/-/global-4.3.2.tgz", + "integrity": "sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8=", + "requires": { + "min-document": "^2.19.0", + "process": "~0.5.1" + }, + "dependencies": { + "process": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/process/-/process-0.5.2.tgz", + "integrity": "sha1-FjjYqONML0QKkduVq5rrZ3/Bhc8=" + } } }, - "browserify-aes": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.0.6.tgz", - "integrity": "sha1-Xncl297x/Vkw1OurSFZ85FHEigo=", + "global-modules-path": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/global-modules-path/-/global-modules-path-2.3.1.tgz", + "integrity": "sha512-y+shkf4InI7mPRHSo2b/k6ix6+NLDtyccYv86whhxrSGX9wjPX1VMITmrDbE1eh7zkzhiWtW2sHklJYoQ62Cxg==" + }, + "globals": { + "version": "9.18.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", + "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==" + }, + "globby": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", + "integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=", "requires": { - "buffer-xor": "^1.0.2", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.0", - "inherits": "^2.0.1" + "array-union": "^1.0.1", + "arrify": "^1.0.0", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" } }, - "browserify-cipher": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.0.tgz", - "integrity": "sha1-mYgkSHS/XtTijalWZtzWasj8Njo=", + "globule": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/globule/-/globule-1.2.0.tgz", + "integrity": "sha1-HcScaCLdnoovoAuiopUAboZkvQk=", "requires": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" + "glob": "~7.1.1", + "lodash": "~4.17.4", + "minimatch": "~3.0.2" } }, - "browserify-des": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.0.tgz", - "integrity": "sha1-2qJ3cXRwki7S/hhZQRihdUOXId0=", + "gonzales-pe-sl": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/gonzales-pe-sl/-/gonzales-pe-sl-4.2.3.tgz", + "integrity": "sha1-aoaLw4BkXxQf7rBCxvl/zHG1n+Y=", "requires": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1" + "minimist": "1.1.x" + }, + "dependencies": { + "minimist": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.1.3.tgz", + "integrity": "sha1-O+39kaktOQFvz6ocaB6Pqhoe/ag=" + } } }, - "browserify-rsa": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", - "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", + "good-listener": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz", + "integrity": "sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=", "requires": { - "bn.js": "^4.1.0", - "randombytes": "^2.0.1" + "delegate": "^3.1.2" } }, - "browserify-sign": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", - "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", - "requires": { - "bn.js": "^4.1.1", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.2", - "elliptic": "^6.0.0", - "inherits": "^2.0.1", - "parse-asn1": "^5.0.0" + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" + }, + "grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==" + }, + "growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=" + }, + "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==" + }, + "handlebars": { + "version": "4.7.7", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", + "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", + "requires": { + "minimist": "^1.2.5", + "neo-async": "^2.6.0", + "source-map": "^0.6.1", + "uglify-js": "^3.1.4", + "wordwrap": "^1.0.0" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "uglify-js": { + "version": "3.14.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.4.tgz", + "integrity": "sha512-AbiSR44J0GoCeV81+oxcy/jDOElO2Bx3d0MfQCUShq7JRXaM4KtQopZsq2vFv8bCq2yMaGrw1FgygUd03RyRDA==", + "optional": true + } } }, - "browserify-zlib": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", - "integrity": "sha1-uzX4pRn2AOD6a4SFJByXnQFB+y0=", + "har-schema": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz", + "integrity": "sha1-0mMTX0MwfALGAq/I/pWXDAFRNp4=" + }, + "har-validator": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz", + "integrity": "sha1-M0gdDxu/9gDdID11gSpqX7oALio=", "requires": { - "pako": "~0.2.0" + "ajv": "^4.9.1", + "har-schema": "^1.0.5" } }, - "browserslist": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-2.2.0.tgz", - "integrity": "sha512-t09UuOv/4/hrL1y4wZ871+kKE6E2bkdMD6duZtV7FZIHFpsmdQfW63BH3bAjkfpkbP/eFKyenUbDUKigV/VmRw==", + "hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==" + }, + "harmony-reflect": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.0.tgz", + "integrity": "sha512-0kZ1XcoelFOLEjEtvWAZyq/1S55eDSieWEJwme311MNVNcRpvjlr2zA66kBV6WAB8C1XI1p1cXCnFPqd1BxlPg==" + }, + "has": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.1.tgz", + "integrity": "sha1-hGFzP1OLCDfJNh45qauelwTcLyg=", "requires": { - "caniuse-lite": "^1.0.30000701", - "electron-to-chromium": "^1.3.15" + "function-bind": "^1.0.2" } }, - "bser": { + "has-ansi": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.0.0.tgz", - "integrity": "sha1-mseNPtXZFYBP2HrLFYvHlxR6Fxk=", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", "requires": { - "node-int64": "^0.4.0" + "ansi-regex": "^2.0.0" } }, - "buffer": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.0.6.tgz", - "integrity": "sha1-LqZp9+7Atu2gWwj4tf9mGyhXNYg=", + "has-bigints": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz", + "integrity": "sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==" + }, + "has-flag": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", + "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=" + }, + "has-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", + "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=" + }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4" + "has-symbols": "^1.0.2" + }, + "dependencies": { + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + } } }, - "buffer-indexof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.0.tgz", - "integrity": "sha1-9U9kfE9OJSKLqmVqLlfkPV8nCYI=" + "has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" }, - "buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "dependencies": { + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + } + } }, - "builtin-modules": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=" + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } }, - "builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" + "hash-base": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-2.0.2.tgz", + "integrity": "sha1-ZuodhW206KVHDK32/OI65SRO8uE=", + "requires": { + "inherits": "^2.0.1" + } }, - "bytes": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-2.5.0.tgz", - "integrity": "sha1-TJQj6i0lLCcMQbK97+/5u2tiwGo=" + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + }, + "dependencies": { + "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==" + } + } }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "hashish": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/hashish/-/hashish-0.0.4.tgz", + "integrity": "sha1-bWC8b/r3Ebav1g5CbQd5iAFOZVQ=", "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" + "traverse": ">=0.2.4" + } + }, + "hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "requires": { + "function-bind": "^1.1.2" }, "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" } } }, - "cached-path-relative": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cached-path-relative/-/cached-path-relative-1.0.1.tgz", - "integrity": "sha1-0JxLUoAKpMB44t2BqGmqyQ0uVOc=" - }, - "caller": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/caller/-/caller-0.0.1.tgz", - "integrity": "sha1-83odbqEOgp2UchrimpC7T7Uqt2c=", + "hawk": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", + "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", "requires": { - "tape": "~2.3.2" + "boom": "2.x.x", + "cryptiles": "2.x.x", + "hoek": "2.x.x", + "sntp": "1.x.x" } }, - "caller-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz", - "integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=", + "he": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz", + "integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0=" + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", "requires": { - "callsites": "^0.2.0" + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" } }, - "callsites": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz", - "integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=" + "hoek": { + "version": "2.16.3", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", + "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=" }, - "camel-case": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", - "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=", + "hoist-non-react-statics": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz", + "integrity": "sha1-qkSM8JhtVcxAdzsXF0t90GbLfPs=" + }, + "home-or-tmp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz", + "integrity": "sha1-42w/LSyufXRqhX440Y1fMqeILbg=", "requires": { - "no-case": "^2.2.0", - "upper-case": "^1.1.1" + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.1" } }, - "camelcase": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", - "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=" + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" }, - "camelcase-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", - "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", "requires": { - "camelcase": "^2.0.0", - "map-obj": "^1.0.0" + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" } }, - "caniuse-api": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-1.6.1.tgz", - "integrity": "sha1-tTTnxzTE+B7F++isoq0kNUuWLGw=", + "html-comment-regex": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz", + "integrity": "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==" + }, + "html-dom-parser": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/html-dom-parser/-/html-dom-parser-1.1.1.tgz", + "integrity": "sha512-ddijSO0GluZEdlLNmiAjFI+CkAgzUgf8n3vpitQhvlsniPMbCSWtu+QYmioaVmEN0stytm9C38p6SsTDthv0cA==", "requires": { - "browserslist": "^1.3.6", - "caniuse-db": "^1.0.30000529", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" + "domhandler": "4.3.1", + "htmlparser2": "7.2.0" }, "dependencies": { - "browserslist": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", - "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==" + }, + "domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "requires": { - "caniuse-db": "^1.0.30000639", - "electron-to-chromium": "^1.2.7" + "domelementtype": "^2.2.0" } - }, - "lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" } } }, - "caniuse-db": { - "version": "1.0.30000702", - "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000702.tgz", - "integrity": "sha1-pgzTDz70Sue17RLp2bcNS/9jUss=" - }, - "caniuse-lite": { - "version": "1.0.30000702", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000702.tgz", - "integrity": "sha1-vWbkA0VSj+DAAZF9HT9VRU32NPE=" + "html-element-attributes": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/html-element-attributes/-/html-element-attributes-1.3.1.tgz", + "integrity": "sha512-UrRKgp5sQmRnDy4TEwAUsu14XBUlzKB8U3hjIYDjcZ3Hbp86Jtftzxfgrv6E/ii/h78tsaZwAnAE8HwnHr0dPA==" }, - "capture-exit": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-1.2.0.tgz", - "integrity": "sha1-HF/MSJ/QqwDU8ax64QcuMXP7q28=", + "html-encoding-sniffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz", + "integrity": "sha1-eb96eF6klf5mFl5zQVPzY/9UN9o=", "requires": { - "rsvp": "^3.3.3" + "whatwg-encoding": "^1.0.1" } }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + "html-entities": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.2.1.tgz", + "integrity": "sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=" }, - "center-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", - "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "html-minifier": { + "version": "3.5.16", + "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.16.tgz", + "integrity": "sha512-zP5EfLSpiLRp0aAgud4CQXPQZm9kXwWjR/cF0PfdOj+jjWnOaCgeZcll4kYXSvIBPeUMmyaSc7mM4IDtA+kboA==", "requires": { - "align-text": "^0.1.3", - "lazy-cache": "^1.0.3" + "camel-case": "3.0.x", + "clean-css": "4.1.x", + "commander": "2.15.x", + "he": "1.1.x", + "param-case": "2.1.x", + "relateurl": "0.2.x", + "uglify-js": "3.3.x" }, "dependencies": { - "lazy-cache": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", - "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=" + "commander": { + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz", + "integrity": "sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "uglify-js": { + "version": "3.3.28", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.28.tgz", + "integrity": "sha512-68Rc/aA6cswiaQ5SrE979UJcXX+ADA1z33/ZsPd+fbAiVdjZ16OXdbtGO+rJUUBgK6qdf3SOPhQf3K/ybF5Miw==", + "requires": { + "commander": "~2.15.0", + "source-map": "~0.6.1" + } } } }, - "chai": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/chai/-/chai-3.5.0.tgz", - "integrity": "sha1-TQJjewZ/6Vi9v906QOxW/vc3Mkc=", + "html-react-parser": { + "version": "1.4.9", + "resolved": "https://registry.npmjs.org/html-react-parser/-/html-react-parser-1.4.9.tgz", + "integrity": "sha512-V45RVd7GEGtk5bmL9iBV/AkaTE6jj9uhvUrJ/cWlq06DrcMzvz2kqMeZfWEV2pIWkRDzLAqrotCfmFSvdTjpHA==", "requires": { - "assertion-error": "^1.0.1", - "deep-eql": "^0.1.3", - "type-detect": "^1.0.0" + "domhandler": "4.3.1", + "html-dom-parser": "1.1.1", + "react-property": "2.0.0", + "style-to-js": "1.1.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==" + }, + "domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "requires": { + "domelementtype": "^2.2.0" + } + } } }, - "chain-function": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/chain-function/-/chain-function-1.0.0.tgz", - "integrity": "sha1-DUqzfn4Y6tC9xHuSB2QRjOWHM9w=" - }, - "chalk": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.0.1.tgz", - "integrity": "sha512-Mp+FXEI+FrwY/XYV45b2YD3E8i3HwnEAoFcM0qlZzq/RZ9RwWitt2Y/c7cqRAz70U7hfekqx6qNYthuKFO6K0g==", - "requires": { - "ansi-styles": "^3.1.0", - "escape-string-regexp": "^1.0.5", - "supports-color": "^4.0.0" - } + "html-tag-names": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/html-tag-names/-/html-tag-names-1.1.5.tgz", + "integrity": "sha512-aI5tKwNTBzOZApHIynaAwecLBv8TlZTEy/P4Sj2SzzAhBrGuI8yGZ0UIXVPQzOHGS+to2mjb04iy6VWt/8+d8A==" }, - "cheerio": { - "version": "0.22.0", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz", - "integrity": "sha1-qbqoYKP5tZWmuBsahocxIe06Jp4=", + "html-webpack-plugin": { + "version": "2.30.1", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-2.30.1.tgz", + "integrity": "sha1-f5xCG36pHsRg9WUn1430hO51N9U=", "requires": { - "css-select": "~1.2.0", - "dom-serializer": "~0.1.0", - "entities": "~1.1.1", - "htmlparser2": "^3.9.1", - "lodash.assignin": "^4.0.9", - "lodash.bind": "^4.1.4", - "lodash.defaults": "^4.0.1", - "lodash.filter": "^4.4.0", - "lodash.flatten": "^4.2.0", - "lodash.foreach": "^4.3.0", - "lodash.map": "^4.4.0", - "lodash.merge": "^4.4.0", - "lodash.pick": "^4.2.1", - "lodash.reduce": "^4.4.0", - "lodash.reject": "^4.4.0", - "lodash.some": "^4.4.0" - }, - "dependencies": { - "entities": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz", - "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA=" - }, - "htmlparser2": { - "version": "3.9.2", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz", - "integrity": "sha1-G9+HrMoPP55T+k/M6w9LTLsAszg=", + "bluebird": "^3.4.7", + "html-minifier": "^3.2.3", + "loader-utils": "^0.2.16", + "lodash": "^4.17.3", + "pretty-error": "^2.0.2", + "toposort": "^1.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", + "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", "requires": { - "domelementtype": "^1.3.0", - "domhandler": "^2.3.0", - "domutils": "^1.5.1", - "entities": "^1.1.1", - "inherits": "^2.0.1", - "readable-stream": "^2.0.2" + "big.js": "^3.1.3", + "emojis-list": "^2.0.0", + "json5": "^0.5.0", + "object-assign": "^4.0.1" } } } }, - "chokidar": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", - "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", + "html2canvas": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/html2canvas/-/html2canvas-1.4.1.tgz", + "integrity": "sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==", "requires": { - "anymatch": "^1.3.0", - "async-each": "^1.0.0", - "fsevents": "^1.0.0", - "glob-parent": "^2.0.0", - "inherits": "^2.0.1", - "is-binary-path": "^1.0.0", - "is-glob": "^2.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.0.0" + "css-line-break": "^2.1.0", + "text-segmentation": "^1.0.3" } }, - "chromedriver": { - "version": "2.33.2", - "resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-2.33.2.tgz", - "integrity": "sha512-etnQeM8Mqiys50ZB4IiuNqeB1WS2/EKFhVXwkPQ1qjzKMMAJUyrLjaRUcoZoHrbjGscnhBrWkRR+p3zcTGMhDg==", - "requires": { - "del": "^3.0.0", - "extract-zip": "^1.6.5", - "kew": "^0.7.0", - "mkdirp": "^0.5.1", - "request": "^2.83.0" + "htmlescape": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/htmlescape/-/htmlescape-1.1.1.tgz", + "integrity": "sha1-OgPtwiFLyjtmQko+eVk0lQnLA1E=" + }, + "htmlparser2": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-7.2.0.tgz", + "integrity": "sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.2", + "domutils": "^2.8.0", + "entities": "^3.0.1" }, "dependencies": { - "ajv": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.3.0.tgz", - "integrity": "sha1-RBT/dKUIecII7l/cgm4ywwNUnto=", + "dom-serializer": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz", + "integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==", "requires": { - "co": "^4.6.0", - "fast-deep-equal": "^1.0.0", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.3.0" + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "dependencies": { + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + } } }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==" }, - "boom": { + "domhandler": { "version": "4.3.1", - "resolved": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz", - "integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "requires": { - "hoek": "4.x.x" + "domelementtype": "^2.2.0" } }, - "concat-stream": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz", - "integrity": "sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc=", + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "requires": { - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + } + } + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + }, + "http-parser-js": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz", + "integrity": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==" + }, + "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==", + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dev": true, + "requires": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "dependencies": { + "debug": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "dev": true, + "requires": { + "ms": "2.1.2" } }, - "cryptiles": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz", - "integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=", + "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 + } + } + }, + "http-proxy-middleware": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.2.tgz", + "integrity": "sha512-aYk1rTKqLTus23X3L96LGNCGNgWpG4cG0XoZIT1GUPhhulEHX/QalnO6Vbo+WmKWi4AL2IidjuC0wZtbpg0yhQ==", + "requires": { + "http-proxy": "^1.18.1", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "dependencies": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "requires": { - "boom": "5.x.x" + "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" }, "dependencies": { - "boom": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz", - "integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==", + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "requires": { - "hoek": "4.x.x" + "is-extendable": "^0.1.0" } } } }, - "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" - } - }, - "del": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/del/-/del-3.0.0.tgz", - "integrity": "sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU=", + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", "requires": { - "globby": "^6.1.0", - "is-path-cwd": "^1.0.0", - "is-path-in-cwd": "^1.0.0", - "p-map": "^1.1.1", - "pify": "^3.0.0", - "rimraf": "^2.2.8" + "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": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "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==" + } } }, - "extract-zip": { - "version": "1.6.6", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.6.tgz", - "integrity": "sha1-EpDt6NINCHK0Kf0/NRyhKOxe+Fw=", + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "requires": { - "concat-stream": "1.6.0", - "debug": "2.6.9", - "mkdirp": "0.5.0", - "yauzl": "2.4.1" + "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": { - "mkdirp": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz", - "integrity": "sha1-HXMHam35hs2TROFecfzAWkyavxI=", + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "requires": { - "minimist": "0.0.8" + "is-extendable": "^0.1.0" } } } }, - "form-data": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz", - "integrity": "sha1-b7lPvXGIUwbXPRXMSX/kzE7NRL8=", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.5", - "mime-types": "^2.1.12" - } - }, - "globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", "requires": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" }, "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } } } }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" - }, - "har-validator": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz", - "integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=", + "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==", "requires": { - "ajv": "^5.1.0", - "har-schema": "^2.0.0" + "kind-of": "^6.0.0" } }, - "hawk": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz", - "integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==", + "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==", "requires": { - "boom": "4.x.x", - "cryptiles": "3.x.x", - "hoek": "4.x.x", - "sntp": "2.x.x" + "kind-of": "^6.0.0" } }, - "hoek": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz", - "integrity": "sha512-v0XCLxICi9nPfYrS9RL8HbYnXi9obYAeLbSP00BmnZwCK9+Ih9WOjoZ8YoHCoav2csqn4FOz4Orldsy2dmDwmQ==" - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } }, - "mime-db": { - "version": "1.30.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz", - "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=" + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" }, - "mime-types": { - "version": "2.1.17", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz", - "integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=", + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "requires": { - "mime-db": "~1.30.0" + "is-extglob": "^2.1.1" } }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" - }, - "pify": { + "is-number": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } }, - "qs": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", - "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==" + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" }, - "request": { - "version": "2.83.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.83.0.tgz", - "integrity": "sha512-lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw==", + "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==" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.6.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.5", - "extend": "~3.0.1", - "forever-agent": "~0.6.1", - "form-data": "~2.3.1", - "har-validator": "~5.0.3", - "hawk": "~6.0.2", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.17", - "oauth-sign": "~0.8.2", - "performance-now": "^2.1.0", - "qs": "~6.5.1", - "safe-buffer": "^5.1.1", - "stringstream": "~0.0.5", - "tough-cookie": "~2.3.3", - "tunnel-agent": "^0.6.0", - "uuid": "^3.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" } - }, - "sntp": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz", - "integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==", + } + } + }, + "http-signature": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", + "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=", + "requires": { + "assert-plus": "^0.2.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" + }, + "https-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", + "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", + "dev": true, + "requires": { + "agent-base": "6", + "debug": "4" + }, + "dependencies": { + "debug": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "dev": true, "requires": { - "hoek": "4.x.x" + "ms": "2.1.2" } }, - "tough-cookie": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz", - "integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=", + "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 + } + } + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true + }, + "hyphenate-style-name": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", + "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" + }, + "i": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/i/-/i-0.3.7.tgz", + "integrity": "sha512-FYz4wlXgkQwIPqhzC5TdNMLSE5+GS1IIDJZY/1ZiEPCT2S3COUVZeT5OW4BmW4r5LHLQuOosSwsvnroG9GR59Q==" + }, + "ical-generator": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/ical-generator/-/ical-generator-0.2.10.tgz", + "integrity": "sha512-q4TRRGIaG8McNeZRx9sF120vxVuZbPSAMiwn9GgI9+iRrrtUsLZnVUAO7dPP7XSXt+yrrrxP2LbQ+KEnUC6+JQ==" + }, + "iconv-lite": { + "version": "0.4.18", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.18.tgz", + "integrity": "sha512-sr1ZQph3UwHTR0XftSbK85OvBbxe/abLGzEnPENCQwmHf7sck8Oyu4ob3LgBxWWxRoM+QszeUyl7jbqapu2TqA==" + }, + "icss-replace-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", + "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=" + }, + "icss-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-2.1.0.tgz", + "integrity": "sha1-g/Cg7DeL8yRheLbCrZE28TWxyWI=", + "requires": { + "postcss": "^6.0.1" + } + }, + "identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=", + "requires": { + "harmony-reflect": "^1.4.6" + } + }, + "ieee754": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz", + "integrity": "sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q=" + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=" + }, + "ignore": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.3.tgz", + "integrity": "sha1-QyNS5XrM2HqzEQ6C0/6g5HgSFW0=" + }, + "immer": { + "version": "9.0.6", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.6.tgz", + "integrity": "sha512-G95ivKpy+EvVAnAab4fVa4YGYn24J1SpEktnJX7JJ45Bd7xqME/SCplFzYFmTbrkwZbQ4xJK1xMTUYBkN6pWsQ==" + }, + "immutability-helper": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/immutability-helper/-/immutability-helper-3.1.1.tgz", + "integrity": "sha512-Q0QaXjPjwIju/28TsugCHNEASwoCcJSyJV3uO1sOIQGI0jKgm9f41Lvz0DZj3n46cNCyAZTsEYoY4C2bVRUzyQ==" + }, + "import-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", + "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", + "requires": { + "import-from": "^2.1.0" + } + }, + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "dependencies": { + "caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", "requires": { - "punycode": "^1.4.1" + "caller-callsite": "^2.0.0" } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" + } + } + }, + "import-from": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", + "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" } } }, - "ci-info": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.0.0.tgz", - "integrity": "sha1-3FKF8rTiUYIWg2gcOBwziPRuxTQ=" + "import-local": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-1.0.0.tgz", + "integrity": "sha512-vAaZHieK9qjGo58agRBg+bhHX3hoTZU/Oa3GESWLz7t1U62fk63aHuDJJEteXoDeTCcPmUT+z38gkHPZkkmpmQ==", + "requires": { + "pkg-dir": "^2.0.0", + "resolve-cwd": "^2.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + }, + "indent-string": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "requires": { + "repeating": "^2.0.0" + } + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=" + }, + "indexof": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", + "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=" + }, + "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" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" }, - "cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "inline-source-map": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/inline-source-map/-/inline-source-map-0.6.2.tgz", + "integrity": "sha1-+Tk0ccGKedFyT4Y/o4tYY3Ct4qU=", "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "source-map": "~0.5.3" } }, - "circular-json": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.1.tgz", - "integrity": "sha1-vos2rvzN6LPKeqLWr8B6NyQsDS0=" + "inline-style-parser": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.1.1.tgz", + "integrity": "sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==" }, - "clap": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/clap/-/clap-1.2.0.tgz", - "integrity": "sha1-WckP4+E3EEdG/xlGmiemNP9oyFc=", + "inquirer": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-0.12.0.tgz", + "integrity": "sha1-HvK/1jUE3wvHV4X/+MLEHfEvB34=", "requires": { - "chalk": "^1.1.3" + "ansi-escapes": "^1.1.0", + "ansi-regex": "^2.0.0", + "chalk": "^1.0.0", + "cli-cursor": "^1.0.1", + "cli-width": "^2.0.0", + "figures": "^1.3.5", + "lodash": "^4.3.0", + "readline2": "^1.0.1", + "run-async": "^0.1.0", + "rx-lite": "^3.1.2", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.0", + "through": "^2.3.6" }, "dependencies": { "ansi-styles": { @@ -2416,8305 +14288,10300 @@ } } }, - "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==", + "insert-module-globals": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.2.1.tgz", + "integrity": "sha512-ufS5Qq9RZN+Bu899eA9QCAYThY+gGW7oRkmb0vC93Vlyu/CFGcH0OYPEjVkDXA5FEbTt1+VWzdoOD3Ny9N+8tg==", "requires": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" + "JSONStream": "^1.0.3", + "acorn-node": "^1.5.2", + "combine-source-map": "^0.8.0", + "concat-stream": "^1.6.1", + "is-buffer": "^1.1.0", + "path-is-absolute": "^1.0.1", + "process": "~0.11.0", + "through2": "^2.0.0", + "undeclared-identifiers": "^1.1.2", + "xtend": "^4.0.0" }, "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "requires": { - "is-descriptor": "^0.1.0" + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" } } }, - "classnames": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.5.tgz", - "integrity": "sha1-+zgB1FNGdknvNgPH1hoCvRKb3m0=" - }, - "clean-css": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.1.11.tgz", - "integrity": "sha1-Ls3xRaujj1R0DybO/Q/z4D4SXWo=", - "requires": { - "source-map": "0.5.x" - } - }, - "cli": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cli/-/cli-1.0.1.tgz", - "integrity": "sha1-IoF1NPJL+klQw01TLUjsvGIbjBQ=", - "dev": true, + "internal-ip": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-1.2.0.tgz", + "integrity": "sha1-rp+/k7mEh4eF1QqN4bNWlWBYz1w=", "requires": { - "exit": "0.1.2", - "glob": "^7.1.1" + "meow": "^3.3.0" } }, - "cli-color": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/cli-color/-/cli-color-1.1.0.tgz", - "integrity": "sha1-3hiM3Ekp2DtnrqBBEPvtQP2/Z3U=", + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", "requires": { - "ansi-regex": "2", - "d": "^0.1.1", - "es5-ext": "^0.10.8", - "es6-iterator": "2", - "memoizee": "^0.3.9", - "timers-ext": "0.1" + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" }, "dependencies": { - "d": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/d/-/d-0.1.1.tgz", - "integrity": "sha1-2hhMU10Y2O57oqoim5FACfrhEwk=", + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "requires": { - "es5-ext": "~0.10.2" + "function-bind": "^1.1.1" } } } }, - "cli-cursor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz", - "integrity": "sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=", + "interpret": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.0.3.tgz", + "integrity": "sha1-y8NcYu7uc/Gat7EKgBURQBr8D5A=" + }, + "invariant": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz", + "integrity": "sha1-nh9WrArNtr8wMwbzOL47IErmA2A=", "requires": { - "restore-cursor": "^1.0.1" + "loose-envify": "^1.0.0" } }, - "cli-spinners": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-0.1.2.tgz", - "integrity": "sha1-u3ZNiOGF+54eaiofGXcjGPYF4xw=", - "dev": true + "invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" }, - "cli-truncate": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-0.2.1.tgz", - "integrity": "sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ=", - "dev": true, + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + }, + "ip-regex": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-4.3.0.tgz", + "integrity": "sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==" + }, + "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-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=" + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", "requires": { - "slice-ansi": "0.0.4", - "string-width": "^1.0.1" + "kind-of": "^3.0.2" } }, - "cli-width": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.1.0.tgz", - "integrity": "sha1-sjTKIJsp72b8UY2bmNWEewDt8Ao=" + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" }, - "cliff": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/cliff/-/cliff-0.1.10.tgz", - "integrity": "sha1-U74z6p9ZvshWCe4wCsQgdgPlIBM=", + "is-arrow-function": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-arrow-function/-/is-arrow-function-2.0.3.tgz", + "integrity": "sha1-Kb4sLY2UUIUri7r7Y1unuNjofsI=", "requires": { - "colors": "~1.0.3", - "eyes": "~0.1.8", - "winston": "0.8.x" - }, - "dependencies": { - "async": { - "version": "0.2.10", - "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", - "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=" - }, - "colors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", - "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=" - }, - "winston": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/winston/-/winston-0.8.3.tgz", - "integrity": "sha1-ZLar9M0Brcrv1QCTk7HY6L7BnbA=", - "requires": { - "async": "0.2.x", - "colors": "0.6.x", - "cycle": "1.0.x", - "eyes": "0.1.x", - "isstream": "0.1.x", - "pkginfo": "0.3.x", - "stack-trace": "0.0.x" - }, - "dependencies": { - "colors": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz", - "integrity": "sha1-JCP+ZnisDF2uiFLl0OW+CMmXq8w=" - } - } - } + "is-callable": "^1.0.4" } }, - "clipboard": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/clipboard/-/clipboard-1.7.1.tgz", - "integrity": "sha1-Ng1taUbpmnof7zleQrqStem1oWs=", + "is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "requires": { - "good-listener": "^1.2.2", - "select": "^1.1.2", - "tiny-emitter": "^2.0.0" + "has-bigints": "^1.0.1" } }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" + "binary-extensions": "^1.0.0" + } + }, + "is-boolean-object": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.0.0.tgz", + "integrity": "sha1-mPiygDBoQhmpXzdc+9iM40Bd/5M=" + }, + "is-buffer": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", + "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=" + }, + "is-builtin-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", + "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", + "requires": { + "builtin-modules": "^1.0.0" + } + }, + "is-callable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz", + "integrity": "sha1-hut1OSgF3cM69xySoO7fdO52BLI=" + }, + "is-ci": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.0.10.tgz", + "integrity": "sha1-9zkzayYyNlBhqdSCcM1WrjNpMY4=", + "requires": { + "ci-info": "^1.0.0" } }, - "clone": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz", - "integrity": "sha1-Jgt6meux7f4kdTgXX3gyQ8sZ0Uk=" - }, - "clone-deep": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-0.3.0.tgz", - "integrity": "sha1-NIxhrpzb4O3+BT2R/0zFIdeQ7eg=", + "is-core-module": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz", + "integrity": "sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==", "requires": { - "for-own": "^1.0.0", - "is-plain-object": "^2.0.1", - "kind-of": "^3.2.2", - "shallow-clone": "^0.1.2" + "has": "^1.0.3" }, "dependencies": { - "for-own": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", - "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "requires": { - "for-in": "^1.0.1" + "function-bind": "^1.1.1" } } } }, - "clone-stats": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", - "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=" - }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" - }, - "coa": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/coa/-/coa-1.0.4.tgz", - "integrity": "sha1-qe8VNmDWqGqL3sAomlxoTSF0Mv0=", + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", "requires": { - "q": "^1.1.2" + "kind-of": "^3.0.2" } }, - "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=" + "is-date-object": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", + "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=" }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "requires": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" + "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==" + } } }, - "color": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/color/-/color-0.11.4.tgz", - "integrity": "sha1-bXtcdPtl6EHNSHkq0e1eB7kE12Q=", + "is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=" + }, + "is-dotfile": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", + "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=" + }, + "is-equal": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/is-equal/-/is-equal-1.5.5.tgz", + "integrity": "sha1-XoXxlX4FKIMkf+s4aWWju6Ffuz0=", "requires": { - "clone": "^1.0.2", - "color-convert": "^1.3.0", - "color-string": "^0.3.0" + "has": "^1.0.1", + "is-arrow-function": "^2.0.3", + "is-boolean-object": "^1.0.0", + "is-callable": "^1.1.3", + "is-date-object": "^1.0.1", + "is-generator-function": "^1.0.6", + "is-number-object": "^1.0.3", + "is-regex": "^1.0.3", + "is-string": "^1.0.4", + "is-symbol": "^1.0.1", + "object.entries": "^1.0.4" } }, - "color-convert": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.0.tgz", - "integrity": "sha1-Gsz5fdc5uYO/mU1W/sj5WFNkG3o=", + "is-equal-shallow": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", + "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", "requires": { - "color-name": "^1.1.1" + "is-primitive": "^2.0.0" } }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" }, - "color-string": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz", - "integrity": "sha1-J9RvtnAlxcL6JZk7+/V55HhBuZE=", + "is-extglob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", + "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" + }, + "is-finite": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", + "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", "requires": { - "color-name": "^1.0.0" + "number-is-nan": "^1.0.0" } }, - "colormin": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/colormin/-/colormin-1.1.2.tgz", - "integrity": "sha1-6i90IKcrlogaOKrlnsEkpvcpgTM=", + "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": { - "color": "^0.11.0", - "css-color-names": "0.0.4", - "has": "^1.0.1" + "number-is-nan": "^1.0.0" } }, - "colors": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz", - "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=" + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true }, - "combine-source-map": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.7.2.tgz", - "integrity": "sha1-CHAxKFazB6h8xKxIbzqaYq7MwJ4=", + "is-generator-function": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.6.tgz", + "integrity": "sha1-nnFlPNFf/zQcecQVFGChMdMen8Q=" + }, + "is-glob": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", "requires": { - "convert-source-map": "~1.1.0", - "inline-source-map": "~0.6.0", - "lodash.memoize": "~3.0.3", - "source-map": "~0.5.3" - }, - "dependencies": { - "convert-source-map": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz", - "integrity": "sha1-SCnId+n+SbMWHzvzZziI4gRpmGA=" - } + "is-extglob": "^1.0.0" } }, - "combined-stream": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", - "integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=", + "is-mobile": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/is-mobile/-/is-mobile-0.2.2.tgz", + "integrity": "sha1-Di4AbZntLCFVt2HfgPKjYZrirZ8=" + }, + "is-my-ip-valid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz", + "integrity": "sha512-gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ==" + }, + "is-my-json-valid": { + "version": "2.20.6", + "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.20.6.tgz", + "integrity": "sha512-1JQwulVNjx8UqkPE/bqDaxtH4PXCe/2VRh/y3p99heOV87HG4Id5/VfDswd+YiAfHcRTfDlWgISycnHuhZq1aw==", "requires": { - "delayed-stream": "~1.0.0" + "generate-function": "^2.0.0", + "generate-object-property": "^1.1.0", + "is-my-ip-valid": "^1.0.0", + "jsonpointer": "^5.0.0", + "xtend": "^4.0.0" } }, - "commander": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-1.1.1.tgz", - "integrity": "sha1-UNFlGGiuYOzP8KLZ80WVN2vGsEE=", + "is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" + }, + "is-number": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", "requires": { - "keypress": "0.1.x" + "kind-of": "^3.0.2" } }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + "is-number-object": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.3.tgz", + "integrity": "sha1-8mWrian0RQNO9q/xWo8AsA9VF5k=" }, - "commoner": { - "version": "0.10.8", - "resolved": "https://registry.npmjs.org/commoner/-/commoner-0.10.8.tgz", - "integrity": "sha1-NPw2cs0kOT6LtH5wyqApOBH08sU=", + "is-odd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-odd/-/is-odd-2.0.0.tgz", + "integrity": "sha512-OTiixgpZAT1M4NHgS5IguFp/Vz2VI3U7Goh4/HA1adtwyLtSBrxYlcSYkhpAE07s4fKEcjrFxyvtQBND4vFQyQ==", "requires": { - "commander": "^2.5.0", - "detective": "^4.3.1", - "glob": "^5.0.15", - "graceful-fs": "^4.1.2", - "iconv-lite": "^0.4.5", - "mkdirp": "^0.5.0", - "private": "^0.1.6", - "q": "^1.1.2", - "recast": "^0.11.17" + "is-number": "^4.0.0" }, "dependencies": { - "commander": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz", - "integrity": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==" - }, - "glob": { - "version": "5.0.15", - "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", - "integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=", - "requires": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "2 || 3", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" } - } - }, - "component-emitter": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", - "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=" + } }, - "compressible": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.10.tgz", - "integrity": "sha1-/tocf3YXkScyspv4zyYlKiC57s0=", + "is-path-cwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", + "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=" + }, + "is-path-in-cwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz", + "integrity": "sha1-ZHdYK4IU1gI0YJRWcAO+ip6sBNw=", "requires": { - "mime-db": ">= 1.27.0 < 2" + "is-path-inside": "^1.0.0" } }, - "compression": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.0.tgz", - "integrity": "sha1-AwyfGY8WQ6BX13anOOki2kNzAS0=", + "is-path-inside": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.0.tgz", + "integrity": "sha1-/AbloWg/vaE95mev9xe7wQpI838=", "requires": { - "accepts": "~1.3.3", - "bytes": "2.5.0", - "compressible": "~2.0.10", - "debug": "2.6.8", - "on-headers": "~1.0.1", - "safe-buffer": "5.1.1", - "vary": "~1.1.1" + "path-is-inside": "^1.0.1" } }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" }, - "concat-stream": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz", - "integrity": "sha1-cIl4Yk2FavQaWnQd790mHadSwmY=", + "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==", "requires": { - "inherits": "~2.0.1", - "readable-stream": "~2.0.0", - "typedarray": "~0.0.5" + "isobject": "^3.0.1" }, "dependencies": { - "readable-stream": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", - "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "~1.0.0", - "process-nextick-args": "~1.0.6", - "string_decoder": "~0.10.x", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" } } }, - "connect-history-api-fallback": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.3.0.tgz", - "integrity": "sha1-5R0X+PDvDbkKZP20feMFFVbp8Wk=" + "is-posix-bracket": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", + "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=" }, - "console-browserify": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", - "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", - "requires": { - "date-now": "^0.1.4" - } + "is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true }, - "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=" + "is-primitive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", + "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=" }, - "console-polyfill": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/console-polyfill/-/console-polyfill-0.3.0.tgz", - "integrity": "sha512-w+JSDZS7XML43Xnwo2x5O5vxB0ID7T5BdqDtyqT6uiCAX2kZAgcWxNaGqT97tZfSHzfOcvrfsDAodKcJ3UvnXQ==" + "is-promise": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", + "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" }, - "constants-browserify": { + "is-property": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", + "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=" + }, + "is-regex": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", + "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", + "requires": { + "has": "^1.0.1" + } + }, + "is-resolvable": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.0.0.tgz", + "integrity": "sha1-jfV8YeouPFAUCNEA+wE8+NbgzGI=", + "requires": { + "tryit": "^1.0.1" + } }, - "contains-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz", - "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=" + "is-shared-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz", + "integrity": "sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==" }, - "content-disposition": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", - "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=" + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" }, - "content-type": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.2.tgz", - "integrity": "sha1-t9ETrueo3Se9IRM8TcJSnfFyHu0=" + "is-string": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.4.tgz", + "integrity": "sha1-zDqbaYV9Yh6WNyWiTK7shzuCbmQ=" }, - "content-type-parser": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/content-type-parser/-/content-type-parser-1.0.1.tgz", - "integrity": "sha1-w+VpiMU8ZRJ/tG1AMqOpACRv3JQ=" + "is-subset": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz", + "integrity": "sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=" }, - "convert-source-map": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.0.tgz", - "integrity": "sha1-ms1whRxtXf3ZPZKC5e35SgP/RrU=" + "is-svg": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz", + "integrity": "sha1-z2EJDaDZ77yrhyLeum8DIgjbsOk=", + "requires": { + "html-comment-regex": "^1.1.0" + } }, - "cookie": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", - "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=" + "is-symbol": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz", + "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI=" }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" }, - "cookiejar": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz", - "integrity": "sha512-Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA==" + "is-url": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz", + "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==" }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" }, - "core-js": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.4.1.tgz", - "integrity": "sha1-TekR5mew6ukSTjQlS1OupvxhjT4=" + "is-weakref": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.1.tgz", + "integrity": "sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==", + "requires": { + "call-bind": "^1.0.0" + } }, - "core-util-is": { + "is-windows": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" }, - "cosmiconfig": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-2.1.3.tgz", - "integrity": "sha1-lSdx6w3dwcs/ovb75RpSLpOz7go=", + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" + }, + "is2": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/is2/-/is2-2.0.7.tgz", + "integrity": "sha512-4vBQoURAXC6hnLFxD4VW7uc04XiwTTl/8ydYJxKvPwkWQrSjInkuM5VZVg6BGr1/natq69zDuvO9lGpLClJqvA==", "requires": { - "is-directory": "^0.3.1", - "js-yaml": "^3.4.3", - "minimist": "^1.2.0", - "object-assign": "^4.1.0", - "os-homedir": "^1.0.1", - "parse-json": "^2.2.0", - "require-from-string": "^1.1.0" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - } + "deep-is": "^0.1.3", + "ip-regex": "^4.1.0", + "is-url": "^1.2.4" } }, - "crc": { - "version": "3.4.4", - "resolved": "https://registry.npmjs.org/crc/-/crc-3.4.4.tgz", - "integrity": "sha1-naHpgOO9RPxck79as9ozeNheRms=" + "is_js": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/is_js/-/is_js-0.9.0.tgz", + "integrity": "sha1-CrlFQFArp6+iTIVqqYVWFmnpxS0=" }, - "create-ecdh": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.0.tgz", - "integrity": "sha1-iIxyNZbN92EvZJgjPuvXo1MBc30=", + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + }, + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", "requires": { - "bn.js": "^4.1.0", - "elliptic": "^6.0.0" + "isarray": "1.0.0" } }, - "create-hash": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.1.3.tgz", - "integrity": "sha1-YGBCrIuSYnUPSDyt2rD1gZFy2P0=", + "isomorphic-fetch": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz", + "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=", + "requires": { + "node-fetch": "^1.0.1", + "whatwg-fetch": ">=0.10.0" + } + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "istanbul-api": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/istanbul-api/-/istanbul-api-1.1.11.tgz", + "integrity": "sha1-/MC0YeKzvaceMFFVE4I4doJX2d4=", "requires": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "sha.js": "^2.4.0" + "async": "^2.1.4", + "fileset": "^2.0.2", + "istanbul-lib-coverage": "^1.1.1", + "istanbul-lib-hook": "^1.0.7", + "istanbul-lib-instrument": "^1.7.4", + "istanbul-lib-report": "^1.1.1", + "istanbul-lib-source-maps": "^1.2.1", + "istanbul-reports": "^1.1.1", + "js-yaml": "^3.7.0", + "mkdirp": "^0.5.1", + "once": "^1.4.0" } }, - "create-hmac": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.6.tgz", - "integrity": "sha1-rLniIaThe9sHbpBlfEK5PjcmzwY=", + "istanbul-lib-coverage": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz", + "integrity": "sha512-0+1vDkmzxqJIn5rcoEqapSB4DmPxE31EtI2dF2aCkV5esN9EWHxZ0dwgDClivMXJqE7zaYQxq30hj5L0nlTN5Q==" + }, + "istanbul-lib-hook": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz", + "integrity": "sha512-3U2HB9y1ZV9UmFlE12Fx+nPtFqIymzrqCksrXujm3NVbAZIJg/RfYgO1XiIa0mbmxTjWpVEVlkIZJ25xVIAfkQ==", "requires": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" + "append-transform": "^0.4.0" } }, - "create-react-class": { - "version": "15.6.0", - "resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.6.0.tgz", - "integrity": "sha1-q0SEl8JlZuHilBPogyB9V8/nvtQ=", + "istanbul-lib-instrument": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.4.tgz", + "integrity": "sha1-6f2SDkdn89Ge3HZeLWs/XMvQ7qg=", "requires": { - "fbjs": "^0.8.9", - "loose-envify": "^1.3.1", - "object-assign": "^4.1.1" + "babel-generator": "^6.18.0", + "babel-template": "^6.16.0", + "babel-traverse": "^6.18.0", + "babel-types": "^6.18.0", + "babylon": "^6.17.4", + "istanbul-lib-coverage": "^1.1.1", + "semver": "^5.3.0" + }, + "dependencies": { + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + } } }, - "cross-env": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-5.2.0.tgz", - "integrity": "sha512-jtdNFfFW1hB7sMhr/H6rW1Z45LFqyI431m3qU6bFXcQ3Eh7LtBuG3h74o7ohHZ3crrRkkqHlo4jYHFPcjroANg==", + "istanbul-lib-report": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz", + "integrity": "sha512-tvF+YmCmH4thnez6JFX06ujIA19WPa9YUiwjc1uALF2cv5dmE3It8b5I8Ob7FHJ70H9Y5yF+TDkVa/mcADuw1Q==", "requires": { - "cross-spawn": "^6.0.5", - "is-windows": "^1.0.0" + "istanbul-lib-coverage": "^1.1.1", + "mkdirp": "^0.5.1", + "path-parse": "^1.0.5", + "supports-color": "^3.1.2" }, "dependencies": { - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "has-flag": "^1.0.0" } - }, - "semver": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", - "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==" } } }, - "cross-spawn": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz", - "integrity": "sha1-ElYDfsufDF9549bvE14wdwGEuYI=", + "istanbul-lib-source-maps": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz", + "integrity": "sha512-mukVvSXCn9JQvdJl8wP/iPhqig0MRtuWuD4ZNKo6vB2Ik//AmhAKe3QnPN02dmkRe3lTudFk3rzoHhwU4hb94w==", "requires": { - "lru-cache": "^4.0.1", - "which": "^1.2.9" + "debug": "^2.6.3", + "istanbul-lib-coverage": "^1.1.1", + "mkdirp": "^0.5.1", + "rimraf": "^2.6.1", + "source-map": "^0.5.3" } }, - "cryptiles": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", - "integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=", + "istanbul-reports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-1.1.1.tgz", + "integrity": "sha512-P8G873A0kW24XRlxHVGhMJBhQ8gWAec+dae7ZxOBzxT4w+a9ATSPvRVK3LB1RAJ9S8bg2tOyWHAGW40Zd2dKfw==", "requires": { - "boom": "2.x.x" + "handlebars": "^4.0.3" } }, - "crypto-browserify": { - "version": "3.11.1", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.11.1.tgz", - "integrity": "sha512-Na7ZlwCOqoaW5RwUK1WpXws2kv8mNhWdTlzob0UXulk6G9BDbyiJaGTYBIX61Ozn9l1EPPJpICZb4DaOpT9NlQ==", + "jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", + "dev": true, "requires": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0" + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + }, + "dependencies": { + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "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" + } + }, + "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" + } + }, + "ci-info": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz", + "integrity": "sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==", + "dev": true + }, + "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 + }, + "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": { + "locate-path": "^5.0.0", + "path-exists": "^4.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 + }, + "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 + }, + "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" + } + }, + "jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "dev": true, + "requires": { + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + } + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "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": { + "p-locate": "^4.1.0" + } + }, + "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": { + "p-try": "^2.0.0" + } + }, + "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": { + "p-limit": "^2.2.0" + } + }, + "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 + }, + "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" + } + }, + "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" + } + }, + "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 + }, + "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": { + "has-flag": "^4.0.0" + } + } } }, - "css": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/css/-/css-2.2.3.tgz", - "integrity": "sha512-0W171WccAjQGGTKLhw4m2nnl0zPHUlTO/I8td4XzJgIB8Hg3ZZx71qT4G4eX8OVsSiaAKiUMy73E3nsbPlg2DQ==", + "jest-changed-files": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "dev": true, "requires": { - "inherits": "^2.0.1", - "source-map": "^0.1.38", - "source-map-resolve": "^0.5.1", - "urix": "^0.1.0" + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" }, "dependencies": { - "source-map": { - "version": "0.1.43", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", - "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=", + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "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" + } + }, + "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" + } + }, + "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 + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, "requires": { - "amdefine": ">=0.0.4" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "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 + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "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 + }, + "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 + }, + "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": { + "has-flag": "^4.0.0" } } } }, - "css-color-names": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", - "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=" - }, - "css-loader": { - "version": "0.28.4", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-0.28.4.tgz", - "integrity": "sha1-bPNXkZLONV6LONX0Ldeh8uyJjQ8=", + "jest-circus": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", + "dev": true, "requires": { - "babel-code-frame": "^6.11.0", - "css-selector-tokenizer": "^0.7.0", - "cssnano": ">=2.6.1 <4", - "icss-utils": "^2.1.0", - "loader-utils": "^1.0.2", - "lodash.camelcase": "^4.3.0", - "object-assign": "^4.0.1", - "postcss": "^5.0.6", - "postcss-modules-extract-imports": "^1.0.0", - "postcss-modules-local-by-default": "^1.0.1", - "postcss-modules-scope": "^1.0.0", - "postcss-modules-values": "^1.1.0", - "postcss-value-parser": "^3.3.0", - "source-list-map": "^0.1.7" + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" }, "dependencies": { + "@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dev": true, + "requires": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + } + }, + "@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + } + }, + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "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": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + "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" + } + }, + "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" + } }, "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "ci-info": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz", + "integrity": "sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==", + "dev": true + }, + "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 + }, + "expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.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" + } + }, + "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 + }, + "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 + }, + "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 + }, + "jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "dev": true + }, + "jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + } + }, + "jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*" + } + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "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" + } + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" }, "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true } } }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": 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": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "has-flag": "^4.0.0" } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "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": { - "has-flag": "^1.0.0" + "is-number": "^7.0.0" } } } }, - "css-select": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", - "integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=", - "requires": { - "boolbase": "~1.0.0", - "css-what": "2.1", - "domutils": "1.5.1", - "nth-check": "~1.0.1" - } - }, - "css-selector-tokenizer": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz", - "integrity": "sha1-5piEdK6MlTR3v15+/s/OzNnPTIY=", + "jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "dev": true, "requires": { - "cssesc": "^0.1.0", - "fastparse": "^1.1.1", - "regexpu-core": "^1.0.0" + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" }, "dependencies": { - "regexpu-core": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-1.0.0.tgz", - "integrity": "sha1-hqdj9Y7k18L2sQLkdkBQ3n7ZDGs=", + "@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dev": true, "requires": { - "regenerate": "^1.2.1", - "regjsgen": "^0.2.0", - "regjsparser": "^0.1.4" + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" } - } - } - }, - "css-what": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.0.tgz", - "integrity": "sha1-lGfQMsOM+u+58teVASUwYvh/ob0=" - }, - "cssesc": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-0.1.0.tgz", - "integrity": "sha1-yBSQPkViM3GgR3tAEJqq++6t27Q=" - }, - "cssnano": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz", - "integrity": "sha1-Tzj2zqK5sX+gFJDyPx3GjqZcHDg=", - "requires": { - "autoprefixer": "^6.3.1", - "decamelize": "^1.1.2", - "defined": "^1.0.0", - "has": "^1.0.1", - "object-assign": "^4.0.1", - "postcss": "^5.0.14", - "postcss-calc": "^5.2.0", - "postcss-colormin": "^2.1.8", - "postcss-convert-values": "^2.3.4", - "postcss-discard-comments": "^2.0.4", - "postcss-discard-duplicates": "^2.0.1", - "postcss-discard-empty": "^2.0.1", - "postcss-discard-overridden": "^0.1.1", - "postcss-discard-unused": "^2.2.1", - "postcss-filter-plugins": "^2.0.0", - "postcss-merge-idents": "^2.1.5", - "postcss-merge-longhand": "^2.0.1", - "postcss-merge-rules": "^2.0.3", - "postcss-minify-font-values": "^1.0.2", - "postcss-minify-gradients": "^1.0.1", - "postcss-minify-params": "^1.0.4", - "postcss-minify-selectors": "^2.0.4", - "postcss-normalize-charset": "^1.1.0", - "postcss-normalize-url": "^3.0.7", - "postcss-ordered-values": "^2.1.0", - "postcss-reduce-idents": "^2.2.2", - "postcss-reduce-initial": "^1.0.0", - "postcss-reduce-transforms": "^1.0.3", - "postcss-svgo": "^2.1.1", - "postcss-unique-selectors": "^2.0.2", - "postcss-value-parser": "^3.2.3", - "postcss-zindex": "^2.0.1" - }, - "dependencies": { + }, + "@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + } + }, + "@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + } + }, + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true + }, + "acorn": { + "version": "8.8.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", + "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", + "dev": true + }, + "acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dev": true, + "requires": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "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": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + "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" + } }, - "autoprefixer": { - "version": "6.7.7", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz", - "integrity": "sha1-Hb0cg1ZY41zj+ZhAmdsAWFx4IBQ=", + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, "requires": { - "browserslist": "^1.7.6", - "caniuse-db": "^1.0.30000634", - "normalize-range": "^0.1.2", - "num2fraction": "^1.2.2", - "postcss": "^5.2.16", - "postcss-value-parser": "^3.2.3" + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" } }, - "browserslist": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", - "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", + "babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "dev": true, "requires": { - "caniuse-db": "^1.0.30000639", - "electron-to-chromium": "^1.2.7" + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } + }, + "babel-plugin-jest-hoist": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "dev": true, + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-preset-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "dev": true, + "requires": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + } + }, + "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" } }, "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + "ci-info": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz", + "integrity": "sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==", + "dev": true }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", + "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": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "color-name": "~1.1.4" } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "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 + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, "requires": { - "has-flag": "^1.0.0" + "delayed-stream": "~1.0.0" } - } - } - }, - "csso": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz", - "integrity": "sha1-3dUsWHAz9J6Utx/FVWnyUuj/X4U=", - "requires": { - "clap": "^1.0.9", - "source-map": "^0.5.3" - } - }, - "cssom": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.2.tgz", - "integrity": "sha1-uANhcMefB6kP8vFuIihAJ6JDhIs=" - }, - "cssstyle": { - "version": "0.2.37", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-0.2.37.tgz", - "integrity": "sha1-VBCXI0yyUTyDzu06zdwn/yeYfVQ=", - "requires": { - "cssom": "0.3.x" - } - }, - "currently-unhandled": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", - "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", - "requires": { - "array-find-index": "^1.0.1" - } - }, - "cycle": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz", - "integrity": "sha1-IegLK+hYD5i0aPN5QwZisEbDStI=" - }, - "d": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.0.tgz", - "integrity": "sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=", - "requires": { - "es5-ext": "^0.10.9" - } - }, - "damerau-levenshtein": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz", - "integrity": "sha1-AxkcQyy27qFou3fzpV/9zLiXhRQ=" - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "requires": { - "assert-plus": "^1.0.0" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - } - } - }, - "date-fns": { - "version": "1.28.5", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.28.5.tgz", - "integrity": "sha1-JXz8RdMi30XvVlhmWWfuhBzXP68=", - "dev": true - }, - "date-now": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", - "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=" - }, - "debug": { - "version": "2.6.8", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz", - "integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=", - "requires": { - "ms": "2.0.0" - } - }, - "decache": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/decache/-/decache-3.1.0.tgz", - "integrity": "sha1-T1A2+9ZYH8yXI3rDlUokS5U2wto=", - "optional": true, - "requires": { - "find": "^0.2.4" - } - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" - }, - "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" - }, - "deep-diff": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/deep-diff/-/deep-diff-0.3.8.tgz", - "integrity": "sha1-wB3mPvsO7JeYgB1Ax+Da4ltYLIQ=" - }, - "deep-eql": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-0.1.3.tgz", - "integrity": "sha1-71WKyrjeJSBs1xOQbXTlaTDrafI=", - "requires": { - "type-detect": "0.1.1" - }, - "dependencies": { - "type-detect": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-0.1.1.tgz", - "integrity": "sha1-C6XsKohWQORw6k6FBZcZANrFiCI=" - } - } - }, - "deep-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", - "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=" - }, - "deep-extend": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz", - "integrity": "sha1-SLaZwn4zS/ifEIkr5DL25MfTSn8=" - }, - "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=" - }, - "default-require-extensions": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-1.0.0.tgz", - "integrity": "sha1-836hXT4T/9m0N9M+GnW1+5eHTLg=", - "requires": { - "strip-bom": "^2.0.0" - } - }, - "define-properties": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz", - "integrity": "sha1-g6c/L+pWmJj7c3GTyPhzyvbUXJQ=", - "requires": { - "foreach": "^2.0.5", - "object-keys": "^1.0.8" - } - }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "dependencies": { - "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==", + }, + "cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "dev": true + }, + "cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, "requires": { - "kind-of": "^6.0.0" + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": 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==", + "escodegen": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "dev": true, "requires": { - "kind-of": "^6.0.0" + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" } }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "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 + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": 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": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" + "to-regex-range": "^5.0.1" } }, - "isobject": { + "form-data": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" - } - } - }, - "defined": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", - "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" - }, - "del": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", - "integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=", - "requires": { - "globby": "^5.0.0", - "is-path-cwd": "^1.0.0", - "is-path-in-cwd": "^1.0.0", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "rimraf": "^2.2.8" - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" - }, - "delegate": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/delegate/-/delegate-3.1.3.tgz", - "integrity": "sha1-moJRp3fXAl+qVXN7w7BxdCEnqf0=" - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" - }, - "depd": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.0.tgz", - "integrity": "sha1-4b2Cxqq2ztlluXuIsX7T5SjKGMM=" - }, - "deps-sort": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/deps-sort/-/deps-sort-2.0.0.tgz", - "integrity": "sha1-CRckkC6EZYJg65EHSMzNGvbiH7U=", - "requires": { - "JSONStream": "^1.0.3", - "shasum": "^1.0.0", - "subarg": "^1.0.0", - "through2": "^2.0.0" - } - }, - "des.js": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", - "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", - "requires": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" - }, - "detect-indent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz", - "integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=", - "requires": { - "repeating": "^2.0.0" - } - }, - "detect-node": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.3.tgz", - "integrity": "sha1-ogM8CcyOFY03dI+951B4Mr1s4Sc=" - }, - "detective": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/detective/-/detective-4.5.0.tgz", - "integrity": "sha1-blqMaybmx6JUsca210kNmOyR7dE=", - "requires": { - "acorn": "^4.0.3", - "defined": "^1.0.0" - } - }, - "diff": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-3.3.0.tgz", - "integrity": "sha512-w0XZubFWn0Adlsapj9EAWX0FqWdO4tz8kc3RiYdWLh4k/V8PTb6i0SMgXt0vRM3zyKnT8tKO7mUlieRQHIjMNg==" - }, - "diffie-hellman": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.2.tgz", - "integrity": "sha1-tYNXOScM/ias9jIJn97SoH8gnl4=", - "requires": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - } - }, - "director": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/director/-/director-1.2.7.tgz", - "integrity": "sha1-v9N0EHX9f7GlsuE2WMX0vsd3NvM=" - }, - "discontinuous-range": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz", - "integrity": "sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=" - }, - "disposables": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/disposables/-/disposables-1.0.1.tgz", - "integrity": "sha1-BkcnoltU9QK9griaot+4358bOeM=" - }, - "dnd-core": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/dnd-core/-/dnd-core-2.4.0.tgz", - "integrity": "sha1-xKW8Kup1Fk+KKV12nV9VGBDn1BE=", - "requires": { - "asap": "^2.0.3", - "invariant": "^2.0.0", - "lodash": "^4.2.0", - "redux": "^3.2.0" - } - }, - "dns-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" - }, - "dns-packet": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.1.1.tgz", - "integrity": "sha1-I2nUUDivBF84mOb6VoYq7T9AKWw=", - "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": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", - "requires": { - "buffer-indexof": "^1.0.0" - } - }, - "dnscache": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/dnscache/-/dnscache-1.0.1.tgz", - "integrity": "sha1-Qssrm/tej736OVqsdOEn/AUHTTE=", - "requires": { - "asap": "~2.0.3", - "lodash.clone": "~4.3.2" - } - }, - "doctrine": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.0.0.tgz", - "integrity": "sha1-xz2NKQnSIpHhoAejlYBNqLZl/mM=", - "requires": { - "esutils": "^2.0.2", - "isarray": "^1.0.0" - } - }, - "dom-converter": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.1.4.tgz", - "integrity": "sha1-pF71cnuJDJv/5tfIduexnLDhfzs=", - "requires": { - "utila": "~0.3" - }, - "dependencies": { - "utila": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/utila/-/utila-0.3.3.tgz", - "integrity": "sha1-1+jn1+MJEHCSsF+NloiCTWM6QiY=" - } - } - }, - "dom-helpers": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.2.1.tgz", - "integrity": "sha1-MgPgf+0he9H0JLAZc1WC/Deyglo=" - }, - "dom-serializer": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz", - "integrity": "sha1-BzxpdUbOB4DOI75KKOKT5AvDDII=", - "requires": { - "domelementtype": "~1.1.1", - "entities": "~1.1.1" - }, - "dependencies": { - "domelementtype": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz", - "integrity": "sha1-vSh3PiZCiBrsUVRJJCmcXNgiGFs=" + "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 + }, + "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 + }, + "html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dev": true, + "requires": { + "whatwg-encoding": "^1.0.5" + } + }, + "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" + } + }, + "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 + }, + "istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + } + }, + "jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "dev": true, + "requires": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + } + }, + "jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "dev": true + }, + "jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + } + }, + "jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + } }, - "entities": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz", - "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA=" - } - } - }, - "dom-walk": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz", - "integrity": "sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg=" - }, - "domain-browser": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.1.7.tgz", - "integrity": "sha1-hnqksJP6oF8d4IwG9NeyH9+GmLw=" - }, - "domelementtype": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz", - "integrity": "sha1-sXrtguirWeUt2cGbF1bg/BhyBMI=" - }, - "domhandler": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz", - "integrity": "sha1-LeWaCCLVAn+r/28DLCsloqir5zg=", - "requires": { - "domelementtype": "1" - } - }, - "domkit": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/domkit/-/domkit-0.0.1.tgz", - "integrity": "sha1-iDmdWGeU78EVT+xsIs/lDxm9Tbs=" - }, - "domutils": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=", - "requires": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "duplexer2": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", - "integrity": "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME=", - "requires": { - "readable-stream": "^2.0.2" - } - }, - "ecc-jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz", - "integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=", - "optional": true, - "requires": { - "jsbn": "~0.1.0" - } - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" - }, - "elasticlunr": { - "version": "0.9.5", - "resolved": "https://registry.npmjs.org/elasticlunr/-/elasticlunr-0.9.5.tgz", - "integrity": "sha1-ZVQbswnd3Qz5Ty0ciGGyvmUbsNU=" - }, - "electron-to-chromium": { - "version": "1.3.16", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.16.tgz", - "integrity": "sha1-0OAmc1dUdwkBrjAaIWZMukXZL30=" - }, - "elegant-spinner": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/elegant-spinner/-/elegant-spinner-1.0.1.tgz", - "integrity": "sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4=", - "dev": true - }, - "elliptic": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.0.tgz", - "integrity": "sha1-ysmvh2LIWDYYcAPI3+GT5eLq5d8=", - "requires": { - "bn.js": "^4.4.0", - "brorand": "^1.0.1", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.0" - } - }, - "emoji-regex": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.5.0.tgz", - "integrity": "sha512-Vja85njef5T0kGfRUFkyl0etU9+49L1LNKR5oE41wAGRtJR64/a+JX3I8YCIur/uXj4Kt4cNe5i8bfd58ilgKQ==" - }, - "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" - }, - "encodeurl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.1.tgz", - "integrity": "sha1-eePVhlU0aQn+bw9Fpd5oEDspTSA=" - }, - "encoding": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz", - "integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=", - "requires": { - "iconv-lite": "~0.4.13" - } - }, - "enhanced-resolve": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.3.0.tgz", - "integrity": "sha512-2qbxE7ek3YxPJ1ML6V+satHkzHpJQKWkRHmRx6mfAoW59yP8YH8BFplbegSP+u2hBd6B6KCOpvJQ3dZAP+hkpg==", - "requires": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.4.0", - "object-assign": "^4.0.1", - "tapable": "^0.2.5" - } - }, - "entities": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz", - "integrity": "sha1-sph6o4ITR/zeZCsk/fyeT7cSvyY=", - "dev": true - }, - "envify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/envify/-/envify-0.2.0.tgz", - "integrity": "sha1-ZFCRz68Seff4NkqJOwz4HGgOy+A=", - "dev": true, - "requires": { - "falafel": "~0.2.1", - "through": "~2.3.4" - } - }, - "enzyme": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/enzyme/-/enzyme-3.3.0.tgz", - "integrity": "sha512-l8csyPyLmtxskTz6pX9W8eDOyH1ckEtDttXk/vlFWCjv00SkjTjtoUrogqp4yEvMyneU9dUJoOLnqFoiHb8IHA==", - "requires": { - "cheerio": "^1.0.0-rc.2", - "function.prototype.name": "^1.0.3", - "has": "^1.0.1", - "is-boolean-object": "^1.0.0", - "is-callable": "^1.1.3", - "is-number-object": "^1.0.3", - "is-string": "^1.0.4", - "is-subset": "^0.1.1", - "lodash": "^4.17.4", - "object-inspect": "^1.5.0", - "object-is": "^1.0.1", - "object.assign": "^4.1.0", - "object.entries": "^1.0.4", - "object.values": "^1.0.4", - "raf": "^3.4.0", - "rst-selector-parser": "^2.2.3" - }, - "dependencies": { - "cheerio": { - "version": "1.0.0-rc.2", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.2.tgz", - "integrity": "sha1-S59TqBsn5NXawxwP/Qz6A8xoMNs=", + "jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dev": true, "requires": { - "css-select": "~1.2.0", - "dom-serializer": "~0.1.0", - "entities": "~1.1.1", - "htmlparser2": "^3.9.1", - "lodash": "^4.15.0", - "parse5": "^3.0.1" + "@jest/types": "^27.5.1", + "@types/node": "*" + } + }, + "jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true + }, + "jest-runner": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "dev": true, + "requires": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" + } + }, + "jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + } + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "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": { + "has-flag": "^4.0.0" + } + } + } + }, + "jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dev": true, + "requires": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + } + }, + "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" + }, + "dependencies": { + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "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 + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true + }, + "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 + }, + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "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 + }, + "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" + } + }, + "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": { + "has-flag": "^4.0.0" + } + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "dependencies": { + "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" + }, + "dependencies": { + "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" + } + } + } + } } }, - "entities": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz", - "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA=" - }, - "htmlparser2": { - "version": "3.9.2", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz", - "integrity": "sha1-G9+HrMoPP55T+k/M6w9LTLsAszg=", + "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": { - "domelementtype": "^1.3.0", - "domhandler": "^2.3.0", - "domutils": "^1.5.1", - "entities": "^1.1.1", - "inherits": "^2.0.1", - "readable-stream": "^2.0.2" + "is-number": "^7.0.0" } }, - "object-inspect": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.6.0.tgz", - "integrity": "sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ==" - }, - "parse5": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz", - "integrity": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==", + "tough-cookie": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.2.tgz", + "integrity": "sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==", + "dev": true, "requires": { - "@types/node": "*" + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" } }, - "performance-now": { + "tr46": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" - }, - "raf": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.0.tgz", - "integrity": "sha512-pDP/NMRAXoTfrhCfyfSEwJAKLaxBU9eApMeBPB1TkDouZmvPerIClV8lTAd+uF8ZiTaVl69e1FCxQrAd/VTjGw==", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dev": true, "requires": { - "performance-now": "^2.1.0" + "punycode": "^2.1.1" } - } - } - }, - "enzyme-adapter-react-16": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.1.1.tgz", - "integrity": "sha512-kC8pAtU2Jk3OJ0EG8Y2813dg9Ol0TXi7UNxHzHiWs30Jo/hj7alc//G1YpKUsPP1oKl9X+Lkx+WlGJpPYA+nvw==", - "requires": { - "enzyme-adapter-utils": "^1.3.0", - "lodash": "^4.17.4", - "object.assign": "^4.0.4", - "object.values": "^1.0.4", - "prop-types": "^15.6.0", - "react-reconciler": "^0.7.0", - "react-test-renderer": "^16.0.0-0" - }, - "dependencies": { - "core-js": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", - "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=" }, - "fbjs": { - "version": "0.8.17", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.17.tgz", - "integrity": "sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90=", + "universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true + }, + "webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "dev": true + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, "requires": { - "core-js": "^1.0.0", - "isomorphic-fetch": "^2.1.1", - "loose-envify": "^1.0.0", - "object-assign": "^4.1.0", - "promise": "^7.1.1", - "setimmediate": "^1.0.5", - "ua-parser-js": "^0.7.18" + "iconv-lite": "0.4.24" } }, - "prop-types": { - "version": "15.6.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.1.tgz", - "integrity": "sha512-4ec7bY1Y66LymSUOH/zARVYObB23AT2h8cf6e/O6ZALB/N0sqZFEx7rq6EYPX2MkOdKORuooI/H5k9TlR4q7kQ==", + "whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dev": true, "requires": { - "fbjs": "^0.8.16", - "loose-envify": "^1.3.1", - "object-assign": "^4.1.1" + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" } }, - "react-test-renderer": { - "version": "16.4.1", - "resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-16.4.1.tgz", - "integrity": "sha512-wyyiPxRZOTpKnNIgUBOB6xPLTpIzwcQMIURhZvzUqZzezvHjaGNsDPBhMac5fIY3Jf5NuKxoGvV64zDSOECPPQ==", + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, "requires": { - "fbjs": "^0.8.16", - "object-assign": "^4.1.1", - "prop-types": "^15.6.0", - "react-is": "^16.4.1" + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" } }, - "ua-parser-js": { - "version": "0.7.18", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.18.tgz", - "integrity": "sha512-LtzwHlVHwFGTptfNSgezHp7WUlwiqb0gA9AALRbKaERfxwJoiX0A73QbTToxteIAuIaFshhgIZfqK8s7clqgnA==" + "ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "dev": true + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true } } }, - "enzyme-adapter-utils": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/enzyme-adapter-utils/-/enzyme-adapter-utils-1.3.0.tgz", - "integrity": "sha512-vVXSt6uDv230DIv+ebCG66T1Pm36Kv+m74L1TrF4kaE7e1V7Q/LcxO0QRkajk5cA6R3uu9wJf5h13wOTezTbjA==", - "requires": { - "lodash": "^4.17.4", - "object.assign": "^4.0.4", - "prop-types": "^15.6.0" + "jest-diff": { + "version": "27.4.2", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.4.2.tgz", + "integrity": "sha512-ujc9ToyUZDh9KcqvQDkk/gkbf6zSaeEg9AiBxtttXW59H/AcqEYp1ciXAtJp+jXWva5nAf/ePtSsgWwE5mqp4Q==", + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^27.4.0", + "jest-get-type": "^27.4.0", + "pretty-format": "^27.4.2" }, "dependencies": { - "core-js": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", - "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=" + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } }, - "fbjs": { - "version": "0.8.17", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.17.tgz", - "integrity": "sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90=", + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "requires": { - "core-js": "^1.0.0", - "isomorphic-fetch": "^2.1.1", - "loose-envify": "^1.0.0", - "object-assign": "^4.1.0", - "promise": "^7.1.1", - "setimmediate": "^1.0.5", - "ua-parser-js": "^0.7.18" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } }, - "prop-types": { - "version": "15.6.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.1.tgz", - "integrity": "sha512-4ec7bY1Y66LymSUOH/zARVYObB23AT2h8cf6e/O6ZALB/N0sqZFEx7rq6EYPX2MkOdKORuooI/H5k9TlR4q7kQ==", + "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==", "requires": { - "fbjs": "^0.8.16", - "loose-envify": "^1.3.1", - "object-assign": "^4.1.1" + "color-name": "~1.1.4" } }, - "ua-parser-js": { - "version": "0.7.18", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.18.tgz", - "integrity": "sha512-LtzwHlVHwFGTptfNSgezHp7WUlwiqb0gA9AALRbKaERfxwJoiX0A73QbTToxteIAuIaFshhgIZfqK8s7clqgnA==" + "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==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "jest-get-type": { + "version": "27.4.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.4.0.tgz", + "integrity": "sha512-tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ==" + }, + "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==", + "requires": { + "has-flag": "^4.0.0" + } } } }, - "errno": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.4.tgz", - "integrity": "sha1-uJbiOp5ei6M4cfyZar02NfyaHH0=", - "requires": { - "prr": "~0.0.0" - } - }, - "error-ex": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz", - "integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=", - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "error-stack-parser": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-1.3.6.tgz", - "integrity": "sha1-4Oc7k+QXE40c18C3RrGkoUhUwpI=", - "requires": { - "stackframe": "^0.3.1" - } - }, - "es-abstract": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.7.0.tgz", - "integrity": "sha1-363ndOAb/Nl/lhgCmMRJyGI/uUw=", - "requires": { - "es-to-primitive": "^1.1.1", - "function-bind": "^1.1.0", - "is-callable": "^1.1.3", - "is-regex": "^1.0.3" - } - }, - "es-to-primitive": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz", - "integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=", - "requires": { - "is-callable": "^1.1.1", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.1" - } - }, - "es5-ext": { - "version": "0.10.24", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.24.tgz", - "integrity": "sha1-pVh3yZJLwMjZvTwsvhdJWsFwmxQ=", - "requires": { - "es6-iterator": "2", - "es6-symbol": "~3.1" - } - }, - "es6-iterator": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.1.tgz", - "integrity": "sha1-jjGcnwRTv1ddN0lAplWSDlnKVRI=", - "requires": { - "d": "1", - "es5-ext": "^0.10.14", - "es6-symbol": "^3.1" - } - }, - "es6-map": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz", - "integrity": "sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA=", - "requires": { - "d": "1", - "es5-ext": "~0.10.14", - "es6-iterator": "~2.0.1", - "es6-set": "~0.1.5", - "es6-symbol": "~3.1.1", - "event-emitter": "~0.3.5" - } - }, - "es6-promise": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.1.1.tgz", - "integrity": "sha512-OaU1hHjgJf+b0NzsxCg7NdIYERD6Hy/PEmFLTjw+b65scuisG3Kt4QoTvJ66BBkPZ581gr0kpoVzKnxniM8nng==" - }, - "es6-set": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz", - "integrity": "sha1-0rPsXU2ADO2BjbU40ol02wpzzLE=", - "requires": { - "d": "1", - "es5-ext": "~0.10.14", - "es6-iterator": "~2.0.1", - "es6-symbol": "3.1.1", - "event-emitter": "~0.3.5" - } - }, - "es6-symbol": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz", - "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=", - "requires": { - "d": "1", - "es5-ext": "~0.10.14" - } - }, - "es6-weak-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.2.tgz", - "integrity": "sha1-XjqzIlH/0VOKH45f+hNXdy+S2W8=", + "jest-docblock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "dev": true, "requires": { - "d": "1", - "es5-ext": "^0.10.14", - "es6-iterator": "^2.0.1", - "es6-symbol": "^3.1.1" + "detect-newline": "^3.0.0" } }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" - }, - "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=" - }, - "escodegen": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz", - "integrity": "sha1-WltTr0aTEQvrsIZ6o0MN07cKEBg=", + "jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "dev": true, "requires": { - "esprima": "^2.7.1", - "estraverse": "^1.9.1", - "esutils": "^2.0.2", - "optionator": "^0.8.1", - "source-map": "~0.2.0" + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" }, "dependencies": { - "estraverse": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz", - "integrity": "sha1-r2fy3JIlgkFZUJJgkaQAXSnJu0Q=" + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "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" + } + }, + "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" + } }, - "source-map": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz", - "integrity": "sha1-2rc/vPwrqBm03gO9b26qSBZLP50=", - "optional": true, + "ci-info": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz", + "integrity": "sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==", + "dev": true + }, + "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": { - "amdefine": ">=0.0.4" + "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 + }, + "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 + }, + "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 + }, + "jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "dev": true + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": 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": { + "has-flag": "^4.0.0" } } } }, - "escope": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz", - "integrity": "sha1-4Bl16BJ4GhY6ba392AOY3GTIicM=", + "jest-environment-jsdom": { + "version": "27.4.4", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.4.4.tgz", + "integrity": "sha512-cYR3ndNfHBqQgFvS1RL7dNqSvD//K56j/q1s2ygNHcfTCAp12zfIromO1w3COmXrxS8hWAh7+CmZmGCIoqGcGA==", + "dev": true, "requires": { - "es6-map": "^0.1.3", - "es6-weak-map": "^2.0.1", - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" - } - }, - "eslint": { - "version": "3.19.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-3.19.0.tgz", - "integrity": "sha1-yPxiAcf0DdCJQbh8CFdnOGpnmsw=", - "requires": { - "babel-code-frame": "^6.16.0", - "chalk": "^1.1.3", - "concat-stream": "^1.5.2", - "debug": "^2.1.1", - "doctrine": "^2.0.0", - "escope": "^3.6.0", - "espree": "^3.4.0", - "esquery": "^1.0.0", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "file-entry-cache": "^2.0.0", - "glob": "^7.0.3", - "globals": "^9.14.0", - "ignore": "^3.2.0", - "imurmurhash": "^0.1.4", - "inquirer": "^0.12.0", - "is-my-json-valid": "^2.10.0", - "is-resolvable": "^1.0.0", - "js-yaml": "^3.5.1", - "json-stable-stringify": "^1.0.0", - "levn": "^0.3.0", - "lodash": "^4.0.0", - "mkdirp": "^0.5.0", - "natural-compare": "^1.4.0", - "optionator": "^0.8.2", - "path-is-inside": "^1.0.1", - "pluralize": "^1.2.1", - "progress": "^1.1.8", - "require-uncached": "^1.0.2", - "shelljs": "^0.7.5", - "strip-bom": "^3.0.0", - "strip-json-comments": "~2.0.1", - "table": "^3.7.8", - "text-table": "~0.2.0", - "user-home": "^2.0.0" + "@jest/environment": "^27.4.4", + "@jest/fake-timers": "^27.4.2", + "@jest/types": "^27.4.2", + "@types/node": "*", + "jest-mock": "^27.4.2", + "jest-util": "^27.4.2", + "jsdom": "^16.6.0" }, "dependencies": { + "@jest/types": { + "version": "27.4.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz", + "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "abab": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", + "dev": true + }, + "acorn": { + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz", + "integrity": "sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==", + "dev": true + }, + "acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "dev": true, + "requires": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + } + } + }, "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + "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" + } }, "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } }, - "json-stable-stringify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", - "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", + "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": { - "jsonify": "~0.0.0" + "color-name": "~1.1.4" } }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + "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 }, - "supports-color": { + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "dev": true + }, + "cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "dev": true, + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + } + } + }, + "escodegen": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", + "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "dev": true, + "requires": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + } + }, + "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 + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + }, + "form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, + "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 + }, + "html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "dev": true, + "requires": { + "whatwg-encoding": "^1.0.5" + } + }, + "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" + } + }, + "jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "dev": true, + "requires": { + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" + } + }, + "parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", + "dev": true + }, + "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 + }, + "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, + "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": { + "has-flag": "^4.0.0" + } + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "tough-cookie": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", + "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", + "dev": true, + "requires": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.1.2" + } + }, + "tr46": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", + "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", + "dev": true, + "requires": { + "punycode": "^2.1.1" + } + }, + "webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "dev": true + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, + "requires": { + "iconv-lite": "0.4.24" + } + }, + "whatwg-url": { + "version": "8.7.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", + "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", + "dev": true, + "requires": { + "lodash": "^4.7.0", + "tr46": "^2.1.0", + "webidl-conversions": "^6.1.0" + } + }, + "ws": { + "version": "7.5.6", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.6.tgz", + "integrity": "sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==", + "dev": true + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true } } }, - "eslint-config-airbnb": { - "version": "15.0.2", - "resolved": "https://registry.npmjs.org/eslint-config-airbnb/-/eslint-config-airbnb-15.0.2.tgz", - "integrity": "sha512-4nI0Jp3ekTPuYKa2r8R8jq/CsDDaCwXkzV0V0BFyFSKJlQclAqJaJFXM/E6EjSFzVnK2PYNlEiIR3524Z0i2Mw==", - "requires": { - "eslint-config-airbnb-base": "^11.2.0" - } - }, - "eslint-config-airbnb-base": { - "version": "11.2.0", - "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-11.2.0.tgz", - "integrity": "sha1-GancRIGib3CQRUXsBAEWh2AY+FM=" - }, - "eslint-import-resolver-node": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.1.tgz", - "integrity": "sha512-yUtXS15gIcij68NmXmP9Ni77AQuCN0itXbCc/jWd8C6/yKZaSNXicpC8cgvjnxVdmfsosIXrjpzFq7GcDryb6A==", - "requires": { - "debug": "^2.6.8", - "resolve": "^1.2.0" - } - }, - "eslint-loader": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-1.9.0.tgz", - "integrity": "sha512-40aN976qSNPyb9ejTqjEthZITpls1SVKtwguahmH1dzGCwQU/vySE+xX33VZmD8csU0ahVNCtFlsPgKqRBiqgg==", - "requires": { - "loader-fs-cache": "^1.0.0", - "loader-utils": "^1.0.2", - "object-assign": "^4.0.1", - "object-hash": "^1.1.4", - "rimraf": "^2.6.1" - } - }, - "eslint-module-utils": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.1.1.tgz", - "integrity": "sha512-jDI/X5l/6D1rRD/3T43q8Qgbls2nq5km5KSqiwlyUbGo5+04fXhMKdCPhjwbqAa6HXWaMxj8Q4hQDIh7IadJQw==", + "jest-environment-node": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "dev": true, "requires": { - "debug": "^2.6.8", - "pkg-dir": "^1.0.0" + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" }, - "dependencies": { - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dependencies": { + "@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dev": true, "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" } }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dev": true, "requires": { - "pinkie-promise": "^2.0.0" + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" } }, - "pkg-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz", - "integrity": "sha1-ektQio1bstYp1EcFb/TpyTFM89Q=", + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, "requires": { - "find-up": "^1.0.0" + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" } - } - } - }, - "eslint-plugin-import": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.7.0.tgz", - "integrity": "sha512-HGYmpU9f/zJaQiKNQOVfHUh2oLWW3STBrCgH0sHTX1xtsxYlH1zjLh8FlQGEIdZSdTbUMaV36WaZ6ImXkenGxQ==", - "requires": { - "builtin-modules": "^1.1.1", - "contains-path": "^0.1.0", - "debug": "^2.6.8", - "doctrine": "1.5.0", - "eslint-import-resolver-node": "^0.3.1", - "eslint-module-utils": "^2.1.1", - "has": "^1.0.1", - "lodash.cond": "^4.3.0", - "minimatch": "^3.0.3", - "read-pkg-up": "^2.0.0" - }, - "dependencies": { - "doctrine": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", - "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", + }, + "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": { - "esutils": "^2.0.2", - "isarray": "^1.0.0" + "color-convert": "^2.0.1" } }, - "load-json-file": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", - "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", + "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": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "strip-bom": "^3.0.0" + "fill-range": "^7.0.1" } }, - "path-type": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", - "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", + "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": { - "pify": "^2.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } }, - "read-pkg": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", - "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", + "ci-info": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz", + "integrity": "sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==", + "dev": true + }, + "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": { - "load-json-file": "^2.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^2.0.0" + "color-name": "~1.1.4" } }, - "read-pkg-up": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", - "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", + "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 + }, + "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": { - "find-up": "^2.0.0", - "read-pkg": "^2.0.0" + "to-regex-range": "^5.0.1" } }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" - } - } - }, - "eslint-plugin-jsx-a11y": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.1.1.tgz", - "integrity": "sha512-5I9SpoP7gT4wBFOtXT8/tXNPYohHBVfyVfO17vkbC7r9kEIxYJF12D3pKqhk8+xnk12rfxKClS3WCFpVckFTPQ==", - "requires": { - "aria-query": "^0.7.0", - "array-includes": "^3.0.3", - "ast-types-flow": "0.0.7", - "axobject-query": "^0.1.0", - "damerau-levenshtein": "^1.0.0", - "emoji-regex": "^6.1.0", - "jsx-ast-utils": "^1.4.0" - } - }, - "eslint-plugin-react": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.1.0.tgz", - "integrity": "sha1-J3cKzzn1/UnNCvQIPOWBBOs5DUw=", - "requires": { - "doctrine": "^2.0.0", - "has": "^1.0.1", - "jsx-ast-utils": "^1.4.1" - } - }, - "espree": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/espree/-/espree-3.4.3.tgz", - "integrity": "sha1-KRC1zNSc6JPC//+qtP2LOjG4I3Q=", - "requires": { - "acorn": "^5.0.1", - "acorn-jsx": "^3.0.0" - }, - "dependencies": { - "acorn": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.1.1.tgz", - "integrity": "sha512-vOk6uEMctu0vQrvuSqFdJyqj1Q0S5VTDL79qtjo+DhRr+1mmaD+tluFSCZqhvi/JUhXSzoZN2BhtstaPEeE8cw==" - } - } - }, - "esprima": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", - "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=" - }, - "esquery": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.0.tgz", - "integrity": "sha1-z7qLV9f7qT8XKYqKAGoEzaE9gPo=", - "requires": { - "estraverse": "^4.0.0" - } - }, - "esrecurse": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.0.tgz", - "integrity": "sha1-+pVo2Y04I/mkHZHpAtyrnqblsWM=", - "requires": { - "estraverse": "^4.1.0", - "object-assign": "^4.0.1" - } - }, - "estraverse": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=" - }, - "esutils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=" - }, - "etag": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.0.tgz", - "integrity": "sha1-b2Ma7zNtbEY2K1F2QETOIWvjwFE=" - }, - "event-emitter": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", - "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=", - "requires": { - "d": "1", - "es5-ext": "~0.10.14" - } - }, - "event-stream": { - "version": "0.5.3", - "resolved": "http://registry.npmjs.org/event-stream/-/event-stream-0.5.3.tgz", - "integrity": "sha1-t3uTCfcQet3+q2PwwOr9jbC9jBw=", - "requires": { - "optimist": "0.2" - }, - "dependencies": { - "optimist": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.2.8.tgz", - "integrity": "sha1-6YGrfiaLRXlIWTtVZ0wJmoFcrDE=", + "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 + }, + "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 + }, + "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 + }, + "jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, "requires": { - "wordwrap": ">=0.0.1 <0.1.0" + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" } }, - "wordwrap": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", - "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=" - } - } - }, - "eventemitter2": { - "version": "0.4.14", - "resolved": "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz", - "integrity": "sha1-j2G3XN4BKy6esoTUVFWDtWQ7Yas=" - }, - "eventemitter3": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.2.0.tgz", - "integrity": "sha1-HIaZHYFq0eUEdQ5zh0Ik7PO+xQg=" - }, - "events": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz", - "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=" - }, - "eventsource": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-0.1.6.tgz", - "integrity": "sha1-Cs7ehJ7X3RzMMsgRuxG5RNTykjI=", - "requires": { - "original": ">=0.0.5" - } - }, - "evp_bytestokey": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz", - "integrity": "sha1-SXtmrZ/vZc18CKYYCCS6FHa2blM=", - "requires": { - "create-hash": "^1.1.1" - } - }, - "exec-sh": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.2.0.tgz", - "integrity": "sha1-FPdd4/INKG75MwmbLOUKkDWc7xA=", - "requires": { - "merge": "^1.1.3" - } - }, - "execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", - "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": { - "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=", + "jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*" + } + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, "requires": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "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" + } + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": 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": { + "has-flag": "^4.0.0" + } + }, + "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" } } } }, - "exenv": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz", - "integrity": "sha1-KueOhdmJQVhnCwPUe+wfA72Ru50=" - }, - "exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", - "dev": true - }, - "exit-hook": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz", - "integrity": "sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=" - }, - "expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", - "requires": { - "is-posix-bracket": "^0.1.0" - } - }, - "expand-range": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", - "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", - "requires": { - "fill-range": "^2.1.0" - } - }, - "expect": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/expect/-/expect-1.20.2.tgz", - "integrity": "sha1-1Fj+TFYAQDa64yMkFqP2Nh8E+WU=", - "requires": { - "define-properties": "~1.1.2", - "has": "^1.0.1", - "is-equal": "^1.5.1", - "is-regex": "^1.0.3", - "object-inspect": "^1.1.0", - "object-keys": "^1.0.9", - "tmatch": "^2.0.1" - } + "jest-get-type": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-21.2.0.tgz", + "integrity": "sha512-y2fFw3C+D0yjNSDp7ab1kcd6NUYfy3waPTlD8yWkAtiocJdBRQqNoRqVfMNxgj+IjT0V5cBIHJO0z9vuSSZ43Q==" }, - "express": { - "version": "4.15.3", - "resolved": "https://registry.npmjs.org/express/-/express-4.15.3.tgz", - "integrity": "sha1-urZdDwOqgMNYQIly/HAPkWlEtmI=", - "requires": { - "accepts": "~1.3.3", - "array-flatten": "1.1.1", - "content-disposition": "0.5.2", - "content-type": "~1.0.2", - "cookie": "0.3.1", - "cookie-signature": "1.0.6", - "debug": "2.6.7", - "depd": "~1.1.0", - "encodeurl": "~1.0.1", - "escape-html": "~1.0.3", - "etag": "~1.8.0", - "finalhandler": "~1.0.3", - "fresh": "0.5.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "~2.3.0", - "parseurl": "~1.3.1", - "path-to-regexp": "0.1.7", - "proxy-addr": "~1.1.4", - "qs": "6.4.0", - "range-parser": "~1.2.0", - "send": "0.15.3", - "serve-static": "1.12.3", - "setprototypeof": "1.0.3", - "statuses": "~1.3.1", - "type-is": "~1.6.15", - "utils-merge": "1.0.0", - "vary": "~1.1.1" + "jest-haste-map": { + "version": "27.4.4", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.4.tgz", + "integrity": "sha512-kvspmHmgPIZoDaqUsvsJFTaspuxhATvdO6wsFNGNSi8kfdiOCEEvECNbht8xG+eE5Ol88JyJmp2D7RF4dYo85Q==", + "requires": { + "@jest/types": "^27.4.2", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.4", + "jest-regex-util": "^27.4.0", + "jest-serializer": "^27.4.0", + "jest-util": "^27.4.2", + "jest-worker": "^27.4.4", + "micromatch": "^4.0.4", + "walker": "^1.0.7" }, "dependencies": { - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + "@jest/types": { + "version": "27.4.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz", + "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } }, - "debug": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.7.tgz", - "integrity": "sha1-krrR9tBbu2u6Isyoi80OyJTChh4=", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "requires": { - "ms": "2.0.0" + "color-convert": "^2.0.1" } }, - "qs": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz", - "integrity": "sha1-E+JtKK1rD/qpExLNO/cI7TUecjM=" + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "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==", + "requires": { + "fill-range": "^7.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "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==", + "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==" + }, + "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==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "micromatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + }, + "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==", + "requires": { + "has-flag": "^4.0.0" + } + }, + "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==", + "requires": { + "is-number": "^7.0.0" + } } } }, - "express-async-wrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/express-async-wrap/-/express-async-wrap-1.0.0.tgz", - "integrity": "sha1-+ZctK3Jv5owNrwSVuPwhN8VEV6o=" - }, - "express-x-hub": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/express-x-hub/-/express-x-hub-1.0.4.tgz", - "integrity": "sha1-k5F9pHj1xRf1t0onAHlfYWoqDR0=", - "requires": { - "raw-body": "^2.1.4", - "type-is": "^1.6.9" - } - }, - "extend": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz", - "integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=" - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "jest-jasmine2": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "dev": true, "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.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==", + "@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dev": true, + "requires": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + } + }, + "@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + } + }, + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "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" + } + }, + "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" + } + }, + "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" + } + }, + "ci-info": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz", + "integrity": "sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==", + "dev": true + }, + "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 + }, + "expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.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" + } + }, + "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 + }, + "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 + }, + "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 + }, + "jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "dev": true + }, + "jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + } + }, + "jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dev": true, "requires": { - "is-plain-object": "^2.0.4" + "@jest/types": "^27.5.1", + "@types/node": "*" } - } - } - }, - "extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", - "requires": { - "is-extglob": "^1.0.0" - } - }, - "extract-text-webpack-plugin": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/extract-text-webpack-plugin/-/extract-text-webpack-plugin-2.1.2.tgz", - "integrity": "sha1-dW7076gVXDaBgz+8NNpTuUF0bWw=", - "requires": { - "async": "^2.1.2", - "loader-utils": "^1.0.2", - "schema-utils": "^0.3.0", - "webpack-sources": "^1.0.1" - } - }, - "extract-zip": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.5.0.tgz", - "integrity": "sha1-ksz22B73Cp+kwXRxFMzvbYaIpsQ=", - "requires": { - "concat-stream": "1.5.0", - "debug": "0.7.4", - "mkdirp": "0.5.0", - "yauzl": "2.4.1" - }, - "dependencies": { - "concat-stream": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.0.tgz", - "integrity": "sha1-U/fUPFHF5D+ByP3QMyHGMb5o1hE=", + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, "requires": { - "inherits": "~2.0.1", - "readable-stream": "~2.0.0", - "typedarray": "~0.0.5" + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" } }, - "debug": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz", - "integrity": "sha1-BuHqgILCyxTjmAbiLi9vdX+Srzk=" - }, - "mkdirp": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz", - "integrity": "sha1-HXMHam35hs2TROFecfzAWkyavxI=", + "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": { - "minimist": "0.0.8" + "braces": "^3.0.2", + "picomatch": "^2.3.1" } }, - "readable-stream": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", - "integrity": "sha1-j5A0HmilPMySh4jaz80Rs265t44=", + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "~1.0.0", - "process-nextick-args": "~1.0.6", - "string_decoder": "~0.10.x", - "util-deprecate": "~1.0.1" + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } } }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" - } - } - }, - "extsprintf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz", - "integrity": "sha1-4QgOBljjALBilJkMxw4VAiNf1VA=" - }, - "eyes": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz", - "integrity": "sha1-Ys8SAjTGg3hdkCNIqADvPgzCC8A=" - }, - "falafel": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/falafel/-/falafel-0.2.1.tgz", - "integrity": "sha1-nvxRzhnsVykIayKuiJ5dfQ4lZgE=", - "dev": true, - "requires": { - "esprima": "github:substack/esprima#0a7f8489a11b44b019ce168506f535f22d0be290" - }, - "dependencies": { - "esprima": { - "version": "github:substack/esprima#0a7f8489a11b44b019ce168506f535f22d0be290", - "from": "esprima@github:substack/esprima#0a7f8489a11b44b019ce168506f535f22d0be290", + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", "dev": true - } - } - }, - "fast-deep-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz", - "integrity": "sha1-liVqO8l1WV6zbYLpkp0GDYk0Of8=" - }, - "fast-json-stable-stringify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", - "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" - }, - "fast-memoize": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/fast-memoize/-/fast-memoize-2.2.7.tgz", - "integrity": "sha1-8UXFwiA5zt8KHU/2ylkq0CaEcMo=" - }, - "fastparse": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.1.tgz", - "integrity": "sha1-0eJkOzipTXWDtHkGDmxK/8lAcfg=" - }, - "faye-websocket": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", - "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", - "requires": { - "websocket-driver": ">=0.5.1" - } - }, - "fb-watchman": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.0.tgz", - "integrity": "sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg=", - "requires": { - "bser": "^2.0.0" - } - }, - "fbjs": { - "version": "0.8.12", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.12.tgz", - "integrity": "sha1-ELXZL3bUVXX9Y6IX1OoCvqL47QQ=", - "requires": { - "core-js": "^1.0.0", - "isomorphic-fetch": "^2.1.1", - "loose-envify": "^1.0.0", - "object-assign": "^4.1.0", - "promise": "^7.1.1", - "setimmediate": "^1.0.5", - "ua-parser-js": "^0.7.9" - }, - "dependencies": { - "core-js": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", - "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=" - } - } - }, - "fd-slicer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz", - "integrity": "sha1-i1vL2ewyfFBBv5qwI/1nUPEXfmU=", - "requires": { - "pend": "~1.2.0" - } - }, - "figures": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", - "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", - "requires": { - "escape-string-regexp": "^1.0.5", - "object-assign": "^4.1.0" - } - }, - "file-entry-cache": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz", - "integrity": "sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E=", - "requires": { - "flat-cache": "^1.2.1", - "object-assign": "^4.0.1" - } - }, - "file-loader": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-0.11.2.tgz", - "integrity": "sha512-N+uhF3mswIFeziHQjGScJ/yHXYt3DiLBeC+9vWW+WjUBiClMSOlV1YrXQi+7KM2aA3Rn4Bybgv+uXFQbfkzpvg==", - "requires": { - "loader-utils": "^1.0.2" - } - }, - "filename-regex": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", - "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=" - }, - "fileset": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/fileset/-/fileset-2.0.3.tgz", - "integrity": "sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA=", - "requires": { - "glob": "^7.0.3", - "minimatch": "^3.0.3" - } - }, - "fill-range": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz", - "integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=", - "requires": { - "is-number": "^2.1.0", - "isobject": "^2.0.0", - "randomatic": "^1.1.3", - "repeat-element": "^1.1.2", - "repeat-string": "^1.5.2" - } - }, - "finalhandler": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.3.tgz", - "integrity": "sha1-70fneVDpmXgOhgIqVg4yF+DQzIk=", - "requires": { - "debug": "2.6.7", - "encodeurl": "~1.0.1", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.1", - "statuses": "~1.3.1", - "unpipe": "~1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.7.tgz", - "integrity": "sha1-krrR9tBbu2u6Isyoi80OyJTChh4=", + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": 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": { - "ms": "2.0.0" + "has-flag": "^4.0.0" } - } - } - }, - "find": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/find/-/find-0.2.9.tgz", - "integrity": "sha1-S3Px/55WrZG3bnFkB/5f/mVUu4w=", - "optional": true, - "requires": { - "traverse-chain": "~0.1.0" - } - }, - "find-cache-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz", - "integrity": "sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=", - "requires": { - "commondir": "^1.0.1", - "make-dir": "^1.0.0", - "pkg-dir": "^2.0.0" - } - }, - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", - "requires": { - "locate-path": "^2.0.0" - } - }, - "flat-cache": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.2.2.tgz", - "integrity": "sha1-+oZxTnLCHbiGAXYezy9VXRq8a5Y=", - "requires": { - "circular-json": "^0.3.1", - "del": "^2.0.2", - "graceful-fs": "^4.1.2", - "write": "^0.2.1" - } - }, - "flatiron": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/flatiron/-/flatiron-0.4.3.tgz", - "integrity": "sha1-JIz3mj2n19w3nioRySonGcu1QPY=", - "requires": { - "broadway": "~0.3.2", - "director": "1.2.7", - "optimist": "0.6.0", - "prompt": "0.2.14" - }, - "dependencies": { - "optimist": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.0.tgz", - "integrity": "sha1-aUJIJvNAX3nxQub8PZrljU27kgA=", + }, + "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": { - "minimist": "~0.0.1", - "wordwrap": "~0.0.2" + "is-number": "^7.0.0" } - }, - "wordwrap": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", - "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=" } } }, - "flatten": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz", - "integrity": "sha1-2uRqnXj74lKSJYzB54CkHZXAN4I=" - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" - }, - "for-own": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", - "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", - "requires": { - "for-in": "^1.0.1" - } - }, - "foreach": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz", - "integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=" - }, - "forever": { - "version": "0.15.3", - "resolved": "https://registry.npmjs.org/forever/-/forever-0.15.3.tgz", - "integrity": "sha1-d9nX4V/S9RGtnYShEMfdj8js68I=", + "jest-leak-detector": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "dev": true, "requires": { - "cliff": "~0.1.9", - "clone": "^1.0.2", - "colors": "~0.6.2", - "flatiron": "~0.4.2", - "forever-monitor": "~1.7.0", - "nconf": "~0.6.9", - "nssocket": "~0.5.1", - "object-assign": "^3.0.0", - "optimist": "~0.6.0", - "path-is-absolute": "~1.0.0", - "prettyjson": "^1.1.2", - "shush": "^1.0.0", - "timespan": "~2.3.0", - "utile": "~0.2.1", - "winston": "~0.8.1" + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" }, "dependencies": { - "async": { - "version": "0.2.10", - "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", - "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=" + "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 }, - "colors": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz", - "integrity": "sha1-JCP+ZnisDF2uiFLl0OW+CMmXq8w=" + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true }, - "object-assign": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz", - "integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=" + "jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "dev": true }, - "winston": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/winston/-/winston-0.8.3.tgz", - "integrity": "sha1-ZLar9M0Brcrv1QCTk7HY6L7BnbA=", + "pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, "requires": { - "async": "0.2.x", - "colors": "0.6.x", - "cycle": "1.0.x", - "eyes": "0.1.x", - "isstream": "0.1.x", - "pkginfo": "0.3.x", - "stack-trace": "0.0.x" + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" } + }, + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true } } }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" - }, - "forever-monitor": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/forever-monitor/-/forever-monitor-1.7.1.tgz", - "integrity": "sha1-XYIPSjp42y2BriZx8Vi56GoJG7g=", - "requires": { - "broadway": "~0.3.6", - "chokidar": "^1.0.1", - "minimatch": "~3.0.2", - "ps-tree": "0.0.x", - "utile": "~0.2.1" - } - }, - "form-data": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz", - "integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.5", - "mime-types": "^2.1.12" - } - }, - "form-urlencoded": { - "version": "2.0.9", - "resolved": "https://registry.npmjs.org/form-urlencoded/-/form-urlencoded-2.0.9.tgz", - "integrity": "sha512-fWUzNiOnYa126vFAT6TFXd1mhJrvD8IqmQ9ilZPjkLYQfaRreBr5fIUoOpPlWtqaAG64nzoE7u5zSetifab9IA==" - }, - "formidable": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/formidable/-/formidable-1.2.1.tgz", - "integrity": "sha512-Fs9VRguL0gqGHkXS5GQiMCr1VhZBxz0JnJs4JmMp/2jL18Fmbzvv7vOFRU+U8TBkHEE/CX1qDXzJplVULgsLeg==" - }, - "forwarded": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.0.tgz", - "integrity": "sha1-Ge+YdMSuHCl7zweP3mOgm2aoQ2M=" - }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", - "requires": { - "map-cache": "^0.2.2" - } - }, - "fresh": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.0.tgz", - "integrity": "sha1-9HTKXmqSRtb9jglTz6m5yAWvp44=" - }, - "front-matter": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/front-matter/-/front-matter-2.1.0.tgz", - "integrity": "sha1-C9/0LLrSs1wHrHCFgReJdZ+YWMA=", + "jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "dev": true, "requires": { - "js-yaml": "^3.4.6" + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "dependencies": { + "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" + } + }, + "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" + } + }, + "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 + }, + "diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "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 + }, + "jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + } + }, + "jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "dev": true + }, + "pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": 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": { + "has-flag": "^4.0.0" + } + } } }, - "fs-extra": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz", - "integrity": "sha1-zTzl9+fLYUWIP8rjGR6Yd/hYeVA=", + "jest-message-util": { + "version": "27.4.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.4.2.tgz", + "integrity": "sha512-OMRqRNd9E0DkBLZpFtZkAGYOXl6ZpoMtQJWTAREJKDOFa0M6ptB7L67tp+cszMBkvSgKOhNtQp2Vbcz3ZZKo/w==", + "dev": true, "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^2.1.0", - "klaw": "^1.0.0" + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.4.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.4", + "pretty-format": "^27.4.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "dependencies": { + "@jest/types": { + "version": "27.4.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz", + "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "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" + } + }, + "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" + } + }, + "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" + } + }, + "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 + }, + "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" + } + }, + "graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==", + "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 + }, + "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.4", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", + "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.2.3" + } + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": 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": { + "has-flag": "^4.0.0" + } + }, + "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" + } + } } }, - "fs-promise": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/fs-promise/-/fs-promise-2.0.3.tgz", - "integrity": "sha1-9k5PhUvPaJqovdy6JokW2z20aFQ=", + "jest-mock": { + "version": "27.4.2", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.4.2.tgz", + "integrity": "sha512-PDDPuyhoukk20JrQKeofK12hqtSka7mWH0QQuxSNgrdiPsrnYYLS6wbzu/HDlxZRzji5ylLRULeuI/vmZZDrYA==", + "dev": true, "requires": { - "any-promise": "^1.3.0", - "fs-extra": "^2.0.0", - "mz": "^2.6.0", - "thenify-all": "^1.6.0" + "@jest/types": "^27.4.2", + "@types/node": "*" }, "dependencies": { - "fs-extra": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-2.1.2.tgz", - "integrity": "sha1-BGxwFjzvmq1GsOSn+kZ/si1x3jU=", + "@jest/types": { + "version": "27.4.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz", + "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==", + "dev": true, "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^2.1.0" + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "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" + } + }, + "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" + } + }, + "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 + }, + "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": { + "has-flag": "^4.0.0" } } } }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "dev": true }, - "fsevents": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.1.2.tgz", - "integrity": "sha512-Sn44E5wQW4bTHXvQmvSHwqbuiXtduD6Rrjm2ZtUEGbyrig+nUH3t/QD4M4/ZXViY556TBpRgZkHLDx3JxPwxiw==", - "optional": true, + "jest-regex-util": { + "version": "27.4.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.4.0.tgz", + "integrity": "sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==" + }, + "jest-resolve": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "dev": true, "requires": { - "nan": "^2.3.0", - "node-pre-gyp": "^0.6.36" + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" }, "dependencies": { - "abbrev": { - "version": "1.1.0", - "bundled": true, - "optional": true + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } }, - "ajv": { - "version": "4.11.8", - "bundled": true, - "optional": 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": { - "co": "^4.6.0", - "json-stable-stringify": "^1.0.1" + "color-convert": "^2.0.1" } }, - "ansi-regex": { - "version": "2.1.1", - "bundled": true + "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" + } }, - "aproba": { - "version": "1.1.1", - "bundled": true, - "optional": true + "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" + } }, - "are-we-there-yet": { + "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" + } + }, + "ci-info": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz", + "integrity": "sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==", + "dev": true + }, + "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", - "bundled": true, - "optional": true, + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": 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": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" + "to-regex-range": "^5.0.1" } }, - "asn1": { - "version": "0.2.3", - "bundled": true, - "optional": true + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true }, - "assert-plus": { - "version": "0.2.0", - "bundled": true, - "optional": true + "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 }, - "asynckit": { - "version": "0.4.0", - "bundled": true, - "optional": 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" + } }, - "aws-sign2": { - "version": "0.6.0", - "bundled": true, - "optional": 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 }, - "aws4": { - "version": "1.6.0", - "bundled": true, - "optional": true + "is-core-module": { + "version": "2.10.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz", + "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", + "dev": true, + "requires": { + "has": "^1.0.3" + } }, - "balanced-match": { - "version": "0.4.2", - "bundled": 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 }, - "bcrypt-pbkdf": { - "version": "1.0.1", - "bundled": true, - "optional": true, + "jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, "requires": { - "tweetnacl": "^0.14.3" + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" } }, - "block-stream": { - "version": "0.0.9", - "bundled": true, + "jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true + }, + "jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, "requires": { - "inherits": "~2.0.0" + "@types/node": "*", + "graceful-fs": "^4.2.9" } }, - "boom": { - "version": "2.10.1", - "bundled": true, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, "requires": { - "hoek": "2.x.x" + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" } }, - "brace-expansion": { - "version": "1.1.7", - "bundled": 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": { - "balanced-match": "^0.4.1", - "concat-map": "0.0.1" + "@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": { + "has-flag": "^4.0.0" + } + } } }, - "buffer-shims": { - "version": "1.0.0", - "bundled": 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" + }, + "dependencies": { + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + } + } }, - "caseless": { - "version": "0.12.0", - "bundled": true, - "optional": 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 }, - "co": { - "version": "4.6.0", - "bundled": true, - "optional": 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": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } }, - "code-point-at": { - "version": "1.1.0", - "bundled": true + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true }, - "combined-stream": { - "version": "1.0.5", - "bundled": 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": { - "delayed-stream": "~1.0.0" + "has-flag": "^4.0.0" } }, - "concat-map": { - "version": "0.0.1", - "bundled": 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" + } + } + } + }, + "jest-resolve-dependencies": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" + }, + "dependencies": { + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } }, - "console-control-strings": { - "version": "1.1.0", - "bundled": 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" + } }, - "core-util-is": { - "version": "1.0.2", - "bundled": 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" + } }, - "cryptiles": { - "version": "2.0.5", - "bundled": true, - "optional": true, + "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 + }, + "jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": 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": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-runner": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-21.2.1.tgz", + "integrity": "sha512-Anb72BOQlHqF/zETqZ2K20dbYsnqW/nZO7jV8BYENl+3c44JhMrA8zd1lt52+N7ErnsQMd2HHKiVwN9GYSXmrg==", + "requires": { + "jest-config": "^21.2.1", + "jest-docblock": "^21.2.0", + "jest-haste-map": "^21.2.0", + "jest-jasmine2": "^21.2.1", + "jest-message-util": "^21.2.1", + "jest-runtime": "^21.2.1", + "jest-util": "^21.2.1", + "pify": "^3.0.0", + "throat": "^4.0.0", + "worker-farm": "^1.3.1" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" + }, + "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==", "requires": { - "boom": "2.x.x" + "color-convert": "^1.9.0" } }, - "dashdash": { - "version": "1.14.1", - "bundled": true, - "optional": true, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", "requires": { - "assert-plus": "^1.0.0" + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" }, "dependencies": { - "assert-plus": { - "version": "1.0.0", - "bundled": true, - "optional": true + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "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" + } } } }, - "debug": { - "version": "2.6.8", - "bundled": true, - "optional": true, - "requires": { - "ms": "2.0.0" - } + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" }, - "deep-extend": { - "version": "0.4.2", - "bundled": true, - "optional": true + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" }, - "delayed-stream": { - "version": "1.0.0", - "bundled": true + "babel-jest": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-21.2.0.tgz", + "integrity": "sha512-O0W2qLoWu1QOoOGgxiR2JID4O6WSpxPiQanrkyi9SSlM0PJ60Ptzlck47lhtnr9YZO3zYOsxHwnyeWJ6AffoBQ==", + "requires": { + "babel-plugin-istanbul": "^4.0.0", + "babel-preset-jest": "^21.2.0" + } }, - "delegates": { - "version": "1.0.0", - "bundled": true, - "optional": true + "babel-plugin-jest-hoist": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.2.0.tgz", + "integrity": "sha512-yi5QuiVyyvhBUDLP4ButAnhYzkdrUwWDtvUJv71hjH3fclhnZg4HkDeqaitcR2dZZx/E67kGkRcPVjtVu+SJfQ==" }, - "ecc-jsbn": { - "version": "0.1.1", - "bundled": true, - "optional": true, + "babel-preset-jest": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-21.2.0.tgz", + "integrity": "sha512-hm9cBnr2h3J7yXoTtAVV0zg+3vg0Q/gT2GYuzlreTU0EPkJRtlNgKJJ3tBKEn0+VjAi3JykV6xCJkuUYttEEfA==", "requires": { - "jsbn": "~0.1.0" + "babel-plugin-jest-hoist": "^21.2.0", + "babel-plugin-syntax-object-rest-spread": "^6.13.0" } }, - "extend": { - "version": "3.0.1", - "bundled": true, - "optional": true + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } }, - "extsprintf": { - "version": "1.0.2", - "bundled": true + "callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" }, - "forever-agent": { - "version": "0.6.1", - "bundled": true, - "optional": true + "camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" }, - "form-data": { + "expand-brackets": { "version": "2.1.4", - "bundled": true, - "optional": true, + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.5", - "mime-types": "^2.1.12" + "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": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "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==" + } } }, - "fs.realpath": { - "version": "1.0.0", - "bundled": true - }, - "fstream": { - "version": "1.0.11", - "bundled": true, + "expect": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-21.2.1.tgz", + "integrity": "sha512-orfQQqFRTX0jH7znRIGi8ZMR8kTNpXklTTz8+HGTpmTKZo3Occ6JNB5FXMb8cRuiiC/GyDqsr30zUa66ACYlYw==", "requires": { - "graceful-fs": "^4.1.2", - "inherits": "~2.0.0", - "mkdirp": ">=0.5 0", - "rimraf": "2" + "ansi-styles": "^3.2.0", + "jest-diff": "^21.2.1", + "jest-get-type": "^21.2.0", + "jest-matcher-utils": "^21.2.1", + "jest-message-util": "^21.2.1", + "jest-regex-util": "^21.2.0" } }, - "fstream-ignore": { - "version": "1.0.5", - "bundled": true, - "optional": true, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "requires": { - "fstream": "^1.0.0", - "inherits": "2", - "minimatch": "^3.0.0" + "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", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } } }, - "gauge": { - "version": "2.7.4", - "bundled": true, - "optional": true, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", "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" + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } } }, - "getpass": { - "version": "0.1.7", - "bundled": true, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", "optional": true, "requires": { - "assert-plus": "^1.0.0" + "bindings": "^1.5.0", + "nan": "^2.12.1" }, "dependencies": { - "assert-plus": { - "version": "1.0.0", - "bundled": true, + "nan": { + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", + "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==", "optional": true } } }, - "glob": { - "version": "7.1.2", - "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==", "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" + "kind-of": "^6.0.0" } }, - "graceful-fs": { - "version": "4.1.11", - "bundled": true - }, - "har-schema": { - "version": "1.0.5", - "bundled": true, - "optional": 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==", + "requires": { + "kind-of": "^6.0.0" + } }, - "har-validator": { - "version": "4.2.1", - "bundled": true, - "optional": 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==", "requires": { - "ajv": "^4.9.1", - "har-schema": "^1.0.5" + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } }, - "has-unicode": { - "version": "2.0.1", - "bundled": true, - "optional": 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=" }, - "hawk": { - "version": "3.1.3", - "bundled": true, - "optional": true, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", "requires": { - "boom": "2.x.x", - "cryptiles": "2.x.x", - "hoek": "2.x.x", - "sntp": "1.x.x" + "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } } }, - "hoek": { - "version": "2.16.3", - "bundled": true + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" }, - "http-signature": { - "version": "1.1.1", - "bundled": true, - "optional": true, + "jest-config": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-21.2.1.tgz", + "integrity": "sha512-fJru5HtlD/5l2o25eY9xT0doK3t2dlglrqoGpbktduyoI0T5CwuB++2YfoNZCrgZipTwPuAGonYv0q7+8yDc/A==", "requires": { - "assert-plus": "^0.2.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^21.2.1", + "jest-environment-node": "^21.2.1", + "jest-get-type": "^21.2.0", + "jest-jasmine2": "^21.2.1", + "jest-regex-util": "^21.2.0", + "jest-resolve": "^21.2.0", + "jest-util": "^21.2.1", + "jest-validate": "^21.2.1", + "pretty-format": "^21.2.1" } }, - "inflight": { - "version": "1.0.6", - "bundled": true, + "jest-diff": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-21.2.1.tgz", + "integrity": "sha512-E5fu6r7PvvPr5qAWE1RaUwIh/k6Zx/3OOkZ4rk5dBJkEWRrUuSgbMt2EO8IUTPTd6DOqU3LW6uTIwX5FRvXoFA==", "requires": { - "once": "^1.3.0", - "wrappy": "1" + "chalk": "^2.0.1", + "diff": "^3.2.0", + "jest-get-type": "^21.2.0", + "pretty-format": "^21.2.1" } }, - "inherits": { - "version": "2.0.3", - "bundled": true - }, - "ini": { - "version": "1.3.4", - "bundled": true, - "optional": true + "jest-docblock": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-21.2.0.tgz", + "integrity": "sha512-5IZ7sY9dBAYSV+YjQ0Ovb540Ku7AO9Z5o2Cg789xj167iQuZ2cG+z0f3Uct6WeYLbU6aQiM2pCs7sZ+4dotydw==" }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "bundled": true, + "jest-environment-jsdom": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-21.2.1.tgz", + "integrity": "sha512-mecaeNh0eWmzNrUNMWARysc0E9R96UPBamNiOCYL28k7mksb1d0q6DD38WKP7ABffjnXyUWJPVaWRgUOivwXwg==", "requires": { - "number-is-nan": "^1.0.0" + "jest-mock": "^21.2.0", + "jest-util": "^21.2.1", + "jsdom": "^9.12.0" } }, - "is-typedarray": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "isarray": { - "version": "1.0.0", - "bundled": true - }, - "isstream": { - "version": "0.1.2", - "bundled": true, - "optional": true - }, - "jodid25519": { - "version": "1.0.2", - "bundled": true, - "optional": true, + "jest-environment-node": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-21.2.1.tgz", + "integrity": "sha512-R211867wx9mVBVHzrjGRGTy5cd05K7eqzQl/WyZixR/VkJ4FayS8qkKXZyYnwZi6Rxo6WEV81cDbiUx/GfuLNw==", "requires": { - "jsbn": "~0.1.0" + "jest-mock": "^21.2.0", + "jest-util": "^21.2.1" } }, - "jsbn": { - "version": "0.1.1", - "bundled": true, - "optional": true - }, - "json-schema": { - "version": "0.2.3", - "bundled": true, - "optional": true - }, - "json-stable-stringify": { - "version": "1.0.1", - "bundled": true, - "optional": true, + "jest-haste-map": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-21.2.0.tgz", + "integrity": "sha512-5LhsY/loPH7wwOFRMs+PT4aIAORJ2qwgbpMFlbWbxfN0bk3ZCwxJ530vrbSiTstMkYLao6JwBkLhCJ5XbY7ZHw==", "requires": { - "jsonify": "~0.0.0" + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.11", + "jest-docblock": "^21.2.0", + "micromatch": "^2.3.11", + "sane": "^2.0.0", + "worker-farm": "^1.3.1" } }, - "json-stringify-safe": { - "version": "5.0.1", - "bundled": true, - "optional": true - }, - "jsonify": { - "version": "0.0.0", - "bundled": true, - "optional": true - }, - "jsprim": { - "version": "1.4.0", - "bundled": true, - "optional": true, + "jest-jasmine2": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-21.2.1.tgz", + "integrity": "sha512-lw8FXXIEekD+jYNlStfgNsUHpfMWhWWCgHV7n0B7mA/vendH7vBFs8xybjQsDzJSduptBZJHqQX9SMssya9+3A==", "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.0.2", - "json-schema": "0.2.3", - "verror": "1.3.6" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "bundled": true, - "optional": true - } + "chalk": "^2.0.1", + "expect": "^21.2.1", + "graceful-fs": "^4.1.11", + "jest-diff": "^21.2.1", + "jest-matcher-utils": "^21.2.1", + "jest-message-util": "^21.2.1", + "jest-snapshot": "^21.2.1", + "p-cancelable": "^0.3.0" } }, - "mime-db": { - "version": "1.27.0", - "bundled": true - }, - "mime-types": { - "version": "2.1.15", - "bundled": true, + "jest-matcher-utils": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-21.2.1.tgz", + "integrity": "sha512-kn56My+sekD43dwQPrXBl9Zn9tAqwoy25xxe7/iY4u+mG8P3ALj5IK7MLHZ4Mi3xW7uWVCjGY8cm4PqgbsqMCg==", "requires": { - "mime-db": "~1.27.0" + "chalk": "^2.0.1", + "jest-get-type": "^21.2.0", + "pretty-format": "^21.2.1" } }, - "minimatch": { - "version": "3.0.4", - "bundled": true, + "jest-message-util": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-21.2.1.tgz", + "integrity": "sha512-EbC1X2n0t9IdeMECJn2BOg7buOGivCvVNjqKMXTzQOu7uIfLml+keUfCALDh8o4rbtndIeyGU8/BKfoTr/LVDQ==", "requires": { - "brace-expansion": "^1.1.7" + "chalk": "^2.0.1", + "micromatch": "^2.3.11", + "slash": "^1.0.0" } }, - "minimist": { - "version": "0.0.8", - "bundled": true + "jest-mock": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-21.2.0.tgz", + "integrity": "sha512-aZDfyVf0LEoABWiY6N0d+O963dUQSyUa4qgzurHR3TBDPen0YxKCJ6l2i7lQGh1tVdsuvdrCZ4qPj+A7PievCw==" }, - "mkdirp": { - "version": "0.5.1", - "bundled": true, + "jest-regex-util": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-21.2.0.tgz", + "integrity": "sha512-BKQ1F83EQy0d9Jen/mcVX7D+lUt2tthhK/2gDWRgLDJRNOdRgSp1iVqFxP8EN1ARuypvDflRfPzYT8fQnoBQFQ==" + }, + "jest-resolve": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-21.2.0.tgz", + "integrity": "sha512-vefQ/Lr+VdNvHUZFQXWtOqHX3HEdOc2MtSahBO89qXywEbUxGPB9ZLP9+BHinkxb60UT2Q/tTDOS6rYc6Mwigw==", "requires": { - "minimist": "0.0.8" + "browser-resolve": "^1.11.2", + "chalk": "^2.0.1", + "is-builtin-module": "^1.0.0" } }, - "ms": { - "version": "2.0.0", - "bundled": true, - "optional": true + "jest-runtime": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-21.2.1.tgz", + "integrity": "sha512-6omlpA3+NSE+rHwD0PQjNEjZeb2z+oRmuehMfM1tWQVum+E0WV3pFt26Am0DUfQkkPyTABvxITRjCUclYgSOsA==", + "requires": { + "babel-core": "^6.0.0", + "babel-jest": "^21.2.0", + "babel-plugin-istanbul": "^4.0.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "graceful-fs": "^4.1.11", + "jest-config": "^21.2.1", + "jest-haste-map": "^21.2.0", + "jest-regex-util": "^21.2.0", + "jest-resolve": "^21.2.0", + "jest-util": "^21.2.1", + "json-stable-stringify": "^1.0.1", + "micromatch": "^2.3.11", + "slash": "^1.0.0", + "strip-bom": "3.0.0", + "write-file-atomic": "^2.1.0", + "yargs": "^9.0.0" + } }, - "node-pre-gyp": { - "version": "0.6.36", - "bundled": true, - "optional": true, + "jest-snapshot": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-21.2.1.tgz", + "integrity": "sha512-bpaeBnDpdqaRTzN8tWg0DqOTo2DvD3StOemxn67CUd1p1Po+BUpvePAp44jdJ7Pxcjfg+42o4NHw1SxdCA2rvg==", "requires": { + "chalk": "^2.0.1", + "jest-diff": "^21.2.1", + "jest-matcher-utils": "^21.2.1", "mkdirp": "^0.5.1", - "nopt": "^4.0.1", - "npmlog": "^4.0.2", - "rc": "^1.1.7", - "request": "^2.81.0", - "rimraf": "^2.6.1", - "semver": "^5.3.0", - "tar": "^2.2.1", - "tar-pack": "^3.4.0" + "natural-compare": "^1.4.0", + "pretty-format": "^21.2.1" } }, - "nopt": { - "version": "4.0.1", - "bundled": true, - "optional": true, + "jest-util": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-21.2.1.tgz", + "integrity": "sha512-r20W91rmHY3fnCoO7aOAlyfC51x2yeV3xF+prGsJAUsYhKeV670ZB8NO88Lwm7ASu8SdH0S+U+eFf498kjhA4g==", "requires": { - "abbrev": "1", - "osenv": "^0.1.4" + "callsites": "^2.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.11", + "jest-message-util": "^21.2.1", + "jest-mock": "^21.2.0", + "jest-validate": "^21.2.1", + "mkdirp": "^0.5.1" } }, - "npmlog": { - "version": "4.1.0", - "bundled": true, - "optional": true, + "jest-validate": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-21.2.1.tgz", + "integrity": "sha512-k4HLI1rZQjlU+EC682RlQ6oZvLrE5SCh3brseQc24vbZTxzT/k/3urar5QMCVgjadmSO7lECeGdc6YxnM3yEGg==", "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" + "chalk": "^2.0.1", + "jest-get-type": "^21.2.0", + "leven": "^2.1.0", + "pretty-format": "^21.2.1" } }, - "number-is-nan": { + "json-stable-stringify": { "version": "1.0.1", - "bundled": true - }, - "oauth-sign": { - "version": "0.8.2", - "bundled": true, - "optional": true - }, - "object-assign": { - "version": "4.1.1", - "bundled": true, - "optional": true - }, - "once": { - "version": "1.4.0", - "bundled": true, + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", + "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", "requires": { - "wrappy": "1" + "jsonify": "~0.0.0" } }, - "os-homedir": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "os-tmpdir": { - "version": "1.0.2", - "bundled": true, - "optional": true + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" }, - "osenv": { - "version": "0.1.4", - "bundled": true, - "optional": true, + "load-json-file": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", + "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } } }, - "path-is-absolute": { - "version": "1.0.1", - "bundled": true - }, - "performance-now": { - "version": "0.2.0", - "bundled": true, - "optional": true - }, - "process-nextick-args": { - "version": "1.0.7", - "bundled": true - }, - "punycode": { - "version": "1.4.1", - "bundled": true, - "optional": true + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" }, - "qs": { - "version": "6.4.0", - "bundled": true, - "optional": true + "os-locale": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz", + "integrity": "sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==", + "requires": { + "execa": "^0.7.0", + "lcid": "^1.0.0", + "mem": "^1.1.0" + } }, - "rc": { - "version": "1.2.1", - "bundled": true, - "optional": true, + "path-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", + "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", "requires": { - "deep-extend": "~0.4.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" + "pify": "^2.0.0" }, "dependencies": { - "minimist": { - "version": "1.2.0", - "bundled": true, - "optional": true + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" } } }, - "readable-stream": { - "version": "2.2.9", - "bundled": true, - "requires": { - "buffer-shims": "~1.0.0", - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "~1.0.0", - "process-nextick-args": "~1.0.6", - "string_decoder": "~1.0.0", - "util-deprecate": "~1.0.1" - } + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" }, - "request": { - "version": "2.81.0", - "bundled": true, - "optional": true, + "pretty-format": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-21.2.1.tgz", + "integrity": "sha512-ZdWPGYAnYfcVP8yKA3zFjCn8s4/17TeYH28MXuC8vTp0o21eXjbFGcOAXZEaDaOFJjc3h2qa7HQNHNshhvoh2A==", "requires": { - "aws-sign2": "~0.6.0", - "aws4": "^1.2.1", - "caseless": "~0.12.0", - "combined-stream": "~1.0.5", - "extend": "~3.0.0", - "forever-agent": "~0.6.1", - "form-data": "~2.1.1", - "har-validator": "~4.2.1", - "hawk": "~3.1.3", - "http-signature": "~1.1.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.7", - "oauth-sign": "~0.8.1", - "performance-now": "^0.2.0", - "qs": "~6.4.0", - "safe-buffer": "^5.0.1", - "stringstream": "~0.0.4", - "tough-cookie": "~2.3.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.0.0" + "ansi-regex": "^3.0.0", + "ansi-styles": "^3.2.0" } }, - "rimraf": { - "version": "2.6.1", - "bundled": true, + "read-pkg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", + "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", "requires": { - "glob": "^7.0.5" + "load-json-file": "^2.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^2.0.0" } }, - "safe-buffer": { - "version": "5.0.1", - "bundled": true - }, - "semver": { - "version": "5.3.0", - "bundled": true, - "optional": true - }, - "set-blocking": { + "read-pkg-up": { "version": "2.0.0", - "bundled": true, - "optional": true - }, - "signal-exit": { - "version": "3.0.2", - "bundled": true, - "optional": true - }, - "sntp": { - "version": "1.0.9", - "bundled": true, - "optional": true, + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", + "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", "requires": { - "hoek": "2.x.x" + "find-up": "^2.0.0", + "read-pkg": "^2.0.0" } }, - "sshpk": { - "version": "1.13.0", - "bundled": true, - "optional": true, + "sane": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/sane/-/sane-2.5.2.tgz", + "integrity": "sha1-tNwYYcIbQn6SlQej51HiosuKs/o=", "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", - "jodid25519": "^1.0.0", - "jsbn": "~0.1.0", - "tweetnacl": "~0.14.0" + "anymatch": "^2.0.0", + "capture-exit": "^1.2.0", + "exec-sh": "^0.2.0", + "fb-watchman": "^2.0.0", + "fsevents": "^1.2.3", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5", + "watch": "~0.18.0" }, "dependencies": { - "assert-plus": { - "version": "1.0.0", - "bundled": true, - "optional": true + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "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" + } } } }, "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" - } - }, - "string_decoder": { - "version": "1.0.1", - "bundled": true, + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", "requires": { - "safe-buffer": "^5.0.1" + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" } }, - "stringstream": { - "version": "0.0.5", - "bundled": true, - "optional": true - }, "strip-ansi": { - "version": "3.0.1", - "bundled": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "bundled": true, - "optional": true - }, - "tar": { - "version": "2.2.1", - "bundled": true, + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", "requires": { - "block-stream": "*", - "fstream": "^1.0.2", - "inherits": "2" + "ansi-regex": "^3.0.0" } }, - "tar-pack": { - "version": "3.4.0", - "bundled": true, - "optional": true, - "requires": { - "debug": "^2.2.0", - "fstream": "^1.0.10", - "fstream-ignore": "^1.0.5", - "once": "^1.3.3", - "readable-stream": "^2.1.4", - "rimraf": "^2.5.1", - "tar": "^2.2.1", - "uid-number": "^0.0.6" - } + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" }, - "tough-cookie": { - "version": "2.3.2", - "bundled": true, - "optional": true, - "requires": { - "punycode": "^1.4.1" - } + "throat": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz", + "integrity": "sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=" }, - "tunnel-agent": { - "version": "0.6.0", - "bundled": true, - "optional": true, + "watch": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/watch/-/watch-0.18.0.tgz", + "integrity": "sha1-KAlUdsbffJDJYxOJkMClQj60uYY=", "requires": { - "safe-buffer": "^5.0.1" + "exec-sh": "^0.2.0", + "minimist": "^1.2.0" } }, - "tweetnacl": { - "version": "0.14.5", - "bundled": true, - "optional": true - }, - "uid-number": { - "version": "0.0.6", - "bundled": true, - "optional": true - }, - "util-deprecate": { - "version": "1.0.2", - "bundled": true - }, - "uuid": { - "version": "3.0.1", - "bundled": true, - "optional": true + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" }, - "verror": { - "version": "1.3.6", - "bundled": true, - "optional": true, + "yargs": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-9.0.1.tgz", + "integrity": "sha1-UqzCP+7Kw0BCB47njAwAf1CF20w=", "requires": { - "extsprintf": "1.0.2" + "camelcase": "^4.1.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^2.0.0", + "read-pkg-up": "^2.0.0", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^2.0.0", + "which-module": "^2.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^7.0.0" } }, - "wide-align": { - "version": "1.1.2", - "bundled": true, - "optional": true, + "yargs-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz", + "integrity": "sha1-jQrELxbqVd69MyyvTEA4s+P139k=", "requires": { - "string-width": "^1.0.2" + "camelcase": "^4.1.0" } - }, - "wrappy": { - "version": "1.0.2", - "bundled": true - } - } - }, - "fstream": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz", - "integrity": "sha1-XB+x8RdHcRTwYyoOtLcbPLD9MXE=", - "requires": { - "graceful-fs": "^4.1.2", - "inherits": "~2.0.0", - "mkdirp": ">=0.5 0", - "rimraf": "2" - } - }, - "function-bind": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.0.tgz", - "integrity": "sha1-FhdnFMgBeY5Ojyz391KUZ7tKV3E=" - }, - "function.prototype.name": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.0.tgz", - "integrity": "sha512-Bs0VRrTz4ghD8pTmbJQD1mZ8A/mN0ur/jGz+A6FBxPDUPkm1tNfF6bhTYPA7i7aF4lZJVr+OXTNNrnnIl58Wfg==", - "requires": { - "define-properties": "^1.1.2", - "function-bind": "^1.1.1", - "is-callable": "^1.1.3" - }, - "dependencies": { - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - } - } - }, - "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" - } - }, - "gaze": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.2.tgz", - "integrity": "sha1-hHIkZ3rbiHDWeSV+0ziP22HkAQU=", - "requires": { - "globule": "^1.0.0" - } - }, - "generate-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz", - "integrity": "sha1-aFj+fAlpt9TpCTM3ZHrHn2DfvnQ=" - }, - "generate-object-property": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", - "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", - "requires": { - "is-property": "^1.0.0" - } - }, - "get-caller-file": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", - "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=" - }, - "get-stdin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=" - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" - }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "requires": { - "assert-plus": "^1.0.0" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - } - } - }, - "git-validate": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/git-validate/-/git-validate-2.2.2.tgz", - "integrity": "sha1-nMj/ABF3lXoRcmq1CNQVu4Cxi88=", - "dev": true - }, - "glamor": { - "version": "2.20.25", - "resolved": "https://registry.npmjs.org/glamor/-/glamor-2.20.25.tgz", - "integrity": "sha1-cbhLgrZ6kyd3GsWd5T7pFdFIpKM=", - "requires": { - "babel-runtime": "^6.18.0", - "fbjs": "^0.8.8", - "object-assign": "^4.1.0", - "prop-types": "^15.5.8" - } - }, - "glamorous": { - "version": "3.23.5", - "resolved": "https://registry.npmjs.org/glamorous/-/glamorous-3.23.5.tgz", - "integrity": "sha1-SfYTop9kze6AlIZ5xm281AhOX9U=", - "requires": { - "brcast": "^2.0.0", - "fast-memoize": "^2.2.7", - "html-tag-names": "^1.1.1", - "react-html-attributes": "^1.3.0", - "svg-tag-names": "^1.1.0" - } - }, - "glob": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", - "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" - } - }, - "glob-base": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", - "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", - "requires": { - "glob-parent": "^2.0.0", - "is-glob": "^2.0.0" - } - }, - "glob-parent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", - "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", - "requires": { - "is-glob": "^2.0.0" - } - }, - "global": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/global/-/global-4.3.2.tgz", - "integrity": "sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8=", - "requires": { - "min-document": "^2.19.0", - "process": "~0.5.1" - }, - "dependencies": { - "process": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/process/-/process-0.5.2.tgz", - "integrity": "sha1-FjjYqONML0QKkduVq5rrZ3/Bhc8=" - } - } - }, - "globals": { - "version": "9.18.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", - "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==" - }, - "globby": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", - "integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=", - "requires": { - "array-union": "^1.0.1", - "arrify": "^1.0.0", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "globule": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/globule/-/globule-1.2.0.tgz", - "integrity": "sha1-HcScaCLdnoovoAuiopUAboZkvQk=", - "requires": { - "glob": "~7.1.1", - "lodash": "~4.17.4", - "minimatch": "~3.0.2" - } - }, - "gonzales-pe": { - "version": "3.4.7", - "resolved": "https://registry.npmjs.org/gonzales-pe/-/gonzales-pe-3.4.7.tgz", - "integrity": "sha1-F8e+Z61sr/Ynej44esc26YPSgOw=", - "requires": { - "minimist": "1.1.x" - }, - "dependencies": { - "minimist": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.1.3.tgz", - "integrity": "sha1-O+39kaktOQFvz6ocaB6Pqhoe/ag=" } } }, - "good-listener": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz", - "integrity": "sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=", - "requires": { - "delegate": "^3.1.2" - } - }, - "graceful-fs": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" - }, - "growly": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", - "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=" - }, - "handle-thing": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-1.2.5.tgz", - "integrity": "sha1-/Xqtcmvxpf0W38KbL3pmAdJxOcQ=" - }, - "handlebars": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.0.10.tgz", - "integrity": "sha1-PTDHGLCaPZbyPqTMH0A8TTup/08=", + "jest-runtime": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "dev": true, "requires": { - "async": "^1.4.0", - "optimist": "^0.6.1", - "source-map": "^0.4.4", - "uglify-js": "^2.6" + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" }, "dependencies": { - "async": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", - "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=" + "@jest/environment": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", + "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "dev": true, + "requires": { + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1" + } + }, + "@jest/fake-timers": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", + "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@sinonjs/fake-timers": "^8.0.1", + "@types/node": "*", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + } + }, + "@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dev": true, + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + } + }, + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "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" + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } + }, + "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" + } + }, + "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" + } + }, + "ci-info": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz", + "integrity": "sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==", + "dev": true + }, + "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 + }, + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "dependencies": { + "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 + } + } + }, + "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": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "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" + }, + "dependencies": { + "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" + } + } + } + }, + "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 + }, + "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 + }, + "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.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true + }, + "istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + } + }, + "jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + } + }, + "jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + } + }, + "jest-mock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*" + } + }, + "jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true + }, + "jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + } + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "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": { + "has-flag": "^4.0.0" + } + } + } + }, + "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" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "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": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "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 + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true }, "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, + "strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": 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": { - "amdefine": ">=0.0.4" + "has-flag": "^4.0.0" } - } - } - }, - "har-schema": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz", - "integrity": "sha1-0mMTX0MwfALGAq/I/pWXDAFRNp4=" - }, - "har-validator": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz", - "integrity": "sha1-M0gdDxu/9gDdID11gSpqX7oALio=", - "requires": { - "ajv": "^4.9.1", - "har-schema": "^1.0.5" - } - }, - "harmony-reflect": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.0.tgz", - "integrity": "sha512-0kZ1XcoelFOLEjEtvWAZyq/1S55eDSieWEJwme311MNVNcRpvjlr2zA66kBV6WAB8C1XI1p1cXCnFPqd1BxlPg==" - }, - "has": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.1.tgz", - "integrity": "sha1-hGFzP1OLCDfJNh45qauelwTcLyg=", - "requires": { - "function-bind": "^1.0.2" - } - }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "has-flag": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", - "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=" - }, - "has-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", - "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=" - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "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" + } + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + } + } }, - "has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "jest-serializer": { + "version": "27.4.0", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.4.0.tgz", + "integrity": "sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==", "requires": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" + "@types/node": "*", + "graceful-fs": "^4.2.4" }, "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + "graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==" } } }, - "has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "jest-snapshot": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "dev": true, "requires": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" }, "dependencies": { - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dev": true, "requires": { - "kind-of": "^3.0.2" + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + } + }, + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "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" + } + }, + "babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } + }, + "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" + } + }, + "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" + } + }, + "ci-info": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz", + "integrity": "sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==", + "dev": true + }, + "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 + }, + "diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "dev": true + }, + "expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.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" + } + }, + "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" }, "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "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": { - "is-buffer": "^1.1.5" + "brace-expansion": "^1.1.7" } } } }, - "kind-of": { + "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 + }, + "has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "hash-base": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-2.0.2.tgz", - "integrity": "sha1-ZuodhW206KVHDK32/OI65SRO8uE=", - "requires": { - "inherits": "^2.0.1" - } - }, - "hash.js": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.3.tgz", - "integrity": "sha512-/UETyP0W22QILqS+6HowevwhEFJ3MBJnwTf75Qob9Wz9t0DPuisL8kW8YZMK62dHAKE1c1p+gY1TtOLY+USEHA==", - "requires": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.0" - } - }, - "hasha": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/hasha/-/hasha-2.2.0.tgz", - "integrity": "sha1-eNfL/B5tZjA/55g3NlmEUXsvbuE=", - "requires": { - "is-stream": "^1.0.1", - "pinkie-promise": "^2.0.0" - } - }, - "hashish": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/hashish/-/hashish-0.0.4.tgz", - "integrity": "sha1-bWC8b/r3Ebav1g5CbQd5iAFOZVQ=", - "requires": { - "traverse": ">=0.2.4" - } - }, - "hawk": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz", - "integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=", - "requires": { - "boom": "2.x.x", - "cryptiles": "2.x.x", - "hoek": "2.x.x", - "sntp": "1.x.x" - } - }, - "he": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz", - "integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0=" - }, - "hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", - "requires": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "hoek": { - "version": "2.16.3", - "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", - "integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0=" - }, - "hoist-non-react-statics": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz", - "integrity": "sha1-qkSM8JhtVcxAdzsXF0t90GbLfPs=" - }, - "home-or-tmp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz", - "integrity": "sha1-42w/LSyufXRqhX440Y1fMqeILbg=", - "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.1" - } - }, - "hosted-git-info": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz", - "integrity": "sha512-pNgbURSuab90KbTqvRPsseaTxOJCZBD0a7t+haSN33piP9cCM4l0CqdzAif2hUqm716UovKB2ROmiabGAKVXyg==" - }, - "hpack.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", - "requires": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" - } - }, - "html-comment-regex": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.1.tgz", - "integrity": "sha1-ZouTd26q5V696POtRkswekljYl4=" - }, - "html-element-attributes": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/html-element-attributes/-/html-element-attributes-1.3.0.tgz", - "integrity": "sha1-8G69/OIt6XnbggICZcrFQfsX1Pw=" - }, - "html-encoding-sniffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.1.tgz", - "integrity": "sha1-eb96eF6klf5mFl5zQVPzY/9UN9o=", - "requires": { - "whatwg-encoding": "^1.0.1" - } - }, - "html-entities": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.2.1.tgz", - "integrity": "sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=" - }, - "html-minifier": { - "version": "3.5.16", - "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.16.tgz", - "integrity": "sha512-zP5EfLSpiLRp0aAgud4CQXPQZm9kXwWjR/cF0PfdOj+jjWnOaCgeZcll4kYXSvIBPeUMmyaSc7mM4IDtA+kboA==", - "requires": { - "camel-case": "3.0.x", - "clean-css": "4.1.x", - "commander": "2.15.x", - "he": "1.1.x", - "param-case": "2.1.x", - "relateurl": "0.2.x", - "uglify-js": "3.3.x" - }, - "dependencies": { - "commander": { - "version": "2.15.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz", - "integrity": "sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==" + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "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 + }, + "istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } + } + }, + "jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dev": true, + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + } + }, + "jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "dev": true + }, + "jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + } + }, + "jest-message-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + } + }, + "jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true + }, + "jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + } + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "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": { + "has-flag": "^4.0.0" + } + } + } + }, + "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" + }, + "dependencies": { + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "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 + }, + "pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true }, - "uglify-js": { - "version": "3.3.28", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.28.tgz", - "integrity": "sha512-68Rc/aA6cswiaQ5SrE979UJcXX+ADA1z33/ZsPd+fbAiVdjZ16OXdbtGO+rJUUBgK6qdf3SOPhQf3K/ybF5Miw==", + "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": { - "commander": "~2.15.0", - "source-map": "~0.6.1" + "has-flag": "^4.0.0" + } + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "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" + } + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" } } } }, - "html-tag-names": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/html-tag-names/-/html-tag-names-1.1.2.tgz", - "integrity": "sha1-9lFolkxanIJnXv2ogoddyyqHXCI=" + "jest-util": { + "version": "27.4.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.4.2.tgz", + "integrity": "sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==", + "requires": { + "@jest/types": "^27.4.2", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.4", + "picomatch": "^2.2.3" + }, + "dependencies": { + "@jest/types": { + "version": "27.4.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz", + "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "ci-info": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.0.tgz", + "integrity": "sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==" + }, + "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==", + "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==" + }, + "graceful-fs": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz", + "integrity": "sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "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==", + "requires": { + "has-flag": "^4.0.0" + } + } + } }, - "html-webpack-plugin": { - "version": "2.30.1", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-2.30.1.tgz", - "integrity": "sha1-f5xCG36pHsRg9WUn1430hO51N9U=", + "jest-validate": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", + "dev": true, "requires": { - "bluebird": "^3.4.7", - "html-minifier": "^3.2.3", - "loader-utils": "^0.2.16", - "lodash": "^4.17.3", - "pretty-error": "^2.0.2", - "toposort": "^1.0.0" + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" }, "dependencies": { - "loader-utils": { - "version": "0.2.17", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", - "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, "requires": { - "big.js": "^3.1.3", - "emojis-list": "^2.0.0", - "json5": "^0.5.0", - "object-assign": "^4.0.1" + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "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" + } + }, + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "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" + } + }, + "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 + }, + "jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "dev": true + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true + }, + "pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + } + } + }, + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": 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": { + "has-flag": "^4.0.0" } } } }, - "htmlescape": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/htmlescape/-/htmlescape-1.1.1.tgz", - "integrity": "sha1-OgPtwiFLyjtmQko+eVk0lQnLA1E=" - }, - "htmlparser2": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz", - "integrity": "sha1-mWwosZFRaovoZQGn15dX5ccMEGg=", + "jest-watcher": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", "dev": true, "requires": { - "domelementtype": "1", - "domhandler": "2.3", - "domutils": "1.5", - "entities": "1.0", - "readable-stream": "1.1" + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" }, "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "requires": { + "type-fest": "^0.21.3" + } + }, + "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" + } + }, + "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" + } + }, + "ci-info": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.5.0.tgz", + "integrity": "sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw==", + "dev": true + }, + "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 + }, + "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 + }, + "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 }, - "readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=", + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "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": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" + "has-flag": "^4.0.0" } }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true } } }, - "http-deceiver": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" - }, - "http-errors": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.1.tgz", - "integrity": "sha1-X4uO2YrKVFZWv1cplzh/kEpyIlc=", - "requires": { - "depd": "1.1.0", - "inherits": "2.0.3", - "setprototypeof": "1.0.3", - "statuses": ">= 1.3.1 < 2" - } - }, - "http-proxy": { - "version": "1.16.2", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.16.2.tgz", - "integrity": "sha1-Bt/ykpUr9k2+hHH6nfcwZtTzd0I=", - "requires": { - "eventemitter3": "1.x.x", - "requires-port": "1.x.x" - } - }, - "http-proxy-middleware": { - "version": "0.17.4", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz", - "integrity": "sha1-ZC6ISIUdZvCdTxJJEoRtuutBuDM=", + "jest-worker": { + "version": "27.4.4", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.4.4.tgz", + "integrity": "sha512-jfwxYJvfua1b1XkyuyPh01ATmgg4e5fPM/muLmhy9Qc6dmiwacQB0MLHaU6IjEsv/+nAixHGxTn8WllA27Pn0w==", "requires": { - "http-proxy": "^1.16.2", - "is-glob": "^3.1.0", - "lodash": "^4.17.2", - "micromatch": "^2.3.11" + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "dependencies": { - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" }, - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "requires": { - "is-extglob": "^2.1.0" + "has-flag": "^4.0.0" } } } }, - "http-signature": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz", - "integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=", - "requires": { - "assert-plus": "^0.2.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" - }, - "hyphenate-style-name": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.2.tgz", - "integrity": "sha1-MRYKNpMK2vH8BMYHT360FGXU7Es=" - }, - "i": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/i/-/i-0.3.6.tgz", - "integrity": "sha1-2WyScyB28HJxG2sQ/X1PZa2O4j0=" - }, - "ical-generator": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/ical-generator/-/ical-generator-0.2.9.tgz", - "integrity": "sha1-ZzEuSEqGgcerwbvncjexP6pbHrg=" - }, - "iconv-lite": { - "version": "0.4.18", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.18.tgz", - "integrity": "sha512-sr1ZQph3UwHTR0XftSbK85OvBbxe/abLGzEnPENCQwmHf7sck8Oyu4ob3LgBxWWxRoM+QszeUyl7jbqapu2TqA==" - }, - "icss-replace-symbols": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", - "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=" - }, - "icss-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-2.1.0.tgz", - "integrity": "sha1-g/Cg7DeL8yRheLbCrZE28TWxyWI=", - "requires": { - "postcss": "^6.0.1" - } - }, - "identity-obj-proxy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", - "integrity": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=", - "requires": { - "harmony-reflect": "^1.4.6" - } - }, - "ieee754": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz", - "integrity": "sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q=" - }, - "ignore": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.3.tgz", - "integrity": "sha1-QyNS5XrM2HqzEQ6C0/6g5HgSFW0=" - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" - }, - "in-publish": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz", - "integrity": "sha1-4g/146KvwmkDILbcVSaCqcf631E=" - }, - "indent-string": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", - "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", - "requires": { - "repeating": "^2.0.0" - } - }, - "indexes-of": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", - "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=" - }, - "indexof": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", - "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=" + "jquery": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.0.tgz", + "integrity": "sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw==" }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "js": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/js/-/js-0.1.0.tgz", + "integrity": "sha1-4dCv1V6jnCso2jBOgUPq8sEz82Y=", "requires": { - "once": "^1.3.0", - "wrappy": "1" + "commander": "~1.1.1" } }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + "js-base64": { + "version": "2.1.9", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz", + "integrity": "sha1-8OgK4DmkvWVLXygfyT8EqRSn/M4=" }, - "ini": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", - "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==" + "js-cookie": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-2.2.1.tgz", + "integrity": "sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==" }, - "inline-source-map": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/inline-source-map/-/inline-source-map-0.6.2.tgz", - "integrity": "sha1-+Tk0ccGKedFyT4Y/o4tYY3Ct4qU=", - "requires": { - "source-map": "~0.5.3" - } + "js-sdsl": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz", + "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==" }, - "inline-style-prefixer": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/inline-style-prefixer/-/inline-style-prefixer-2.0.5.tgz", - "integrity": "sha1-wVPH6I/YT+9cYC6VqBaLJ3BnH+c=", - "requires": { - "bowser": "^1.0.0", - "hyphenate-style-name": "^1.0.1" - } + "js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", + "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=" }, - "inquirer": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-0.12.0.tgz", - "integrity": "sha1-HvK/1jUE3wvHV4X/+MLEHfEvB34=", + "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==", "requires": { - "ansi-escapes": "^1.1.0", - "ansi-regex": "^2.0.0", - "chalk": "^1.0.0", - "cli-cursor": "^1.0.1", - "cli-width": "^2.0.0", - "figures": "^1.3.5", - "lodash": "^4.3.0", - "readline2": "^1.0.1", - "run-async": "^0.1.0", - "rx-lite": "^3.1.2", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.0", - "through": "^2.3.6" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "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" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" } } }, - "insert-module-globals": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.0.1.tgz", - "integrity": "sha1-wDv04BywhtW15azorQr+eInWOMM=", - "requires": { - "JSONStream": "^1.0.3", - "combine-source-map": "~0.7.1", - "concat-stream": "~1.5.1", - "is-buffer": "^1.1.0", - "lexical-scope": "^1.2.0", - "process": "~0.11.0", - "through2": "^2.0.0", - "xtend": "^4.0.0" - } - }, - "internal-ip": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-1.2.0.tgz", - "integrity": "sha1-rp+/k7mEh4eF1QqN4bNWlWBYz1w=", - "requires": { - "meow": "^3.3.0" - } - }, - "interpret": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.0.3.tgz", - "integrity": "sha1-y8NcYu7uc/Gat7EKgBURQBr8D5A=" + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" }, - "invariant": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz", - "integrity": "sha1-nh9WrArNtr8wMwbzOL47IErmA2A=", + "jsdom": { + "version": "9.12.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-9.12.0.tgz", + "integrity": "sha1-6MVG//ywbADUgzyoRBD+1/igl9Q=", "requires": { - "loose-envify": "^1.0.0" + "abab": "^1.0.3", + "acorn": "^4.0.4", + "acorn-globals": "^3.1.0", + "array-equal": "^1.0.0", + "content-type-parser": "^1.0.1", + "cssom": ">= 0.3.2 < 0.4.0", + "cssstyle": ">= 0.2.37 < 0.3.0", + "escodegen": "^1.6.1", + "html-encoding-sniffer": "^1.0.1", + "nwmatcher": ">= 1.3.9 < 2.0.0", + "parse5": "^1.5.1", + "request": "^2.79.0", + "sax": "^1.2.1", + "symbol-tree": "^3.2.1", + "tough-cookie": "^2.3.2", + "webidl-conversions": "^4.0.0", + "whatwg-encoding": "^1.0.1", + "whatwg-url": "^4.3.0", + "xml-name-validator": "^2.0.1" + }, + "dependencies": { + "parse5": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-1.5.1.tgz", + "integrity": "sha1-m387DeMr543CQBsXVzzK8Pb1nZQ=" + } } }, - "invert-kv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" + "jsesc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz", + "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=" }, - "ip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", - "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + "json": { + "version": "9.0.6", + "resolved": "https://registry.npmjs.org/json/-/json-9.0.6.tgz", + "integrity": "sha1-eXLCpaSKQmeNsnMMfCxO5uTiRYU=" }, - "ipaddr.js": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.3.0.tgz", - "integrity": "sha1-HgOlL9rYOou7KyXL9JmLTP/NPew=" + "json-loader": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/json-loader/-/json-loader-0.5.4.tgz", + "integrity": "sha1-i6oTZaYy9Yo8RtIBdfxgAsluN94=" }, - "is-absolute-url": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", - "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=" + "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==" }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "requires": { - "kind-of": "^3.0.2" - } + "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==" }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + "json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" }, - "is-arrow-function": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-arrow-function/-/is-arrow-function-2.0.3.tgz", - "integrity": "sha1-Kb4sLY2UUIUri7r7Y1unuNjofsI=", + "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==" + }, + "json-stable-stringify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz", + "integrity": "sha1-YRwj6BTbN1Un34URk9tZ3Sryf0U=", "requires": { - "is-callable": "^1.0.4" + "jsonify": "~0.0.0" } }, - "is-binary-path": { + "json-stable-stringify-without-jsonify": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "requires": { - "binary-extensions": "^1.0.0" - } + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" }, - "is-boolean-object": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.0.0.tgz", - "integrity": "sha1-mPiygDBoQhmpXzdc+9iM40Bd/5M=" + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" }, - "is-buffer": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz", - "integrity": "sha1-Hzsm72E7IUuIy8ojzGwB2Hlh7sw=" + "json3": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==" }, - "is-builtin-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", - "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", + "json5": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", + "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=" + }, + "jsonfile": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", + "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=", "requires": { - "builtin-modules": "^1.0.0" + "graceful-fs": "^4.1.6" } }, - "is-callable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz", - "integrity": "sha1-hut1OSgF3cM69xySoO7fdO52BLI=" + "jsonify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", + "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=" }, - "is-ci": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.0.10.tgz", - "integrity": "sha1-9zkzayYyNlBhqdSCcM1WrjNpMY4=", - "requires": { - "ci-info": "^1.0.0" - } + "jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=" }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "jsonpointer": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.0.tgz", + "integrity": "sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==" + }, + "jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "requires": { - "kind-of": "^3.0.2" + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + } } }, - "is-date-object": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", - "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=" - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "jstransform": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/jstransform/-/jstransform-10.1.0.tgz", + "integrity": "sha1-tMSb9j8WLBCLA0g5moc3xxOwqDo=", "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" + "base62": "0.1.1", + "esprima-fb": "13001.1001.0-dev-harmony-fb", + "source-map": "0.1.31" }, "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==" + "esprima-fb": { + "version": "13001.1001.0-dev-harmony-fb", + "resolved": "https://registry.npmjs.org/esprima-fb/-/esprima-fb-13001.1001.0-dev-harmony-fb.tgz", + "integrity": "sha1-YzrNtA2b1NuKHB1owGqUKVn60rA=" + }, + "source-map": { + "version": "0.1.31", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.31.tgz", + "integrity": "sha1-n3BNDWnZ4TioG63267T94z0VHGE=", + "requires": { + "amdefine": ">=0.0.4" + } } } }, - "is-directory": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", - "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=" + "jsx-ast-utils": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz", + "integrity": "sha1-OGchPo3Xm/Ho8jAMDPwe+xgsDfE=" }, - "is-dotfile": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", - "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=" + "keypress": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/keypress/-/keypress-0.1.0.tgz", + "integrity": "sha1-SjGI1CkbZrT2XtuZ+AaqmuKTWSo=" }, - "is-equal": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/is-equal/-/is-equal-1.5.5.tgz", - "integrity": "sha1-XoXxlX4FKIMkf+s4aWWju6Ffuz0=", - "requires": { - "has": "^1.0.1", - "is-arrow-function": "^2.0.3", - "is-boolean-object": "^1.0.0", - "is-callable": "^1.1.3", - "is-date-object": "^1.0.1", - "is-generator-function": "^1.0.6", - "is-number-object": "^1.0.3", - "is-regex": "^1.0.3", - "is-string": "^1.0.4", - "is-symbol": "^1.0.1", - "object.entries": "^1.0.4" - } + "killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==" }, - "is-equal-shallow": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", - "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { - "is-primitive": "^2.0.0" + "is-buffer": "^1.1.5" } }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true }, - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=" + "known-css-properties": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.3.0.tgz", + "integrity": "sha512-QMQcnKAiQccfQTqtBh/qwquGZ2XK/DXND1jrcN9M8gMMy99Gwla7GQjndVUsEqIaRyP6bsFRuhwRj5poafBGJQ==" }, - "is-finite": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", - "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", + "labeled-stream-splicer": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.2.tgz", + "integrity": "sha512-Ca4LSXFFZUjPScRaqOcFxneA0VpKZr4MMYCljyQr4LIewTLb3Y0IUTIsnBBsVubIeEfxeSZpSjSsRM8APEQaAw==", "requires": { - "number-is-nan": "^1.0.0" + "inherits": "^2.0.1", + "stream-splicer": "^2.0.0" } }, - "is-fullwidth-code-point": { + "lazy": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/lazy/-/lazy-1.0.11.tgz", + "integrity": "sha1-2qBoIGKCVCwIgojpdcKXwa53tpA=" + }, + "lcid": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", "requires": { - "number-is-nan": "^1.0.0" + "invert-kv": "^1.0.0" } }, - "is-generator-function": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.6.tgz", - "integrity": "sha1-nnFlPNFf/zQcecQVFGChMdMen8Q=" + "left-pad": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz", + "integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==" }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", + "leven": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz", + "integrity": "sha1-wuep93IJTe6dNCAq6KzORoeHVYA=" + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", "requires": { - "is-extglob": "^1.0.0" + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" } }, - "is-mobile": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/is-mobile/-/is-mobile-0.2.2.tgz", - "integrity": "sha1-Di4AbZntLCFVt2HfgPKjYZrirZ8=" + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" }, - "is-my-json-valid": { - "version": "2.16.0", - "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.16.0.tgz", - "integrity": "sha1-8Hndm/2uZe4gOKrorLyGqxCeNpM=", + "livereactload": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/livereactload/-/livereactload-3.5.0.tgz", + "integrity": "sha512-8wgX1BueCS3gfOMAszwU9JlnRlAW6WLWZcAw1MRviDPrd92PIoY5DQeJwpBQo5LAbikwEFQ5lwz8R1ofTTGF9A==", "requires": { - "generate-function": "^2.0.0", - "generate-object-property": "^1.1.0", - "jsonpointer": "^4.0.0", - "xtend": "^4.0.0" + "cli-color": "^1.1.0", + "convert-source-map": "^1.3.0", + "crc": "^3.4.4", + "left-pad": "^1.1.3", + "lodash": "^4.17.11", + "offset-sourcemap-lines": "^1.0.0", + "react-proxy": "^1.1.8", + "through2": "^2.0.3", + "umd": "^3.0.1", + "ws": "^6.1.x" } }, - "is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", "requires": { - "kind-of": "^3.0.2" + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" } }, - "is-number-object": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.3.tgz", - "integrity": "sha1-8mWrian0RQNO9q/xWo8AsA9VF5k=" - }, - "is-odd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-odd/-/is-odd-2.0.0.tgz", - "integrity": "sha512-OTiixgpZAT1M4NHgS5IguFp/Vz2VI3U7Goh4/HA1adtwyLtSBrxYlcSYkhpAE07s4fKEcjrFxyvtQBND4vFQyQ==", + "loader-fs-cache": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/loader-fs-cache/-/loader-fs-cache-1.0.1.tgz", + "integrity": "sha1-VuC/CL2XCLJqdltoUJhAyN7J/bw=", "requires": { - "is-number": "^4.0.0" + "find-cache-dir": "^0.1.1", + "mkdirp": "0.5.1" }, "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" + "find-cache-dir": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz", + "integrity": "sha1-yN765XyKUqinhPnjHFfHQumToLk=", + "requires": { + "commondir": "^1.0.1", + "mkdirp": "^0.5.1", + "pkg-dir": "^1.0.0" + } + }, + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "requires": { + "minimist": "0.0.8" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "pkg-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz", + "integrity": "sha1-ektQio1bstYp1EcFb/TpyTFM89Q=", + "requires": { + "find-up": "^1.0.0" + } } } }, - "is-path-cwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", - "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=" + "loader-runner": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.0.tgz", + "integrity": "sha1-9IKuqC1UPgeSFwDVpG7yb9rGuKI=" }, - "is-path-in-cwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz", - "integrity": "sha1-ZHdYK4IU1gI0YJRWcAO+ip6sBNw=", - "requires": { - "is-path-inside": "^1.0.0" - } + "loader-utils": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==" }, - "is-path-inside": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.0.tgz", - "integrity": "sha1-/AbloWg/vaE95mev9xe7wQpI838=", + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", "requires": { - "path-is-inside": "^1.0.1" + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" } }, - "is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, - "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==", + "lodash._baseassign": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz", + "integrity": "sha1-jDigmVAPIVrQnlnxci/QxSv+Ck4=", "requires": { - "isobject": "^3.0.1" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - } + "lodash._basecopy": "^3.0.0", + "lodash.keys": "^3.0.0" } }, - "is-posix-bracket": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", - "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=" - }, - "is-primitive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", - "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=" + "lodash._baseclone": { + "version": "4.5.7", + "resolved": "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-4.5.7.tgz", + "integrity": "sha1-zkKt4IOE711i+nfDD2GkbmhvhDQ=" }, - "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 + "lodash._basecopy": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", + "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=" }, - "is-property": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", - "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=" + "lodash._bindcallback": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz", + "integrity": "sha1-5THCdkTPi1epnhftlbNcdIeJOS4=" }, - "is-regex": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", - "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", + "lodash._createassigner": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz", + "integrity": "sha1-g4pbri/aymOsIt7o4Z+k5taXCxE=", "requires": { - "has": "^1.0.1" + "lodash._bindcallback": "^3.0.0", + "lodash._isiterateecall": "^3.0.0", + "lodash.restparam": "^3.0.0" } }, - "is-resolvable": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.0.0.tgz", - "integrity": "sha1-jfV8YeouPFAUCNEA+wE8+NbgzGI=", - "requires": { - "tryit": "^1.0.1" - } + "lodash._getnative": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", + "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=" }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + "lodash._isiterateecall": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", + "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=" }, - "is-string": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.4.tgz", - "integrity": "sha1-zDqbaYV9Yh6WNyWiTK7shzuCbmQ=" + "lodash.assign": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", + "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=" }, - "is-subset": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz", - "integrity": "sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=" + "lodash.assignin": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz", + "integrity": "sha1-uo31+4QesKPoBEIysOJjqNxqKKI=" }, - "is-svg": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz", - "integrity": "sha1-z2EJDaDZ77yrhyLeum8DIgjbsOk=", - "requires": { - "html-comment-regex": "^1.1.0" - } + "lodash.bind": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz", + "integrity": "sha1-euMBfpOWIqwxt9fX3LGzTbFpDTU=" }, - "is-symbol": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz", - "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI=" + "lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=" }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + "lodash.capitalize": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", + "integrity": "sha1-+CbJtOKoUR2E46yinbBeGk87cqk=" }, - "is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=" + "lodash.clone": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.3.2.tgz", + "integrity": "sha1-5WsXa2gjp93jj38r9Y3n1ZcSAOk=", + "requires": { + "lodash._baseclone": "~4.5.0" + } }, - "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==" + "lodash.defaults": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", + "integrity": "sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=" }, - "is_js": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/is_js/-/is_js-0.9.0.tgz", - "integrity": "sha1-CrlFQFArp6+iTIVqqYVWFmnpxS0=" + "lodash.filter": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz", + "integrity": "sha1-ZosdSYFgOuHMWm+nYBQ+SAtMSs4=" }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + "lodash.flatten": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", + "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=" }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + "lodash.flattendeep": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", + "integrity": "sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=" }, - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "requires": { - "isarray": "1.0.0" - } + "lodash.foreach": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz", + "integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM=" }, - "isomorphic-fetch": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz", - "integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=", - "requires": { - "node-fetch": "^1.0.1", - "whatwg-fetch": ">=0.10.0" - } + "lodash.isarguments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", + "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=" }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + "lodash.isarray": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", + "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=" }, - "istanbul-api": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/istanbul-api/-/istanbul-api-1.1.11.tgz", - "integrity": "sha1-/MC0YeKzvaceMFFVE4I4doJX2d4=", - "requires": { - "async": "^2.1.4", - "fileset": "^2.0.2", - "istanbul-lib-coverage": "^1.1.1", - "istanbul-lib-hook": "^1.0.7", - "istanbul-lib-instrument": "^1.7.4", - "istanbul-lib-report": "^1.1.1", - "istanbul-lib-source-maps": "^1.2.1", - "istanbul-reports": "^1.1.1", - "js-yaml": "^3.7.0", - "mkdirp": "^0.5.1", - "once": "^1.4.0" - } + "lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=" }, - "istanbul-lib-coverage": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz", - "integrity": "sha512-0+1vDkmzxqJIn5rcoEqapSB4DmPxE31EtI2dF2aCkV5esN9EWHxZ0dwgDClivMXJqE7zaYQxq30hj5L0nlTN5Q==" + "lodash.kebabcase": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", + "integrity": "sha1-hImxyw0p/4gZXM7KRI/21swpXDY=" }, - "istanbul-lib-hook": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-1.0.7.tgz", - "integrity": "sha512-3U2HB9y1ZV9UmFlE12Fx+nPtFqIymzrqCksrXujm3NVbAZIJg/RfYgO1XiIa0mbmxTjWpVEVlkIZJ25xVIAfkQ==", + "lodash.keys": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", + "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=", "requires": { - "append-transform": "^0.4.0" + "lodash._getnative": "^3.0.0", + "lodash.isarguments": "^3.0.0", + "lodash.isarray": "^3.0.0" } }, - "istanbul-lib-instrument": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.7.4.tgz", - "integrity": "sha1-6f2SDkdn89Ge3HZeLWs/XMvQ7qg=", - "requires": { - "babel-generator": "^6.18.0", - "babel-template": "^6.16.0", - "babel-traverse": "^6.18.0", - "babel-types": "^6.18.0", - "babylon": "^6.17.4", - "istanbul-lib-coverage": "^1.1.1", - "semver": "^5.3.0" - } + "lodash.map": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", + "integrity": "sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=" }, - "istanbul-lib-report": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz", - "integrity": "sha512-tvF+YmCmH4thnez6JFX06ujIA19WPa9YUiwjc1uALF2cv5dmE3It8b5I8Ob7FHJ70H9Y5yF+TDkVa/mcADuw1Q==", - "requires": { - "istanbul-lib-coverage": "^1.1.1", - "mkdirp": "^0.5.1", - "path-parse": "^1.0.5", - "supports-color": "^3.1.2" - }, - "dependencies": { - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "requires": { - "has-flag": "^1.0.0" - } - } - } + "lodash.memoize": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-3.0.4.tgz", + "integrity": "sha1-LcvSwofLwKVcxCMovQxzYVDVPj8=" }, - "istanbul-lib-source-maps": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.1.tgz", - "integrity": "sha512-mukVvSXCn9JQvdJl8wP/iPhqig0MRtuWuD4ZNKo6vB2Ik//AmhAKe3QnPN02dmkRe3lTudFk3rzoHhwU4hb94w==", - "requires": { - "debug": "^2.6.3", - "istanbul-lib-coverage": "^1.1.1", - "mkdirp": "^0.5.1", - "rimraf": "^2.6.1", - "source-map": "^0.5.3" - } + "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==" }, - "istanbul-reports": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-1.1.1.tgz", - "integrity": "sha512-P8G873A0kW24XRlxHVGhMJBhQ8gWAec+dae7ZxOBzxT4w+a9ATSPvRVK3LB1RAJ9S8bg2tOyWHAGW40Zd2dKfw==", - "requires": { - "handlebars": "^4.0.3" - } + "lodash.pick": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", + "integrity": "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=" }, - "jest": { - "version": "20.0.4", - "resolved": "https://registry.npmjs.org/jest/-/jest-20.0.4.tgz", - "integrity": "sha1-PdJgwpidba1nix6cxNkZRPbWAqw=", - "dev": true, - "requires": { - "jest-cli": "^20.0.4" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "callsites": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", - "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" - } - }, - "jest-cli": { - "version": "20.0.4", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-20.0.4.tgz", - "integrity": "sha1-5TKxnYiuW8bEF+iwWTpv6VSx3JM=", - "dev": true, - "requires": { - "ansi-escapes": "^1.4.0", - "callsites": "^2.0.0", - "chalk": "^1.1.3", - "graceful-fs": "^4.1.11", - "is-ci": "^1.0.10", - "istanbul-api": "^1.1.1", - "istanbul-lib-coverage": "^1.0.1", - "istanbul-lib-instrument": "^1.4.2", - "istanbul-lib-source-maps": "^1.1.0", - "jest-changed-files": "^20.0.3", - "jest-config": "^20.0.4", - "jest-docblock": "^20.0.3", - "jest-environment-jsdom": "^20.0.3", - "jest-haste-map": "^20.0.4", - "jest-jasmine2": "^20.0.4", - "jest-message-util": "^20.0.3", - "jest-regex-util": "^20.0.3", - "jest-resolve-dependencies": "^20.0.3", - "jest-runtime": "^20.0.4", - "jest-snapshot": "^20.0.3", - "jest-util": "^20.0.3", - "micromatch": "^2.3.11", - "node-notifier": "^5.0.2", - "pify": "^2.3.0", - "slash": "^1.0.0", - "string-length": "^1.0.1", - "throat": "^3.0.0", - "which": "^1.2.12", - "worker-farm": "^1.3.1", - "yargs": "^7.0.2" - } - }, - "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 - } - } + "lodash.reduce": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz", + "integrity": "sha1-8atrg5KZrUj3hKu/R2WW8DuRTTs=" }, - "jest-changed-files": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-20.0.3.tgz", - "integrity": "sha1-k5TVzGXEOEBhSb7xv01Sto4D4/g=", - "dev": true + "lodash.reject": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz", + "integrity": "sha1-gNZJLcFHCGS79YNTO2UfQqn1JBU=" }, - "jest-config": { - "version": "20.0.4", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-20.0.4.tgz", - "integrity": "sha1-43kwqyIXyRNgXv8T5712PsSPruo=", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "glob": "^7.1.1", - "jest-environment-jsdom": "^20.0.3", - "jest-environment-node": "^20.0.3", - "jest-jasmine2": "^20.0.4", - "jest-matcher-utils": "^20.0.3", - "jest-regex-util": "^20.0.3", - "jest-resolve": "^20.0.4", - "jest-validate": "^20.0.3", - "pretty-format": "^20.0.3" - }, - "dependencies": { - "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" - } - }, - "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 - } - } + "lodash.restparam": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", + "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=" }, - "jest-diff": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-20.0.3.tgz", - "integrity": "sha1-gfKI/Z5nXw+yPHXxwrGURf5YZhc=", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "diff": "^3.2.0", - "jest-matcher-utils": "^20.0.3", - "pretty-format": "^20.0.3" - }, - "dependencies": { - "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" - } - }, - "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 - } - } + "lodash.set": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz", + "integrity": "sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM=", + "dev": true }, - "jest-docblock": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-20.0.3.tgz", - "integrity": "sha1-F76phDQswz2DxQ++FUXqDvqkRxI=", + "lodash.some": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz", + "integrity": "sha1-G7nzFO9ri63tE7VJFpsqlF62jk0=" + }, + "lodash.tail": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.tail/-/lodash.tail-4.1.1.tgz", + "integrity": "sha1-0jM6NtnncXyK0vfKyv7HwytERmQ=", "dev": true }, - "jest-environment-jsdom": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-20.0.3.tgz", - "integrity": "sha1-BIqKwS7iJfcZBBdxODS7mZeH3pk=", - "dev": true, + "lodash.throttle": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", + "integrity": "sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=" + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + }, + "loglevel": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz", + "integrity": "sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==" + }, + "longest": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", + "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=" + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "requires": { - "jest-mock": "^20.0.3", - "jest-util": "^20.0.3", - "jsdom": "^9.12.0" + "js-tokens": "^3.0.0 || ^4.0.0" } }, - "jest-environment-node": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-20.0.3.tgz", - "integrity": "sha1-1Ii8RhKvLCRumG6K52caCZFj1AM=", - "dev": true, + "loud-rejection": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", "requires": { - "jest-mock": "^20.0.3", - "jest-util": "^20.0.3" + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" } }, - "jest-get-type": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-21.2.0.tgz", - "integrity": "sha512-y2fFw3C+D0yjNSDp7ab1kcd6NUYfy3waPTlD8yWkAtiocJdBRQqNoRqVfMNxgj+IjT0V5cBIHJO0z9vuSSZ43Q==" + "lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=" }, - "jest-haste-map": { - "version": "20.0.4", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-20.0.4.tgz", - "integrity": "sha1-ZT61XIic48Ah97lGk/IKQVm63wM=", - "dev": true, + "lru-cache": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz", + "integrity": "sha512-q4spe4KTfsAS1SUHLO0wz8Qiyf1+vMIAgpRYioFYDMNqKfHQbg+AVDH3i4fvpl71/P1L0dBl+fQi+P37UYf0ew==", "requires": { - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.1.11", - "jest-docblock": "^20.0.3", - "micromatch": "^2.3.11", - "sane": "~1.6.0", - "worker-farm": "^1.3.1" + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" } }, - "jest-jasmine2": { - "version": "20.0.4", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-20.0.4.tgz", - "integrity": "sha1-/MWxQReA2RHQQpAu8YWehS5g1eE=", - "dev": true, + "lru-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz", + "integrity": "sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM=", "requires": { - "chalk": "^1.1.3", - "graceful-fs": "^4.1.11", - "jest-diff": "^20.0.3", - "jest-matcher-utils": "^20.0.3", - "jest-matchers": "^20.0.3", - "jest-message-util": "^20.0.3", - "jest-snapshot": "^20.0.3", - "once": "^1.4.0", - "p-map": "^1.1.1" - }, - "dependencies": { - "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" - } - }, - "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 - } + "es5-ext": "~0.10.2" } }, - "jest-matcher-utils": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz", - "integrity": "sha1-s6a443yld4A7CDKpixZPRLeBVhI=", - "dev": true, + "lz-string": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.4.4.tgz", + "integrity": "sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=" + }, + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", "requires": { - "chalk": "^1.1.3", - "pretty-format": "^20.0.3" + "pify": "^3.0.0" }, "dependencies": { - "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" - } - }, - "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 + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" } } }, - "jest-matchers": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-matchers/-/jest-matchers-20.0.3.tgz", - "integrity": "sha1-ymnbHDLbWm9wf6XgQBq7VXAN/WA=", - "dev": true, + "make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "makeerror": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", + "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", "requires": { - "jest-diff": "^20.0.3", - "jest-matcher-utils": "^20.0.3", - "jest-message-util": "^20.0.3", - "jest-regex-util": "^20.0.3" + "tmpl": "1.0.x" } }, - "jest-message-util": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-20.0.3.tgz", - "integrity": "sha1-auwoRDBvyw5udNV5bBAG2W/dgxw=", - "dev": true, + "mamacro": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz", + "integrity": "sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==" + }, + "map-age-cleaner": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", + "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", "requires": { - "chalk": "^1.1.3", - "micromatch": "^2.3.11", - "slash": "^1.0.0" - }, - "dependencies": { - "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" - } - }, - "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 - } + "p-defer": "^1.0.0" } }, - "jest-mock": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-20.0.3.tgz", - "integrity": "sha1-i8Bw6QQUqhVcEajWTIaaDVxx2lk=", - "dev": true + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" }, - "jest-regex-util": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-20.0.3.tgz", - "integrity": "sha1-hburXRM+RGJbGfr4xqpRItCF12I=", - "dev": true + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=" }, - "jest-resolve": { - "version": "20.0.4", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-20.0.4.tgz", - "integrity": "sha1-lEiz6La6/BVHlETGSZBFt//ll6U=", - "dev": true, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", "requires": { - "browser-resolve": "^1.11.2", - "is-builtin-module": "^1.0.0", - "resolve": "^1.3.2" + "object-visit": "^1.0.0" } }, - "jest-resolve-dependencies": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-20.0.3.tgz", - "integrity": "sha1-bhSntxevDyyzZnxUneQK8Bexcjo=", - "dev": true, - "requires": { - "jest-regex-util": "^20.0.3" - } + "math-expression-evaluator": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.3.8.tgz", + "integrity": "sha512-9FbRY3i6U+CbHgrdNbAUaisjWTozkm1ZfupYQJiZ87NtYHk2Zh9DvxMgp/fifxVhqTLpd5fCCLossUbpZxGeKw==" }, - "jest-runner": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-21.2.1.tgz", - "integrity": "sha512-Anb72BOQlHqF/zETqZ2K20dbYsnqW/nZO7jV8BYENl+3c44JhMrA8zd1lt52+N7ErnsQMd2HHKiVwN9GYSXmrg==", + "math-random": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz", + "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==" + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", "requires": { - "jest-config": "^21.2.1", - "jest-docblock": "^21.2.0", - "jest-haste-map": "^21.2.0", - "jest-jasmine2": "^21.2.1", - "jest-message-util": "^21.2.1", - "jest-runtime": "^21.2.1", - "jest-util": "^21.2.1", - "pify": "^3.0.0", - "throat": "^4.0.0", - "worker-farm": "^1.3.1" + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" }, "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" - }, - "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==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" }, "dependencies": { - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "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" - } + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" } } }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" - }, - "babel-jest": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-21.2.0.tgz", - "integrity": "sha512-O0W2qLoWu1QOoOGgxiR2JID4O6WSpxPiQanrkyi9SSlM0PJ60Ptzlck47lhtnr9YZO3zYOsxHwnyeWJ6AffoBQ==", + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "requires": { - "babel-plugin-istanbul": "^4.0.0", - "babel-preset-jest": "^21.2.0" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" } }, - "babel-plugin-jest-hoist": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.2.0.tgz", - "integrity": "sha512-yi5QuiVyyvhBUDLP4ButAnhYzkdrUwWDtvUJv71hjH3fclhnZg4HkDeqaitcR2dZZx/E67kGkRcPVjtVu+SJfQ==" + "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==" }, - "babel-preset-jest": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-21.2.0.tgz", - "integrity": "sha512-hm9cBnr2h3J7yXoTtAVV0zg+3vg0Q/gT2GYuzlreTU0EPkJRtlNgKJJ3tBKEn0+VjAi3JykV6xCJkuUYttEEfA==", + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", "requires": { - "babel-plugin-jest-hoist": "^21.2.0", - "babel-plugin-syntax-object-rest-spread": "^6.13.0" + "safe-buffer": "~5.2.0" + } + } + } + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + }, + "mem": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz", + "integrity": "sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y=", + "requires": { + "mimic-fn": "^1.0.0" + } + }, + "memoize-one": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", + "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==" + }, + "memoizee": { + "version": "0.4.15", + "resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.4.15.tgz", + "integrity": "sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ==", + "requires": { + "d": "^1.0.1", + "es5-ext": "^0.10.53", + "es6-weak-map": "^2.0.3", + "event-emitter": "^0.3.5", + "is-promise": "^2.2.2", + "lru-queue": "^0.1.0", + "next-tick": "^1.1.0", + "timers-ext": "^0.1.7" + }, + "dependencies": { + "d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "requires": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" } }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "es5-ext": { + "version": "0.10.53", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", + "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", "requires": { - "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" + "es6-iterator": "~2.0.3", + "es6-symbol": "~3.1.3", + "next-tick": "~1.0.0" }, "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } + "next-tick": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", + "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" } } }, - "callsites": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" - }, - "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", "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": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - }, - "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==" - } + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" } }, - "expect": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/expect/-/expect-21.2.1.tgz", - "integrity": "sha512-orfQQqFRTX0jH7znRIGi8ZMR8kTNpXklTTz8+HGTpmTKZo3Occ6JNB5FXMb8cRuiiC/GyDqsr30zUa66ACYlYw==", + "es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", "requires": { - "ansi-styles": "^3.2.0", - "jest-diff": "^21.2.1", - "jest-get-type": "^21.2.0", - "jest-matcher-utils": "^21.2.1", - "jest-message-util": "^21.2.1", - "jest-regex-util": "^21.2.0" + "d": "^1.0.1", + "ext": "^1.1.2" } }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "es6-weak-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", + "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", "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", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } + "d": "1", + "es5-ext": "^0.10.46", + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.1" } }, - "fill-range": { + "next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" + } + } + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "meow": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", + "requires": { + "camelcase-keys": "^2.0.0", + "decamelize": "^1.1.2", + "loud-rejection": "^1.0.0", + "map-obj": "^1.0.1", + "minimist": "^1.1.3", + "normalize-package-data": "^2.3.4", + "object-assign": "^4.0.1", + "read-pkg-up": "^1.0.1", + "redent": "^1.0.0", + "trim-newlines": "^1.0.0" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + } + } + }, + "merge": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/merge/-/merge-1.2.0.tgz", + "integrity": "sha1-dTHjnUlJwoGma4xabgJl6LBYlNo=" + }, + "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==" + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "micromatch": { + "version": "2.3.11", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", + "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", + "requires": { + "arr-diff": "^2.0.0", + "array-unique": "^0.2.1", + "braces": "^1.8.2", + "expand-brackets": "^0.1.4", + "extglob": "^0.3.1", + "filename-regex": "^2.0.0", + "is-extglob": "^1.0.0", + "is-glob": "^2.0.1", + "kind-of": "^3.0.2", + "normalize-path": "^2.0.1", + "object.omit": "^2.0.0", + "parse-glob": "^3.0.4", + "regex-cache": "^0.4.2" + } + }, + "miller-rabin": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.0.tgz", + "integrity": "sha1-SmL7HUKTPAVYOYL0xxb2+55sbT0=", + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "mime-db": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.27.0.tgz", + "integrity": "sha1-gg9XIpa70g7CXtVeW13oaeVDbrE=" + }, + "mime-types": { + "version": "2.1.15", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.15.tgz", + "integrity": "sha1-pOv1BkCUVpI3uM9wBGd20J/JKu0=", + "requires": { + "mime-db": "~1.27.0" + } + }, + "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==" + }, + "min-document": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", + "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=", + "requires": { + "dom-walk": "^0.1.0" + } + }, + "min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" + }, + "minimalistic-assert": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz", + "integrity": "sha1-cCvi3aazf0g2vLP121ZkG2Sh09M=" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" + }, + "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" + } + }, + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + }, + "minimist-options": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "requires": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "dependencies": { + "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==" + } + } + }, + "minipass": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.6.tgz", + "integrity": "sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + } + }, + "mississippi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz", + "integrity": "sha512-zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw==", + "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": "^2.0.1", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + } + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "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==", "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } + "is-plain-object": "^2.0.4" } - }, - "fsevents": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz", - "integrity": "sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==", - "optional": true, + } + } + }, + "mixin-object": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz", + "integrity": "sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4=", + "dev": true, + "requires": { + "for-in": "^0.1.3", + "is-extendable": "^0.1.1" + }, + "dependencies": { + "for-in": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz", + "integrity": "sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE=", + "dev": true + } + } + }, + "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" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + } + } + }, + "mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" + }, + "mkdirp-promise": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz", + "integrity": "sha1-6bj2jlUsaKnBcTuEiD96HdA5uKE=", + "requires": { + "mkdirp": "*" + } + }, + "mock-local-storage": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/mock-local-storage/-/mock-local-storage-1.0.5.tgz", + "integrity": "sha1-iZ/zAAJ87+1HgW5txTm7BZ/M5Ik=", + "requires": { + "core-js": "^0.8.3", + "global": "^4.3.2" + }, + "dependencies": { + "core-js": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-0.8.4.tgz", + "integrity": "sha1-wiZl8eDRucPF4bCNq9HxCGleT88=" + } + } + }, + "mockdate": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/mockdate/-/mockdate-2.0.2.tgz", + "integrity": "sha1-WuDA6vj+I+AJzQH5iJtCxPY0rxI=" + }, + "module-deps": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/module-deps/-/module-deps-4.1.1.tgz", + "integrity": "sha1-IyFYM/HaE/1gbMuAh7RIUty4If0=", + "requires": { + "JSONStream": "^1.0.3", + "browser-resolve": "^1.7.0", + "cached-path-relative": "^1.0.0", + "concat-stream": "~1.5.0", + "defined": "^1.0.0", + "detective": "^4.0.0", + "duplexer2": "^0.1.2", + "inherits": "^2.0.1", + "parents": "^1.0.0", + "readable-stream": "^2.0.2", + "resolve": "^1.1.3", + "stream-combiner2": "^1.1.1", + "subarg": "^1.0.0", + "through2": "^2.0.0", + "xtend": "^4.0.0" + } + }, + "moment": { + "version": "2.29.4", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", + "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" + }, + "moo": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.1.tgz", + "integrity": "sha512-I1mnb5xn4fO80BH9BLcF0yLypy2UKl+Cb01Fu0hJRkJjlCRtxZMWkTdAtDd5ZqCOxtCkhmRwyI57vWT+1iZ67w==" + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "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" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "msgpack5": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/msgpack5/-/msgpack5-3.6.1.tgz", + "integrity": "sha512-VoY2AaoowHZLLKyEb5FRzuhdSzXn5quGjcMKJOJHJPxp9baYZx5t6jiHUhp5aNRlqqlt+5GXQGovMLNKsrm1hg==", + "requires": { + "bl": "^1.2.1", + "inherits": "^2.0.3", + "readable-stream": "^2.3.3", + "safe-buffer": "^5.1.1" + }, + "dependencies": { + "bl": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", + "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", "requires": { - "nan": "^2.9.2", - "node-pre-gyp": "^0.10.0" - }, - "dependencies": { - "abbrev": { - "version": "1.1.1", - "bundled": true, - "optional": true - }, - "ansi-regex": { - "version": "2.1.1", - "bundled": true - }, - "aproba": { - "version": "1.2.0", - "bundled": true, - "optional": true - }, - "are-we-there-yet": { - "version": "1.1.4", - "bundled": true, - "optional": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - } - }, - "balanced-match": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "brace-expansion": { - "version": "1.1.11", - "bundled": true, - "optional": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "chownr": { - "version": "1.0.1", - "bundled": true, - "optional": true - }, - "code-point-at": { - "version": "1.1.0", - "bundled": true, - "optional": true - }, - "concat-map": { - "version": "0.0.1", - "bundled": true, - "optional": true - }, - "console-control-strings": { - "version": "1.1.0", - "bundled": true, - "optional": true - }, - "core-util-is": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "debug": { - "version": "2.6.9", - "bundled": true, - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "deep-extend": { - "version": "0.5.1", - "bundled": true, - "optional": true - }, - "delegates": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "detect-libc": { - "version": "1.0.3", - "bundled": true, - "optional": true - }, - "fs-minipass": { - "version": "1.2.5", - "bundled": true, - "optional": true, - "requires": { - "minipass": "^2.2.1" - } - }, - "fs.realpath": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "gauge": { - "version": "2.7.4", - "bundled": true, - "optional": 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" - } - }, - "glob": { - "version": "7.1.2", - "bundled": true, - "optional": 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" - } - }, - "has-unicode": { - "version": "2.0.1", - "bundled": true, - "optional": true - }, - "iconv-lite": { - "version": "0.4.21", - "bundled": true, - "optional": true, - "requires": { - "safer-buffer": "^2.1.0" - } - }, - "ignore-walk": { - "version": "3.0.1", - "bundled": true, - "optional": true, - "requires": { - "minimatch": "^3.0.4" - } - }, - "inflight": { - "version": "1.0.6", - "bundled": true, - "optional": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.3", - "bundled": true, - "optional": true - }, - "ini": { - "version": "1.3.5", - "bundled": true, - "optional": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "bundled": true, - "optional": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "isarray": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "minimatch": { - "version": "3.0.4", - "bundled": true, - "optional": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "0.0.8", - "bundled": true, - "optional": true - }, - "minipass": { - "version": "2.2.4", - "bundled": true, - "optional": true, - "requires": { - "safe-buffer": "^5.1.1", - "yallist": "^3.0.0" - } - }, - "minizlib": { - "version": "1.1.0", - "bundled": true, - "optional": true, - "requires": { - "minipass": "^2.2.1" - } - }, - "mkdirp": { - "version": "0.5.1", - "bundled": true, - "optional": true, - "requires": { - "minimist": "0.0.8" - } - }, - "ms": { - "version": "2.0.0", - "bundled": true, - "optional": true - }, - "needle": { - "version": "2.2.0", - "bundled": true, - "optional": true, - "requires": { - "debug": "^2.1.2", - "iconv-lite": "^0.4.4", - "sax": "^1.2.4" - } - }, - "node-pre-gyp": { - "version": "0.10.0", - "bundled": true, - "optional": true, - "requires": { - "detect-libc": "^1.0.2", - "mkdirp": "^0.5.1", - "needle": "^2.2.0", - "nopt": "^4.0.1", - "npm-packlist": "^1.1.6", - "npmlog": "^4.0.2", - "rc": "^1.1.7", - "rimraf": "^2.6.1", - "semver": "^5.3.0", - "tar": "^4" - } - }, - "nopt": { - "version": "4.0.1", - "bundled": true, - "optional": true, - "requires": { - "abbrev": "1", - "osenv": "^0.1.4" - } - }, - "npm-bundled": { - "version": "1.0.3", - "bundled": true, - "optional": true - }, - "npm-packlist": { - "version": "1.1.10", - "bundled": true, - "optional": true, - "requires": { - "ignore-walk": "^3.0.1", - "npm-bundled": "^1.0.1" - } - }, - "npmlog": { - "version": "4.1.2", - "bundled": true, - "optional": true, - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "number-is-nan": { - "version": "1.0.1", - "bundled": true, - "optional": true - }, - "object-assign": { - "version": "4.1.1", - "bundled": true, - "optional": true - }, - "once": { - "version": "1.4.0", - "bundled": true, - "optional": true, - "requires": { - "wrappy": "1" - } - }, - "os-homedir": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "os-tmpdir": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "osenv": { - "version": "0.1.5", - "bundled": true, - "optional": true, - "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "bundled": true, - "optional": true - }, - "process-nextick-args": { - "version": "2.0.0", - "bundled": true, - "optional": true - }, - "rc": { - "version": "1.2.7", - "bundled": true, - "optional": true, - "requires": { - "deep-extend": "^0.5.1", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "bundled": true, - "optional": true - } - } - }, - "readable-stream": { - "version": "2.3.6", - "bundled": true, - "optional": 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" - } - }, - "rimraf": { - "version": "2.6.2", - "bundled": true, - "optional": true, - "requires": { - "glob": "^7.0.5" - } - }, - "safe-buffer": { - "version": "5.1.1", - "bundled": true - }, - "safer-buffer": { - "version": "2.1.2", - "bundled": true, - "optional": true - }, - "sax": { - "version": "1.2.4", - "bundled": true, - "optional": true - }, - "semver": { - "version": "5.5.0", - "bundled": true, - "optional": true - }, - "set-blocking": { - "version": "2.0.0", - "bundled": true, - "optional": true - }, - "signal-exit": { - "version": "3.0.2", - "bundled": true, - "optional": true - }, - "string-width": { - "version": "1.0.2", - "bundled": true, - "optional": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "optional": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "bundled": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "bundled": true, - "optional": true - }, - "tar": { - "version": "4.4.1", - "bundled": true, - "optional": true, - "requires": { - "chownr": "^1.0.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.2.4", - "minizlib": "^1.1.0", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.1", - "yallist": "^3.0.2" - } - }, - "util-deprecate": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "wide-align": { - "version": "1.1.2", - "bundled": true, - "optional": true, + "readable-stream": "^2.3.5", + "safe-buffer": "^5.1.1" + }, + "dependencies": { + "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": { - "string-width": "^1.0.2" + "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" } - }, - "wrappy": { - "version": "1.0.2", - "bundled": true - }, - "yallist": { - "version": "3.0.2", - "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==", + "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==" + }, + "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==", "requires": { - "kind-of": "^6.0.0" + "safe-buffer": "~5.1.0" } + } + } + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "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": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" + }, + "mute-stream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz", + "integrity": "sha1-j7+rsKmKJT0xhDMfno3rc3L6xsA=" + }, + "mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "requires": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "nanoid": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-0.2.2.tgz", + "integrity": "sha512-GHoRrvNEKiwdkwQ/enKL8AhQkkrBC/2KxMZkDvQzp8OtkpX8ZAmoYJWFVl7l8F2+HcEJUfdg21Ab2wXXfrvACQ==" + }, + "nanomatch": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.9.tgz", + "integrity": "sha512-n8R9bS8yQ6eSXaV6jHUpKzD8gLsin02w1HSFiegwrs9E098Ylhw5jdyKPaYqvHknHaSCKTPp7C8dGCQ0q9koXA==", + "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-odd": "^2.0.0", + "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": { + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" }, - "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==", + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + }, + "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==" + } + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + }, + "nconf": { + "version": "0.6.9", + "resolved": "https://registry.npmjs.org/nconf/-/nconf-0.6.9.tgz", + "integrity": "sha1-lXDvFe1vmuays8jV5xtm0xk81mE=", + "requires": { + "async": "0.2.9", + "ini": "1.x.x", + "optimist": "0.6.0" + }, + "dependencies": { + "async": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/async/-/async-0.2.9.tgz", + "integrity": "sha1-32MGD789Myhqdqr21Vophtn/hhk=" + }, + "optimist": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.0.tgz", + "integrity": "sha1-aUJIJvNAX3nxQub8PZrljU27kgA=", "requires": { - "kind-of": "^6.0.0" + "minimist": "~0.0.1", + "wordwrap": "~0.0.2" } }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=" + } + } + }, + "ncp": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz", + "integrity": "sha1-q8xsvT7C7Spyn/bnwfqPAXhKhXQ=" + }, + "nearley": { + "version": "2.20.1", + "resolved": "https://registry.npmjs.org/nearley/-/nearley-2.20.1.tgz", + "integrity": "sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==", + "requires": { + "commander": "^2.19.0", + "moo": "^0.5.0", + "railroad-diagrams": "^1.0.0", + "randexp": "0.4.6" + }, + "dependencies": { + "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==" + } + } + }, + "negotiator": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", + "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=" + }, + "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==" + }, + "next-tick": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", + "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" + }, + "nice-try": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.4.tgz", + "integrity": "sha512-2NpiFHqC87y/zFke0fC0spBXL3bBsoh/p5H1EFhshxjCR5+0g2d6BiXbUFz9v1sAcxsk2htp2eQnNIci2dIYcA==" + }, + "no-case": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "requires": { + "lower-case": "^1.1.1" + } + }, + "nock": { + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/nock/-/nock-13.2.1.tgz", + "integrity": "sha512-CoHAabbqq/xZEknubuyQMjq6Lfi5b7RtK6SoNK6m40lebGp3yiMagWtIoYaw2s9sISD7wPuCfwFpivVHX/35RA==", + "dev": true, + "requires": { + "debug": "^4.1.0", + "json-stringify-safe": "^5.0.1", + "lodash.set": "^4.3.2", + "propagate": "^2.0.0" + }, + "dependencies": { + "debug": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", + "integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==", + "dev": true, "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" + "ms": "2.1.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": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "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-fetch": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.1.tgz", + "integrity": "sha512-j8XsFGCLw79vWXkZtMSmmLaOk9z5SQ9bV/tkbZVCqvgwzrjAGq66igobLofHtF63NvMTp2WjytpsNTGKa+XRIQ==", + "requires": { + "encoding": "^0.1.11", + "is-stream": "^1.0.1" + } + }, + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==" + }, + "node-gyp": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-7.1.2.tgz", + "integrity": "sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ==", + "requires": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.3", + "nopt": "^5.0.0", + "npmlog": "^4.1.2", + "request": "^2.88.2", + "rimraf": "^3.0.2", + "semver": "^7.3.2", + "tar": "^6.0.2", + "which": "^2.0.2" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" } }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" }, - "jest-config": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-21.2.1.tgz", - "integrity": "sha512-fJru5HtlD/5l2o25eY9xT0doK3t2dlglrqoGpbktduyoI0T5CwuB++2YfoNZCrgZipTwPuAGonYv0q7+8yDc/A==", + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" + }, + "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": { - "chalk": "^2.0.1", - "glob": "^7.1.1", - "jest-environment-jsdom": "^21.2.1", - "jest-environment-node": "^21.2.1", - "jest-get-type": "^21.2.0", - "jest-jasmine2": "^21.2.1", - "jest-regex-util": "^21.2.0", - "jest-resolve": "^21.2.0", - "jest-util": "^21.2.1", - "jest-validate": "^21.2.1", - "pretty-format": "^21.2.1" + "delayed-stream": "~1.0.0" + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" } }, - "jest-diff": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-21.2.1.tgz", - "integrity": "sha512-E5fu6r7PvvPr5qAWE1RaUwIh/k6Zx/3OOkZ4rk5dBJkEWRrUuSgbMt2EO8IUTPTd6DOqU3LW6uTIwX5FRvXoFA==", + "glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", "requires": { - "chalk": "^2.0.1", - "diff": "^3.2.0", - "jest-get-type": "^21.2.0", - "pretty-format": "^21.2.1" + "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" } }, - "jest-docblock": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-21.2.0.tgz", - "integrity": "sha512-5IZ7sY9dBAYSV+YjQ0Ovb540Ku7AO9Z5o2Cg789xj167iQuZ2cG+z0f3Uct6WeYLbU6aQiM2pCs7sZ+4dotydw==" + "graceful-fs": { + "version": "4.2.9", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz", + "integrity": "sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==" }, - "jest-environment-jsdom": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-21.2.1.tgz", - "integrity": "sha512-mecaeNh0eWmzNrUNMWARysc0E9R96UPBamNiOCYL28k7mksb1d0q6DD38WKP7ABffjnXyUWJPVaWRgUOivwXwg==", + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", "requires": { - "jest-mock": "^21.2.0", - "jest-util": "^21.2.1", - "jsdom": "^9.12.0" + "ajv": "^6.12.3", + "har-schema": "^2.0.0" } }, - "jest-environment-node": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-21.2.1.tgz", - "integrity": "sha512-R211867wx9mVBVHzrjGRGTy5cd05K7eqzQl/WyZixR/VkJ4FayS8qkKXZyYnwZi6Rxo6WEV81cDbiUx/GfuLNw==", + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", "requires": { - "jest-mock": "^21.2.0", - "jest-util": "^21.2.1" + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" } }, - "jest-haste-map": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-21.2.0.tgz", - "integrity": "sha512-5LhsY/loPH7wwOFRMs+PT4aIAORJ2qwgbpMFlbWbxfN0bk3ZCwxJ530vrbSiTstMkYLao6JwBkLhCJ5XbY7ZHw==", + "mime-db": { + "version": "1.51.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz", + "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==" + }, + "mime-types": { + "version": "2.1.34", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz", + "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", "requires": { - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.1.11", - "jest-docblock": "^21.2.0", - "micromatch": "^2.3.11", - "sane": "^2.0.0", - "worker-farm": "^1.3.1" + "mime-db": "1.51.0" } }, - "jest-jasmine2": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-21.2.1.tgz", - "integrity": "sha512-lw8FXXIEekD+jYNlStfgNsUHpfMWhWWCgHV7n0B7mA/vendH7vBFs8xybjQsDzJSduptBZJHqQX9SMssya9+3A==", + "npmlog": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", + "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", "requires": { - "chalk": "^2.0.1", - "expect": "^21.2.1", - "graceful-fs": "^4.1.11", - "jest-diff": "^21.2.1", - "jest-matcher-utils": "^21.2.1", - "jest-message-util": "^21.2.1", - "jest-snapshot": "^21.2.1", - "p-cancelable": "^0.3.0" + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" } }, - "jest-matcher-utils": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-21.2.1.tgz", - "integrity": "sha512-kn56My+sekD43dwQPrXBl9Zn9tAqwoy25xxe7/iY4u+mG8P3ALj5IK7MLHZ4Mi3xW7uWVCjGY8cm4PqgbsqMCg==", + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", "requires": { - "chalk": "^2.0.1", - "jest-get-type": "^21.2.0", - "pretty-format": "^21.2.1" + "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.3", + "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.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" } }, - "jest-message-util": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-21.2.1.tgz", - "integrity": "sha512-EbC1X2n0t9IdeMECJn2BOg7buOGivCvVNjqKMXTzQOu7uIfLml+keUfCALDh8o4rbtndIeyGU8/BKfoTr/LVDQ==", + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "requires": { - "chalk": "^2.0.1", - "micromatch": "^2.3.11", - "slash": "^1.0.0" + "glob": "^7.1.3" } }, - "jest-mock": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-21.2.0.tgz", - "integrity": "sha512-aZDfyVf0LEoABWiY6N0d+O963dUQSyUa4qgzurHR3TBDPen0YxKCJ6l2i7lQGh1tVdsuvdrCZ4qPj+A7PievCw==" + "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==" }, - "jest-regex-util": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-21.2.0.tgz", - "integrity": "sha512-BKQ1F83EQy0d9Jen/mcVX7D+lUt2tthhK/2gDWRgLDJRNOdRgSp1iVqFxP8EN1ARuypvDflRfPzYT8fQnoBQFQ==" + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" }, - "jest-resolve": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-21.2.0.tgz", - "integrity": "sha512-vefQ/Lr+VdNvHUZFQXWtOqHX3HEdOc2MtSahBO89qXywEbUxGPB9ZLP9+BHinkxb60UT2Q/tTDOS6rYc6Mwigw==", + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "requires": { - "browser-resolve": "^1.11.2", - "chalk": "^2.0.1", - "is-builtin-module": "^1.0.0" + "isexe": "^2.0.0" + } + } + } + }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" + }, + "node-libs-browser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.0.0.tgz", + "integrity": "sha1-o6WeyXAkmFtG6Vg3lkb5bEthZkY=", + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.1.4", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^1.0.0", + "https-browserify": "0.0.1", + "os-browserify": "^0.2.0", + "path-browserify": "0.0.0", + "process": "^0.11.0", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.0.5", + "stream-browserify": "^2.0.1", + "stream-http": "^2.3.1", + "string_decoder": "^0.10.25", + "timers-browserify": "^2.0.2", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.10.3", + "vm-browserify": "0.0.4" + }, + "dependencies": { + "buffer": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", + "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=", + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" } }, - "jest-runtime": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-21.2.1.tgz", - "integrity": "sha512-6omlpA3+NSE+rHwD0PQjNEjZeb2z+oRmuehMfM1tWQVum+E0WV3pFt26Am0DUfQkkPyTABvxITRjCUclYgSOsA==", + "https-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-0.0.1.tgz", + "integrity": "sha1-P5E2XKvmC3ftDruiS0VOPgnZWoI=" + }, + "os-browserify": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.2.1.tgz", + "integrity": "sha1-Y/xMzuXS13Y9Jrv4YBB45sLgBE8=" + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + }, + "timers-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.2.tgz", + "integrity": "sha1-q0iDz1l9zVCvIRNJoA+8pWrIa4Y=", "requires": { - "babel-core": "^6.0.0", - "babel-jest": "^21.2.0", - "babel-plugin-istanbul": "^4.0.0", - "chalk": "^2.0.1", - "convert-source-map": "^1.4.0", - "graceful-fs": "^4.1.11", - "jest-config": "^21.2.1", - "jest-haste-map": "^21.2.0", - "jest-regex-util": "^21.2.0", - "jest-resolve": "^21.2.0", - "jest-util": "^21.2.1", - "json-stable-stringify": "^1.0.1", - "micromatch": "^2.3.11", - "slash": "^1.0.0", - "strip-bom": "3.0.0", - "write-file-atomic": "^2.1.0", - "yargs": "^9.0.0" + "setimmediate": "^1.0.4" + } + } + } + }, + "node-notifier": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.1.2.tgz", + "integrity": "sha1-L6nhJgX6EACdRFSdb82KY93g5P8=", + "requires": { + "growly": "^1.3.0", + "semver": "^5.3.0", + "shellwords": "^0.1.0", + "which": "^1.2.12" + }, + "dependencies": { + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + } + } + }, + "node-releases": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz", + "integrity": "sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==" + }, + "node-sass": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-7.0.0.tgz", + "integrity": "sha512-6yUnsD3L8fVbgMX6nKQqZkjRcG7a/PpmF0pEyeWf+BgbTj2ToJlCYrnUifL2KbjV5gIY22I3oppahBWA3B+jUg==", + "requires": { + "async-foreach": "^0.1.3", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "gaze": "^1.0.0", + "get-stdin": "^4.0.1", + "glob": "^7.0.3", + "lodash": "^4.17.15", + "meow": "^9.0.0", + "nan": "^2.13.2", + "node-gyp": "^7.1.0", + "npmlog": "^5.0.0", + "request": "^2.88.0", + "sass-graph": "2.2.5", + "stdout-stream": "^1.4.0", + "true-case-path": "^1.0.2" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "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" } }, - "jest-snapshot": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-21.2.1.tgz", - "integrity": "sha512-bpaeBnDpdqaRTzN8tWg0DqOTo2DvD3StOemxn67CUd1p1Po+BUpvePAp44jdJ7Pxcjfg+42o4NHw1SxdCA2rvg==", + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "requires": { - "chalk": "^2.0.1", - "jest-diff": "^21.2.1", - "jest-matcher-utils": "^21.2.1", - "mkdirp": "^0.5.1", - "natural-compare": "^1.4.0", - "pretty-format": "^21.2.1" + "color-convert": "^2.0.1" } }, - "jest-util": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-21.2.1.tgz", - "integrity": "sha512-r20W91rmHY3fnCoO7aOAlyfC51x2yeV3xF+prGsJAUsYhKeV670ZB8NO88Lwm7ASu8SdH0S+U+eFf498kjhA4g==", + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "camelcase-keys": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", "requires": { - "callsites": "^2.0.0", - "chalk": "^2.0.1", - "graceful-fs": "^4.1.11", - "jest-message-util": "^21.2.1", - "jest-mock": "^21.2.0", - "jest-validate": "^21.2.1", - "mkdirp": "^0.5.1" + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" } }, - "jest-validate": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-21.2.1.tgz", - "integrity": "sha512-k4HLI1rZQjlU+EC682RlQ6oZvLrE5SCh3brseQc24vbZTxzT/k/3urar5QMCVgjadmSO7lECeGdc6YxnM3yEGg==", + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "requires": { - "chalk": "^2.0.1", - "jest-get-type": "^21.2.0", - "leven": "^2.1.0", - "pretty-format": "^21.2.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" } }, - "json-stable-stringify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", - "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", + "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==", "requires": { - "jsonify": "~0.0.0" + "color-name": "~1.1.4" } }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + "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==" }, - "load-json-file": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", - "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", + "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": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "strip-bom": "^3.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - } + "delayed-stream": "~1.0.0" } }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - }, - "nan": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz", - "integrity": "sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==", - "optional": true + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" }, - "os-locale": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz", - "integrity": "sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==", + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "requires": { - "execa": "^0.7.0", - "lcid": "^1.0.0", - "mem": "^1.1.0" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" } }, - "path-type": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", - "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", "requires": { - "pify": "^2.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - } + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" } }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, - "pretty-format": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-21.2.1.tgz", - "integrity": "sha512-ZdWPGYAnYfcVP8yKA3zFjCn8s4/17TeYH28MXuC8vTp0o21eXjbFGcOAXZEaDaOFJjc3h2qa7HQNHNshhvoh2A==", + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", "requires": { - "ansi-regex": "^3.0.0", - "ansi-styles": "^3.2.0" + "ajv": "^6.12.3", + "har-schema": "^2.0.0" } }, - "read-pkg": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", - "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "requires": { - "load-json-file": "^2.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^2.0.0" + "function-bind": "^1.1.1" } }, - "read-pkg-up": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", - "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", "requires": { - "find-up": "^2.0.0", - "read-pkg": "^2.0.0" + "lru-cache": "^6.0.0" } }, - "sane": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/sane/-/sane-2.5.2.tgz", - "integrity": "sha1-tNwYYcIbQn6SlQej51HiosuKs/o=", + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", "requires": { - "anymatch": "^2.0.0", - "capture-exit": "^1.2.0", - "exec-sh": "^0.2.0", - "fb-watchman": "^2.0.0", - "fsevents": "^1.2.3", - "micromatch": "^3.1.4", - "minimist": "^1.1.1", - "walker": "~1.0.5", - "watch": "~0.18.0" - }, - "dependencies": { - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "requires": { - "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" - } - } + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" } }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "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==" + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" + "p-locate": "^4.1.0" } }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "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==", "requires": { - "ansi-regex": "^3.0.0" + "yallist": "^4.0.0" } }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + "map-obj": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==" }, - "throat": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz", - "integrity": "sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=" + "meow": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", + "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", + "requires": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize": "^1.2.0", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + } }, - "watch": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/watch/-/watch-0.18.0.tgz", - "integrity": "sha1-KAlUdsbffJDJYxOJkMClQj60uYY=", + "mime-db": { + "version": "1.51.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz", + "integrity": "sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==" + }, + "mime-types": { + "version": "2.1.34", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz", + "integrity": "sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==", "requires": { - "exec-sh": "^0.2.0", - "minimist": "^1.2.0" + "mime-db": "1.51.0" } }, - "which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + "nan": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==" }, - "yargs": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-9.0.1.tgz", - "integrity": "sha1-UqzCP+7Kw0BCB47njAwAf1CF20w=", + "normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", "requires": { - "camelcase": "^4.1.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^2.0.0", - "read-pkg-up": "^2.0.0", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^2.0.0", - "which-module": "^2.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^7.0.0" + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + } + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" } }, - "yargs-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz", - "integrity": "sha1-jQrELxbqVd69MyyvTEA4s+P139k=", + "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==", "requires": { - "camelcase": "^4.1.0" + "p-limit": "^2.2.0" } - } - } - }, - "jest-runtime": { - "version": "20.0.4", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-20.0.4.tgz", - "integrity": "sha1-osgCIZxCA/dU3xQE5JAYYWnRJNg=", - "dev": true, - "requires": { - "babel-core": "^6.0.0", - "babel-jest": "^20.0.3", - "babel-plugin-istanbul": "^4.0.0", - "chalk": "^1.1.3", - "convert-source-map": "^1.4.0", - "graceful-fs": "^4.1.11", - "jest-config": "^20.0.4", - "jest-haste-map": "^20.0.4", - "jest-regex-util": "^20.0.3", - "jest-resolve": "^20.0.4", - "jest-util": "^20.0.3", - "json-stable-stringify": "^1.0.1", - "micromatch": "^2.3.11", - "strip-bom": "3.0.0", - "yargs": "^7.0.2" - }, - "dependencies": { - "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, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "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" + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" } }, - "json-stable-stringify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", - "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", - "dev": 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==" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + }, + "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==", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + }, + "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==" + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", "requires": { - "jsonify": "~0.0.0" + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "dependencies": { + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + } } }, - "strip-bom": { + "redent": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "dev": true + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.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 - } - } - }, - "jest-snapshot": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-20.0.3.tgz", - "integrity": "sha1-W4R+GtsaTZCFKn+fElCG4YfHZWY=", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "jest-diff": "^20.0.3", - "jest-matcher-utils": "^20.0.3", - "jest-util": "^20.0.3", - "natural-compare": "^1.4.0", - "pretty-format": "^20.0.3" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "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.3", + "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.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + } }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, + "resolve": { + "version": "1.22.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz", + "integrity": "sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==", "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" + "is-core-module": "^2.8.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "dependencies": { + "is-core-module": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz", + "integrity": "sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==", + "requires": { + "has": "^1.0.3" + } + } } }, - "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 - } - } - }, - "jest-util": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-20.0.3.tgz", - "integrity": "sha1-DAf32A2C9OWmfG+LnD/n9lz9Mq0=", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "graceful-fs": "^4.1.11", - "jest-message-util": "^20.0.3", - "jest-mock": "^20.0.3", - "jest-validate": "^20.0.3", - "leven": "^2.1.0", - "mkdirp": "^0.5.1" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true + "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==" }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, + "strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", "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" + "min-indent": "^1.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 - } - } - }, - "jest-validate": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-20.0.3.tgz", - "integrity": "sha1-0M/R3k9XnymEhJJcKA+PHZTsPKs=", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "jest-matcher-utils": "^20.0.3", - "leven": "^2.1.0", - "pretty-format": "^20.0.3" - }, - "dependencies": { - "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, + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "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" + "has-flag": "^4.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 + "trim-newlines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==" + }, + "type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" } } }, - "jquery": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.2.1.tgz", - "integrity": "sha1-XE2d5lKvbNCncBVKYxu6ErAVx4c=" - }, - "js": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/js/-/js-0.1.0.tgz", - "integrity": "sha1-4dCv1V6jnCso2jBOgUPq8sEz82Y=", - "requires": { - "commander": "~1.1.1" - } - }, - "js-base64": { - "version": "2.1.9", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.1.9.tgz", - "integrity": "sha1-8OgK4DmkvWVLXygfyT8EqRSn/M4=" - }, - "js-cookie": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/js-cookie/-/js-cookie-2.1.4.tgz", - "integrity": "sha1-2k7FA4ZvFJ0WTPJfV57zEBUCXY0=" - }, - "js-tokens": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=" - }, - "js-yaml": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz", - "integrity": "sha1-XJZ93YN6m/3KXy3oQlOr6KHAO4A=", - "requires": { - "argparse": "^1.0.7", - "esprima": "^2.6.0" - } - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", - "optional": true - }, - "jsdom": { - "version": "9.12.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-9.12.0.tgz", - "integrity": "sha1-6MVG//ywbADUgzyoRBD+1/igl9Q=", + "nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", "requires": { - "abab": "^1.0.3", - "acorn": "^4.0.4", - "acorn-globals": "^3.1.0", - "array-equal": "^1.0.0", - "content-type-parser": "^1.0.1", - "cssom": ">= 0.3.2 < 0.4.0", - "cssstyle": ">= 0.2.37 < 0.3.0", - "escodegen": "^1.6.1", - "html-encoding-sniffer": "^1.0.1", - "nwmatcher": ">= 1.3.9 < 2.0.0", - "parse5": "^1.5.1", - "request": "^2.79.0", - "sax": "^1.2.1", - "symbol-tree": "^3.2.1", - "tough-cookie": "^2.3.2", - "webidl-conversions": "^4.0.0", - "whatwg-encoding": "^1.0.1", - "whatwg-url": "^4.3.0", - "xml-name-validator": "^2.0.1" - }, - "dependencies": { - "parse5": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-1.5.1.tgz", - "integrity": "sha1-m387DeMr543CQBsXVzzK8Pb1nZQ=" - } + "abbrev": "1" } }, - "jsesc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz", - "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=" - }, - "jshint": { - "version": "2.9.5", - "resolved": "https://registry.npmjs.org/jshint/-/jshint-2.9.5.tgz", - "integrity": "sha1-HnJSkVzmgbQIJ+4UJIxG006apiw=", - "dev": true, + "normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", "requires": { - "cli": "~1.0.0", - "console-browserify": "1.1.x", - "exit": "0.1.x", - "htmlparser2": "3.8.x", - "lodash": "3.7.x", - "minimatch": "~3.0.2", - "shelljs": "0.3.x", - "strip-json-comments": "1.0.x" + "hosted-git-info": "^2.1.4", + "is-builtin-module": "^1.0.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" }, "dependencies": { - "lodash": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.7.0.tgz", - "integrity": "sha1-Nni9irmVBXwHreg27S7wh9qBHUU=", - "dev": true - }, - "shelljs": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz", - "integrity": "sha1-NZbmMHp4FUT1kfN9phg2DzHbV7E=", - "dev": true - }, - "strip-json-comments": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz", - "integrity": "sha1-HhX7ysl9Pumb8tc7TGVrCCu6+5E=", - "dev": true + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" } } }, - "json": { - "version": "9.0.6", - "resolved": "https://registry.npmjs.org/json/-/json-9.0.6.tgz", - "integrity": "sha1-eXLCpaSKQmeNsnMMfCxO5uTiRYU=" + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "requires": { + "remove-trailing-separator": "^1.0.1" + } }, - "json-loader": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/json-loader/-/json-loader-0.5.4.tgz", - "integrity": "sha1-i6oTZaYy9Yo8RtIBdfxgAsluN94=" + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + "normalize-url": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", + "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", + "requires": { + "object-assign": "^4.0.1", + "prepend-http": "^1.0.0", + "query-string": "^4.1.0", + "sort-keys": "^1.0.0" + } }, - "json-schema-traverse": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", - "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=" + "normalizr": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/normalizr/-/normalizr-3.6.1.tgz", + "integrity": "sha512-8iEmqXmPtll8PwbEFrbPoDxVw7MKnNvt3PZzR2Xvq9nggEEOgBlNICPXYzyZ4w4AkHUzCU998mdatER3n2VaMA==" }, - "json-stable-stringify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz", - "integrity": "sha1-YRwj6BTbN1Un34URk9tZ3Sryf0U=", + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", "requires": { - "jsonify": "~0.0.0" + "path-key": "^2.0.0" } }, - "json-stringify-safe": { + "npmlog": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, - "json3": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz", - "integrity": "sha1-PAQ0dD35Pi9cQq7nsZvLSDV19OE=" + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", + "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", + "requires": { + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + }, + "are-we-there-yet": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + } + }, + "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==" + }, + "gauge": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + "requires": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" + } + }, + "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==" + }, + "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" + } + }, + "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==" + }, + "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==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + } + } }, - "json5": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", - "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=" + "nssocket": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/nssocket/-/nssocket-0.5.3.tgz", + "integrity": "sha1-iDyi7GBfXtZKTVGQsmJUAZKPj40=", + "requires": { + "eventemitter2": "~0.4.14", + "lazy": "~1.0.11" + } }, - "jsonfile": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", - "integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=", + "nth-check": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.1.tgz", + "integrity": "sha1-mSms32KPwsQQmN6rgqxYDPFJquQ=", "requires": { - "graceful-fs": "^4.1.6" + "boolbase": "~1.0.0" } }, - "jsonify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", - "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=" + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" }, - "jsonparse": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", - "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=" + "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=" }, - "jsonpointer": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz", - "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk=" + "nwmatcher": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.4.4.tgz", + "integrity": "sha512-3iuY4N5dhgMpCUrOVnuAdGrgxVqV2cJpM+XNccjR2DKOB1RUP0aA+wGXEiNziG/UKboFyGBIoKOaNlJxx8bciQ==" }, - "jsprim": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.0.tgz", - "integrity": "sha1-o7h+QCmNjDgFUtjMdiigu5WiKRg=", - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.0.2", - "json-schema": "0.2.3", - "verror": "1.3.6" - }, - "dependencies": { - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - } - } + "nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", + "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", + "dev": true }, - "jstransform": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/jstransform/-/jstransform-10.1.0.tgz", - "integrity": "sha1-tMSb9j8WLBCLA0g5moc3xxOwqDo=", + "oauth-sign": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", + "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", "requires": { - "base62": "0.1.1", - "esprima-fb": "13001.1001.0-dev-harmony-fb", - "source-map": "0.1.31" + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" }, "dependencies": { - "esprima-fb": { - "version": "13001.1001.0-dev-harmony-fb", - "resolved": "https://registry.npmjs.org/esprima-fb/-/esprima-fb-13001.1001.0-dev-harmony-fb.tgz", - "integrity": "sha1-YzrNtA2b1NuKHB1owGqUKVn60rA=" - }, - "source-map": { - "version": "0.1.31", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.31.tgz", - "integrity": "sha1-n3BNDWnZ4TioG63267T94z0VHGE=", + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "requires": { - "amdefine": ">=0.0.4" + "is-descriptor": "^0.1.0" } } } }, - "jsx-ast-utils": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz", - "integrity": "sha1-OGchPo3Xm/Ho8jAMDPwe+xgsDfE=" + "object-hash": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-1.1.8.tgz", + "integrity": "sha1-KKZZz5h9lqTavnhgKJ87UybEoDw=" }, - "kew": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz", - "integrity": "sha1-edk9LTM2PW/dKXCzNdkUGtWR15s=" + "object-inspect": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.2.2.tgz", + "integrity": "sha1-yCEV5PzIiK6hTWTCLk8X9qcNXlo=" }, - "keypress": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/keypress/-/keypress-0.1.0.tgz", - "integrity": "sha1-SjGI1CkbZrT2XtuZ+AaqmuKTWSo=" + "object-is": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.0.1.tgz", + "integrity": "sha1-CqYOyZiaCz7Xlc9NBvYs8a1lObY=" }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } + "object-keys": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz", + "integrity": "sha1-xUYBd4rVYPEULODgG8yotW0TQm0=" }, - "klaw": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", - "integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=", - "requires": { - "graceful-fs": "^4.1.9" - } + "object-path": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.9.2.tgz", + "integrity": "sha1-D9mnT8X60a45aLWGvaXGMr1sBaU=" }, - "labeled-stream-splicer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz", - "integrity": "sha1-pS4dE4AkwAuGscDJH2d5GLiuClk=", + "object-unfreeze": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object-unfreeze/-/object-unfreeze-1.1.0.tgz", + "integrity": "sha1-aWKL6h88nSn06wumOzgALXDqPOk=" + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", "requires": { - "inherits": "^2.0.1", - "isarray": "~0.0.1", - "stream-splicer": "^2.0.0" + "isobject": "^3.0.0" }, "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" } } }, - "lazy": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/lazy/-/lazy-1.0.11.tgz", - "integrity": "sha1-2qBoIGKCVCwIgojpdcKXwa53tpA=" - }, - "lazy-cache": { - "version": "0.2.7", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.7.tgz", - "integrity": "sha1-f+3fLctu23fRHvHRF6tf/fCrG2U=" - }, - "lcid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", - "requires": { - "invert-kv": "^1.0.0" - } - }, - "left-pad": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.1.3.tgz", - "integrity": "sha1-YS9hwDPzqeCOk58crr7qQbbzGZo=" - }, - "leven": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz", - "integrity": "sha1-wuep93IJTe6dNCAq6KzORoeHVYA=" - }, - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "object.assign": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", + "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" + "define-properties": "^1.1.2", + "function-bind": "^1.1.1", + "has-symbols": "^1.0.0", + "object-keys": "^1.0.11" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + } } }, - "lexical-scope": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/lexical-scope/-/lexical-scope-1.2.0.tgz", - "integrity": "sha1-/Ope3HBKSzqHls3KQZw6CvryLfQ=", + "object.entries": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.0.4.tgz", + "integrity": "sha1-G/mk3SKI9bM/Opk9JXZh8F0WGl8=", "requires": { - "astw": "^2.0.0" + "define-properties": "^1.1.2", + "es-abstract": "^1.6.1", + "function-bind": "^1.1.0", + "has": "^1.0.1" } }, - "lint-staged": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-3.6.1.tgz", - "integrity": "sha1-JEI8i3vZnZbhWs0ayMs5KnjlhYI=", - "dev": true, + "object.fromentries": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz", + "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", "requires": { - "app-root-path": "^2.0.0", - "cosmiconfig": "^1.1.0", - "execa": "^0.7.0", - "listr": "^0.12.0", - "lodash.chunk": "^4.2.0", - "minimatch": "^3.0.0", - "npm-which": "^3.0.1", - "p-map": "^1.1.1", - "staged-git-files": "0.0.4" + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" }, "dependencies": { - "cosmiconfig": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-1.1.0.tgz", - "integrity": "sha1-DeoPmATv37kp+7GxiOJVU+oFPTc=", - "dev": true, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "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==", "requires": { - "graceful-fs": "^4.1.2", - "js-yaml": "^3.4.3", - "minimist": "^1.2.0", - "object-assign": "^4.0.1", - "os-homedir": "^1.0.1", - "parse-json": "^2.2.0", - "pinkie-promise": "^2.0.0", - "require-from-string": "^1.1.0" + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" } }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - } - } - }, - "listr": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/listr/-/listr-0.12.0.tgz", - "integrity": "sha1-a84sD1YD+klYDqF81qAMwOX6RRo=", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "cli-truncate": "^0.2.1", - "figures": "^1.7.0", - "indent-string": "^2.1.0", - "is-promise": "^2.1.0", - "is-stream": "^1.1.0", - "listr-silent-renderer": "^1.1.1", - "listr-update-renderer": "^0.2.0", - "listr-verbose-renderer": "^0.4.0", - "log-symbols": "^1.0.2", - "log-update": "^1.0.2", - "ora": "^0.2.3", - "p-map": "^1.1.1", - "rxjs": "^5.0.0-beta.11", - "stream-to-observable": "^0.1.0", - "strip-ansi": "^3.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "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" + "function-bind": "^1.1.1" } }, - "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 + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + }, + "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==" + }, + "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==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "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==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "object-inspect": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "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==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } } } }, - "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 - }, - "listr-update-renderer": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/listr-update-renderer/-/listr-update-renderer-0.2.0.tgz", - "integrity": "sha1-yoDhd5tOcCZoB+ju0a1qvjmFUPk=", - "dev": true, + "object.hasown": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.0.tgz", + "integrity": "sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==", "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": "^1.0.2", - "strip-ansi": "^3.0.1" + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1" }, "dependencies": { - "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": { + "define-properties": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "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==", "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" + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" } }, - "indent-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.1.0.tgz", - "integrity": "sha1-CP9DNGAziDmbMp5rlTjcejz13n0=", - "dev": true + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, - "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 + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + }, + "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==" + }, + "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==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "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==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "object-inspect": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.1.tgz", + "integrity": "sha512-If7BjFlpkzzBeV1cqgT3OSWT3azyoxDGajR+iGnFBfVV2EWyDyWaZZW2ERDjUaY2QM8i5jI3Sj7mhsM4DDAqWA==" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "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==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } } } }, - "listr-verbose-renderer": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/listr-verbose-renderer/-/listr-verbose-renderer-0.4.0.tgz", - "integrity": "sha1-RNwBuww0oDxXIVTU0Izemx3FYg8=", - "dev": true, + "object.omit": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", + "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", + "requires": { + "for-own": "^0.1.4", + "is-extendable": "^0.1.1" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", "requires": { - "chalk": "^1.1.3", - "cli-cursor": "^1.0.2", - "date-fns": "^1.27.2", - "figures": "^1.7.0" + "isobject": "^3.0.1" }, "dependencies": { - "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" - } - }, - "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 + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" } } }, - "livereactload": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/livereactload/-/livereactload-3.3.0.tgz", - "integrity": "sha1-zclecWCcP2HPJ8x8JyHJ8LOed5I=", + "object.values": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.0.4.tgz", + "integrity": "sha1-5STaCbT2b/Bd9FdUbscqyZ8TBpo=", + "requires": { + "define-properties": "^1.1.2", + "es-abstract": "^1.6.1", + "function-bind": "^1.1.0", + "has": "^1.0.1" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + }, + "offset-sourcemap-lines": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/offset-sourcemap-lines/-/offset-sourcemap-lines-1.0.1.tgz", + "integrity": "sha1-WFTf90tz/Abvy2HXtyGoET2ZvpI=", + "requires": { + "source-map": "^0.5.0" + } + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", "requires": { - "cli-color": "1.1.0", - "convert-source-map": "1.3.0", - "crc": "3.4.4", - "left-pad": "1.1.3", - "lodash": "4.17.4", - "offset-sourcemap-lines": "1.0.0", - "through2": "2.0.3", - "umd": "3.0.1", - "ws": "1.1.1" - }, - "dependencies": { - "convert-source-map": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.3.0.tgz", - "integrity": "sha1-6fPpxuJyjvwmdmlqcOs4L3MQamc=" - } + "ee-first": "1.1.1" } }, - "load-json-file": { + "on-headers": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.1.tgz", + "integrity": "sha1-ko9dD0cNSTQmUepnlLCFfBAGk/c=" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1" + } + }, + "onetime": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz", + "integrity": "sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=" + }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "strip-bom": "^2.0.0" + "is-wsl": "^1.1.0" } }, - "loader-fs-cache": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/loader-fs-cache/-/loader-fs-cache-1.0.1.tgz", - "integrity": "sha1-VuC/CL2XCLJqdltoUJhAyN7J/bw=", + "optimist": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", "requires": { - "find-cache-dir": "^0.1.1", - "mkdirp": "0.5.1" + "minimist": "~0.0.1", + "wordwrap": "~0.0.2" }, "dependencies": { - "find-cache-dir": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz", - "integrity": "sha1-yN765XyKUqinhPnjHFfHQumToLk=", - "requires": { - "commondir": "^1.0.1", - "mkdirp": "^0.5.1", - "pkg-dir": "^1.0.0" - } - }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "requires": { - "pinkie-promise": "^2.0.0" - } - }, - "pkg-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz", - "integrity": "sha1-ektQio1bstYp1EcFb/TpyTFM89Q=", - "requires": { - "find-up": "^1.0.0" - } + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=" } } }, - "loader-runner": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.0.tgz", - "integrity": "sha1-9IKuqC1UPgeSFwDVpG7yb9rGuKI=" - }, - "loader-utils": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz", - "integrity": "sha1-yYrvSIvM7aL/teLeZG1qdUQp9c0=", + "optionator": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", + "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", "requires": { - "big.js": "^3.1.3", - "emojis-list": "^2.0.0", - "json5": "^0.5.0" + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.4", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "wordwrap": "~1.0.0" } }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "original": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" + "url-parse": "^1.4.3" } }, - "lodash": { - "version": "4.17.4", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz", - "integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4=" + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" }, - "lodash-es": { - "version": "4.17.4", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.4.tgz", - "integrity": "sha1-3MHXVS4VCgZABzupyzHXDwMpUOc=" + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" }, - "lodash._baseassign": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz", - "integrity": "sha1-jDigmVAPIVrQnlnxci/QxSv+Ck4=", + "os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", "requires": { - "lodash._basecopy": "^3.0.0", - "lodash.keys": "^3.0.0" + "lcid": "^1.0.0" } }, - "lodash._baseclone": { - "version": "4.5.7", - "resolved": "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-4.5.7.tgz", - "integrity": "sha1-zkKt4IOE711i+nfDD2GkbmhvhDQ=" + "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=" }, - "lodash._basecopy": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz", - "integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=" + "outpipe": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/outpipe/-/outpipe-1.1.1.tgz", + "integrity": "sha1-UM+GFjZeh+Ax4ppeyTOaPaRyX6I=", + "requires": { + "shell-quote": "^1.4.2" + } }, - "lodash._bindcallback": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz", - "integrity": "sha1-5THCdkTPi1epnhftlbNcdIeJOS4=" + "p-cancelable": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", + "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==" }, - "lodash._createassigner": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz", - "integrity": "sha1-g4pbri/aymOsIt7o4Z+k5taXCxE=", + "p-defer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", + "integrity": "sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==" + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" + }, + "p-is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", + "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==" + }, + "p-limit": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.1.0.tgz", + "integrity": "sha1-sH/y2aXYi+yAYDWJWiurZqJ5iLw=" + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", "requires": { - "lodash._bindcallback": "^3.0.0", - "lodash._isiterateecall": "^3.0.0", - "lodash.restparam": "^3.0.0" + "p-limit": "^1.1.0" } }, - "lodash._getnative": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz", - "integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=" + "p-map": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-1.1.1.tgz", + "integrity": "sha1-BfXkrpegaDcbwqXMhr+9vBnErno=" }, - "lodash._isiterateecall": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz", - "integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=" + "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==" }, - "lodash.assign": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz", - "integrity": "sha1-DZnzzNem0mHRm9rrkkUAXShYCOc=" + "pako": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=" }, - "lodash.assignin": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz", - "integrity": "sha1-uo31+4QesKPoBEIysOJjqNxqKKI=" + "parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "requires": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } }, - "lodash.bind": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz", - "integrity": "sha1-euMBfpOWIqwxt9fX3LGzTbFpDTU=" + "param-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", + "integrity": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=", + "requires": { + "no-case": "^2.2.0" + } }, - "lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=" + "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==", + "requires": { + "callsites": "^3.0.0" + }, + "dependencies": { + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + } + } }, - "lodash.capitalize": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha1-+CbJtOKoUR2E46yinbBeGk87cqk=" + "parents": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parents/-/parents-1.0.1.tgz", + "integrity": "sha1-/t1NK/GTp3dF/nHjcdc8MwfZx1E=", + "requires": { + "path-platform": "~0.11.15" + } + }, + "parse-asn1": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.0.tgz", + "integrity": "sha1-N8T5t+06tlx0gXtfJICTf7+XxxI=", + "requires": { + "asn1.js": "^4.0.0", + "browserify-aes": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3" + } }, - "lodash.chunk": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.chunk/-/lodash.chunk-4.2.0.tgz", - "integrity": "sha1-ZuXOH3btJ7QwPYxlEujRIW6BBrw=", - "dev": true + "parse-glob": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", + "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", + "requires": { + "glob-base": "^0.3.0", + "is-dotfile": "^1.0.0", + "is-extglob": "^1.0.0", + "is-glob": "^2.0.0" + } }, - "lodash.clone": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.3.2.tgz", - "integrity": "sha1-5WsXa2gjp93jj38r9Y3n1ZcSAOk=", + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", "requires": { - "lodash._baseclone": "~4.5.0" + "error-ex": "^1.2.0" } }, - "lodash.clonedeep": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", - "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=" + "parse5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-2.2.3.tgz", + "integrity": "sha1-DE/EHBAAxea5PUiwP4CDg3g06fY=" }, - "lodash.cond": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/lodash.cond/-/lodash.cond-4.5.2.tgz", - "integrity": "sha1-9HGh2khr5g9quVXRcRVSPdHSVdU=" + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" }, - "lodash.defaults": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", - "integrity": "sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=" + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" }, - "lodash.filter": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz", - "integrity": "sha1-ZosdSYFgOuHMWm+nYBQ+SAtMSs4=" + "path-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz", + "integrity": "sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo=" }, - "lodash.flatten": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", - "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=" + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" }, - "lodash.flattendeep": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", - "integrity": "sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=" + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" }, - "lodash.foreach": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz", - "integrity": "sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM=" + "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=" }, - "lodash.isarguments": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", - "integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=" + "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=" }, - "lodash.isarray": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz", - "integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=" + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" }, - "lodash.kebabcase": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", - "integrity": "sha1-hImxyw0p/4gZXM7KRI/21swpXDY=" + "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==" }, - "lodash.keys": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", - "integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=", + "path-platform": { + "version": "0.11.15", + "resolved": "https://registry.npmjs.org/path-platform/-/path-platform-0.11.15.tgz", + "integrity": "sha1-6GQhf3TDaFDwhSt43Hv31KVyG/I=" + }, + "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=" + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", "requires": { - "lodash._getnative": "^3.0.0", - "lodash.isarguments": "^3.0.0", - "lodash.isarray": "^3.0.0" + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" } }, - "lodash.map": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", - "integrity": "sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=" + "pbkdf2": { + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.12.tgz", + "integrity": "sha1-vjZ4XFBn6kjYBv+SMojF91C2uKI=", + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } }, - "lodash.memoize": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-3.0.4.tgz", - "integrity": "sha1-LcvSwofLwKVcxCMovQxzYVDVPj8=" + "pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=" }, - "lodash.merge": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.1.tgz", - "integrity": "sha512-AOYza4+Hf5z1/0Hztxpm2/xiPZgi/cjMqdnKTUWTBSKchJlxXXuUSxCCl8rJlf4g6yww/j6mA8nC8Hw/EZWxKQ==" + "performance-now": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz", + "integrity": "sha1-M+8wxcd9TqIcWlOGnZG1bY8lVeU=" }, - "lodash.mergewith": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz", - "integrity": "sha1-FQzwoWeR9ZA7iJHqsVRgknS96lU=" + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" }, - "lodash.pick": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", - "integrity": "sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=" + "picomatch": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", + "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==" }, - "lodash.reduce": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz", - "integrity": "sha1-8atrg5KZrUj3hKu/R2WW8DuRTTs=" + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" }, - "lodash.reject": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz", - "integrity": "sha1-gNZJLcFHCGS79YNTO2UfQqn1JBU=" + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" }, - "lodash.restparam": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz", - "integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=" + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "requires": { + "pinkie": "^2.0.0" + } }, - "lodash.some": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz", - "integrity": "sha1-G7nzFO9ri63tE7VJFpsqlF62jk0=" + "pirates": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.4.tgz", + "integrity": "sha512-ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw==" }, - "lodash.tail": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.tail/-/lodash.tail-4.1.1.tgz", - "integrity": "sha1-0jM6NtnncXyK0vfKyv7HwytERmQ=" + "pkg-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", + "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "requires": { + "find-up": "^2.1.0" + } }, - "lodash.throttle": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz", - "integrity": "sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=" + "pkginfo": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.1.tgz", + "integrity": "sha1-Wyn2qB9wcXFC4J52W76rl7T4HiE=" }, - "lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + "pluralize": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-1.2.1.tgz", + "integrity": "sha1-0aIUg/0iu0HlihL6NCGCMUCJfEU=" + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "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" + } + }, + "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==" + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" + }, + "postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "requires": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.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==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } }, - "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, + "postcss-calc": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz", + "integrity": "sha1-d7rnypKK2FcW4v2kLyYb98HWW14=", "requires": { - "chalk": "^1.0.0" + "postcss": "^5.0.2", + "postcss-message-helpers": "^2.0.0", + "reduce-css-calc": "^1.2.6" }, "dependencies": { "ansi-styles": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" }, "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "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 + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } } } }, - "log-update": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-1.0.2.tgz", - "integrity": "sha1-GZKfZMQJPS0ucHWh2tivWcKWuNE=", - "dev": true, - "requires": { - "ansi-escapes": "^1.0.0", - "cli-cursor": "^1.0.2" - } - }, - "longest": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", - "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=" - }, - "loose-envify": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz", - "integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=", - "requires": { - "js-tokens": "^3.0.0" - } - }, - "loud-rejection": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", - "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", - "requires": { - "currently-unhandled": "^0.4.1", - "signal-exit": "^3.0.0" - } - }, - "lower-case": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", - "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=" - }, - "lru-cache": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz", - "integrity": "sha512-q4spe4KTfsAS1SUHLO0wz8Qiyf1+vMIAgpRYioFYDMNqKfHQbg+AVDH3i4fvpl71/P1L0dBl+fQi+P37UYf0ew==", - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "lru-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz", - "integrity": "sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM=", - "requires": { - "es5-ext": "~0.10.2" - } - }, - "macaddress": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/macaddress/-/macaddress-0.2.8.tgz", - "integrity": "sha1-WQTcU3w57G2+/q6QIycTX6hRHxI=" - }, - "make-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.0.0.tgz", - "integrity": "sha1-l6ARdR6R3YfPre9Ygy67BJNt6Xg=", - "requires": { - "pify": "^2.3.0" - } - }, - "makeerror": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", - "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "postcss-colormin": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-2.2.2.tgz", + "integrity": "sha1-ZjFBfV8OkJo9fsJrJMio0eT5bks=", "requires": { - "tmpl": "1.0.x" + "colormin": "^1.0.5", + "postcss": "^5.0.13", + "postcss-value-parser": "^3.2.3" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } + } } }, - "map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" - }, - "map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=" - }, - "map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "postcss-convert-values": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz", + "integrity": "sha1-u9hZPFwf0uPRwyK7kl3K6Nrk1i0=", "requires": { - "object-visit": "^1.0.0" + "postcss": "^5.0.11", + "postcss-value-parser": "^3.1.2" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } + } } }, - "math-expression-evaluator": { - "version": "1.2.17", - "resolved": "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz", - "integrity": "sha1-3oGf282E3M2PrlnGrreWFbnSZqw=" - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" - }, - "mem": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz", - "integrity": "sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y=", + "postcss-discard-comments": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz", + "integrity": "sha1-vv6J+v1bPazlzM5Rt2uBUUvgDj0=", "requires": { - "mimic-fn": "^1.0.0" + "postcss": "^5.0.14" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } + } } }, - "memoizee": { - "version": "0.3.10", - "resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.3.10.tgz", - "integrity": "sha1-TsoNiu057J0Bf0xcLy9kMvQuXI8=", + "postcss-discard-duplicates": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz", + "integrity": "sha1-uavye4isGIFYpesSq8riAmO5GTI=", "requires": { - "d": "~0.1.1", - "es5-ext": "~0.10.11", - "es6-weak-map": "~0.1.4", - "event-emitter": "~0.3.4", - "lru-queue": "0.1", - "next-tick": "~0.2.2", - "timers-ext": "0.1" + "postcss": "^5.0.4" }, "dependencies": { - "d": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/d/-/d-0.1.1.tgz", - "integrity": "sha1-2hhMU10Y2O57oqoim5FACfrhEwk=", - "requires": { - "es5-ext": "~0.10.2" - } + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" }, - "es6-iterator": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-0.1.3.tgz", - "integrity": "sha1-1vWLjE/EE8JJtLqhl2j45NfIlE4=", + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "requires": { - "d": "~0.1.1", - "es5-ext": "~0.10.5", - "es6-symbol": "~2.0.1" + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } } }, - "es6-symbol": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-2.0.1.tgz", - "integrity": "sha1-dhtcZ8/U8dGK+yNPaR1nhoLLO/M=", + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "d": "~0.1.1", - "es5-ext": "~0.10.5" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, - "es6-weak-map": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-0.1.4.tgz", - "integrity": "sha1-cGzvnpmqI2undmwjnIueKG6n0ig=", + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "d": "~0.1.1", - "es5-ext": "~0.10.6", - "es6-iterator": "~0.1.3", - "es6-symbol": "~2.0.1" + "has-flag": "^1.0.0" } } } }, - "memory-fs": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", - "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - } - }, - "meow": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", - "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", + "postcss-discard-empty": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz", + "integrity": "sha1-0rS9nVztXr2Nyt52QMfXzX9PkrU=", "requires": { - "camelcase-keys": "^2.0.0", - "decamelize": "^1.1.2", - "loud-rejection": "^1.0.0", - "map-obj": "^1.0.1", - "minimist": "^1.1.3", - "normalize-package-data": "^2.3.4", - "object-assign": "^4.0.1", - "read-pkg-up": "^1.0.1", - "redent": "^1.0.0", - "trim-newlines": "^1.0.0" + "postcss": "^5.0.14" }, "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - } - } - }, - "merge": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/merge/-/merge-1.2.0.tgz", - "integrity": "sha1-dTHjnUlJwoGma4xabgJl6LBYlNo=" - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" - }, - "micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", - "requires": { - "arr-diff": "^2.0.0", - "array-unique": "^0.2.1", - "braces": "^1.8.2", - "expand-brackets": "^0.1.4", - "extglob": "^0.3.1", - "filename-regex": "^2.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.1", - "kind-of": "^3.0.2", - "normalize-path": "^2.0.1", - "object.omit": "^2.0.0", - "parse-glob": "^3.0.4", - "regex-cache": "^0.4.2" - } - }, - "miller-rabin": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.0.tgz", - "integrity": "sha1-SmL7HUKTPAVYOYL0xxb2+55sbT0=", - "requires": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - } - }, - "mime": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.6.tgz", - "integrity": "sha1-WR2E02U6awtKO5343lqoEI5y5eA=" - }, - "mime-db": { - "version": "1.27.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.27.0.tgz", - "integrity": "sha1-gg9XIpa70g7CXtVeW13oaeVDbrE=" - }, - "mime-types": { - "version": "2.1.15", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.15.tgz", - "integrity": "sha1-pOv1BkCUVpI3uM9wBGd20J/JKu0=", - "requires": { - "mime-db": "~1.27.0" - } - }, - "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==" - }, - "min-document": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", - "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=", - "requires": { - "dom-walk": "^0.1.0" - } - }, - "minimalistic-assert": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz", - "integrity": "sha1-cCvi3aazf0g2vLP121ZkG2Sh09M=" - }, - "minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" - }, - "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" + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } + } } }, - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + "postcss-discard-overridden": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz", + "integrity": "sha1-ix6vVU9ob7KIzYdMVWZ7CqNmjVg=", + "requires": { + "postcss": "^5.0.16" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } + } + } }, - "mixin-deep": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz", - "integrity": "sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==", + "postcss-discard-unused": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz", + "integrity": "sha1-vOMLLMWR/8Y0Mitfs0ZLbZNPRDM=", "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" + "postcss": "^5.0.14", + "uniqs": "^2.0.0" }, "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==", + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "requires": { - "is-plain-object": "^2.0.4" + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" } } } }, - "mixin-object": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz", - "integrity": "sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4=", + "postcss-filter-plugins": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz", + "integrity": "sha512-T53GVFsdinJhgwm7rg1BzbeBRomOg9y5MBVhGcsV0CxurUdVj1UlPdKtn7aqYA/c/QVkzKMjq2bSV5dKG5+AwQ==", "requires": { - "for-in": "^0.1.3", - "is-extendable": "^0.1.1" + "postcss": "^5.0.4" }, "dependencies": { - "for-in": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz", - "integrity": "sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE=" + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } } } }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "postcss-load-config": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", + "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", "requires": { - "minimist": "0.0.8" + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" } }, - "mkdirp-promise": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz", - "integrity": "sha1-6bj2jlUsaKnBcTuEiD96HdA5uKE=", + "postcss-loader": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-2.1.6.tgz", + "integrity": "sha512-hgiWSc13xVQAq25cVw80CH0l49ZKlAnU1hKPOdRrNj89bokRr/bZF2nT+hebPPF9c9xs8c3gw3Fr2nxtmXYnNg==", "requires": { - "mkdirp": "*" + "loader-utils": "^1.1.0", + "postcss": "^6.0.0", + "postcss-load-config": "^2.0.0", + "schema-utils": "^0.4.0" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "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==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + } } }, - "mock-local-storage": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/mock-local-storage/-/mock-local-storage-1.0.5.tgz", - "integrity": "sha1-iZ/zAAJ87+1HgW5txTm7BZ/M5Ik=", + "postcss-merge-idents": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz", + "integrity": "sha1-TFUwMTwI4dWzu/PSu8dH4njuonA=", "requires": { - "core-js": "^0.8.3", - "global": "^4.3.2" + "has": "^1.0.1", + "postcss": "^5.0.10", + "postcss-value-parser": "^3.1.1" }, "dependencies": { - "core-js": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-0.8.4.tgz", - "integrity": "sha1-wiZl8eDRucPF4bCNq9HxCGleT88=" + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } } } }, - "mockdate": { + "postcss-merge-longhand": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/mockdate/-/mockdate-2.0.2.tgz", - "integrity": "sha1-WuDA6vj+I+AJzQH5iJtCxPY0rxI=" - }, - "module-deps": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/module-deps/-/module-deps-4.1.1.tgz", - "integrity": "sha1-IyFYM/HaE/1gbMuAh7RIUty4If0=", - "requires": { - "JSONStream": "^1.0.3", - "browser-resolve": "^1.7.0", - "cached-path-relative": "^1.0.0", - "concat-stream": "~1.5.0", - "defined": "^1.0.0", - "detective": "^4.0.0", - "duplexer2": "^0.1.2", - "inherits": "^2.0.1", - "parents": "^1.0.0", - "readable-stream": "^2.0.2", - "resolve": "^1.1.3", - "stream-combiner2": "^1.1.1", - "subarg": "^1.0.0", - "through2": "^2.0.0", - "xtend": "^4.0.0" - } - }, - "moment": { - "version": "2.18.1", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.18.1.tgz", - "integrity": "sha1-w2GT3Tzhwu7SrbfIAtu8d6gbHA8=" - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "msgpack5": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/msgpack5/-/msgpack5-3.6.0.tgz", - "integrity": "sha512-6HuCZHA57WtNUzrKIvjJ8OMxigzveJ6D5i13y6TsgGu3X3zxABpuBvChpppOoGdB9SyWZcmqUs1fwUV/PpSQ7Q==", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz", + "integrity": "sha1-I9kM0Sewp3mUkVMyc5A0oaTz1lg=", "requires": { - "bl": "^1.2.1", - "inherits": "^2.0.3", - "readable-stream": "^2.3.3", - "safe-buffer": "^5.1.1" + "postcss": "^5.0.4" }, "dependencies": { - "bl": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz", - "integrity": "sha512-e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA==", + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "requires": { - "readable-stream": "^2.3.5", - "safe-buffer": "^5.1.1" + "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" }, "dependencies": { - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "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" - } + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" } } }, - "process-nextick-args": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" }, - "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==", + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", "requires": { - "safe-buffer": "~5.1.0" + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" } } } }, - "multicast-dns": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.1.1.tgz", - "integrity": "sha1-bn3oalcIcqsXBYrepxYLvsqBTd4=", + "postcss-merge-rules": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz", + "integrity": "sha1-0d9d+qexrMO+VT8OnhDofGG19yE=", "requires": { - "dns-packet": "^1.0.1", - "thunky": "^0.1.0" + "browserslist": "^1.5.2", + "caniuse-api": "^1.5.2", + "postcss": "^5.0.4", + "postcss-selector-parser": "^2.2.2", + "vendors": "^1.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "browserslist": { + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", + "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", + "requires": { + "caniuse-db": "^1.0.30000639", + "electron-to-chromium": "^1.2.7" + } + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } + } } }, - "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": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" - }, - "mute-stream": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz", - "integrity": "sha1-j7+rsKmKJT0xhDMfno3rc3L6xsA=" + "postcss-message-helpers": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz", + "integrity": "sha1-pPL0+rbk/gAvCu0ABHjN9S+bpg4=" }, - "mz": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "postcss-minify-font-values": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz", + "integrity": "sha1-S1jttWZB66fIR0qzUmyv17vey2k=", "requires": { - "any-promise": "^1.0.0", "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" - } - }, - "nan": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.6.2.tgz", - "integrity": "sha1-5P805slf37WuzAjeZZb0NgWn20U=" - }, - "nanomatch": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.9.tgz", - "integrity": "sha512-n8R9bS8yQ6eSXaV6jHUpKzD8gLsin02w1HSFiegwrs9E098Ylhw5jdyKPaYqvHknHaSCKTPp7C8dGCQ0q9koXA==", - "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-odd": "^2.0.0", - "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" + "postcss": "^5.0.4", + "postcss-value-parser": "^3.0.2" }, "dependencies": { - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } } } }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" - }, - "nconf": { - "version": "0.6.9", - "resolved": "https://registry.npmjs.org/nconf/-/nconf-0.6.9.tgz", - "integrity": "sha1-lXDvFe1vmuays8jV5xtm0xk81mE=", + "postcss-minify-gradients": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz", + "integrity": "sha1-Xb2hE3NwP4PPtKPqOIHY11/15uE=", "requires": { - "async": "0.2.9", - "ini": "1.x.x", - "optimist": "0.6.0" + "postcss": "^5.0.12", + "postcss-value-parser": "^3.3.0" }, "dependencies": { - "async": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/async/-/async-0.2.9.tgz", - "integrity": "sha1-32MGD789Myhqdqr21Vophtn/hhk=" + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" }, - "optimist": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.0.tgz", - "integrity": "sha1-aUJIJvNAX3nxQub8PZrljU27kgA=", + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "requires": { - "minimist": "~0.0.1", - "wordwrap": "~0.0.2" + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } } }, - "wordwrap": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", - "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=" - } - } - }, - "ncp": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz", - "integrity": "sha1-q8xsvT7C7Spyn/bnwfqPAXhKhXQ=" - }, - "nearley": { - "version": "2.13.0", - "resolved": "https://registry.npmjs.org/nearley/-/nearley-2.13.0.tgz", - "integrity": "sha512-ioYYogSaZhFlCpRizQgY3UT3G1qFXmHGY/5ozoFE3dMfiCRAeJfh+IPE3/eh9gCZvqLhPCWb4bLt7Bqzo+1mLQ==", - "requires": { - "nomnom": "~1.6.2", - "railroad-diagrams": "^1.0.0", - "randexp": "0.4.6", - "semver": "^5.4.1" - }, - "dependencies": { - "semver": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", - "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==" + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } } } }, - "negotiator": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", - "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=" - }, - "next-tick": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-0.2.2.tgz", - "integrity": "sha1-ddpKkn7liH45BliABltzNkE7MQ0=" - }, - "nice-try": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.4.tgz", - "integrity": "sha512-2NpiFHqC87y/zFke0fC0spBXL3bBsoh/p5H1EFhshxjCR5+0g2d6BiXbUFz9v1sAcxsk2htp2eQnNIci2dIYcA==" - }, - "no-case": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", - "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", - "requires": { - "lower-case": "^1.1.1" - } - }, - "nock": { - "version": "9.0.14", - "resolved": "https://registry.npmjs.org/nock/-/nock-9.0.14.tgz", - "integrity": "sha1-IhFVAlMXPOKYvNifyoJeg4E8pys=", - "requires": { - "chai": ">=1.9.2 <4.0.0", - "debug": "^2.2.0", - "deep-equal": "^1.0.0", - "json-stringify-safe": "^5.0.1", - "lodash": "~4.17.2", - "mkdirp": "^0.5.0", - "propagate": "0.4.0", - "qs": "^6.0.2", - "semver": "^5.3.0" - } - }, - "node-fetch": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.1.tgz", - "integrity": "sha512-j8XsFGCLw79vWXkZtMSmmLaOk9z5SQ9bV/tkbZVCqvgwzrjAGq66igobLofHtF63NvMTp2WjytpsNTGKa+XRIQ==", - "requires": { - "encoding": "^0.1.11", - "is-stream": "^1.0.1" - } - }, - "node-forge": { - "version": "0.6.33", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.6.33.tgz", - "integrity": "sha1-RjgRh59XPUUVWtap9D3ClujoXrw=" - }, - "node-gyp": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.6.2.tgz", - "integrity": "sha1-m/vlRWIoYoSDjnUOrAUpWFP6HGA=", - "requires": { - "fstream": "^1.0.0", - "glob": "^7.0.3", - "graceful-fs": "^4.1.2", - "minimatch": "^3.0.2", - "mkdirp": "^0.5.0", - "nopt": "2 || 3", - "npmlog": "0 || 1 || 2 || 3 || 4", - "osenv": "0", - "request": "2", - "rimraf": "2", - "semver": "~5.3.0", - "tar": "^2.0.0", - "which": "1" - } - }, - "node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" - }, - "node-libs-browser": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.0.0.tgz", - "integrity": "sha1-o6WeyXAkmFtG6Vg3lkb5bEthZkY=", + "postcss-minify-params": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz", + "integrity": "sha1-rSzgcTc7lDs9kwo/pZo1jCjW8fM=", "requires": { - "assert": "^1.1.1", - "browserify-zlib": "^0.1.4", - "buffer": "^4.3.0", - "console-browserify": "^1.1.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.11.0", - "domain-browser": "^1.1.1", - "events": "^1.0.0", - "https-browserify": "0.0.1", - "os-browserify": "^0.2.0", - "path-browserify": "0.0.0", - "process": "^0.11.0", - "punycode": "^1.2.4", - "querystring-es3": "^0.2.0", - "readable-stream": "^2.0.5", - "stream-browserify": "^2.0.1", - "stream-http": "^2.3.1", - "string_decoder": "^0.10.25", - "timers-browserify": "^2.0.2", - "tty-browserify": "0.0.0", - "url": "^0.11.0", - "util": "^0.10.3", - "vm-browserify": "0.0.4" + "alphanum-sort": "^1.0.1", + "postcss": "^5.0.2", + "postcss-value-parser": "^3.0.2", + "uniqs": "^2.0.0" }, "dependencies": { - "buffer": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", - "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=", + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } } }, - "https-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-0.0.1.tgz", - "integrity": "sha1-P5E2XKvmC3ftDruiS0VOPgnZWoI=" - }, - "os-browserify": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.2.1.tgz", - "integrity": "sha1-Y/xMzuXS13Y9Jrv4YBB45sLgBE8=" + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } }, - "timers-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.2.tgz", - "integrity": "sha1-q0iDz1l9zVCvIRNJoA+8pWrIa4Y=", + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", "requires": { - "setimmediate": "^1.0.4" + "has-flag": "^1.0.0" } } } }, - "node-notifier": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.1.2.tgz", - "integrity": "sha1-L6nhJgX6EACdRFSdb82KY93g5P8=", - "requires": { - "growly": "^1.3.0", - "semver": "^5.3.0", - "shellwords": "^0.1.0", - "which": "^1.2.12" - } - }, - "node-sass": { - "version": "4.5.3", - "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.5.3.tgz", - "integrity": "sha1-0JydEXlkEjnRuX/8YjH9zsU+FWg=", + "postcss-minify-selectors": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz", + "integrity": "sha1-ssapjAByz5G5MtGkllCBFDEXNb8=", "requires": { - "async-foreach": "^0.1.3", - "chalk": "^1.1.1", - "cross-spawn": "^3.0.0", - "gaze": "^1.0.0", - "get-stdin": "^4.0.1", - "glob": "^7.0.3", - "in-publish": "^2.0.0", - "lodash.assign": "^4.2.0", - "lodash.clonedeep": "^4.3.2", - "lodash.mergewith": "^4.6.0", - "meow": "^3.7.0", - "mkdirp": "^0.5.1", - "nan": "^2.3.2", - "node-gyp": "^3.3.1", - "npmlog": "^4.0.0", - "request": "^2.79.0", - "sass-graph": "^2.1.1", - "stdout-stream": "^1.4.0" + "alphanum-sort": "^1.0.2", + "has": "^1.0.1", + "postcss": "^5.0.14", + "postcss-selector-parser": "^2.0.0" }, "dependencies": { "ansi-styles": { @@ -10732,2178 +24599,2523 @@ "has-ansi": "^2.0.0", "strip-ansi": "^3.0.0", "supports-color": "^2.0.0" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } - }, - "nomnom": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/nomnom/-/nomnom-1.6.2.tgz", - "integrity": "sha1-hKZqJgF0QI/Ft3oY+IjszET7aXE=", - "requires": { - "colors": "0.5.x", - "underscore": "~1.4.4" - }, - "dependencies": { - "colors": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/colors/-/colors-0.5.1.tgz", - "integrity": "sha1-fQAj6usVTo7p/Oddy5I9DtFmd3Q=" + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } } } }, - "nopt": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", - "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=", - "requires": { - "abbrev": "1" - } - }, - "normalize-package-data": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", - "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", - "requires": { - "hosted-git-info": "^2.1.4", - "is-builtin-module": "^1.0.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "postcss-modules-extract-imports": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz", + "integrity": "sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==", "requires": { - "remove-trailing-separator": "^1.0.1" + "postcss": "^6.0.1" } }, - "normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" - }, - "normalize-url": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", - "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", + "postcss-modules-local-by-default": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz", + "integrity": "sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=", "requires": { - "object-assign": "^4.0.1", - "prepend-http": "^1.0.0", - "query-string": "^4.1.0", - "sort-keys": "^1.0.0" + "css-selector-tokenizer": "^0.7.0", + "postcss": "^6.0.1" } }, - "normalizr": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/normalizr/-/normalizr-3.2.3.tgz", - "integrity": "sha1-iHVcZN5BiwQPpq0TKbLeXDJQrEk=" - }, - "npm-path": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/npm-path/-/npm-path-2.0.3.tgz", - "integrity": "sha1-Fc/04ciaONp39W9gVbJPl137K74=", - "dev": true, + "postcss-modules-scope": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz", + "integrity": "sha1-1upkmUx5+XtipytCb75gVqGUu5A=", "requires": { - "which": "^1.2.10" + "css-selector-tokenizer": "^0.7.0", + "postcss": "^6.0.1" } }, - "npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "postcss-modules-values": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz", + "integrity": "sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=", "requires": { - "path-key": "^2.0.0" + "icss-replace-symbols": "^1.1.0", + "postcss": "^6.0.1" } }, - "npm-which": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/npm-which/-/npm-which-3.0.1.tgz", - "integrity": "sha1-kiXybsOihcIJyuZ8OxGmtKtxQKo=", - "dev": true, + "postcss-normalize-charset": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz", + "integrity": "sha1-757nEhLX/nWceO0WL2HtYrXLk/E=", "requires": { - "commander": "^2.9.0", - "npm-path": "^2.0.2", - "which": "^1.2.10" + "postcss": "^5.0.5" }, "dependencies": { - "commander": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz", - "integrity": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==", - "dev": true + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } } } }, - "npmlog": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", - "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "nssocket": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/nssocket/-/nssocket-0.5.3.tgz", - "integrity": "sha1-iDyi7GBfXtZKTVGQsmJUAZKPj40=", - "requires": { - "eventemitter2": "~0.4.14", - "lazy": "~1.0.11" - } - }, - "nth-check": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.1.tgz", - "integrity": "sha1-mSms32KPwsQQmN6rgqxYDPFJquQ=", - "requires": { - "boolbase": "~1.0.0" - } - }, - "num2fraction": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", - "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" - }, - "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=" - }, - "nwmatcher": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.4.1.tgz", - "integrity": "sha1-eumwew6oBNt+JfBctf5Al9TklJ8=" - }, - "oauth-sign": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz", - "integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=" - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - }, - "object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "postcss-normalize-url": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz", + "integrity": "sha1-EI90s/L82viRov+j6kWSJ5/HgiI=", "requires": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" + "is-absolute-url": "^2.0.0", + "normalize-url": "^1.4.0", + "postcss": "^5.0.14", + "postcss-value-parser": "^3.2.3" }, "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "requires": { - "is-descriptor": "^0.1.0" + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" } } } }, - "object-hash": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-1.1.8.tgz", - "integrity": "sha1-KKZZz5h9lqTavnhgKJ87UybEoDw=" - }, - "object-inspect": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.2.2.tgz", - "integrity": "sha1-yCEV5PzIiK6hTWTCLk8X9qcNXlo=" - }, - "object-is": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.0.1.tgz", - "integrity": "sha1-CqYOyZiaCz7Xlc9NBvYs8a1lObY=" - }, - "object-keys": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz", - "integrity": "sha1-xUYBd4rVYPEULODgG8yotW0TQm0=" - }, - "object-path": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/object-path/-/object-path-0.9.2.tgz", - "integrity": "sha1-D9mnT8X60a45aLWGvaXGMr1sBaU=" - }, - "object-unfreeze": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/object-unfreeze/-/object-unfreeze-1.1.0.tgz", - "integrity": "sha1-aWKL6h88nSn06wumOzgALXDqPOk=" - }, - "object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "postcss-ordered-values": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz", + "integrity": "sha1-7sbCpntsQSqNsgQud/6NpD+VwR0=", "requires": { - "isobject": "^3.0.0" + "postcss": "^5.0.4", + "postcss-value-parser": "^3.0.1" }, "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } } } }, - "object.assign": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz", - "integrity": "sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==", + "postcss-reduce-idents": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz", + "integrity": "sha1-wsbSDMlYKE9qv75j92Cb9AkFmtM=", "requires": { - "define-properties": "^1.1.2", - "function-bind": "^1.1.1", - "has-symbols": "^1.0.0", - "object-keys": "^1.0.11" + "postcss": "^5.0.4", + "postcss-value-parser": "^3.0.2" }, "dependencies": { - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } } } }, - "object.entries": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.0.4.tgz", - "integrity": "sha1-G/mk3SKI9bM/Opk9JXZh8F0WGl8=", - "requires": { - "define-properties": "^1.1.2", - "es-abstract": "^1.6.1", - "function-bind": "^1.1.0", - "has": "^1.0.1" - } - }, - "object.omit": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", - "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", - "requires": { - "for-own": "^0.1.4", - "is-extendable": "^0.1.1" - } - }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "postcss-reduce-initial": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz", + "integrity": "sha1-aPgGlfBF0IJjqHmtJA343WT2ROo=", "requires": { - "isobject": "^3.0.1" + "postcss": "^5.0.4" }, "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } } } }, - "object.values": { + "postcss-reduce-transforms": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.0.4.tgz", - "integrity": "sha1-5STaCbT2b/Bd9FdUbscqyZ8TBpo=", - "requires": { - "define-properties": "^1.1.2", - "es-abstract": "^1.6.1", - "function-bind": "^1.1.0", - "has": "^1.0.1" - } - }, - "obuf": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.1.tgz", - "integrity": "sha1-EEEktsYCxnlogaBCVB0220OlJk4=" - }, - "offset-sourcemap-lines": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/offset-sourcemap-lines/-/offset-sourcemap-lines-1.0.0.tgz", - "integrity": "sha1-kI8018VkUOeghdjWWuo4sqL1aVQ=", - "requires": { - "source-map": "^0.5.0" - } - }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", - "requires": { - "ee-first": "1.1.1" - } - }, - "on-headers": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.1.tgz", - "integrity": "sha1-ko9dD0cNSTQmUepnlLCFfBAGk/c=" - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz", + "integrity": "sha1-/3b02CEkN7McKYpC0uFEQCV3GuE=", "requires": { - "wrappy": "1" + "has": "^1.0.1", + "postcss": "^5.0.8", + "postcss-value-parser": "^3.0.1" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } + } } }, - "onetime": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz", - "integrity": "sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=" - }, - "opn": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/opn/-/opn-4.0.2.tgz", - "integrity": "sha1-erwi5kTf9jsKltWrfyeQwPAavJU=", + "postcss-selector-parser": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz", + "integrity": "sha1-+UN3iGBsPJrO4W/+jYsWKX8nu5A=", "requires": { - "object-assign": "^4.0.1", - "pinkie-promise": "^2.0.0" + "flatten": "^1.0.2", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" } }, - "optimist": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", - "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", + "postcss-svgo": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz", + "integrity": "sha1-tt8YqmE7Zm4TPwittSGcJoSsEI0=", "requires": { - "minimist": "~0.0.1", - "wordwrap": "~0.0.2" + "is-svg": "^2.0.0", + "postcss": "^5.0.14", + "postcss-value-parser": "^3.2.3", + "svgo": "^0.7.0" }, "dependencies": { - "wordwrap": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", - "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=" + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } } } }, - "optionator": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", - "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "postcss-unique-selectors": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz", + "integrity": "sha1-mB1X0p3csz57Hf4f1DuGSfkzyh0=", "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.4", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "wordwrap": "~1.0.0" + "alphanum-sort": "^1.0.1", + "postcss": "^5.0.4", + "uniqs": "^2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } + } } }, - "options": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/options/-/options-0.0.6.tgz", - "integrity": "sha1-7CLTEoBrtT5zF3Pnza788cZDEo8=" + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" }, - "ora": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/ora/-/ora-0.2.3.tgz", - "integrity": "sha1-N1J9Igrc1Tw5tzVx11QVbV22V6Q=", - "dev": true, + "postcss-zindex": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz", + "integrity": "sha1-0hCd3AVbka9n/EyzsCWUZjnSryI=", "requires": { - "chalk": "^1.1.1", - "cli-cursor": "^1.0.2", - "cli-spinners": "^0.1.2", - "object-assign": "^4.0.1" + "has": "^1.0.1", + "postcss": "^5.0.4", + "uniqs": "^2.0.0" }, "dependencies": { "ansi-styles": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" }, "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" + }, + "dependencies": { + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" } }, "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 + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "requires": { + "has-flag": "^1.0.0" + } } } }, - "original": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/original/-/original-1.0.0.tgz", - "integrity": "sha1-kUf5P6FpbQS+YeAb1QuurKZWvTs=", + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + }, + "prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" + }, + "preserve": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", + "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=" + }, + "prettier": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz", + "integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==", + "dev": true + }, + "pretty-error": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.1.tgz", + "integrity": "sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM=", "requires": { - "url-parse": "1.0.x" + "renderkid": "^2.0.1", + "utila": "~0.4" + } + }, + "pretty-format": { + "version": "27.4.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.4.2.tgz", + "integrity": "sha512-p0wNtJ9oLuvgOQDEIZ9zQjZffK7KtyR6Si0jnXULIDwrlNF8Cuir3AZP0hHv0jmKuNN/edOnbMjnzd4uTcmWiw==", + "requires": { + "@jest/types": "^27.4.2", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" }, "dependencies": { - "url-parse": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.0.5.tgz", - "integrity": "sha1-CFSGBCKv3P7+tsllxmLUgAFpkns=", + "@jest/types": { + "version": "27.4.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.4.2.tgz", + "integrity": "sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + }, + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + } + } + }, + "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==", "requires": { - "querystringify": "0.0.x", - "requires-port": "1.0.x" + "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==" + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + }, + "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==", + "requires": { + "has-flag": "^4.0.0" } } } }, - "os-browserify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.1.2.tgz", - "integrity": "sha1-ScoCk+CxlZCl9d4Qx/JlphfY/lQ=" + "prettyjson": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prettyjson/-/prettyjson-1.2.1.tgz", + "integrity": "sha1-/P+rQdGcq0365eV15kJGYZsS0ok=", + "requires": { + "colors": "^1.1.2", + "minimist": "^1.2.0" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + } + } }, - "os-homedir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" + "private": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/private/-/private-0.1.7.tgz", + "integrity": "sha1-aM5eih7woju1cMwoU3tTMqumPvE=" }, - "os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" + }, + "process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" + }, + "progress": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz", + "integrity": "sha1-4mDHj2Fhzdmw5WzD4Khd4Xx6V74=" + }, + "promise": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", + "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", "requires": { - "lcid": "^1.0.0" + "asap": "~2.0.3" } }, - "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=" + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" }, - "osenv": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.4.tgz", - "integrity": "sha1-Qv5tWVPfBsgGS+bxdsPQWqqjRkQ=", + "promise-queue": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/promise-queue/-/promise-queue-2.2.5.tgz", + "integrity": "sha1-L29ffA9tCBCelnZZx5uIqe1ek7Q=" + }, + "prompt": { + "version": "0.2.14", + "resolved": "https://registry.npmjs.org/prompt/-/prompt-0.2.14.tgz", + "integrity": "sha1-V3VPZPVD/XsIRXB8gY7OYY8F/9w=", "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" + "pkginfo": "0.x.x", + "read": "1.0.x", + "revalidator": "0.1.x", + "utile": "0.2.x", + "winston": "0.8.x" + }, + "dependencies": { + "async": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", + "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=" + }, + "colors": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz", + "integrity": "sha1-JCP+ZnisDF2uiFLl0OW+CMmXq8w=" + }, + "winston": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/winston/-/winston-0.8.3.tgz", + "integrity": "sha1-ZLar9M0Brcrv1QCTk7HY6L7BnbA=", + "requires": { + "async": "0.2.x", + "colors": "0.6.x", + "cycle": "1.0.x", + "eyes": "0.1.x", + "isstream": "0.1.x", + "pkginfo": "0.3.x", + "stack-trace": "0.0.x" + } + } } }, - "outpipe": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/outpipe/-/outpipe-1.1.1.tgz", - "integrity": "sha1-UM+GFjZeh+Ax4ppeyTOaPaRyX6I=", + "prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, "requires": { - "shell-quote": "^1.4.2" + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" } }, - "p-cancelable": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", - "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==" - }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" - }, - "p-limit": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.1.0.tgz", - "integrity": "sha1-sH/y2aXYi+yAYDWJWiurZqJ5iLw=" - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "requires": { - "p-limit": "^1.1.0" + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + }, + "dependencies": { + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } } }, - "p-map": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-1.1.1.tgz", - "integrity": "sha1-BfXkrpegaDcbwqXMhr+9vBnErno=" + "prop-types-exact": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/prop-types-exact/-/prop-types-exact-1.2.0.tgz", + "integrity": "sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA==", + "requires": { + "has": "^1.0.3", + "object.assign": "^4.1.0", + "reflect.ownkeys": "^0.2.0" + }, + "dependencies": { + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + } + } }, - "pako": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", - "integrity": "sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=" + "propagate": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/propagate/-/propagate-2.0.1.tgz", + "integrity": "sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==", + "dev": true }, - "param-case": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", - "integrity": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=", + "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==", "requires": { - "no-case": "^2.2.0" + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" } }, - "parents": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parents/-/parents-1.0.1.tgz", - "integrity": "sha1-/t1NK/GTp3dF/nHjcdc8MwfZx1E=", + "prr": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz", + "integrity": "sha1-GoS4WQgyVQFBGFPQCB7j+obikmo=" + }, + "ps-tree": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/ps-tree/-/ps-tree-0.0.3.tgz", + "integrity": "sha1-2/jXUqf+Ivp9WGNWiUmWEOknbdw=", "requires": { - "path-platform": "~0.11.15" + "event-stream": "~0.5" } }, - "parse-asn1": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.0.tgz", - "integrity": "sha1-N8T5t+06tlx0gXtfJICTf7+XxxI=", + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" + }, + "psl": { + "version": "1.1.28", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.28.tgz", + "integrity": "sha512-+AqO1Ae+N/4r7Rvchrdm432afjT9hqJRyBN3DQv9At0tPz4hIFSGKbq64fN9dVoCow4oggIIax5/iONx0r9hZw==" + }, + "public-encrypt": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.0.tgz", + "integrity": "sha1-OfaZ86RlYN1eusvKaTyvfGXBjMY=", "requires": { - "asn1.js": "^4.0.0", - "browserify-aes": "^1.0.0", + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3" + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1" } }, - "parse-glob": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", - "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", "requires": { - "glob-base": "^0.3.0", - "is-dotfile": "^1.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.0" + "end-of-stream": "^1.1.0", + "once": "^1.3.1" } }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", "requires": { - "error-ex": "^1.2.0" + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" } }, - "parse5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-2.2.3.tgz", - "integrity": "sha1-DE/EHBAAxea5PUiwP4CDg3g06fY=" - }, - "parseurl": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.1.tgz", - "integrity": "sha1-yKuMkiO6NIiKpkopeyiFO+wY2lY=" - }, - "pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" }, - "path-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz", - "integrity": "sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo=" + "q": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.0.tgz", + "integrity": "sha1-3QG6ydBtMObyGa7LglPunr3DCPE=" }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" }, - "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=" + "query-string": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", + "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", + "requires": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + } }, - "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=" + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" }, - "path-parse": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz", - "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=" + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" }, - "path-platform": { - "version": "0.11.15", - "resolved": "https://registry.npmjs.org/path-platform/-/path-platform-0.11.15.tgz", - "integrity": "sha1-6GQhf3TDaFDwhSt43Hv31KVyG/I=" + "queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" }, - "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=" + "quick-lru": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==" }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "raf": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.2.0.tgz", + "integrity": "sha1-KrqaCbtw+MLpCU3GCs58N0+t7H4=", "requires": { - "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" + "performance-now": "~0.2.0" } }, - "pbkdf2": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.12.tgz", - "integrity": "sha1-vjZ4XFBn6kjYBv+SMojF91C2uKI=", + "railroad-diagrams": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz", + "integrity": "sha1-635iZ1SN3t+4mcG5Dlc3RVnN234=" + }, + "randexp": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz", + "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==", "requires": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" + "discontinuous-range": "1.0.0", + "ret": "~0.1.10" } }, - "pend": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=" - }, - "performance-now": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz", - "integrity": "sha1-M+8wxcd9TqIcWlOGnZG1bY8lVeU=" - }, - "phantom": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/phantom/-/phantom-4.0.5.tgz", - "integrity": "sha512-S7EB2fC0JYSGdBrzl9UErfW8JTQPQIgATo/TjeLutJcrnJr1+gE9KPzwlzPZjwNXL7sCGSe9AAAfs8hyn1HPDA==", + "randomatic": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz", + "integrity": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==", "requires": { - "phantomjs-prebuilt": "^2.1.4", - "split": "^1.0.0", - "winston": "^2.2.0" + "is-number": "^4.0.0", + "kind-of": "^6.0.0", + "math-random": "^1.0.1" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "caseless": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", - "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "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" - } - }, - "commander": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz", - "integrity": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==" - }, - "es6-promise": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.0.5.tgz", - "integrity": "sha1-eILzCt3lskDM+n99eMVIMwlRrkI=" - }, - "har-validator": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz", - "integrity": "sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0=", - "requires": { - "chalk": "^1.1.1", - "commander": "^2.9.0", - "is-my-json-valid": "^2.12.4", - "pinkie-promise": "^2.0.0" - } - }, - "phantomjs-prebuilt": { - "version": "2.1.14", - "resolved": "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.14.tgz", - "integrity": "sha1-1T0xH8+30dCN2yQBRVjxGIxRbaA=", - "requires": { - "es6-promise": "~4.0.3", - "extract-zip": "~1.5.0", - "fs-extra": "~1.0.0", - "hasha": "~2.2.0", - "kew": "~0.7.0", - "progress": "~1.1.8", - "request": "~2.79.0", - "request-progress": "~2.0.1", - "which": "~1.2.10" - } - }, - "qs": { - "version": "6.3.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz", - "integrity": "sha1-51vV9uJoEioqDgvaYwslUMFmUCw=" - }, - "request": { - "version": "2.79.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.79.0.tgz", - "integrity": "sha1-Tf5b9r6LjNw3/Pk+BLZVd3InEN4=", - "requires": { - "aws-sign2": "~0.6.0", - "aws4": "^1.2.1", - "caseless": "~0.11.0", - "combined-stream": "~1.0.5", - "extend": "~3.0.0", - "forever-agent": "~0.6.1", - "form-data": "~2.1.1", - "har-validator": "~2.0.6", - "hawk": "~3.1.3", - "http-signature": "~1.1.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.7", - "oauth-sign": "~0.8.1", - "qs": "~6.3.0", - "stringstream": "~0.0.4", - "tough-cookie": "~2.3.0", - "tunnel-agent": "~0.4.1", - "uuid": "^3.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=" + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==" }, - "tunnel-agent": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz", - "integrity": "sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us=" + "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==" } } }, - "phantomjs": { - "version": "2.1.7", - "resolved": "https://registry.npmjs.org/phantomjs/-/phantomjs-2.1.7.tgz", - "integrity": "sha1-xpEPZ5NcNyhbYRQyn8LyfV8+MTQ=", + "randombytes": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.5.tgz", + "integrity": "sha512-8T7Zn1AhMsQ/HI1SjcCfT/t4ii3eAqco3yOcSzS4mozsOz69lHLsoMXmF9nZgnFanYscnSlUSgs8uZyKzpE6kg==", "requires": { - "extract-zip": "~1.5.0", - "fs-extra": "~0.26.4", - "hasha": "^2.2.0", - "kew": "~0.7.0", - "progress": "~1.1.8", - "request": "~2.67.0", - "request-progress": "~2.0.1", - "which": "~1.2.2" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "caseless": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz", - "integrity": "sha1-cVuW6phBWTzDMGeSP17GDr2k99c=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "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" - } - }, - "commander": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz", - "integrity": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==" + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", + "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" + }, + "raw-body": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz", + "integrity": "sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==", + "requires": { + "bytes": "3.0.0", + "http-errors": "1.6.3", + "iconv-lite": "0.4.23", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" }, - "form-data": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-1.0.1.tgz", - "integrity": "sha1-rjFduaSQf6BlUCMEpm13M0de43w=", - "requires": { - "async": "^2.0.1", - "combined-stream": "^1.0.5", - "mime-types": "^2.1.11" - } + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" }, - "fs-extra": { - "version": "0.26.7", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.26.7.tgz", - "integrity": "sha1-muH92UiXeY7at20JGM9C0MMYT6k=", + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^2.1.0", - "klaw": "^1.0.0", - "path-is-absolute": "^1.0.0", - "rimraf": "^2.2.8" + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" } }, - "har-validator": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz", - "integrity": "sha1-zcvAgYgmWtEZtqWnyKtw7s+10n0=", + "iconv-lite": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", + "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", "requires": { - "chalk": "^1.1.1", - "commander": "^2.9.0", - "is-my-json-valid": "^2.12.4", - "pinkie-promise": "^2.0.0" - } - }, - "node-uuid": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz", - "integrity": "sha1-sEDrCSOWivq/jTL7HxfxFn/auQc=" - }, - "qs": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-5.2.1.tgz", - "integrity": "sha1-gB/uAw4LlFDWOFrcSKTMVbRK7fw=" - }, - "request": { - "version": "2.67.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.67.0.tgz", - "integrity": "sha1-ivdHgOK/EeoK6aqWXBHxGv0nJ0I=", - "requires": { - "aws-sign2": "~0.6.0", - "bl": "~1.0.0", - "caseless": "~0.11.0", - "combined-stream": "~1.0.5", - "extend": "~3.0.0", - "forever-agent": "~0.6.1", - "form-data": "~1.0.0-rc3", - "har-validator": "~2.0.2", - "hawk": "~3.1.0", - "http-signature": "~1.1.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.7", - "node-uuid": "~1.4.7", - "oauth-sign": "~0.8.0", - "qs": "~5.2.0", - "stringstream": "~0.0.4", - "tough-cookie": "~2.2.0", - "tunnel-agent": "~0.4.1" + "safer-buffer": ">= 2.1.2 < 3" } }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - }, - "tough-cookie": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.2.tgz", - "integrity": "sha1-yDoYMPTl7wuT7yo0iOck+N4Basc=" + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" }, - "tunnel-agent": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz", - "integrity": "sha1-Y3PbdpCf5XDgjXNYM2Xtgop07us=" + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" } } }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + "react": { + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react/-/react-16.14.0.tgz", + "integrity": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2" + } }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "react-addons-css-transition-group": { + "version": "15.6.2", + "resolved": "https://registry.npmjs.org/react-addons-css-transition-group/-/react-addons-css-transition-group-15.6.2.tgz", + "integrity": "sha1-nkN2vPQLUhfRTsaFUwgc7ksIptY=", "requires": { - "pinkie": "^2.0.0" + "react-transition-group": "^1.2.0" } }, - "pkg-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", - "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "react-addons-shallow-compare": { + "version": "15.6.3", + "resolved": "https://registry.npmjs.org/react-addons-shallow-compare/-/react-addons-shallow-compare-15.6.3.tgz", + "integrity": "sha512-EDJbgKTtGRLhr3wiGDXK/+AEJ59yqGS+tKE6mue0aNXT6ZMR7VJbbzIiT6akotmHg1BLj46ElJSb+NBMp80XBg==", "requires": { - "find-up": "^2.1.0" + "object-assign": "^4.1.0" } }, - "pkginfo": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.1.tgz", - "integrity": "sha1-Wyn2qB9wcXFC4J52W76rl7T4HiE=" + "react-alert": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/react-alert/-/react-alert-2.4.0.tgz", + "integrity": "sha512-zxnhxv0ENftUYBD1WdjaLEXSrNApeXizs4SldZ2cJZHcn27kY2Hnjo6Y1A8KIFcHe0yBGO+P5hnwnzoo81djIA==", + "requires": { + "glamor": "^2.20.24", + "glamorous": "^3.13.1", + "nanoid": "^0.2.2", + "react-transition-group": "^1.1.2" + } }, - "pluralize": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-1.2.1.tgz", - "integrity": "sha1-0aIUg/0iu0HlihL6NCGCMUCJfEU=" + "react-attr-converter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/react-attr-converter/-/react-attr-converter-0.1.1.tgz", + "integrity": "sha1-BZH1oRRuOrnI5NMD1s+Wb15tdgg=" }, - "portfinder": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.13.tgz", - "integrity": "sha1-uzLs2HwnEErm7kS1o8y/Drsa7ek=", + "react-class": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/react-class/-/react-class-2.0.0.tgz", + "integrity": "sha1-WlL9wV1NmXOOvyv2nbN0zoJzd5c=", "requires": { - "async": "^1.5.2", - "debug": "^2.2.0", - "mkdirp": "0.5.x" - }, - "dependencies": { - "async": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", - "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=" - } + "object-assign": "^4.0.1" } }, - "posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" + "react-colorful": { + "version": "5.5.1", + "resolved": "https://registry.npmjs.org/react-colorful/-/react-colorful-5.5.1.tgz", + "integrity": "sha512-M1TJH2X3RXEt12sWkpa6hLc/bbYS0H6F4rIqjQZ+RxNBstpY67d9TrFXtqdZwhpmBXcCwEi7stKqFue3ZRkiOg==" }, - "postcss": { - "version": "6.0.7", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.7.tgz", - "integrity": "sha512-8h/GrGLLyxM5ZvzpCH2XTYPysaSL3Ku5kWD7tKXeKRj8NVg1tyldHFCQGF4NTvRUDvjQfmcCRuowHHFFlAURUg==", + "react-copy-to-clipboard": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.4.tgz", + "integrity": "sha512-IeVAiNVKjSPeGax/Gmkqfa/+PuMTBhutEvFUaMQLwE2tS0EXrAdgOpWDX26bWTXF3HrioorR7lr08NqeYUWQCQ==", "requires": { - "chalk": "^2.0.1", - "source-map": "^0.5.6", - "supports-color": "^4.2.0" + "copy-to-clipboard": "^3", + "prop-types": "^15.5.8" } }, - "postcss-calc": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz", - "integrity": "sha1-d7rnypKK2FcW4v2kLyYb98HWW14=", + "react-css-modules": { + "version": "4.7.3", + "resolved": "https://registry.npmjs.org/react-css-modules/-/react-css-modules-4.7.3.tgz", + "integrity": "sha1-2dQBsATm4ligTcBVH/fYCsdgESI=", "requires": { - "postcss": "^5.0.2", - "postcss-message-helpers": "^2.0.0", - "reduce-css-calc": "^1.2.6" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", - "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" - } - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "requires": { - "has-flag": "^1.0.0" - } - } + "hoist-non-react-statics": "^1.2.0", + "lodash": "^4.16.6", + "object-unfreeze": "^1.1.0" } }, - "postcss-colormin": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-2.2.2.tgz", - "integrity": "sha1-ZjFBfV8OkJo9fsJrJMio0eT5bks=", + "react-date-picker": { + "version": "5.3.28", + "resolved": "https://registry.npmjs.org/react-date-picker/-/react-date-picker-5.3.28.tgz", + "integrity": "sha1-t7ru4mHFyNy5CZc/uXiJFO8H9Rg=", "requires": { - "colormin": "^1.0.5", - "postcss": "^5.0.13", - "postcss-value-parser": "^3.2.3" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", - "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" - } - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "requires": { - "has-flag": "^1.0.0" - } + "lodash.throttle": "^4.0.1", + "object-assign": "4.0.1", + "raf": "3.2.0", + "react-class": "2.0.0", + "react-field": "2.0.2", + "react-flex": "2.2.7", + "react-inline-block": "2.0.0", + "react-notify-resize": "1.0.3", + "react-style-normalizer": "1.2.8" + }, + "dependencies": { + "object-assign": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.0.1.tgz", + "integrity": "sha1-mVBEVsNZi1ytT8WcJuipuxB/4L0=" } } }, - "postcss-convert-values": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz", - "integrity": "sha1-u9hZPFwf0uPRwyK7kl3K6Nrk1i0=", - "requires": { - "postcss": "^5.0.11", - "postcss-value-parser": "^3.1.2" + "react-deep-force-update": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/react-deep-force-update/-/react-deep-force-update-1.0.1.tgz", + "integrity": "sha1-+RG1vh0qb+OHUH3W6adnqikktMc=" + }, + "react-dnd": { + "version": "14.0.4", + "resolved": "https://registry.npmjs.org/react-dnd/-/react-dnd-14.0.4.tgz", + "integrity": "sha512-AFJJXzUIWp5WAhgvI85ESkDCawM0lhoVvfo/lrseLXwFdH3kEO3v8I2C81QPqBW2UEyJBIPStOhPMGYGFtq/bg==", + "requires": { + "@react-dnd/invariant": "^2.0.0", + "@react-dnd/shallowequal": "^2.0.0", + "dnd-core": "14.0.1", + "fast-deep-equal": "^3.1.3", + "hoist-non-react-statics": "^3.3.2" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", + "hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "react-is": "^16.7.0" } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "requires": { - "has-flag": "^1.0.0" - } + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" } } }, - "postcss-discard-comments": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz", - "integrity": "sha1-vv6J+v1bPazlzM5Rt2uBUUvgDj0=", + "react-dnd-html5-backend": { + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/react-dnd-html5-backend/-/react-dnd-html5-backend-14.0.2.tgz", + "integrity": "sha512-QgN6rYrOm4UUj6tIvN8ovImu6uP48xBXF2rzVsp6tvj6d5XQ7OjHI4SJ/ZgGobOneRAU3WCX4f8DGCYx0tuhlw==", "requires": { - "postcss": "^5.0.14" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", - "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" - } - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "requires": { - "has-flag": "^1.0.0" - } - } + "dnd-core": "14.0.1" } }, - "postcss-discard-duplicates": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz", - "integrity": "sha1-uavye4isGIFYpesSq8riAmO5GTI=", + "react-dom": { + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.14.0.tgz", + "integrity": "sha512-1gCeQXDLoIqMgqD3IO2Ah9bnf0w9kzhwN5q4FGnHZ67hBm9yePzB5JJAIQCc8x3pFnNlwFq4RidZggNAAkzWWw==", "requires": { - "postcss": "^5.0.4" + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "scheduler": "^0.19.1" + } + }, + "react-error-boundary": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/react-error-boundary/-/react-error-boundary-3.1.4.tgz", + "integrity": "sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==", + "requires": { + "@babel/runtime": "^7.12.5" + } + }, + "react-field": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/react-field/-/react-field-2.0.2.tgz", + "integrity": "sha1-dOZXlENy3sD4ycjjQHhue7dh0rU=", + "requires": { + "object-assign": "^4.1.0" + } + }, + "react-flex": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/react-flex/-/react-flex-2.2.7.tgz", + "integrity": "sha1-XITmw6/8vcNm7d5AiPjQcwMxj6g=", + "requires": { + "object-assign": "^4.0.1", + "react-class": "^2.0.0" + } + }, + "react-hot-api": { + "version": "0.4.7", + "resolved": "https://registry.npmjs.org/react-hot-api/-/react-hot-api-0.4.7.tgz", + "integrity": "sha1-p+IqVtJS4Rq9k2a2EmTPRJLFgXE=" + }, + "react-hot-loader": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/react-hot-loader/-/react-hot-loader-1.3.1.tgz", + "integrity": "sha1-yVZHrni3Pfzv9uxx/8sEGC/22vk=", + "requires": { + "react-hot-api": "^0.4.5", + "source-map": "^0.4.4" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", - "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" - } - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "source-map": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", "requires": { - "has-flag": "^1.0.0" + "amdefine": ">=0.0.4" } } } }, - "postcss-discard-empty": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz", - "integrity": "sha1-0rS9nVztXr2Nyt52QMfXzX9PkrU=", + "react-html-attributes": { + "version": "1.4.6", + "resolved": "https://registry.npmjs.org/react-html-attributes/-/react-html-attributes-1.4.6.tgz", + "integrity": "sha512-uS3MmThNKFH2EZUQQw4k5pIcU7XIr208UE5dktrj/GOH1CMagqxDl4DCLpt3o2l9x+IB5nVYBeN3Cr4IutBXAg==", "requires": { - "postcss": "^5.0.14" + "html-element-attributes": "^1.0.0" + } + }, + "react-infinite-scroll-component": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/react-infinite-scroll-component/-/react-infinite-scroll-component-6.1.0.tgz", + "integrity": "sha512-SQu5nCqy8DxQWpnUVLx7V7b7LcA37aM7tvoWjTLZp1dk6EJibM5/4EJKzOnl07/BsM1Y40sKLuqjCwwH/xV0TQ==", + "requires": { + "throttle-debounce": "^2.1.0" + } + }, + "react-inline-block": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/react-inline-block/-/react-inline-block-2.0.0.tgz", + "integrity": "sha1-fbes1hVwW1RZhwLxhiLehK+An/o=", + "requires": { + "object-assign": "^4.0.1" + } + }, + "react-input-autosize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/react-input-autosize/-/react-input-autosize-1.2.0.tgz", + "integrity": "sha1-hyQQcRWfdCEjiXaR2meW7DO1fQU=", + "requires": { + "create-react-class": "^15.5.2", + "prop-types": "^15.5.8" + } + }, + "react-input-range": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/react-input-range/-/react-input-range-1.3.0.tgz", + "integrity": "sha1-+W0AFjGrgXQX8eJtj5+WhLSCf1k=", + "requires": { + "autobind-decorator": "^1.3.4", + "prop-types": "^15.5.8" + } + }, + "react-notify-resize": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/react-notify-resize/-/react-notify-resize-1.0.3.tgz", + "integrity": "sha1-oddQOu79J+7LaztbNcdwe+lCL0g=", + "requires": { + "react-class": "^2.0.0" + } + }, + "react-onclickout": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/react-onclickout/-/react-onclickout-2.0.8.tgz", + "integrity": "sha1-0XixP7h6SBNWdhtFSqYN9wabLaQ=" + }, + "react-property": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/react-property/-/react-property-2.0.0.tgz", + "integrity": "sha512-kzmNjIgU32mO4mmH5+iUyrqlpFQhF8K2k7eZ4fdLSOPFrD1XgEuSBv9LDEgxRXTMBqMd8ppT0x6TIzqE5pdGdw==" + }, + "react-proxy": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/react-proxy/-/react-proxy-1.1.8.tgz", + "integrity": "sha1-nb/Z2SdSjDqp9ETkVYw3gwq4wmo=", + "requires": { + "lodash": "^4.6.1", + "react-deep-force-update": "^1.0.0" + } + }, + "react-redux": { + "version": "7.2.6", + "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-7.2.6.tgz", + "integrity": "sha512-10RPdsz0UUrRL1NZE0ejTkucnclYSgXp5q+tB5SWx2qeG2ZJQJyymgAhwKy73yiL/13btfB6fPr+rgbMAaZIAQ==", + "requires": { + "@babel/runtime": "^7.15.4", + "@types/react-redux": "^7.1.20", + "hoist-non-react-statics": "^3.3.2", + "loose-envify": "^1.4.0", + "prop-types": "^15.7.2", + "react-is": "^17.0.2" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", "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" + "react-is": "^16.7.0" }, "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" } } }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", + "react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + } + } + }, + "react-render-html": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/react-render-html/-/react-render-html-0.1.6.tgz", + "integrity": "sha1-V9Y6zI5KTNBxa8UQWvXGTDkvg7E=", + "requires": { + "camelcase": "^3.0.0", + "parse5": "^2.0.2", + "react-attr-converter": "0.1.1", + "uppercamelcase": "^1.1.0" + }, + "dependencies": { + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" + } + } + }, + "react-select": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/react-select/-/react-select-5.3.2.tgz", + "integrity": "sha512-W6Irh7U6Ha7p5uQQ2ZnemoCQ8mcfgOtHfw3wuMzG6FAu0P+CYicgofSLOq97BhjMx8jS+h+wwWdCBeVVZ9VqlQ==", + "requires": { + "@babel/runtime": "^7.12.0", + "@emotion/cache": "^11.4.0", + "@emotion/react": "^11.8.1", + "@types/react-transition-group": "^4.4.0", + "memoize-one": "^5.0.0", + "prop-types": "^15.6.0", + "react-transition-group": "^4.3.0" + }, + "dependencies": { + "dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "react-transition-group": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.2.tgz", + "integrity": "sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==", "requires": { - "has-flag": "^1.0.0" + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" } } } }, - "postcss-discard-overridden": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz", - "integrity": "sha1-ix6vVU9ob7KIzYdMVWZ7CqNmjVg=", + "react-style-normalizer": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/react-style-normalizer/-/react-style-normalizer-1.2.8.tgz", + "integrity": "sha1-foSz0lzqYiVUXFr2iWOyJYhTRKI=" + }, + "react-swipeable": { + "version": "5.5.1", + "resolved": "https://registry.npmjs.org/react-swipeable/-/react-swipeable-5.5.1.tgz", + "integrity": "sha512-EQObuU3Qg3JdX3WxOn5reZvOSCpU4fwpUAs+NlXSN3y+qtsO2r8VGkVnOQzmByt3BSYj9EWYdUOUfi7vaMdZZw==", "requires": { - "postcss": "^5.0.16" + "prop-types": "^15.6.2" + } + }, + "react-test-renderer": { + "version": "16.14.0", + "resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-16.14.0.tgz", + "integrity": "sha512-L8yPjqPE5CZO6rKsKXRO/rVPiaCOy0tQQJbC+UjPNlobl5mad59lvPjwFsQHTvL03caVDIVr9x9/OSgDe6I5Eg==", + "requires": { + "object-assign": "^4.1.1", + "prop-types": "^15.6.2", + "react-is": "^16.8.6", + "scheduler": "^0.19.1" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + } + }, + "react-tools": { + "version": "0.13.3", + "resolved": "https://registry.npmjs.org/react-tools/-/react-tools-0.13.3.tgz", + "integrity": "sha1-2mrH1Nd3elml6VHPRucv1La0Ciw=", + "requires": { + "commoner": "^0.10.0", + "jstransform": "^10.1.0" + } + }, + "react-tooltip": { + "version": "4.2.21", + "resolved": "https://registry.npmjs.org/react-tooltip/-/react-tooltip-4.2.21.tgz", + "integrity": "sha512-zSLprMymBDowknr0KVDiJ05IjZn9mQhhg4PRsqln0OZtURAJ1snt1xi5daZfagsh6vfsziZrc9pErPTDY1ACig==", + "requires": { + "prop-types": "^15.7.2", + "uuid": "^7.0.3" + }, + "dependencies": { + "uuid": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-7.0.3.tgz", + "integrity": "sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==" + } + } + }, + "react-transition-group": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-1.2.1.tgz", + "integrity": "sha512-CWaL3laCmgAFdxdKbhhps+c0HRGF4c+hdM4H23+FI1QBNUyx/AMeIJGWorehPNSaKnQNOAxL7PQmqMu78CDj3Q==", + "requires": { + "chain-function": "^1.0.0", + "dom-helpers": "^3.2.0", + "loose-envify": "^1.3.1", + "prop-types": "^15.5.6", + "warning": "^3.0.0" + } + }, + "reactify": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/reactify/-/reactify-1.1.1.tgz", + "integrity": "sha1-qPEZWWJzwNS/savqDBTCYB6gO7o=", + "requires": { + "react-tools": "~0.13.0", + "through": "~2.3.4" + } + }, + "read": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", + "integrity": "sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=", + "requires": { + "mute-stream": "~0.0.4" + } + }, + "read-only-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-only-stream/-/read-only-stream-2.0.0.tgz", + "integrity": "sha1-JyT9aoET1zdkrCiNQ4YnDB2/F/A=", + "requires": { + "readable-stream": "^2.0.2" + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + }, + "dependencies": { + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", "requires": { - "has-flag": "^1.0.0" + "pinkie-promise": "^2.0.0" } } } }, - "postcss-discard-unused": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz", - "integrity": "sha1-vOMLLMWR/8Y0Mitfs0ZLbZNPRDM=", + "readable-stream": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", + "integrity": "sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.0.3", + "util-deprecate": "~1.0.1" + } + }, + "readdirp": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz", + "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=", + "requires": { + "graceful-fs": "^4.1.2", + "minimatch": "^3.0.2", + "readable-stream": "^2.0.2", + "set-immediate-shim": "^1.0.1" + } + }, + "readline2": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz", + "integrity": "sha1-QQWWCP/BVHV7cV2ZidGZ/783LjU=", + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "mute-stream": "0.0.5" + } + }, + "recast": { + "version": "0.11.23", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz", + "integrity": "sha1-RR/TAEqx5N+bTktmN2sqIZEkYtM=", + "requires": { + "ast-types": "0.9.6", + "esprima": "~3.1.0", + "private": "~0.1.5", + "source-map": "~0.5.0" + }, + "dependencies": { + "esprima": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", + "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=" + } + } + }, + "redbox-react": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/redbox-react/-/redbox-react-1.6.0.tgz", + "integrity": "sha512-mLjM5eYR41yOp5YKHpd3syFeGq6B4Wj5vZr64nbLvTZW5ZLff4LYk7VE4ITpVxkZpCY6OZuqh0HiP3A3uEaCpg==", "requires": { - "postcss": "^5.0.14", - "uniqs": "^2.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", - "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" - } - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "requires": { - "has-flag": "^1.0.0" - } - } + "error-stack-parser": "^1.3.6", + "object-assign": "^4.0.1", + "prop-types": "^15.5.4", + "sourcemapped-stacktrace": "^1.1.6" } }, - "postcss-filter-plugins": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.2.tgz", - "integrity": "sha1-bYWGJTTXNaxCDkqFgG4fXUKG2Ew=", + "redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", "requires": { - "postcss": "^5.0.4", - "uniqid": "^4.0.0" + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" + } + }, + "reduce-css-calc": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz", + "integrity": "sha1-dHyRTgSWFKTJz7umKYca0dKSdxY=", + "requires": { + "balanced-match": "^0.4.2", + "math-expression-evaluator": "^1.2.14", + "reduce-function-call": "^1.0.1" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", - "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" - } - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "requires": { - "has-flag": "^1.0.0" - } + "balanced-match": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", + "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=" } } }, - "postcss-load-config": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-1.2.0.tgz", - "integrity": "sha1-U56a/J3chiASHr+djDZz4M5Q0oo=", + "reduce-function-call": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.3.tgz", + "integrity": "sha512-Hl/tuV2VDgWgCSEeWMLwxLZqX7OK59eU1guxXsRKTAyeYimivsKdtcV4fu3r710tpG5GmDKDhQ0HSZLExnNmyQ==", "requires": { - "cosmiconfig": "^2.1.0", - "object-assign": "^4.1.0", - "postcss-load-options": "^1.2.0", - "postcss-load-plugins": "^2.3.0" + "balanced-match": "^1.0.0" } }, - "postcss-load-options": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/postcss-load-options/-/postcss-load-options-1.2.0.tgz", - "integrity": "sha1-sJixVZ3awt8EvAuzdfmaXP4rbYw=", + "redux": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/redux/-/redux-4.1.2.tgz", + "integrity": "sha512-SH8PglcebESbd/shgf6mii6EIoRM0zrQyjcuQ+ojmfxjTtE0z9Y8pa62iA/OJ58qjP6j27uyW4kUF4jl/jd6sw==", "requires": { - "cosmiconfig": "^2.1.0", - "object-assign": "^4.1.0" + "@babel/runtime": "^7.9.2" } }, - "postcss-load-plugins": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/postcss-load-plugins/-/postcss-load-plugins-2.3.0.tgz", - "integrity": "sha1-dFdoEWWZrKLwCfrUJrABdQSdjZI=", + "redux-devtools-extension": { + "version": "2.13.9", + "resolved": "https://registry.npmjs.org/redux-devtools-extension/-/redux-devtools-extension-2.13.9.tgz", + "integrity": "sha512-cNJ8Q/EtjhQaZ71c8I9+BPySIBVEKssbPpskBfsXqb8HJ002A3KRVHfeRzwRo6mGPqsm7XuHTqNSNeS1Khig0A==" + }, + "redux-mock-store": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/redux-mock-store/-/redux-mock-store-1.5.4.tgz", + "integrity": "sha512-xmcA0O/tjCLXhh9Fuiq6pMrJCwFRaouA8436zcikdIpYWWCjU76CRk+i2bHx8EeiSiMGnB85/lZdU3wIJVXHTA==", "requires": { - "cosmiconfig": "^2.1.1", - "object-assign": "^4.1.0" + "lodash.isplainobject": "^4.0.6" } }, - "postcss-loader": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-2.0.6.tgz", - "integrity": "sha512-HIq7yy1hh9KI472Y38iSRV4WupZUNy6zObkxQM/ZuInoaE2+PyX4NcO6jjP5HG5mXL7j5kcNEl0fAG4Kva7O9w==", + "redux-thunk": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.1.tgz", + "integrity": "sha512-OOYGNY5Jy2TWvTL1KgAlVy6dcx3siPJ1wTq741EPyUKfn6W6nChdICjZwCd0p8AZBs5kWpZlbkXW2nE/zjUa+Q==" + }, + "reflect.ownkeys": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz", + "integrity": "sha1-dJrO7H8/34tj+SegSAnpDFwLNGA=" + }, + "regenerate": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.3.2.tgz", + "integrity": "sha1-0ZQcZ7rUN+G+dkM63Vs4X5WxkmA=" + }, + "regenerator-runtime": { + "version": "0.10.5", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz", + "integrity": "sha1-M2w+/BIgrc7dosn6tntaeVWjNlg=" + }, + "regenerator-transform": { + "version": "0.9.11", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.9.11.tgz", + "integrity": "sha1-On0GdSDLe3F2dp61/4aGkb7+EoM=", "requires": { - "loader-utils": "^1.1.0", - "postcss": "^6.0.2", - "postcss-load-config": "^1.2.0", - "schema-utils": "^0.3.0" + "babel-runtime": "^6.18.0", + "babel-types": "^6.19.0", + "private": "^0.1.6" } }, - "postcss-merge-idents": { - "version": "2.1.7", - "resolved": "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz", - "integrity": "sha1-TFUwMTwI4dWzu/PSu8dH4njuonA=", + "regex-cache": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz", + "integrity": "sha1-mxpsNdTQ3871cRrmUejp09cRQUU=", "requires": { - "has": "^1.0.1", - "postcss": "^5.0.10", - "postcss-value-parser": "^3.1.1" + "is-equal-shallow": "^0.1.3", + "is-primitive": "^2.0.0" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + } + }, + "regex-parser": { + "version": "2.2.9", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.9.tgz", + "integrity": "sha512-VncXxOF6uFlYog5prG2j+e2UGJeam5MfNiJnB/qEgo4KTnMm2XrELCg4rNZ6IlaEUZnGlb8aB6lXowCRQtTkkA==" + }, + "regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", + "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { + "define-properties": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + } + } + }, + "regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" + }, + "regexpu-core": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz", + "integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=", + "requires": { + "regenerate": "^1.2.1", + "regjsgen": "^0.2.0", + "regjsparser": "^0.1.4" + } + }, + "regjsgen": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz", + "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=" + }, + "regjsparser": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz", + "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=", + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + } + } + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" + }, + "remove-trailing-separator": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz", + "integrity": "sha1-abBi2XhyetFNxrVrpKt3L9jXBRE=" + }, + "renderkid": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.7.tgz", + "integrity": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==", + "requires": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^3.0.1" + }, + "dependencies": { + "css-select": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.1.3.tgz", + "integrity": "sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==", "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } + "boolbase": "^1.0.0", + "css-what": "^5.0.0", + "domhandler": "^4.2.0", + "domutils": "^2.6.0", + "nth-check": "^2.0.0" } }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + "css-what": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz", + "integrity": "sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==" }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", + "dom-serializer": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz", + "integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "domelementtype": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz", + "integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==" + }, + "domhandler": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.0.tgz", + "integrity": "sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g==", "requires": { - "has-flag": "^1.0.0" + "domelementtype": "^2.2.0" } - } - } - }, - "postcss-merge-longhand": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz", - "integrity": "sha1-I9kM0Sewp3mUkVMyc5A0oaTz1lg=", - "requires": { - "postcss": "^5.0.4" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" } }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", + "htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "nth-check": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz", + "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==", "requires": { - "has-flag": "^1.0.0" + "boolbase": "^1.0.0" } } } }, - "postcss-merge-rules": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz", - "integrity": "sha1-0d9d+qexrMO+VT8OnhDofGG19yE=", + "repeat-element": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", + "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=" + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + }, + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", "requires": { - "browserslist": "^1.5.2", - "caniuse-api": "^1.5.2", - "postcss": "^5.0.4", - "postcss-selector-parser": "^2.2.2", - "vendors": "^1.0.0" + "is-finite": "^1.0.0" + } + }, + "request": { + "version": "2.81.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.81.0.tgz", + "integrity": "sha1-xpKJRqDgbF+Nb4qTM0af/aRimKA=", + "requires": { + "aws-sign2": "~0.6.0", + "aws4": "^1.2.1", + "caseless": "~0.12.0", + "combined-stream": "~1.0.5", + "extend": "~3.0.0", + "forever-agent": "~0.6.1", + "form-data": "~2.1.1", + "har-validator": "~4.2.1", + "hawk": "~3.1.3", + "http-signature": "~1.1.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.7", + "oauth-sign": "~0.8.1", + "performance-now": "^0.2.0", + "qs": "~6.4.0", + "safe-buffer": "^5.0.1", + "stringstream": "~0.0.4", + "tough-cookie": "~2.3.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.0.0" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "browserslist": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", - "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", - "requires": { - "caniuse-db": "^1.0.30000639", - "electron-to-chromium": "^1.2.7" - } - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", - "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" - } + "qs": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz", + "integrity": "sha1-E+JtKK1rD/qpExLNO/cI7TUecjM=" }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "tough-cookie": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz", + "integrity": "sha512-TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA==", "requires": { - "has-flag": "^1.0.0" + "punycode": "^1.4.1" } } } }, - "postcss-message-helpers": { + "request-ip": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/request-ip/-/request-ip-2.0.2.tgz", + "integrity": "sha1-3urm1K8hdoSX24zQX6NxQ/jxJX4=", + "requires": { + "is_js": "^0.9.0" + } + }, + "request-promise-core": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.1.tgz", + "integrity": "sha1-Pu4AssWqgyOc+wTFcA2jb4HNCLY=", + "requires": { + "lodash": "^4.13.1" + } + }, + "request-promise-native": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.5.tgz", + "integrity": "sha1-UoF3D2jgyXGeUWP9P6tIIhX0/aU=", + "requires": { + "request-promise-core": "1.1.1", + "stealthy-require": "^1.1.0", + "tough-cookie": ">=2.3.3" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + }, + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" + }, + "require-uncached": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz", + "integrity": "sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=", + "requires": { + "caller-path": "^0.1.0", + "resolve-from": "^1.0.0" + } + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" + }, + "reselect": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/reselect/-/reselect-3.0.1.tgz", + "integrity": "sha1-79qpjqdFEyTQkrKyFjpqHXqaIUc=" + }, + "resolve": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.3.3.tgz", + "integrity": "sha1-ZVkHw0aahoDcLeOidaj91paR8OU=", + "requires": { + "path-parse": "^1.0.5" + } + }, + "resolve-cwd": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz", - "integrity": "sha1-pPL0+rbk/gAvCu0ABHjN9S+bpg4=" - }, - "postcss-minify-font-values": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz", - "integrity": "sha1-S1jttWZB66fIR0qzUmyv17vey2k=", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", "requires": { - "object-assign": "^4.0.1", - "postcss": "^5.0.4", - "postcss-value-parser": "^3.0.2" + "resolve-from": "^3.0.0" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", - "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" - } - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "requires": { - "has-flag": "^1.0.0" - } + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" } } }, - "postcss-minify-gradients": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz", - "integrity": "sha1-Xb2hE3NwP4PPtKPqOIHY11/15uE=", + "resolve-from": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz", + "integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=" + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" + }, + "resolve-url-loader": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-2.3.0.tgz", + "integrity": "sha512-RaEUWgF/B6aTg9VKaOv2o6dfm5f75/lGh8S+SQwoMcBm48WkA2nhLR+V7KEawkxXjU4lLB16IVeHCe7F69nyVw==", "requires": { - "postcss": "^5.0.12", - "postcss-value-parser": "^3.3.0" + "adjust-sourcemap-loader": "^1.1.0", + "camelcase": "^4.1.0", + "convert-source-map": "^1.5.1", + "loader-utils": "^1.1.0", + "lodash.defaults": "^4.0.0", + "rework": "^1.0.1", + "rework-visit": "^1.0.0", + "source-map": "^0.5.7", + "urix": "^0.1.0" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } + "camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + "convert-source-map": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz", + "integrity": "sha1-uCeAl7m8IpNl3lxiz1/K7YtVmeU=" }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "minimist": "^1.2.0" } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "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==", "requires": { - "has-flag": "^1.0.0" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" } } }, - "postcss-minify-params": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz", - "integrity": "sha1-rSzgcTc7lDs9kwo/pZo1jCjW8fM=", + "resolve.exports": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", + "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", + "dev": true + }, + "restore-cursor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz", + "integrity": "sha1-NGYfRohjJ/7SmRR5FSJS35LapUE=", "requires": { - "alphanum-sort": "^1.0.1", - "postcss": "^5.0.2", - "postcss-value-parser": "^3.0.2", - "uniqs": "^2.0.0" + "exit-hook": "^1.0.0", + "onetime": "^1.0.0" + } + }, + "resumer": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz", + "integrity": "sha1-8ej0YeQGS6Oegq883CqMiT0HZ1k=", + "requires": { + "through": "~2.3.4" + } + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + }, + "revalidator": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/revalidator/-/revalidator-0.1.8.tgz", + "integrity": "sha1-/s5hv6DBtSoga9axgZgYS91SOjs=" + }, + "rework": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz", + "integrity": "sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=", + "requires": { + "convert-source-map": "^0.3.3", + "css": "^2.0.0" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", - "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" - } - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "requires": { - "has-flag": "^1.0.0" - } + "convert-source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz", + "integrity": "sha1-8dgClQr33SYxof6+BZZVDIarMZA=" } } }, - "postcss-minify-selectors": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz", - "integrity": "sha1-ssapjAByz5G5MtGkllCBFDEXNb8=", + "rework-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz", + "integrity": "sha1-mUWygD8hni96ygCtuLyfZA+ELJo=" + }, + "right-align": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", + "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", + "requires": { + "align-text": "^0.1.1" + } + }, + "rimraf": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz", + "integrity": "sha1-wjOOxkPfeht/5cVPqG9XQopV8z0=", + "requires": { + "glob": "^7.0.5" + } + }, + "ripemd160": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.1.tgz", + "integrity": "sha1-D0WEKVxTo2KK9+bXmsohzlfRxuc=", "requires": { - "alphanum-sort": "^1.0.2", - "has": "^1.0.1", - "postcss": "^5.0.14", - "postcss-selector-parser": "^2.0.0" + "hash-base": "^2.0.0", + "inherits": "^2.0.1" + } + }, + "rodal": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/rodal/-/rodal-1.8.3.tgz", + "integrity": "sha512-N7eilcq4vVN9pgU3xTJ7kxUbvRPxAQrB29grZVejxH/XVsg5ILSfN/kzZNmYR1O6srNnmGgZA15ITwYjeC7rgw==", + "requires": { + "classnames": "^2.2.6" + } + }, + "rollbar": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/rollbar/-/rollbar-2.4.1.tgz", + "integrity": "sha512-Z78zl76lMRAQrpMpWpA6G159yBwjA5hKJcfNM6anm2cou4G7pTeLvM/lzFFXZmx/HV59P3KHZgqZ+jjV6qkz7Q==", + "requires": { + "async": "~1.2.1", + "console-polyfill": "0.3.0", + "debug": "2.6.9", + "decache": "^3.0.5", + "error-stack-parser": "1.3.3", + "json-stringify-safe": "~5.0.0", + "lru-cache": "~2.2.1", + "request-ip": "~2.0.1", + "uuid": "3.0.x" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + "async": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/async/-/async-1.2.1.tgz", + "integrity": "sha1-pIFqF81f9RbfosdpikUzabl5DeA=" }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "error-stack-parser": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-1.3.3.tgz", + "integrity": "sha1-+tpuOpzSsOCA5tb8dRQYZJc081w=", "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } + "stackframe": "^0.3.1" } }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", - "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" - } + "lru-cache": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.2.4.tgz", + "integrity": "sha1-bGWGGb7PFAMdDQtZSxYELOTcBj0=" }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "requires": { - "has-flag": "^1.0.0" - } + "uuid": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.0.1.tgz", + "integrity": "sha1-ZUS7ot/ajBzxfmKaOjBeK7H+5sE=" } } }, - "postcss-modules-extract-imports": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.1.0.tgz", - "integrity": "sha1-thTJcgvmgW6u41+zpfqh26agXds=", + "rst-selector-parser": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz", + "integrity": "sha1-gbIw6i/MYGbInjRy3nlChdmwPZE=", "requires": { - "postcss": "^6.0.1" + "lodash.flattendeep": "^4.4.0", + "nearley": "^2.7.10" } }, - "postcss-modules-local-by-default": { + "rsvp": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-3.6.2.tgz", + "integrity": "sha512-OfWGQTb9vnwRjwtA2QwpG2ICclHC3pgXZO5xt8H2EfgDquO0qVdSb5T88L4qJVAEugbS56pAuV4XZM58UX8ulw==" + }, + "run-async": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz", + "integrity": "sha1-yK1KXhEGYeQCp9IbUw4AnyX444k=", + "requires": { + "once": "^1.3.0" + } + }, + "run-parallel": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz", - "integrity": "sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "requires": { - "css-selector-tokenizer": "^0.7.0", - "postcss": "^6.0.1" + "queue-microtask": "^1.2.2" } }, - "postcss-modules-scope": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz", - "integrity": "sha1-1upkmUx5+XtipytCb75gVqGUu5A=", + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", "requires": { - "css-selector-tokenizer": "^0.7.0", - "postcss": "^6.0.1" + "aproba": "^1.1.1" } }, - "postcss-modules-values": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz", - "integrity": "sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=", + "rx-lite": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz", + "integrity": "sha1-Gc5QLKVyZl87ZHsQk5+X/RYV8QI=" + }, + "rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", "requires": { - "icss-replace-symbols": "^1.1.0", - "postcss": "^6.0.1" + "tslib": "^1.9.0" } }, - "postcss-normalize-charset": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz", - "integrity": "sha1-757nEhLX/nWceO0WL2HtYrXLk/E=", + "safe-buffer": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", + "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", "requires": { - "postcss": "^5.0.5" + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "sass-graph": { + "version": "2.2.5", + "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.5.tgz", + "integrity": "sha512-VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag==", + "requires": { + "glob": "^7.0.0", + "lodash": "^4.0.0", + "scss-tokenizer": "^0.2.3", + "yargs": "^13.3.2" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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==", "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } + "color-convert": "^1.9.0" } }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "requires": { - "has-flag": "^1.0.0" + "locate-path": "^3.0.0" } - } - } - }, - "postcss-normalize-url": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz", - "integrity": "sha1-EI90s/L82viRov+j6kWSJ5/HgiI=", - "requires": { - "is-absolute-url": "^2.0.0", - "normalize-url": "^1.4.0", - "postcss": "^5.0.14", - "postcss-value-parser": "^3.2.3" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } + "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==" + }, + "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=" + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" } }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", + "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==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "p-limit": "^2.0.0" } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "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==" + }, + "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==", "requires": { - "has-flag": "^1.0.0" + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" } - } - } - }, - "postcss-ordered-values": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz", - "integrity": "sha1-7sbCpntsQSqNsgQud/6NpD+VwR0=", - "requires": { - "postcss": "^5.0.4", - "postcss-value-parser": "^3.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } + "ansi-regex": "^4.1.0" } }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", + "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==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", "requires": { - "has-flag": "^1.0.0" + "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" + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" } } } }, - "postcss-reduce-idents": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz", - "integrity": "sha1-wsbSDMlYKE9qv75j92Cb9AkFmtM=", + "sass-lint": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/sass-lint/-/sass-lint-1.13.1.tgz", + "integrity": "sha512-DSyah8/MyjzW2BWYmQWekYEKir44BpLqrCFsgs9iaWiVTcwZfwXHF586hh3D1n+/9ihUNMfd8iHAyb9KkGgs7Q==", "requires": { - "postcss": "^5.0.4", - "postcss-value-parser": "^3.0.2" + "commander": "^2.8.1", + "eslint": "^2.7.0", + "front-matter": "2.1.2", + "fs-extra": "^3.0.1", + "glob": "^7.0.0", + "globule": "^1.0.0", + "gonzales-pe-sl": "^4.2.3", + "js-yaml": "^3.5.4", + "known-css-properties": "^0.3.0", + "lodash.capitalize": "^4.1.0", + "lodash.kebabcase": "^4.0.0", + "merge": "^1.2.0", + "path-is-absolute": "^1.0.0", + "util": "^0.10.3" }, "dependencies": { "ansi-styles": { @@ -12921,1987 +27133,999 @@ "has-ansi": "^2.0.0", "strip-ansi": "^3.0.0", "supports-color": "^2.0.0" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } } }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + "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==" }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", + "doctrine": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", + "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "esutils": "^2.0.2", + "isarray": "^1.0.0" } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "eslint": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-2.13.1.tgz", + "integrity": "sha1-5MyPoPAJ+4KaquI4VaKTYL4fbBE=", "requires": { - "has-flag": "^1.0.0" + "chalk": "^1.1.3", + "concat-stream": "^1.4.6", + "debug": "^2.1.1", + "doctrine": "^1.2.2", + "es6-map": "^0.1.3", + "escope": "^3.6.0", + "espree": "^3.1.6", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "file-entry-cache": "^1.1.1", + "glob": "^7.0.3", + "globals": "^9.2.0", + "ignore": "^3.1.2", + "imurmurhash": "^0.1.4", + "inquirer": "^0.12.0", + "is-my-json-valid": "^2.10.0", + "is-resolvable": "^1.0.0", + "js-yaml": "^3.5.1", + "json-stable-stringify": "^1.0.0", + "levn": "^0.3.0", + "lodash": "^4.0.0", + "mkdirp": "^0.5.0", + "optionator": "^0.8.1", + "path-is-absolute": "^1.0.0", + "path-is-inside": "^1.0.1", + "pluralize": "^1.2.1", + "progress": "^1.1.8", + "require-uncached": "^1.0.2", + "shelljs": "^0.6.0", + "strip-json-comments": "~1.0.1", + "table": "^3.7.8", + "text-table": "~0.2.0", + "user-home": "^2.0.0" } - } - } - }, - "postcss-reduce-initial": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz", - "integrity": "sha1-aPgGlfBF0IJjqHmtJA343WT2ROo=", - "requires": { - "postcss": "^5.0.4" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "file-entry-cache": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-1.3.1.tgz", + "integrity": "sha1-RMYepgeuS+nBQC9B9EJwy/4zT/g=", "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } + "flat-cache": "^1.2.1", + "object-assign": "^4.0.1" } }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + "fs-extra": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz", + "integrity": "sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE=", + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^3.0.0", + "universalify": "^0.1.0" + } }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", + "json-stable-stringify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", + "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "jsonify": "~0.0.0" } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "jsonfile": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz", + "integrity": "sha1-pezG9l9T9mLEQVx2daAzHQmS7GY=", "requires": { - "has-flag": "^1.0.0" + "graceful-fs": "^4.1.6" } + }, + "shelljs": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.6.1.tgz", + "integrity": "sha1-7GIRvtGSBEIIj+D3Cyg3Iy7SyKg=" + }, + "strip-json-comments": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz", + "integrity": "sha1-HhX7ysl9Pumb8tc7TGVrCCu6+5E=" + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" } } }, - "postcss-reduce-transforms": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz", - "integrity": "sha1-/3b02CEkN7McKYpC0uFEQCV3GuE=", - "requires": { - "has": "^1.0.1", - "postcss": "^5.0.8", - "postcss-value-parser": "^3.0.1" + "sass-loader": { + "version": "6.0.7", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-6.0.7.tgz", + "integrity": "sha512-JoiyD00Yo1o61OJsoP2s2kb19L1/Y2p3QFcCdWdF6oomBGKVYuZyqHWemRBfQ2uGYsk+CH3eCguXNfpjzlcpaA==", + "dev": true, + "requires": { + "clone-deep": "^2.0.1", + "loader-utils": "^1.0.1", + "lodash.tail": "^4.1.1", + "neo-async": "^2.5.0", + "pify": "^3.0.0" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } + "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 }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", + "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": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "minimist": "^1.2.0" } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "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": { - "has-flag": "^1.0.0" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "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 } } }, - "postcss-selector-parser": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz", - "integrity": "sha1-+UN3iGBsPJrO4W/+jYsWKX8nu5A=", + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dev": true, "requires": { - "flatten": "^1.0.2", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" + "xmlchars": "^2.2.0" } }, - "postcss-svgo": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz", - "integrity": "sha1-tt8YqmE7Zm4TPwittSGcJoSsEI0=", + "scheduler": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz", + "integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==", "requires": { - "is-svg": "^2.0.0", - "postcss": "^5.0.14", - "postcss-value-parser": "^3.2.3", - "svgo": "^0.7.0" + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "schema-utils": { + "version": "0.4.7", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz", + "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==", + "requires": { + "ajv": "^6.1.0", + "ajv-keywords": "^3.1.0" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + } + } + }, + "scss-tokenizer": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", + "integrity": "sha1-jrBtualyMzOCTT9VMGQRSYR85dE=", + "requires": { + "js-base64": "^2.1.8", + "source-map": "^0.4.2" + }, + "dependencies": { + "source-map": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", "requires": { - "has-flag": "^1.0.0" + "amdefine": ">=0.0.4" } } } }, - "postcss-unique-selectors": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz", - "integrity": "sha1-mB1X0p3csz57Hf4f1DuGSfkzyh0=", + "searchneu": { + "version": "1.0.65", + "resolved": "https://registry.npmjs.org/searchneu/-/searchneu-1.0.65.tgz", + "integrity": "sha512-Q7xXctfrV9JIFddT/NXmmTvAtrb7tGAzjO+v8foxpYTmN7kw0CNvAjBW5fRa1ucYlNCDB9LS5EtmmppVlCiJiQ==", "requires": { - "alphanum-sort": "^1.0.1", - "postcss": "^5.0.4", - "uniqs": "^2.0.0" + "@mapbox/togeojson": "^0.16.0", + "acorn": "^5.0.3", + "amplitude": "^3.5.0", + "async": "^2.1.5", + "babel-core": "^6.21.0", + "babel-jest": "^21.2.0", + "babel-polyfill": "^6.22.0", + "body-parser": "^1.17.2", + "cheerio": "^0.22.0", + "classnames": "^2.2.5", + "compression": "^1.6.2", + "cookie": "^0.3.1", + "cross-env": "^5.0.0", + "deep-diff": "^0.3.8", + "dnscache": "^1.0.1", + "domutils": "^1.6.2", + "elasticlunr": "^0.9.5", + "enzyme": "^3.2.0", + "enzyme-adapter-react-16": "^1.1.0", + "eslint-loader": "^1.9.0", + "express": "^4.15.2", + "express-async-wrap": "^1.0.0", + "express-x-hub": "^1.0.4", + "file-loader": "^1.1.5", + "forever": "^0.15.3", + "form-urlencoded": "^2.0.4", + "fs-promise": "^2.0.0", + "he": "^1.1.1", + "html-webpack-plugin": "^2.28.0", + "htmlparser2": "^3.9.2", + "identity-obj-proxy": "^3.0.0", + "is-mobile": "^0.2.2", + "jest": "^21.2.1", + "json": "^9.0.6", + "lodash": "^4.17.4", + "mkdirp-promise": "^5.0.1", + "mock-local-storage": "^1.0.5", + "mockdate": "^2.0.1", + "moment": "^2.17.1", + "msgpack5": "^3.4.1", + "object-hash": "^1.1.7", + "promise-queue": "^2.2.3", + "prop-types": "^15.5.8", + "react": "^16.1.1", + "react-css-modules": "^4.1.0", + "react-dom": "^16.1.1", + "react-hot-loader": "^3.0.0-beta.2", + "react-test-renderer": "^16.1.1", + "react-tooltip": "^3.2.6", + "react-transition-group": "^2.2.1", + "request": "^2.81.0", + "request-promise-native": "^1.0.3", + "resolve-url-loader": "^2.0.2", + "rollbar": "^2.1.3", + "semantic-ui-css": "^2.2.4", + "semantic-ui-react": "^0.76.0", + "semver": "^5.4.1", + "urijs": "^1.18.8", + "webpack": "^3.8.1", + "webpack-dev-middleware": "^1.10.1", + "webpack-hot-middleware": "^2.16.1", + "whois": "^2.3.9", + "xmldom": "^0.1.27" }, "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + "acorn": { + "version": "5.7.4", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", + "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==" }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "ajv": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.1.tgz", + "integrity": "sha512-pgZos1vgOHDiC7gKNbZW8eKvCnNXARv2oqrGQT7Hzbq5Azp7aZG6DJzADnkuSq7RH6qkXp4J/m68yPX/2uBHyQ==", "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" - }, - "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } + "fast-deep-equal": "^2.0.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.1" } }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + "ajv-keywords": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz", + "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=" + }, + "ansi-escapes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz", + "integrity": "sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==" }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", - "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" - } + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "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==", "requires": { - "has-flag": "^1.0.0" + "color-convert": "^1.9.0" } - } - } - }, - "postcss-value-parser": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz", - "integrity": "sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU=" - }, - "postcss-zindex": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz", - "integrity": "sha1-0hCd3AVbka9n/EyzsCWUZjnSryI=", - "requires": { - "has": "^1.0.1", - "postcss": "^5.0.4", - "uniqs": "^2.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", "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" + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" }, "dependencies": { - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "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" + } } } }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" }, - "postcss": { - "version": "5.2.17", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.17.tgz", - "integrity": "sha1-z09Ze4ZNZcikkrLqvp1wbIecOIs=", + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + }, + "babel-jest": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-21.2.0.tgz", + "integrity": "sha512-O0W2qLoWu1QOoOGgxiR2JID4O6WSpxPiQanrkyi9SSlM0PJ60Ptzlck47lhtnr9YZO3zYOsxHwnyeWJ6AffoBQ==", "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" + "babel-plugin-istanbul": "^4.0.0", + "babel-preset-jest": "^21.2.0" } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "babel-plugin-jest-hoist": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.2.0.tgz", + "integrity": "sha512-yi5QuiVyyvhBUDLP4ButAnhYzkdrUwWDtvUJv71hjH3fclhnZg4HkDeqaitcR2dZZx/E67kGkRcPVjtVu+SJfQ==" + }, + "babel-preset-jest": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-21.2.0.tgz", + "integrity": "sha512-hm9cBnr2h3J7yXoTtAVV0zg+3vg0Q/gT2GYuzlreTU0EPkJRtlNgKJJ3tBKEn0+VjAi3JykV6xCJkuUYttEEfA==", "requires": { - "has-flag": "^1.0.0" + "babel-plugin-jest-hoist": "^21.2.0", + "babel-plugin-syntax-object-rest-spread": "^6.13.0" + } + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } } - } - } - }, - "precommit-hook": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/precommit-hook/-/precommit-hook-3.0.0.tgz", - "integrity": "sha1-YTbEUYX/lkNxZz9rY+nkhVSdsdc=", - "dev": true, - "requires": { - "git-validate": "^2.0.0", - "jshint": "*" - } - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" - }, - "prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" - }, - "preserve": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", - "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=" - }, - "pretty-error": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.1.tgz", - "integrity": "sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM=", - "requires": { - "renderkid": "^2.0.1", - "utila": "~0.4" - } - }, - "pretty-format": { - "version": "20.0.3", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-20.0.3.tgz", - "integrity": "sha1-Ag41ClYKH+GpjcO+tsz/s4beixQ=", - "dev": true, - "requires": { - "ansi-regex": "^2.1.1", - "ansi-styles": "^3.0.0" - } - }, - "prettyjson": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prettyjson/-/prettyjson-1.2.1.tgz", - "integrity": "sha1-/P+rQdGcq0365eV15kJGYZsS0ok=", - "requires": { - "colors": "^1.1.2", - "minimist": "^1.2.0" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - } - } - }, - "private": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/private/-/private-0.1.7.tgz", - "integrity": "sha1-aM5eih7woju1cMwoU3tTMqumPvE=" - }, - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" - }, - "process-nextick-args": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=" - }, - "progress": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz", - "integrity": "sha1-4mDHj2Fhzdmw5WzD4Khd4Xx6V74=" - }, - "promise": { - "version": "7.3.1", - "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz", - "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==", - "requires": { - "asap": "~2.0.3" - } - }, - "promise-queue": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/promise-queue/-/promise-queue-2.2.5.tgz", - "integrity": "sha1-L29ffA9tCBCelnZZx5uIqe1ek7Q=" - }, - "prompt": { - "version": "0.2.14", - "resolved": "https://registry.npmjs.org/prompt/-/prompt-0.2.14.tgz", - "integrity": "sha1-V3VPZPVD/XsIRXB8gY7OYY8F/9w=", - "requires": { - "pkginfo": "0.x.x", - "read": "1.0.x", - "revalidator": "0.1.x", - "utile": "0.2.x", - "winston": "0.8.x" - }, - "dependencies": { - "async": { - "version": "0.2.10", - "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", - "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=" }, - "colors": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz", - "integrity": "sha1-JCP+ZnisDF2uiFLl0OW+CMmXq8w=" + "callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" }, - "winston": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/winston/-/winston-0.8.3.tgz", - "integrity": "sha1-ZLar9M0Brcrv1QCTk7HY6L7BnbA=", + "camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", "requires": { - "async": "0.2.x", - "colors": "0.6.x", - "cycle": "1.0.x", - "eyes": "0.1.x", - "isstream": "0.1.x", - "pkginfo": "0.3.x", - "stack-trace": "0.0.x" - } - } - } - }, - "prop-types": { - "version": "15.5.10", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.5.10.tgz", - "integrity": "sha1-J5ffwxJhguOpXj37suiT3ddFYVQ=", - "requires": { - "fbjs": "^0.8.9", - "loose-envify": "^1.3.1" - } - }, - "propagate": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/propagate/-/propagate-0.4.0.tgz", - "integrity": "sha1-8/zKCm/gZzanulcpZgaWF8EwtIE=" - }, - "proxy-addr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-1.1.4.tgz", - "integrity": "sha1-J+VF9pYKRKYn2bREZ+NcG2tM4vM=", - "requires": { - "forwarded": "~0.1.0", - "ipaddr.js": "1.3.0" - } - }, - "prr": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz", - "integrity": "sha1-GoS4WQgyVQFBGFPQCB7j+obikmo=" - }, - "ps-tree": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/ps-tree/-/ps-tree-0.0.3.tgz", - "integrity": "sha1-2/jXUqf+Ivp9WGNWiUmWEOknbdw=", - "requires": { - "event-stream": "~0.5" - } - }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" - }, - "psl": { - "version": "1.1.28", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.28.tgz", - "integrity": "sha512-+AqO1Ae+N/4r7Rvchrdm432afjT9hqJRyBN3DQv9At0tPz4hIFSGKbq64fN9dVoCow4oggIIax5/iONx0r9hZw==" - }, - "public-encrypt": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.0.tgz", - "integrity": "sha1-OfaZ86RlYN1eusvKaTyvfGXBjMY=", - "requires": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1" - } - }, - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" - }, - "q": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/q/-/q-1.5.0.tgz", - "integrity": "sha1-3QG6ydBtMObyGa7LglPunr3DCPE=" - }, - "qs": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.0.tgz", - "integrity": "sha512-fjVFjW9yhqMhVGwRExCXLhJKrLlkYSaxNWdyc9rmHlrVZbk35YHH312dFd7191uQeXkI3mKLZTIbSvIeFwFemg==" - }, - "query-string": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", - "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", - "requires": { - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" - } - }, - "querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" - }, - "querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" - }, - "querystringify": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-0.0.4.tgz", - "integrity": "sha1-DPf4T5Rj/wrlHExLFC2VvjdyTZw=" - }, - "radium": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/radium/-/radium-0.19.1.tgz", - "integrity": "sha1-D7zG0OpVJr2x5eU3HK04Z3Wj7sg=", - "requires": { - "array-find": "^1.0.0", - "exenv": "^1.2.1", - "inline-style-prefixer": "^2.0.5", - "prop-types": "^15.5.8", - "rimraf": "^2.6.1" - }, - "dependencies": { - "babel-cli": { - "version": "6.24.1", - "resolved": "https://registry.npmjs.org/babel-cli/-/babel-cli-6.24.1.tgz", - "integrity": "sha1-IHzXBbumFImy6kG1MSNBz2rKIoM=", - "requires": { - "babel-core": "^6.24.1", - "babel-polyfill": "^6.23.0", - "babel-register": "^6.24.1", - "babel-runtime": "^6.22.0", - "chokidar": "^1.6.1", - "commander": "^2.8.1", - "convert-source-map": "^1.1.0", - "glob": "^7.0.0", - "lodash": "^4.2.0", - "path-is-absolute": "^1.0.0", - "slash": "^1.0.0", - "source-map": "^0.5.0" + "dom-serializer": "0", + "domelementtype": "1" } }, - "commander": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz", - "integrity": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==" - } - } - }, - "raf": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/raf/-/raf-3.2.0.tgz", - "integrity": "sha1-KrqaCbtw+MLpCU3GCs58N0+t7H4=", - "requires": { - "performance-now": "~0.2.0" - } - }, - "railroad-diagrams": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz", - "integrity": "sha1-635iZ1SN3t+4mcG5Dlc3RVnN234=" - }, - "randexp": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/randexp/-/randexp-0.4.6.tgz", - "integrity": "sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==", - "requires": { - "discontinuous-range": "1.0.0", - "ret": "~0.1.10" - } - }, - "randomatic": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz", - "integrity": "sha512-D5JUjPyJbaJDkuAazpVnSfVkLlpeO3wDlPROTMLGKG1zMFNFRgrciKo1ltz/AzNTkqE0HzDx655QOL51N06how==", - "requires": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "dependencies": { - "is-number": { + "emojis-list": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "enhanced-resolve": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz", + "integrity": "sha1-BCHjOf1xQZs9oT0Smzl5BAIwR24=", "requires": { - "kind-of": "^3.0.2" + "graceful-fs": "^4.1.2", + "memory-fs": "^0.4.0", + "object-assign": "^4.0.1", + "tapable": "^0.2.7" + } + }, + "entities": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz", + "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA=" + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "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": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", "requires": { - "is-buffer": "^1.1.5" + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" } + }, + "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==" } } }, - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "randombytes": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.0.5.tgz", - "integrity": "sha512-8T7Zn1AhMsQ/HI1SjcCfT/t4ii3eAqco3yOcSzS4mozsOz69lHLsoMXmF9nZgnFanYscnSlUSgs8uZyKzpE6kg==", - "requires": { - "safe-buffer": "^5.1.0" - } - }, - "range-parser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", - "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" - }, - "raw-body": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz", - "integrity": "sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==", - "requires": { - "bytes": "3.0.0", - "http-errors": "1.6.3", - "iconv-lite": "0.4.23", - "unpipe": "1.0.0" - }, - "dependencies": { - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" - }, - "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "expect": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-21.2.1.tgz", + "integrity": "sha512-orfQQqFRTX0jH7znRIGi8ZMR8kTNpXklTTz8+HGTpmTKZo3Occ6JNB5FXMb8cRuiiC/GyDqsr30zUa66ACYlYw==", "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" + "ansi-styles": "^3.2.0", + "jest-diff": "^21.2.1", + "jest-get-type": "^21.2.0", + "jest-matcher-utils": "^21.2.1", + "jest-message-util": "^21.2.1", + "jest-regex-util": "^21.2.0" } }, - "iconv-lite": { - "version": "0.4.23", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", - "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", "requires": { - "safer-buffer": ">= 2.1.2 < 3" + "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", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } } }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + "fast-deep-equal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", + "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=" }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" - } - } - }, - "react": { - "version": "15.6.1", - "resolved": "https://registry.npmjs.org/react/-/react-15.6.1.tgz", - "integrity": "sha1-uqhDTsZ4C96ZfNw4C3nNM7ljk98=", - "requires": { - "create-react-class": "^15.6.0", - "fbjs": "^0.8.9", - "loose-envify": "^1.1.0", - "object-assign": "^4.1.0", - "prop-types": "^15.5.10" - } - }, - "react-addons-css-transition-group": { - "version": "15.6.0", - "resolved": "https://registry.npmjs.org/react-addons-css-transition-group/-/react-addons-css-transition-group-15.6.0.tgz", - "integrity": "sha1-aYh89uSHTSXNZuIqaZ4p8NZIq6A=", - "requires": { - "react-transition-group": "^1.2.0" - } - }, - "react-addons-shallow-compare": { - "version": "15.6.0", - "resolved": "https://registry.npmjs.org/react-addons-shallow-compare/-/react-addons-shallow-compare-15.6.0.tgz", - "integrity": "sha1-t6Tl/58nBMIM9obdigXdCLJt4lI=", - "requires": { - "fbjs": "^0.8.4", - "object-assign": "^4.1.0" - } - }, - "react-alert": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/react-alert/-/react-alert-2.1.3.tgz", - "integrity": "sha1-1KFbCV8TEGHyYNQ3X0ddz9eBSW0=", - "requires": { - "glamor": "^2.20.24", - "glamorous": "^3.13.1", - "react-transition-group": "^1.1.2", - "shortid": "^2.2.8" - } - }, - "react-attr-converter": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/react-attr-converter/-/react-attr-converter-0.1.1.tgz", - "integrity": "sha1-BZH1oRRuOrnI5NMD1s+Wb15tdgg=" - }, - "react-class": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/react-class/-/react-class-2.0.0.tgz", - "integrity": "sha1-WlL9wV1NmXOOvyv2nbN0zoJzd5c=", - "requires": { - "object-assign": "^4.0.1" - } - }, - "react-css-modules": { - "version": "4.7.3", - "resolved": "https://registry.npmjs.org/react-css-modules/-/react-css-modules-4.7.3.tgz", - "integrity": "sha1-2dQBsATm4ligTcBVH/fYCsdgESI=", - "requires": { - "hoist-non-react-statics": "^1.2.0", - "lodash": "^4.16.6", - "object-unfreeze": "^1.1.0" - } - }, - "react-date-picker": { - "version": "5.3.28", - "resolved": "https://registry.npmjs.org/react-date-picker/-/react-date-picker-5.3.28.tgz", - "integrity": "sha1-t7ru4mHFyNy5CZc/uXiJFO8H9Rg=", - "requires": { - "lodash.throttle": "^4.0.1", - "object-assign": "4.0.1", - "raf": "3.2.0", - "react-class": "2.0.0", - "react-field": "2.0.2", - "react-flex": "2.2.7", - "react-inline-block": "2.0.0", - "react-notify-resize": "1.0.3", - "react-style-normalizer": "1.2.8" - }, - "dependencies": { - "object-assign": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.0.1.tgz", - "integrity": "sha1-mVBEVsNZi1ytT8WcJuipuxB/4L0=" - } - } - }, - "react-deep-force-update": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/react-deep-force-update/-/react-deep-force-update-1.0.1.tgz", - "integrity": "sha1-+RG1vh0qb+OHUH3W6adnqikktMc=" - }, - "react-dnd": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/react-dnd/-/react-dnd-2.4.0.tgz", - "integrity": "sha1-lvAELNTNN1tPDDQT9uyE0me315I=", - "requires": { - "disposables": "^1.0.1", - "dnd-core": "^2.4.0", - "hoist-non-react-statics": "^1.2.0", - "invariant": "^2.1.0", - "lodash": "^4.2.0", - "prop-types": "^15.5.8" - } - }, - "react-dnd-html5-backend": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/react-dnd-html5-backend/-/react-dnd-html5-backend-2.4.1.tgz", - "integrity": "sha1-Q50ryvi9i4elE4a+tRwSiCYYLd0=", - "requires": { - "lodash": "^4.2.0" - } - }, - "react-dom": { - "version": "15.6.1", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-15.6.1.tgz", - "integrity": "sha1-LLDtQZEDjlPCCes6eaI+Kkz5lHA=", - "requires": { - "fbjs": "^0.8.9", - "loose-envify": "^1.1.0", - "object-assign": "^4.1.0", - "prop-types": "^15.5.10" - } - }, - "react-field": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/react-field/-/react-field-2.0.2.tgz", - "integrity": "sha1-dOZXlENy3sD4ycjjQHhue7dh0rU=", - "requires": { - "object-assign": "^4.1.0" - } - }, - "react-flex": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/react-flex/-/react-flex-2.2.7.tgz", - "integrity": "sha1-XITmw6/8vcNm7d5AiPjQcwMxj6g=", - "requires": { - "object-assign": "^4.0.1", - "react-class": "^2.0.0" - } - }, - "react-hot-api": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/react-hot-api/-/react-hot-api-0.4.7.tgz", - "integrity": "sha1-p+IqVtJS4Rq9k2a2EmTPRJLFgXE=" - }, - "react-hot-loader": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/react-hot-loader/-/react-hot-loader-1.3.1.tgz", - "integrity": "sha1-yVZHrni3Pfzv9uxx/8sEGC/22vk=", - "requires": { - "react-hot-api": "^0.4.5", - "source-map": "^0.4.4" - }, - "dependencies": { - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", + "file-loader": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-1.1.11.tgz", + "integrity": "sha512-TGR4HU7HUsGg6GCOPJnFk06RhWgEWFLAGWiT6rcD+GRC2keU3s9RGJ+b3Z6/U73jwwNb2gKLJ7YCrp+jvU4ALg==", "requires": { - "amdefine": ">=0.0.4" + "loader-utils": "^1.0.2", + "schema-utils": "^0.4.5" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "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==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + } } - } - } - }, - "react-html-attributes": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/react-html-attributes/-/react-html-attributes-1.4.0.tgz", - "integrity": "sha1-RomFRtkCZfzicVvq7fn9JApabGc=", - "requires": { - "html-element-attributes": "^1.0.0" - } - }, - "react-inline-block": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/react-inline-block/-/react-inline-block-2.0.0.tgz", - "integrity": "sha1-fbes1hVwW1RZhwLxhiLehK+An/o=", - "requires": { - "object-assign": "^4.0.1" - } - }, - "react-input-autosize": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/react-input-autosize/-/react-input-autosize-1.1.4.tgz", - "integrity": "sha1-y8RQctQITdxXgG2447NOZEuDZqw=", - "requires": { - "create-react-class": "^15.5.2", - "prop-types": "^15.5.8" - } - }, - "react-input-range": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/react-input-range/-/react-input-range-1.2.1.tgz", - "integrity": "sha1-EP9fwexqudleFc3evm9oedssM4Y=", - "requires": { - "autobind-decorator": "^1.3.4", - "prop-types": "^15.5.8" - } - }, - "react-is": { - "version": "16.4.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.4.1.tgz", - "integrity": "sha512-xpb0PpALlFWNw/q13A+1aHeyJyLYCg0/cCHPUA43zYluZuIPHaHL3k8OBsTgQtxqW0FhyDEMvi8fZ/+7+r4OSQ==" - }, - "react-notify-resize": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/react-notify-resize/-/react-notify-resize-1.0.3.tgz", - "integrity": "sha1-oddQOu79J+7LaztbNcdwe+lCL0g=", - "requires": { - "react-class": "^2.0.0" - } - }, - "react-onclickout": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/react-onclickout/-/react-onclickout-2.0.7.tgz", - "integrity": "sha1-4X1wpT5v4M9WSL5pFqGblLmB+NY=" - }, - "react-proxy": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/react-proxy/-/react-proxy-1.1.8.tgz", - "integrity": "sha1-nb/Z2SdSjDqp9ETkVYw3gwq4wmo=", - "requires": { - "lodash": "^4.6.1", - "react-deep-force-update": "^1.0.0" - } - }, - "react-reconciler": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/react-reconciler/-/react-reconciler-0.7.0.tgz", - "integrity": "sha512-50JwZ3yNyMS8fchN+jjWEJOH3Oze7UmhxeoJLn2j6f3NjpfCRbcmih83XTWmzqtar/ivd5f7tvQhvvhism2fgg==", - "requires": { - "fbjs": "^0.8.16", - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.0" - }, - "dependencies": { - "core-js": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", - "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=" }, - "fbjs": { - "version": "0.8.17", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.17.tgz", - "integrity": "sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90=", + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", "requires": { - "core-js": "^1.0.0", - "isomorphic-fetch": "^2.1.1", - "loose-envify": "^1.0.0", - "object-assign": "^4.1.0", - "promise": "^7.1.1", - "setimmediate": "^1.0.5", - "ua-parser-js": "^0.7.18" + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } } }, - "prop-types": { - "version": "15.6.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.1.tgz", - "integrity": "sha512-4ec7bY1Y66LymSUOH/zARVYObB23AT2h8cf6e/O6ZALB/N0sqZFEx7rq6EYPX2MkOdKORuooI/H5k9TlR4q7kQ==", + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "optional": true, "requires": { - "fbjs": "^0.8.16", - "loose-envify": "^1.3.1", - "object-assign": "^4.1.1" + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "dependencies": { + "nan": { + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", + "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==", + "optional": true + } } }, - "ua-parser-js": { - "version": "0.7.18", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.18.tgz", - "integrity": "sha512-LtzwHlVHwFGTptfNSgezHp7WUlwiqb0gA9AALRbKaERfxwJoiX0A73QbTToxteIAuIaFshhgIZfqK8s7clqgnA==" - } - } - }, - "react-redux": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-5.0.5.tgz", - "integrity": "sha1-+OjHsjlCJXblLWt9sGQ5RpvphGo=", - "requires": { - "create-react-class": "^15.5.3", - "hoist-non-react-statics": "^1.0.3", - "invariant": "^2.0.0", - "lodash": "^4.2.0", - "lodash-es": "^4.2.0", - "loose-envify": "^1.1.0", - "prop-types": "^15.5.10" - } - }, - "react-render-html": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/react-render-html/-/react-render-html-0.1.6.tgz", - "integrity": "sha1-V9Y6zI5KTNBxa8UQWvXGTDkvg7E=", - "requires": { - "camelcase": "^3.0.0", - "parse5": "^2.0.2", - "react-attr-converter": "0.1.1", - "uppercamelcase": "^1.1.0" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" - } - } - }, - "react-select": { - "version": "1.0.0-rc.5", - "resolved": "https://registry.npmjs.org/react-select/-/react-select-1.0.0-rc.5.tgz", - "integrity": "sha1-nTFvJSsa3Dct21zfHxGca3z9tdY=", - "requires": { - "classnames": "^2.2.4", - "create-react-class": "^15.5.2", - "prop-types": "^15.5.8", - "react-input-autosize": "^1.1.3" - } - }, - "react-style-normalizer": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/react-style-normalizer/-/react-style-normalizer-1.2.8.tgz", - "integrity": "sha1-foSz0lzqYiVUXFr2iWOyJYhTRKI=" - }, - "react-swipeable": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/react-swipeable/-/react-swipeable-4.0.1.tgz", - "integrity": "sha1-LLOgSlLM6/U2GIGzDiM9wT7ksRU=", - "requires": { - "prop-types": "^15.5.8" - } - }, - "react-test-renderer": { - "version": "15.6.1", - "resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-15.6.1.tgz", - "integrity": "sha1-Am9KW7VVJmH9LMS7zQ1LyKNev34=", - "requires": { - "fbjs": "^0.8.9", - "object-assign": "^4.1.0" - } - }, - "react-test-utils": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/react-test-utils/-/react-test-utils-0.0.1.tgz", - "integrity": "sha1-zWmjfD5Ncm40l+MlRioyeFoZwCY=", - "dev": true, - "requires": { - "envify": "~0.2.0", - "react": "~0.8.0" - }, - "dependencies": { - "react": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/react/-/react-0.8.0.tgz", - "integrity": "sha1-mu8NvD4FtE2WE5zb2qXXJ7BQbh4=", - "dev": true - } - } - }, - "react-tools": { - "version": "0.13.3", - "resolved": "https://registry.npmjs.org/react-tools/-/react-tools-0.13.3.tgz", - "integrity": "sha1-2mrH1Nd3elml6VHPRucv1La0Ciw=", - "requires": { - "commoner": "^0.10.0", - "jstransform": "^10.1.0" - } - }, - "react-tooltip": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/react-tooltip/-/react-tooltip-3.3.0.tgz", - "integrity": "sha1-UcCK4CIQdeLEPYPNR/x4RmYS330=", - "requires": { - "classnames": "^2.2.0", - "prop-types": "^15.5.8" - } - }, - "react-transition-group": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-1.2.0.tgz", - "integrity": "sha1-tR/JIbDDg1p+98Vxx5/ILHPpIE8=", - "requires": { - "chain-function": "^1.0.0", - "dom-helpers": "^3.2.0", - "loose-envify": "^1.3.1", - "prop-types": "^15.5.6", - "warning": "^3.0.0" - } - }, - "reactify": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/reactify/-/reactify-1.1.1.tgz", - "integrity": "sha1-qPEZWWJzwNS/savqDBTCYB6gO7o=", - "requires": { - "react-tools": "~0.13.0", - "through": "~2.3.4" - } - }, - "read": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/read/-/read-1.0.7.tgz", - "integrity": "sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=", - "requires": { - "mute-stream": "~0.0.4" - } - }, - "read-only-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-only-stream/-/read-only-stream-2.0.0.tgz", - "integrity": "sha1-JyT9aoET1zdkrCiNQ4YnDB2/F/A=", - "requires": { - "readable-stream": "^2.0.2" - } - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "requires": { - "load-json-file": "^1.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^1.0.0" - } - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "requires": { - "find-up": "^1.0.0", - "read-pkg": "^1.0.0" - }, - "dependencies": { - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "htmlparser2": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz", + "integrity": "sha1-G9+HrMoPP55T+k/M6w9LTLsAszg=", + "requires": { + "domelementtype": "^1.3.0", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^2.0.2" + } + }, + "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==", + "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==", "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" + "kind-of": "^6.0.0" } }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "requires": { - "pinkie-promise": "^2.0.0" + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } - } - } - }, - "readable-stream": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz", - "integrity": "sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~1.0.6", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.0.3", - "util-deprecate": "~1.0.1" - } - }, - "readdirp": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz", - "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=", - "requires": { - "graceful-fs": "^4.1.2", - "minimatch": "^3.0.2", - "readable-stream": "^2.0.2", - "set-immediate-shim": "^1.0.1" - } - }, - "readline2": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz", - "integrity": "sha1-QQWWCP/BVHV7cV2ZidGZ/783LjU=", - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "mute-stream": "0.0.5" - } - }, - "recast": { - "version": "0.11.23", - "resolved": "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz", - "integrity": "sha1-RR/TAEqx5N+bTktmN2sqIZEkYtM=", - "requires": { - "ast-types": "0.9.6", - "esprima": "~3.1.0", - "private": "~0.1.5", - "source-map": "~0.5.0" - }, - "dependencies": { - "esprima": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", - "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=" - } - } - }, - "rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", - "requires": { - "resolve": "^1.1.6" - } - }, - "redbox-react": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/redbox-react/-/redbox-react-1.6.0.tgz", - "integrity": "sha512-mLjM5eYR41yOp5YKHpd3syFeGq6B4Wj5vZr64nbLvTZW5ZLff4LYk7VE4ITpVxkZpCY6OZuqh0HiP3A3uEaCpg==", - "requires": { - "error-stack-parser": "^1.3.6", - "object-assign": "^4.0.1", - "prop-types": "^15.5.4", - "sourcemapped-stacktrace": "^1.1.6" - } - }, - "redent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", - "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", - "requires": { - "indent-string": "^2.1.0", - "strip-indent": "^1.0.1" - } - }, - "reduce-css-calc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz", - "integrity": "sha1-dHyRTgSWFKTJz7umKYca0dKSdxY=", - "requires": { - "balanced-match": "^0.4.2", - "math-expression-evaluator": "^1.2.14", - "reduce-function-call": "^1.0.1" - }, - "dependencies": { - "balanced-match": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", - "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=" - } - } - }, - "reduce-function-call": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.2.tgz", - "integrity": "sha1-WiAL+S4ON3UXUv5FsKszD9S2vpk=", - "requires": { - "balanced-match": "^0.4.2" - }, - "dependencies": { - "balanced-match": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", - "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=" - } - } - }, - "redux": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/redux/-/redux-3.7.2.tgz", - "integrity": "sha512-pNqnf9q1hI5HHZRBkj3bAngGZW/JMCmexDlOxw4XagXY2o1327nHH54LoTjiPJ0gizoqPDRqWyX/00g0hD6w+A==", - "requires": { - "lodash": "^4.2.1", - "lodash-es": "^4.2.1", - "loose-envify": "^1.1.0", - "symbol-observable": "^1.0.3" - } - }, - "redux-mock-store": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/redux-mock-store/-/redux-mock-store-1.2.3.tgz", - "integrity": "sha1-GzrSmdqRy0G6MNaOO28CRHX7nhs=" - }, - "redux-thunk": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.2.0.tgz", - "integrity": "sha1-5hWhbha0ehmlFXZhM9Hj6Zt4UuU=" - }, - "regenerate": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.3.2.tgz", - "integrity": "sha1-0ZQcZ7rUN+G+dkM63Vs4X5WxkmA=" - }, - "regenerator-runtime": { - "version": "0.10.5", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz", - "integrity": "sha1-M2w+/BIgrc7dosn6tntaeVWjNlg=" - }, - "regenerator-transform": { - "version": "0.9.11", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.9.11.tgz", - "integrity": "sha1-On0GdSDLe3F2dp61/4aGkb7+EoM=", - "requires": { - "babel-runtime": "^6.18.0", - "babel-types": "^6.19.0", - "private": "^0.1.6" - } - }, - "regex-cache": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz", - "integrity": "sha1-mxpsNdTQ3871cRrmUejp09cRQUU=", - "requires": { - "is-equal-shallow": "^0.1.3", - "is-primitive": "^2.0.0" - } - }, - "regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "requires": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - } - }, - "regex-parser": { - "version": "2.2.9", - "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.9.tgz", - "integrity": "sha512-VncXxOF6uFlYog5prG2j+e2UGJeam5MfNiJnB/qEgo4KTnMm2XrELCg4rNZ6IlaEUZnGlb8aB6lXowCRQtTkkA==" - }, - "regexpu-core": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz", - "integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=", - "requires": { - "regenerate": "^1.2.1", - "regjsgen": "^0.2.0", - "regjsparser": "^0.1.4" - } - }, - "regjsgen": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz", - "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=" - }, - "regjsparser": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz", - "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=", - "requires": { - "jsesc": "~0.5.0" - }, - "dependencies": { - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" - } - } - }, - "relateurl": { - "version": "0.2.7", - "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", - "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" - }, - "remove-trailing-separator": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.0.2.tgz", - "integrity": "sha1-abBi2XhyetFNxrVrpKt3L9jXBRE=" - }, - "renderkid": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.1.tgz", - "integrity": "sha1-iYyr/Ivt5Le5ETWj/9Mj5YwNsxk=", - "requires": { - "css-select": "^1.1.0", - "dom-converter": "~0.1", - "htmlparser2": "~3.3.0", - "strip-ansi": "^3.0.0", - "utila": "~0.3" - }, - "dependencies": { - "domhandler": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.1.0.tgz", - "integrity": "sha1-0mRvXlf2w7qxHPbLBdPArPdBJZQ=", + }, + "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=" + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + }, + "jest": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-21.2.1.tgz", + "integrity": "sha512-mXN0ppPvWYoIcC+R+ctKxAJ28xkt/Z5Js875padm4GbgUn6baeR5N4Ng6LjatIRpUQDZVJABT7Y4gucFjPryfw==", "requires": { - "domelementtype": "1" + "jest-cli": "^21.2.1" + }, + "dependencies": { + "jest-cli": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-21.2.1.tgz", + "integrity": "sha512-T1BzrbFxDIW/LLYQqVfo94y/hhaj1NzVQkZgBumAC+sxbjMROI7VkihOdxNR758iYbQykL2ZOWUBurFgkQrzdg==", + "requires": { + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.1", + "glob": "^7.1.2", + "graceful-fs": "^4.1.11", + "is-ci": "^1.0.10", + "istanbul-api": "^1.1.1", + "istanbul-lib-coverage": "^1.0.1", + "istanbul-lib-instrument": "^1.4.2", + "istanbul-lib-source-maps": "^1.1.0", + "jest-changed-files": "^21.2.0", + "jest-config": "^21.2.1", + "jest-environment-jsdom": "^21.2.1", + "jest-haste-map": "^21.2.0", + "jest-message-util": "^21.2.1", + "jest-regex-util": "^21.2.0", + "jest-resolve-dependencies": "^21.2.0", + "jest-runner": "^21.2.1", + "jest-runtime": "^21.2.1", + "jest-snapshot": "^21.2.1", + "jest-util": "^21.2.1", + "micromatch": "^2.3.11", + "node-notifier": "^5.0.2", + "pify": "^3.0.0", + "slash": "^1.0.0", + "string-length": "^2.0.0", + "strip-ansi": "^4.0.0", + "which": "^1.2.12", + "worker-farm": "^1.3.1", + "yargs": "^9.0.0" + } + } } }, - "domutils": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.1.6.tgz", - "integrity": "sha1-vdw94Jm5ou+sxRxiPyj0FuzFdIU=", + "jest-changed-files": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-21.2.0.tgz", + "integrity": "sha512-+lCNP1IZLwN1NOIvBcV5zEL6GENK6TXrDj4UxWIeLvIsIDa+gf6J7hkqsW2qVVt/wvH65rVvcPwqXdps5eclTQ==", "requires": { - "domelementtype": "1" + "throat": "^4.0.0" } }, - "htmlparser2": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.3.0.tgz", - "integrity": "sha1-zHDQWln2VC5D8OaFyYLhTJJKnv4=", + "jest-config": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-21.2.1.tgz", + "integrity": "sha512-fJru5HtlD/5l2o25eY9xT0doK3t2dlglrqoGpbktduyoI0T5CwuB++2YfoNZCrgZipTwPuAGonYv0q7+8yDc/A==", "requires": { - "domelementtype": "1", - "domhandler": "2.1", - "domutils": "1.1", - "readable-stream": "1.0" + "chalk": "^2.0.1", + "glob": "^7.1.1", + "jest-environment-jsdom": "^21.2.1", + "jest-environment-node": "^21.2.1", + "jest-get-type": "^21.2.0", + "jest-jasmine2": "^21.2.1", + "jest-regex-util": "^21.2.0", + "jest-resolve": "^21.2.0", + "jest-util": "^21.2.1", + "jest-validate": "^21.2.1", + "pretty-format": "^21.2.1" } }, - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" - }, - "readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "jest-diff": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-21.2.1.tgz", + "integrity": "sha512-E5fu6r7PvvPr5qAWE1RaUwIh/k6Zx/3OOkZ4rk5dBJkEWRrUuSgbMt2EO8IUTPTd6DOqU3LW6uTIwX5FRvXoFA==", "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" + "chalk": "^2.0.1", + "diff": "^3.2.0", + "jest-get-type": "^21.2.0", + "pretty-format": "^21.2.1" } }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + "jest-docblock": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-21.2.0.tgz", + "integrity": "sha512-5IZ7sY9dBAYSV+YjQ0Ovb540Ku7AO9Z5o2Cg789xj167iQuZ2cG+z0f3Uct6WeYLbU6aQiM2pCs7sZ+4dotydw==" }, - "utila": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/utila/-/utila-0.3.3.tgz", - "integrity": "sha1-1+jn1+MJEHCSsF+NloiCTWM6QiY=" - } - } - }, - "repeat-element": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", - "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=" - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" - }, - "repeating": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", - "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", - "requires": { - "is-finite": "^1.0.0" - } - }, - "request": { - "version": "2.81.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.81.0.tgz", - "integrity": "sha1-xpKJRqDgbF+Nb4qTM0af/aRimKA=", - "requires": { - "aws-sign2": "~0.6.0", - "aws4": "^1.2.1", - "caseless": "~0.12.0", - "combined-stream": "~1.0.5", - "extend": "~3.0.0", - "forever-agent": "~0.6.1", - "form-data": "~2.1.1", - "har-validator": "~4.2.1", - "hawk": "~3.1.3", - "http-signature": "~1.1.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.7", - "oauth-sign": "~0.8.1", - "performance-now": "^0.2.0", - "qs": "~6.4.0", - "safe-buffer": "^5.0.1", - "stringstream": "~0.0.4", - "tough-cookie": "~2.3.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.0.0" - }, - "dependencies": { - "qs": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz", - "integrity": "sha1-E+JtKK1rD/qpExLNO/cI7TUecjM=" - } - } - }, - "request-ip": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/request-ip/-/request-ip-2.0.2.tgz", - "integrity": "sha1-3urm1K8hdoSX24zQX6NxQ/jxJX4=", - "requires": { - "is_js": "^0.9.0" - } - }, - "request-progress": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz", - "integrity": "sha1-XTa7V5YcZzqlt4jbyBQf3yO0Tgg=", - "requires": { - "throttleit": "^1.0.0" - } - }, - "request-promise-core": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.1.tgz", - "integrity": "sha1-Pu4AssWqgyOc+wTFcA2jb4HNCLY=", - "requires": { - "lodash": "^4.13.1" - } - }, - "request-promise-native": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.5.tgz", - "integrity": "sha1-UoF3D2jgyXGeUWP9P6tIIhX0/aU=", - "requires": { - "request-promise-core": "1.1.1", - "stealthy-require": "^1.1.0", - "tough-cookie": ">=2.3.3" - }, - "dependencies": { - "tough-cookie": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.2.tgz", - "integrity": "sha512-vahm+X8lSV/KjXziec8x5Vp0OTC9mq8EVCOApIsRAooeuMPSO8aT7PFACYkaL0yZ/3hVqw+8DzhCJwl8H2Ad6w==", - "requires": { - "psl": "^1.1.24", - "punycode": "^1.4.1" - } - } - } - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" - }, - "require-from-string": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-1.2.1.tgz", - "integrity": "sha1-UpyczvJzgK3+yaL5ZbZJu+5jZBg=" - }, - "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" - }, - "require-uncached": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz", - "integrity": "sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=", - "requires": { - "caller-path": "^0.1.0", - "resolve-from": "^1.0.0" - } - }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" - }, - "reselect": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/reselect/-/reselect-3.0.1.tgz", - "integrity": "sha1-79qpjqdFEyTQkrKyFjpqHXqaIUc=" - }, - "resolve": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.3.3.tgz", - "integrity": "sha1-ZVkHw0aahoDcLeOidaj91paR8OU=", - "requires": { - "path-parse": "^1.0.5" - } - }, - "resolve-from": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz", - "integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=" - }, - "resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" - }, - "resolve-url-loader": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-2.3.0.tgz", - "integrity": "sha512-RaEUWgF/B6aTg9VKaOv2o6dfm5f75/lGh8S+SQwoMcBm48WkA2nhLR+V7KEawkxXjU4lLB16IVeHCe7F69nyVw==", - "requires": { - "adjust-sourcemap-loader": "^1.1.0", - "camelcase": "^4.1.0", - "convert-source-map": "^1.5.1", - "loader-utils": "^1.1.0", - "lodash.defaults": "^4.0.0", - "rework": "^1.0.1", - "rework-visit": "^1.0.0", - "source-map": "^0.5.7", - "urix": "^0.1.0" - }, - "dependencies": { - "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" + "jest-environment-jsdom": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-21.2.1.tgz", + "integrity": "sha512-mecaeNh0eWmzNrUNMWARysc0E9R96UPBamNiOCYL28k7mksb1d0q6DD38WKP7ABffjnXyUWJPVaWRgUOivwXwg==", + "requires": { + "jest-mock": "^21.2.0", + "jest-util": "^21.2.1", + "jsdom": "^9.12.0" + } }, - "convert-source-map": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz", - "integrity": "sha1-uCeAl7m8IpNl3lxiz1/K7YtVmeU=" + "jest-environment-node": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-21.2.1.tgz", + "integrity": "sha512-R211867wx9mVBVHzrjGRGTy5cd05K7eqzQl/WyZixR/VkJ4FayS8qkKXZyYnwZi6Rxo6WEV81cDbiUx/GfuLNw==", + "requires": { + "jest-mock": "^21.2.0", + "jest-util": "^21.2.1" + } }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - } - } - }, - "restore-cursor": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz", - "integrity": "sha1-NGYfRohjJ/7SmRR5FSJS35LapUE=", - "requires": { - "exit-hook": "^1.0.0", - "onetime": "^1.0.0" - } - }, - "resumer": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz", - "integrity": "sha1-8ej0YeQGS6Oegq883CqMiT0HZ1k=", - "requires": { - "through": "~2.3.4" - } - }, - "ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" - }, - "revalidator": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/revalidator/-/revalidator-0.1.8.tgz", - "integrity": "sha1-/s5hv6DBtSoga9axgZgYS91SOjs=" - }, - "rework": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz", - "integrity": "sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=", - "requires": { - "convert-source-map": "^0.3.3", - "css": "^2.0.0" - }, - "dependencies": { - "convert-source-map": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz", - "integrity": "sha1-8dgClQr33SYxof6+BZZVDIarMZA=" - } - } - }, - "rework-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz", - "integrity": "sha1-mUWygD8hni96ygCtuLyfZA+ELJo=" - }, - "right-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", - "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", - "requires": { - "align-text": "^0.1.1" - } - }, - "rimraf": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz", - "integrity": "sha1-wjOOxkPfeht/5cVPqG9XQopV8z0=", - "requires": { - "glob": "^7.0.5" - } - }, - "ripemd160": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.1.tgz", - "integrity": "sha1-D0WEKVxTo2KK9+bXmsohzlfRxuc=", - "requires": { - "hash-base": "^2.0.0", - "inherits": "^2.0.1" - } - }, - "rollbar": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/rollbar/-/rollbar-2.4.1.tgz", - "integrity": "sha512-Z78zl76lMRAQrpMpWpA6G159yBwjA5hKJcfNM6anm2cou4G7pTeLvM/lzFFXZmx/HV59P3KHZgqZ+jjV6qkz7Q==", - "requires": { - "async": "~1.2.1", - "console-polyfill": "0.3.0", - "debug": "2.6.9", - "decache": "^3.0.5", - "error-stack-parser": "1.3.3", - "json-stringify-safe": "~5.0.0", - "lru-cache": "~2.2.1", - "request-ip": "~2.0.1", - "uuid": "3.0.x" - }, - "dependencies": { - "async": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/async/-/async-1.2.1.tgz", - "integrity": "sha1-pIFqF81f9RbfosdpikUzabl5DeA=" + "jest-haste-map": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-21.2.0.tgz", + "integrity": "sha512-5LhsY/loPH7wwOFRMs+PT4aIAORJ2qwgbpMFlbWbxfN0bk3ZCwxJ530vrbSiTstMkYLao6JwBkLhCJ5XbY7ZHw==", + "requires": { + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.1.11", + "jest-docblock": "^21.2.0", + "micromatch": "^2.3.11", + "sane": "^2.0.0", + "worker-farm": "^1.3.1" + } }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "jest-jasmine2": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-21.2.1.tgz", + "integrity": "sha512-lw8FXXIEekD+jYNlStfgNsUHpfMWhWWCgHV7n0B7mA/vendH7vBFs8xybjQsDzJSduptBZJHqQX9SMssya9+3A==", "requires": { - "ms": "2.0.0" + "chalk": "^2.0.1", + "expect": "^21.2.1", + "graceful-fs": "^4.1.11", + "jest-diff": "^21.2.1", + "jest-matcher-utils": "^21.2.1", + "jest-message-util": "^21.2.1", + "jest-snapshot": "^21.2.1", + "p-cancelable": "^0.3.0" } }, - "error-stack-parser": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-1.3.3.tgz", - "integrity": "sha1-+tpuOpzSsOCA5tb8dRQYZJc081w=", + "jest-matcher-utils": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-21.2.1.tgz", + "integrity": "sha512-kn56My+sekD43dwQPrXBl9Zn9tAqwoy25xxe7/iY4u+mG8P3ALj5IK7MLHZ4Mi3xW7uWVCjGY8cm4PqgbsqMCg==", "requires": { - "stackframe": "^0.3.1" + "chalk": "^2.0.1", + "jest-get-type": "^21.2.0", + "pretty-format": "^21.2.1" } }, - "lru-cache": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.2.4.tgz", - "integrity": "sha1-bGWGGb7PFAMdDQtZSxYELOTcBj0=" + "jest-message-util": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-21.2.1.tgz", + "integrity": "sha512-EbC1X2n0t9IdeMECJn2BOg7buOGivCvVNjqKMXTzQOu7uIfLml+keUfCALDh8o4rbtndIeyGU8/BKfoTr/LVDQ==", + "requires": { + "chalk": "^2.0.1", + "micromatch": "^2.3.11", + "slash": "^1.0.0" + } }, - "uuid": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.0.1.tgz", - "integrity": "sha1-ZUS7ot/ajBzxfmKaOjBeK7H+5sE=" - } - } - }, - "rst-selector-parser": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz", - "integrity": "sha1-gbIw6i/MYGbInjRy3nlChdmwPZE=", - "requires": { - "lodash.flattendeep": "^4.4.0", - "nearley": "^2.7.10" - } - }, - "rsvp": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-3.6.2.tgz", - "integrity": "sha512-OfWGQTb9vnwRjwtA2QwpG2ICclHC3pgXZO5xt8H2EfgDquO0qVdSb5T88L4qJVAEugbS56pAuV4XZM58UX8ulw==" - }, - "run-async": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz", - "integrity": "sha1-yK1KXhEGYeQCp9IbUw4AnyX444k=", - "requires": { - "once": "^1.3.0" - } - }, - "rx-lite": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz", - "integrity": "sha1-Gc5QLKVyZl87ZHsQk5+X/RYV8QI=" - }, - "rxjs": { - "version": "5.4.2", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-5.4.2.tgz", - "integrity": "sha1-KjI2/L8D31e64G/Wly/ZnlwI/Pc=", - "dev": true, - "requires": { - "symbol-observable": "^1.0.1" - } - }, - "safe-buffer": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==" - }, - "safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", - "requires": { - "ret": "~0.1.10" - } - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "sane": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/sane/-/sane-1.6.0.tgz", - "integrity": "sha1-lhDEUjB6E10pwf3+JUcDQYDEZ3U=", - "dev": true, - "requires": { - "anymatch": "^1.3.0", - "exec-sh": "^0.2.0", - "fb-watchman": "^1.8.0", - "minimatch": "^3.0.2", - "minimist": "^1.1.1", - "walker": "~1.0.5", - "watch": "~0.10.0" - }, - "dependencies": { - "bser": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bser/-/bser-1.0.2.tgz", - "integrity": "sha1-OBEWlwsqbe6lZG3RXdcnhES1YWk=", - "dev": true, + "jest-mock": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-21.2.0.tgz", + "integrity": "sha512-aZDfyVf0LEoABWiY6N0d+O963dUQSyUa4qgzurHR3TBDPen0YxKCJ6l2i7lQGh1tVdsuvdrCZ4qPj+A7PievCw==" + }, + "jest-regex-util": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-21.2.0.tgz", + "integrity": "sha512-BKQ1F83EQy0d9Jen/mcVX7D+lUt2tthhK/2gDWRgLDJRNOdRgSp1iVqFxP8EN1ARuypvDflRfPzYT8fQnoBQFQ==" + }, + "jest-resolve": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-21.2.0.tgz", + "integrity": "sha512-vefQ/Lr+VdNvHUZFQXWtOqHX3HEdOc2MtSahBO89qXywEbUxGPB9ZLP9+BHinkxb60UT2Q/tTDOS6rYc6Mwigw==", "requires": { - "node-int64": "^0.4.0" + "browser-resolve": "^1.11.2", + "chalk": "^2.0.1", + "is-builtin-module": "^1.0.0" } }, - "fb-watchman": { - "version": "1.9.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-1.9.2.tgz", - "integrity": "sha1-okz0eCf4LTj7Waaa1wt247auc4M=", - "dev": true, + "jest-resolve-dependencies": { + "version": "21.2.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-21.2.0.tgz", + "integrity": "sha512-ok8ybRFU5ScaAcfufIQrCbdNJSRZ85mkxJ1EhUp8Bhav1W1/jv/rl1Q6QoVQHObNxmKnbHVKrfLZbCbOsXQ+bQ==", "requires": { - "bser": "1.0.2" + "jest-regex-util": "^21.2.0" } }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - } - } - }, - "sass-graph": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.4.tgz", - "integrity": "sha1-E/vWPNHK8JCLn9k0dq1DpR0eC0k=", - "requires": { - "glob": "^7.0.0", - "lodash": "^4.0.0", - "scss-tokenizer": "^0.2.3", - "yargs": "^7.0.0" - } - }, - "sass-lint": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/sass-lint/-/sass-lint-1.10.2.tgz", - "integrity": "sha1-glvWsNp53dNqQv+uW21ErEkiUCs=", - "requires": { - "commander": "^2.8.1", - "eslint": "^2.7.0", - "front-matter": "2.1.0", - "fs-extra": "^1.0.0", - "glob": "^7.0.0", - "globule": "^1.0.0", - "gonzales-pe": "3.4.7", - "js-yaml": "^3.5.4", - "lodash.capitalize": "^4.1.0", - "lodash.kebabcase": "^4.0.0", - "merge": "^1.2.0", - "path-is-absolute": "^1.0.0", - "util": "^0.10.3" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "jest-runtime": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-21.2.1.tgz", + "integrity": "sha512-6omlpA3+NSE+rHwD0PQjNEjZeb2z+oRmuehMfM1tWQVum+E0WV3pFt26Am0DUfQkkPyTABvxITRjCUclYgSOsA==", "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" + "babel-core": "^6.0.0", + "babel-jest": "^21.2.0", + "babel-plugin-istanbul": "^4.0.0", + "chalk": "^2.0.1", + "convert-source-map": "^1.4.0", + "graceful-fs": "^4.1.11", + "jest-config": "^21.2.1", + "jest-haste-map": "^21.2.0", + "jest-regex-util": "^21.2.0", + "jest-resolve": "^21.2.0", + "jest-util": "^21.2.1", + "json-stable-stringify": "^1.0.1", + "micromatch": "^2.3.11", + "slash": "^1.0.0", + "strip-bom": "3.0.0", + "write-file-atomic": "^2.1.0", + "yargs": "^9.0.0" } }, - "commander": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz", - "integrity": "sha512-b0553uYA5YAEGgyYIGYROzKQ7X5RAqedkfjiZxwi0kL1g3bOaBNNZfYkzt/CL0umgD5wc9Jec2FbB98CjkMRvQ==" - }, - "doctrine": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", - "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", + "jest-snapshot": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-21.2.1.tgz", + "integrity": "sha512-bpaeBnDpdqaRTzN8tWg0DqOTo2DvD3StOemxn67CUd1p1Po+BUpvePAp44jdJ7Pxcjfg+42o4NHw1SxdCA2rvg==", "requires": { - "esutils": "^2.0.2", - "isarray": "^1.0.0" + "chalk": "^2.0.1", + "jest-diff": "^21.2.1", + "jest-matcher-utils": "^21.2.1", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^21.2.1" } }, - "eslint": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-2.13.1.tgz", - "integrity": "sha1-5MyPoPAJ+4KaquI4VaKTYL4fbBE=", + "jest-util": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-21.2.1.tgz", + "integrity": "sha512-r20W91rmHY3fnCoO7aOAlyfC51x2yeV3xF+prGsJAUsYhKeV670ZB8NO88Lwm7ASu8SdH0S+U+eFf498kjhA4g==", "requires": { - "chalk": "^1.1.3", - "concat-stream": "^1.4.6", - "debug": "^2.1.1", - "doctrine": "^1.2.2", - "es6-map": "^0.1.3", - "escope": "^3.6.0", - "espree": "^3.1.6", - "estraverse": "^4.2.0", - "esutils": "^2.0.2", - "file-entry-cache": "^1.1.1", - "glob": "^7.0.3", - "globals": "^9.2.0", - "ignore": "^3.1.2", - "imurmurhash": "^0.1.4", - "inquirer": "^0.12.0", - "is-my-json-valid": "^2.10.0", - "is-resolvable": "^1.0.0", - "js-yaml": "^3.5.1", - "json-stable-stringify": "^1.0.0", - "levn": "^0.3.0", - "lodash": "^4.0.0", - "mkdirp": "^0.5.0", - "optionator": "^0.8.1", - "path-is-absolute": "^1.0.0", - "path-is-inside": "^1.0.1", - "pluralize": "^1.2.1", - "progress": "^1.1.8", - "require-uncached": "^1.0.2", - "shelljs": "^0.6.0", - "strip-json-comments": "~1.0.1", - "table": "^3.7.8", - "text-table": "~0.2.0", - "user-home": "^2.0.0" + "callsites": "^2.0.0", + "chalk": "^2.0.1", + "graceful-fs": "^4.1.11", + "jest-message-util": "^21.2.1", + "jest-mock": "^21.2.0", + "jest-validate": "^21.2.1", + "mkdirp": "^0.5.1" } }, - "file-entry-cache": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-1.3.1.tgz", - "integrity": "sha1-RMYepgeuS+nBQC9B9EJwy/4zT/g=", + "jest-validate": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-21.2.1.tgz", + "integrity": "sha512-k4HLI1rZQjlU+EC682RlQ6oZvLrE5SCh3brseQc24vbZTxzT/k/3urar5QMCVgjadmSO7lECeGdc6YxnM3yEGg==", "requires": { - "flat-cache": "^1.2.1", - "object-assign": "^4.0.1" + "chalk": "^2.0.1", + "jest-get-type": "^21.2.0", + "leven": "^2.1.0", + "pretty-format": "^21.2.1" } }, "json-stable-stringify": { @@ -14912,211 +28136,149 @@ "jsonify": "~0.0.0" } }, - "shelljs": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.6.1.tgz", - "integrity": "sha1-7GIRvtGSBEIIj+D3Cyg3Iy7SyKg=" + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" }, - "strip-json-comments": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz", - "integrity": "sha1-HhX7ysl9Pumb8tc7TGVrCCu6+5E=" + "load-json-file": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", + "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + } }, - "supports-color": { + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" + }, + "os-locale": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz", + "integrity": "sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==", + "requires": { + "execa": "^0.7.0", + "lcid": "^1.0.0", + "mem": "^1.1.0" + } + }, + "path-type": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } - }, - "sass-loader": { - "version": "6.0.6", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-6.0.6.tgz", - "integrity": "sha512-c3/Zc+iW+qqDip6kXPYLEgsAu2lf4xz0EZDplB7EmSUMda12U1sGJPetH55B/j9eu0bTtKzKlNPWWyYC7wFNyQ==", - "requires": { - "async": "^2.1.5", - "clone-deep": "^0.3.0", - "loader-utils": "^1.0.1", - "lodash.tail": "^4.1.1", - "pify": "^3.0.0" - }, - "dependencies": { + "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", + "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", + "requires": { + "pify": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + } + }, "pify": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" - } - } - }, - "sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" - }, - "schema-utils": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.3.0.tgz", - "integrity": "sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8=", - "requires": { - "ajv": "^5.0.0" - }, - "dependencies": { - "ajv": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.2.2.tgz", - "integrity": "sha1-R8aNaehvXZUxA7AHSpQw3GPaXjk=", + }, + "pretty-format": { + "version": "21.2.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-21.2.1.tgz", + "integrity": "sha512-ZdWPGYAnYfcVP8yKA3zFjCn8s4/17TeYH28MXuC8vTp0o21eXjbFGcOAXZEaDaOFJjc3h2qa7HQNHNshhvoh2A==", + "requires": { + "ansi-regex": "^3.0.0", + "ansi-styles": "^3.2.0" + } + }, + "react-deep-force-update": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/react-deep-force-update/-/react-deep-force-update-2.1.1.tgz", + "integrity": "sha1-jqQmPNZFWgULN0RbPwj9g52G6Qk=" + }, + "react-hot-loader": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/react-hot-loader/-/react-hot-loader-3.1.3.tgz", + "integrity": "sha512-d7nZf78irxoGN5PY4zd6CSgZiroOhvIWzRast3qwTn4sSnBwlt08kV8WMQ9mitmxEdlCTwZt+5ClrRSjxWguMQ==", "requires": { - "co": "^4.6.0", - "fast-deep-equal": "^1.0.0", - "json-schema-traverse": "^0.3.0", - "json-stable-stringify": "^1.0.1" + "global": "^4.3.0", + "react-deep-force-update": "^2.1.1", + "react-proxy": "^3.0.0-alpha.0", + "redbox-react": "^1.3.6", + "source-map": "^0.6.1" } }, - "json-stable-stringify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", - "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", + "react-proxy": { + "version": "3.0.0-alpha.1", + "resolved": "https://registry.npmjs.org/react-proxy/-/react-proxy-3.0.0-alpha.1.tgz", + "integrity": "sha1-RABCa8+oDKpnJMd1VpUxUgn6Swc=", "requires": { - "jsonify": "~0.0.0" + "lodash": "^4.6.1" } - } - } - }, - "scss-tokenizer": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", - "integrity": "sha1-jrBtualyMzOCTT9VMGQRSYR85dE=", - "requires": { - "js-base64": "^2.1.8", - "source-map": "^0.4.2" - }, - "dependencies": { - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", + }, + "react-tooltip": { + "version": "3.11.6", + "resolved": "https://registry.npmjs.org/react-tooltip/-/react-tooltip-3.11.6.tgz", + "integrity": "sha512-nTc1yHHaPCHHURvMpf/VNF17pIZiU4zwUGFJBUVr1fZkezFC7E0VPMMVrCfDjt+IpwTHICyzlyx+1FiQ7lw5LQ==", "requires": { - "amdefine": ">=0.0.4" + "prop-types": "^15.6.0" } - } - } - }, - "searchneu": { - "version": "1.0.65", - "resolved": "https://registry.npmjs.org/searchneu/-/searchneu-1.0.65.tgz", - "integrity": "sha512-Q7xXctfrV9JIFddT/NXmmTvAtrb7tGAzjO+v8foxpYTmN7kw0CNvAjBW5fRa1ucYlNCDB9LS5EtmmppVlCiJiQ==", - "requires": { - "@mapbox/togeojson": "^0.16.0", - "acorn": "^5.0.3", - "amplitude": "^3.5.0", - "async": "^2.1.5", - "babel-core": "^6.21.0", - "babel-jest": "^21.2.0", - "babel-polyfill": "^6.22.0", - "body-parser": "^1.17.2", - "cheerio": "^0.22.0", - "classnames": "^2.2.5", - "compression": "^1.6.2", - "cookie": "^0.3.1", - "cross-env": "^5.0.0", - "deep-diff": "^0.3.8", - "dnscache": "^1.0.1", - "domutils": "^1.6.2", - "elasticlunr": "^0.9.5", - "enzyme": "^3.2.0", - "enzyme-adapter-react-16": "^1.1.0", - "eslint-loader": "^1.9.0", - "express": "^4.15.2", - "express-async-wrap": "^1.0.0", - "express-x-hub": "^1.0.4", - "file-loader": "^1.1.5", - "forever": "^0.15.3", - "form-urlencoded": "^2.0.4", - "fs-promise": "^2.0.0", - "he": "^1.1.1", - "html-webpack-plugin": "^2.28.0", - "htmlparser2": "^3.9.2", - "identity-obj-proxy": "^3.0.0", - "is-mobile": "^0.2.2", - "jest": "^21.2.1", - "json": "^9.0.6", - "lodash": "^4.17.4", - "mkdirp-promise": "^5.0.1", - "mock-local-storage": "^1.0.5", - "mockdate": "^2.0.1", - "moment": "^2.17.1", - "msgpack5": "^3.4.1", - "object-hash": "^1.1.7", - "promise-queue": "^2.2.3", - "prop-types": "^15.5.8", - "react": "^16.1.1", - "react-css-modules": "^4.1.0", - "react-dom": "^16.1.1", - "react-hot-loader": "^3.0.0-beta.2", - "react-test-renderer": "^16.1.1", - "react-tooltip": "^3.2.6", - "react-transition-group": "^2.2.1", - "request": "^2.81.0", - "request-promise-native": "^1.0.3", - "resolve-url-loader": "^2.0.2", - "rollbar": "^2.1.3", - "semantic-ui-css": "^2.2.4", - "semantic-ui-react": "^0.76.0", - "semver": "^5.4.1", - "urijs": "^1.18.8", - "webpack": "^3.8.1", - "webpack-dev-middleware": "^1.10.1", - "webpack-hot-middleware": "^2.16.1", - "whois": "^2.3.9", - "xmldom": "^0.1.27" - }, - "dependencies": { - "acorn": { - "version": "5.6.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.6.2.tgz", - "integrity": "sha512-zUzo1E5dI2Ey8+82egfnttyMlMZ2y0D8xOCO3PNPPlYXpl8NZvF6Qk9L9BEtJs+43FqEmfBViDqc5d1ckRDguw==" }, - "ajv": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.5.1.tgz", - "integrity": "sha512-pgZos1vgOHDiC7gKNbZW8eKvCnNXARv2oqrGQT7Hzbq5Azp7aZG6DJzADnkuSq7RH6qkXp4J/m68yPX/2uBHyQ==", + "react-transition-group": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.3.1.tgz", + "integrity": "sha512-hu4/LAOFSKjWt1+1hgnOv3ldxmt6lvZGTWz4KUkFrqzXrNDIVSu6txIcPszw7PNduR8en9YTN55JLRyd/L1ZiQ==", "requires": { - "fast-deep-equal": "^2.0.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.1" + "dom-helpers": "^3.3.1", + "loose-envify": "^1.3.1", + "prop-types": "^15.6.1" } }, - "ajv-keywords": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz", - "integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=" - }, - "ansi-escapes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz", - "integrity": "sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==" - }, - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" - }, - "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==", + "read-pkg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", + "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", "requires": { - "color-convert": "^1.9.0" + "load-json-file": "^2.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^2.0.0" } }, - "anymatch": { + "read-pkg-up": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", + "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", + "requires": { + "find-up": "^2.0.0", + "read-pkg": "^2.0.0" + } + }, + "sane": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/sane/-/sane-2.5.2.tgz", + "integrity": "sha1-tNwYYcIbQn6SlQej51HiosuKs/o=", "requires": { + "anymatch": "^2.0.0", + "capture-exit": "^1.2.0", + "exec-sh": "^0.2.0", + "fb-watchman": "^2.0.0", + "fsevents": "^1.2.3", "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" + "minimist": "^1.1.1", + "walker": "~1.0.5", + "watch": "~0.18.0" }, "dependencies": { "micromatch": { @@ -15141,3500 +28303,5498 @@ } } }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" - }, - "babel-jest": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-21.2.0.tgz", - "integrity": "sha512-O0W2qLoWu1QOoOGgxiR2JID4O6WSpxPiQanrkyi9SSlM0PJ60Ptzlck47lhtnr9YZO3zYOsxHwnyeWJ6AffoBQ==", - "requires": { - "babel-plugin-istanbul": "^4.0.0", - "babel-preset-jest": "^21.2.0" - } - }, - "babel-plugin-jest-hoist": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-21.2.0.tgz", - "integrity": "sha512-yi5QuiVyyvhBUDLP4ButAnhYzkdrUwWDtvUJv71hjH3fclhnZg4HkDeqaitcR2dZZx/E67kGkRcPVjtVu+SJfQ==" - }, - "babel-preset-jest": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-21.2.0.tgz", - "integrity": "sha512-hm9cBnr2h3J7yXoTtAVV0zg+3vg0Q/gT2GYuzlreTU0EPkJRtlNgKJJ3tBKEn0+VjAi3JykV6xCJkuUYttEEfA==", - "requires": { - "babel-plugin-jest-hoist": "^21.2.0", - "babel-plugin-syntax-object-rest-spread": "^6.13.0" - } + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "requires": { - "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" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } - } + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" }, - "callsites": { + "string-length": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", - "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" - }, - "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" - }, - "core-js": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", - "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=" + "resolved": "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz", + "integrity": "sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=", + "requires": { + "astral-regex": "^1.0.0", + "strip-ansi": "^4.0.0" + } }, - "dom-helpers": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.3.1.tgz", - "integrity": "sha512-2Sm+JaYn74OiTM2wHvxJOo3roiq/h25Yi69Fqk269cNUwIXsCvATB6CRSFC9Am/20G2b28hGv/+7NiWydIrPvg==" + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } }, - "domutils": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", "requires": { - "dom-serializer": "0", - "domelementtype": "1" + "ansi-regex": "^3.0.0" } }, - "enhanced-resolve": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz", - "integrity": "sha1-BCHjOf1xQZs9oT0Smzl5BAIwR24=", + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + }, + "supports-color": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", + "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", "requires": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.4.0", - "object-assign": "^4.0.1", - "tapable": "^0.2.7" + "has-flag": "^2.0.0" } }, - "entities": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz", - "integrity": "sha1-blwtClYhtdra7O+AuQ7ftc13cvA=" + "tapable": { + "version": "0.2.8", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-0.2.8.tgz", + "integrity": "sha1-mTcqXJmb8t8WCvwNdL7U9HlIzSI=" }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "throat": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz", + "integrity": "sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=" + }, + "watch": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/watch/-/watch-0.18.0.tgz", + "integrity": "sha1-KAlUdsbffJDJYxOJkMClQj60uYY=", "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" + "exec-sh": "^0.2.0", + "minimist": "^1.2.0" + } + }, + "webpack": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-3.12.0.tgz", + "integrity": "sha512-Sw7MdIIOv/nkzPzee4o0EdvCuPmxT98+vVpIvwtcwcF1Q4SDSNp92vwcKc4REe7NItH9f1S4ra9FuQ7yuYZ8bQ==", + "requires": { + "acorn": "^5.0.0", + "acorn-dynamic-import": "^2.0.0", + "ajv": "^6.1.0", + "ajv-keywords": "^3.1.0", + "async": "^2.1.2", + "enhanced-resolve": "^3.4.0", + "escope": "^3.6.0", + "interpret": "^1.0.0", + "json-loader": "^0.5.4", + "json5": "^0.5.1", + "loader-runner": "^2.3.0", + "loader-utils": "^1.1.0", + "memory-fs": "~0.4.1", + "mkdirp": "~0.5.0", + "node-libs-browser": "^2.0.0", + "source-map": "^0.5.3", + "supports-color": "^4.2.1", + "tapable": "^0.2.7", + "uglifyjs-webpack-plugin": "^0.4.6", + "watchpack": "^1.4.0", + "webpack-sources": "^1.0.1", + "yargs": "^8.0.2" }, "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "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==", "requires": { - "kind-of": "^3.0.2" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" }, "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", "requires": { - "is-buffer": "^1.1.5" + "minimist": "^1.2.0" } } } }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + }, + "uglifyjs-webpack-plugin": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz", + "integrity": "sha1-uVH0q7a9YX5m9j64kUmOORdj4wk=", "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } + "source-map": "^0.5.6", + "uglify-js": "^2.8.29", + "webpack-sources": "^1.0.1" } }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "yargs": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-8.0.2.tgz", + "integrity": "sha1-YpmpBVsc78lp/355wdkY3Osiw2A=", "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" + "camelcase": "^4.1.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^2.0.0", + "read-pkg-up": "^2.0.0", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^2.0.0", + "which-module": "^2.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^7.0.0" } - }, - "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==" } } }, - "expect": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/expect/-/expect-21.2.1.tgz", - "integrity": "sha512-orfQQqFRTX0jH7znRIGi8ZMR8kTNpXklTTz8+HGTpmTKZo3Occ6JNB5FXMb8cRuiiC/GyDqsr30zUa66ACYlYw==", + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + }, + "yargs": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-9.0.1.tgz", + "integrity": "sha1-UqzCP+7Kw0BCB47njAwAf1CF20w=", + "requires": { + "camelcase": "^4.1.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^2.0.0", + "read-pkg-up": "^2.0.0", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^2.0.0", + "which-module": "^2.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^7.0.0" + } + }, + "yargs-parser": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz", + "integrity": "sha1-jQrELxbqVd69MyyvTEA4s+P139k=", + "requires": { + "camelcase": "^4.1.0" + } + } + } + }, + "select": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz", + "integrity": "sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=" + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + }, + "selfsigned": { + "version": "1.10.11", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.11.tgz", + "integrity": "sha512-aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA==", + "requires": { + "node-forge": "^0.10.0" + } + }, + "semantic-ui-css": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/semantic-ui-css/-/semantic-ui-css-2.3.1.tgz", + "integrity": "sha512-8M2OkoKZHfEnNUYB4Ha8q+tTAWN/g17X2l6HUg6n3DP4QDJLQl1xyhnRvM9UhJpsRvkRqgWgQLbRA6cl7Ep2dw==", + "requires": { + "jquery": "x.*" + } + }, + "semantic-ui-react": { + "version": "0.76.0", + "resolved": "https://registry.npmjs.org/semantic-ui-react/-/semantic-ui-react-0.76.0.tgz", + "integrity": "sha512-CdiIT8n7ZwUlytZkYsQMnaVGmoIZI/mVs4lijvLcR568kcnlRkYYaFKhMLq5tFDQU6+QhdTD+8WebF7ov0Ql6Q==", + "requires": { + "babel-runtime": "^6.25.0", + "classnames": "^2.2.5", + "lodash": "^4.17.4", + "prop-types": "^15.5.10" + }, + "dependencies": { + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + } + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + } + } + }, + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "requires": { + "lru-cache": "^6.0.0" + }, + "dependencies": { + "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==", + "requires": { + "yallist": "^4.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + } + }, + "serialize-javascript": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.9.1.tgz", + "integrity": "sha512-0Vb/54WJ6k5v8sSWN09S0ora+Hnr+cX40r9F170nT+mSkaxltoE/7R3OrIdBSUv1OoiobH1QoWQbCnAO+e8J1A==" + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "requires": { + "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": { + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", "requires": { - "ansi-styles": "^3.2.0", - "jest-diff": "^21.2.1", - "jest-get-type": "^21.2.0", - "jest-matcher-utils": "^21.2.1", - "jest-message-util": "^21.2.1", - "jest-regex-util": "^21.2.0" + "mime-types": "~2.1.24", + "negotiator": "0.6.2" } }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", "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", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" } }, - "fast-deep-equal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", - "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=" + "mime-db": { + "version": "1.50.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.50.0.tgz", + "integrity": "sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A==" }, - "fbjs": { - "version": "0.8.17", - "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.17.tgz", - "integrity": "sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90=", + "mime-types": { + "version": "2.1.33", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.33.tgz", + "integrity": "sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g==", "requires": { - "core-js": "^1.0.0", - "isomorphic-fetch": "^2.1.1", - "loose-envify": "^1.0.0", - "object-assign": "^4.1.0", - "promise": "^7.1.1", - "setimmediate": "^1.0.5", - "ua-parser-js": "^0.7.18" + "mime-db": "1.50.0" } }, - "file-loader": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-1.1.11.tgz", - "integrity": "sha512-TGR4HU7HUsGg6GCOPJnFk06RhWgEWFLAGWiT6rcD+GRC2keU3s9RGJ+b3Z6/U73jwwNb2gKLJ7YCrp+jvU4ALg==", + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + } + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + }, + "set-immediate-shim": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", + "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=" + }, + "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==", + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + }, + "sha.js": { + "version": "2.4.8", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.8.tgz", + "integrity": "sha1-NwaMLEdra69ALRSknGf1l5IfY08=", + "requires": { + "inherits": "^2.0.1" + } + }, + "shallow-clone": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-1.0.0.tgz", + "integrity": "sha512-oeXreoKR/SyNJtRJMAKPDSvd28OqEwG4eR/xc856cRGBII7gX9lvAqDxusPm0846z/w/hWYjI1NpKwJ00NHzRA==", + "dev": true, + "requires": { + "is-extendable": "^0.1.1", + "kind-of": "^5.0.0", + "mixin-object": "^2.0.1" + }, + "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 + } + } + }, + "shasum": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/shasum/-/shasum-1.0.2.tgz", + "integrity": "sha1-5wEjENj0F/TetXEhUOVni4euVl8=", + "requires": { + "json-stable-stringify": "~0.0.0", + "sha.js": "~2.4.4" + } + }, + "shasum-object": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shasum-object/-/shasum-object-1.0.0.tgz", + "integrity": "sha512-Iqo5rp/3xVi6M4YheapzZhhGPVs0yZwHj7wvwQ1B9z8H6zk+FEnI7y3Teq7qwnekfEhu8WmG2z0z4iWZaxLWVg==", + "requires": { + "fast-safe-stringify": "^2.0.7" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "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=" + }, + "shell-quote": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz", + "integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==" + }, + "shellwords": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.0.tgz", + "integrity": "sha1-Zq/Ue2oSky2Qccv9mKUueFzQuhQ=" + }, + "shush": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shush/-/shush-1.0.0.tgz", + "integrity": "sha1-wnQVqeRY8v7TmyfPjrN8ADeCtDE=", + "requires": { + "caller": "~0.0.1", + "strip-json-comments": "~0.1.1" + }, + "dependencies": { + "strip-json-comments": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-0.1.3.tgz", + "integrity": "sha1-Fkxk43Coo8wAyeAbU55WmCPw7lQ=" + } + } + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "dependencies": { + "object-inspect": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz", + "integrity": "sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==" + } + } + }, + "signal-exit": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" + }, + "simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==" + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=" + }, + "slice-ansi": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz", + "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=" + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "requires": { + "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": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", "requires": { - "loader-utils": "^1.0.2", - "schema-utils": "^0.4.5" + "is-descriptor": "^0.1.0" } }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "requires": { - "is-extendable": "^0.1.0" - } - } + "is-extendable": "^0.1.0" } - }, - "fsevents": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz", - "integrity": "sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==", - "optional": true, - "requires": { - "nan": "^2.9.2", - "node-pre-gyp": "^0.10.0" - }, - "dependencies": { - "abbrev": { - "version": "1.1.1", - "bundled": true, - "optional": true - }, - "ansi-regex": { - "version": "2.1.1", - "bundled": true - }, - "aproba": { - "version": "1.2.0", - "bundled": true, - "optional": true - }, - "are-we-there-yet": { - "version": "1.1.4", - "bundled": true, - "optional": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - } - }, - "balanced-match": { - "version": "1.0.0", - "bundled": true - }, - "brace-expansion": { - "version": "1.1.11", - "bundled": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "chownr": { - "version": "1.0.1", - "bundled": true, - "optional": true - }, - "code-point-at": { - "version": "1.1.0", - "bundled": true - }, - "concat-map": { - "version": "0.0.1", - "bundled": true - }, - "console-control-strings": { - "version": "1.1.0", - "bundled": true - }, - "core-util-is": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "debug": { - "version": "2.6.9", - "bundled": true, - "optional": true, - "requires": { - "ms": "2.0.0" - } - }, - "deep-extend": { - "version": "0.5.1", - "bundled": true, - "optional": true - }, - "delegates": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "detect-libc": { - "version": "1.0.3", - "bundled": true, - "optional": true - }, - "fs-minipass": { - "version": "1.2.5", - "bundled": true, - "optional": true, - "requires": { - "minipass": "^2.2.1" - } - }, - "fs.realpath": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "gauge": { - "version": "2.7.4", - "bundled": true, - "optional": 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" - } - }, - "glob": { - "version": "7.1.2", - "bundled": true, - "optional": 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" - } - }, - "has-unicode": { - "version": "2.0.1", - "bundled": true, - "optional": true - }, - "iconv-lite": { - "version": "0.4.21", - "bundled": true, - "optional": true, - "requires": { - "safer-buffer": "^2.1.0" - } - }, - "ignore-walk": { - "version": "3.0.1", - "bundled": true, - "optional": true, - "requires": { - "minimatch": "^3.0.4" - } - }, - "inflight": { - "version": "1.0.6", - "bundled": true, - "optional": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.3", - "bundled": true - }, - "ini": { - "version": "1.3.5", - "bundled": true, - "optional": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "bundled": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "isarray": { - "version": "1.0.0", - "bundled": true, - "optional": true - }, - "minimatch": { - "version": "3.0.4", - "bundled": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "0.0.8", - "bundled": true - }, - "minipass": { - "version": "2.2.4", - "bundled": true, - "requires": { - "safe-buffer": "^5.1.1", - "yallist": "^3.0.0" - } - }, - "minizlib": { - "version": "1.1.0", - "bundled": true, - "optional": true, - "requires": { - "minipass": "^2.2.1" - } - }, - "mkdirp": { - "version": "0.5.1", - "bundled": true, - "requires": { - "minimist": "0.0.8" - } - }, - "ms": { - "version": "2.0.0", - "bundled": true, - "optional": true - }, - "needle": { - "version": "2.2.0", - "bundled": true, - "optional": true, - "requires": { - "debug": "^2.1.2", - "iconv-lite": "^0.4.4", - "sax": "^1.2.4" - } - }, - "node-pre-gyp": { - "version": "0.10.0", - "bundled": true, - "optional": true, - "requires": { - "detect-libc": "^1.0.2", - "mkdirp": "^0.5.1", - "needle": "^2.2.0", - "nopt": "^4.0.1", - "npm-packlist": "^1.1.6", - "npmlog": "^4.0.2", - "rc": "^1.1.7", - "rimraf": "^2.6.1", - "semver": "^5.3.0", - "tar": "^4" - } - }, - "nopt": { - "version": "4.0.1", - "bundled": true, - "optional": true, - "requires": { - "abbrev": "1", - "osenv": "^0.1.4" - } - }, - "npm-bundled": { - "version": "1.0.3", - "bundled": true, - "optional": true - }, - "npm-packlist": { - "version": "1.1.10", - "bundled": true, - "optional": true, - "requires": { - "ignore-walk": "^3.0.1", - "npm-bundled": "^1.0.1" - } - }, - "npmlog": { - "version": "4.1.2", - "bundled": true, - "optional": true, - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "number-is-nan": { - "version": "1.0.1", - "bundled": true - }, - "object-assign": { - "version": "4.1.1", - "bundled": true, - "optional": true - }, - "once": { - "version": "1.4.0", - "bundled": true, - "requires": { - "wrappy": "1" - } - }, - "os-homedir": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "os-tmpdir": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "osenv": { - "version": "0.1.5", - "bundled": true, - "optional": true, - "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "bundled": true, - "optional": true - }, - "process-nextick-args": { - "version": "2.0.0", - "bundled": true, - "optional": true - }, - "rc": { - "version": "1.2.7", - "bundled": true, - "optional": true, - "requires": { - "deep-extend": "^0.5.1", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "bundled": true, - "optional": true - } - } - }, - "readable-stream": { - "version": "2.3.6", - "bundled": true, - "optional": 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" - } - }, - "rimraf": { - "version": "2.6.2", - "bundled": true, - "optional": true, - "requires": { - "glob": "^7.0.5" - } - }, - "safe-buffer": { - "version": "5.1.1", - "bundled": true - }, - "safer-buffer": { - "version": "2.1.2", - "bundled": true, - "optional": true - }, - "sax": { - "version": "1.2.4", - "bundled": true, - "optional": true - }, - "semver": { - "version": "5.5.0", - "bundled": true, - "optional": true - }, - "set-blocking": { - "version": "2.0.0", - "bundled": true, - "optional": true - }, - "signal-exit": { - "version": "3.0.2", - "bundled": true, - "optional": 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" - } - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "optional": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "bundled": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "bundled": true, - "optional": true - }, - "tar": { - "version": "4.4.1", - "bundled": true, - "optional": true, - "requires": { - "chownr": "^1.0.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.2.4", - "minizlib": "^1.1.0", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.1", - "yallist": "^3.0.2" - } - }, - "util-deprecate": { - "version": "1.0.2", - "bundled": true, - "optional": true - }, - "wide-align": { - "version": "1.1.2", - "bundled": true, - "optional": true, - "requires": { - "string-width": "^1.0.2" - } - }, - "wrappy": { - "version": "1.0.2", - "bundled": true - }, - "yallist": { - "version": "3.0.2", - "bundled": true - } + } + } + }, + "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==", + "requires": { + "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": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "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==", + "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==", + "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==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "requires": { + "kind-of": "^3.2.0" + } + }, + "sntp": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", + "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", + "requires": { + "hoek": "2.x.x" + } + }, + "sockjs": { + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.19.tgz", + "integrity": "sha512-V48klKZl8T6MzatbLlzzRNhMepEys9Y4oGFpypBFFn1gLI/QQ9HtLLyWJNbPlwGLelOVOEijUbTTJeLLI59jLw==", + "requires": { + "faye-websocket": "^0.10.0", + "uuid": "^3.0.1" + } + }, + "sockjs-client": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.1.5.tgz", + "integrity": "sha1-G7fA9yIsQPQq3xT0RCy9Eml3GoM=", + "requires": { + "debug": "^2.6.6", + "eventsource": "0.1.6", + "faye-websocket": "~0.11.0", + "inherits": "^2.0.1", + "json3": "^3.3.2", + "url-parse": "^1.1.8" + }, + "dependencies": { + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "requires": { + "websocket-driver": ">=0.5.1" + } + } + } + }, + "sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "requires": { + "is-plain-obj": "^1.0.0" + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=" + }, + "source-map-resolve": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", + "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", + "requires": { + "atob": "^2.1.1", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.4.18", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz", + "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", + "requires": { + "source-map": "^0.5.6" + } + }, + "source-map-url": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", + "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" + }, + "sourcemapped-stacktrace": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/sourcemapped-stacktrace/-/sourcemapped-stacktrace-1.1.8.tgz", + "integrity": "sha512-OkVoI7GQOLl/laR1qsSo1c87tS8kF2VXhQq2SrQCDdXufBAcm8FgXogWso96ciMYoDtTw1Dn70CVdwYzoYs6Pg==", + "requires": { + "source-map": "0.5.6" + } + }, + "spdx-correct": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", + "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", + "requires": { + "spdx-license-ids": "^1.0.2" + } + }, + "spdx-expression-parse": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz", + "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=" + }, + "spdx-license-ids": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", + "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=" + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "dependencies": { + "debug": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "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==", + "requires": { + "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": { + "debug": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", + "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "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" + } + }, + "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==" + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "requires": { + "safe-buffer": "~5.2.0" + } + } + } + }, + "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==", + "requires": { + "extend-shallow": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "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" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + } + } + }, + "ssri": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz", + "integrity": "sha512-XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==", + "requires": { + "safe-buffer": "^5.1.1" + } + }, + "stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=" + }, + "stack-utils": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", + "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", + "dev": true, + "requires": { + "escape-string-regexp": "^2.0.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true + } + } + }, + "stackframe": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-0.3.1.tgz", + "integrity": "sha1-M6qE8Rd6VUjIk1Uzy/6zQgl19aQ=" + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" } + } + } + }, + "static-interval-tree": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/static-interval-tree/-/static-interval-tree-1.3.0.tgz", + "integrity": "sha1-n2kUldg5XX74C2K9Otj248oSSzo=" + }, + "stdout-stream": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz", + "integrity": "sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==", + "requires": { + "readable-stream": "^2.0.1" + } + }, + "stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" + }, + "stream-browserify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz", + "integrity": "sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds=", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "stream-combiner2": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", + "integrity": "sha1-+02KFCDqNidk4hrUeAOXvry0HL4=", + "requires": { + "duplexer2": "~0.1.0", + "readable-stream": "^2.0.2" + } + }, + "stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "stream-http": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.7.2.tgz", + "integrity": "sha512-c0yTD2rbQzXtSsFSVhtpvY/vS6u066PcXOX9kBB3mSO76RiUQzL340uJkGBWnlBg4/HZzqiUXtaVA7wcRcJgEw==", + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.2.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + }, + "stream-splicer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/stream-splicer/-/stream-splicer-2.0.1.tgz", + "integrity": "sha512-Xizh4/NPuYSyAXyT7g8IvdJ9HJpxIGL9PjyhtywCZvvP0OPIdqyrr4dMikeuvY8xahpdKEBlBTySe583totajg==", + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.2" + } + }, + "streamify": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/streamify/-/streamify-0.2.9.tgz", + "integrity": "sha512-8pUxeLEef9UO1FxtTt5iikAiyzGI4SZRnGuJ3sz8axZ5Xk+/7ezEV5kuJQsMEFxw7AKYw3xp0Ow+20mmSaJbQQ==", + "requires": { + "hashish": "~0.0.4" + } + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" + }, + "string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "requires": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "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 }, - "htmlparser2": { - "version": "3.9.2", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz", - "integrity": "sha1-G9+HrMoPP55T+k/M6w9LTLsAszg=", + "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": { - "domelementtype": "^1.3.0", - "domhandler": "^2.3.0", - "domutils": "^1.5.1", - "entities": "^1.1.1", - "inherits": "^2.0.1", - "readable-stream": "^2.0.2" + "ansi-regex": "^5.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==", + } + } + }, + "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" + } + }, + "string.prototype.matchall": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz", + "integrity": "sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.1", + "get-intrinsic": "^1.1.1", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.3.1", + "side-channel": "^1.0.4" + }, + "dependencies": { + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "es-abstract": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz", + "integrity": "sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.1.1", + "get-symbol-description": "^1.0.0", + "has": "^1.0.3", + "has-symbols": "^1.0.2", + "internal-slot": "^1.0.3", + "is-callable": "^1.2.4", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.1", + "is-string": "^1.0.7", + "is-weakref": "^1.0.1", + "object-inspect": "^1.11.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.4", + "string.prototype.trimstart": "^1.0.4", + "unbox-primitive": "^1.0.1" + } + }, + "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==", "requires": { - "kind-of": "^6.0.0" + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" } }, - "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==", + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "requires": { - "kind-of": "^6.0.0" + "function-bind": "^1.1.1" } }, - "is-descriptor": { + "has-symbols": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + }, + "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==" + }, + "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==", "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.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=" + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "requires": { + "has-tostringtag": "^1.0.0" + } }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - } + "has-symbols": "^1.0.2" + } + }, + "object-inspect": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.1.tgz", + "integrity": "sha512-If7BjFlpkzzBeV1cqgT3OSWT3azyoxDGajR+iGnFBfVV2EWyDyWaZZW2ERDjUaY2QM8i5jI3Sj7mhsM4DDAqWA==" + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "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==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + } + } + }, + "string.prototype.trimend": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", + "integrity": "sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": { + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + } + } + }, + "string.prototype.trimstart": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz", + "integrity": "sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "dependencies": { + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" } }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + } + } + }, + "string_decoder": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", + "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "stringstream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", + "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=" + }, + "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" + } + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "requires": { + "is-utf8": "^0.2.0" + } + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" + }, + "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==", + "dev": true + }, + "strip-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", + "requires": { + "get-stdin": "^4.0.1" + } + }, + "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==" + }, + "style-loader": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.17.0.tgz", + "integrity": "sha1-6CVLzNt690vVgnTjYQe01atN8xA=", + "requires": { + "loader-utils": "^1.0.2" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" }, - "jest": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest/-/jest-21.2.1.tgz", - "integrity": "sha512-mXN0ppPvWYoIcC+R+ctKxAJ28xkt/Z5Js875padm4GbgUn6baeR5N4Ng6LjatIRpUQDZVJABT7Y4gucFjPryfw==", + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", "requires": { - "jest-cli": "^21.2.1" - }, - "dependencies": { - "jest-cli": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-21.2.1.tgz", - "integrity": "sha512-T1BzrbFxDIW/LLYQqVfo94y/hhaj1NzVQkZgBumAC+sxbjMROI7VkihOdxNR758iYbQykL2ZOWUBurFgkQrzdg==", - "requires": { - "ansi-escapes": "^3.0.0", - "chalk": "^2.0.1", - "glob": "^7.1.2", - "graceful-fs": "^4.1.11", - "is-ci": "^1.0.10", - "istanbul-api": "^1.1.1", - "istanbul-lib-coverage": "^1.0.1", - "istanbul-lib-instrument": "^1.4.2", - "istanbul-lib-source-maps": "^1.1.0", - "jest-changed-files": "^21.2.0", - "jest-config": "^21.2.1", - "jest-environment-jsdom": "^21.2.1", - "jest-haste-map": "^21.2.0", - "jest-message-util": "^21.2.1", - "jest-regex-util": "^21.2.0", - "jest-resolve-dependencies": "^21.2.0", - "jest-runner": "^21.2.1", - "jest-runtime": "^21.2.1", - "jest-snapshot": "^21.2.1", - "jest-util": "^21.2.1", - "micromatch": "^2.3.11", - "node-notifier": "^5.0.2", - "pify": "^3.0.0", - "slash": "^1.0.0", - "string-length": "^2.0.0", - "strip-ansi": "^4.0.0", - "which": "^1.2.12", - "worker-farm": "^1.3.1", - "yargs": "^9.0.0" - } - } + "minimist": "^1.2.0" } }, - "jest-changed-files": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-21.2.0.tgz", - "integrity": "sha512-+lCNP1IZLwN1NOIvBcV5zEL6GENK6TXrDj4UxWIeLvIsIDa+gf6J7hkqsW2qVVt/wvH65rVvcPwqXdps5eclTQ==", + "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==", "requires": { - "throat": "^4.0.0" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" } }, - "jest-config": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-21.2.1.tgz", - "integrity": "sha512-fJru5HtlD/5l2o25eY9xT0doK3t2dlglrqoGpbktduyoI0T5CwuB++2YfoNZCrgZipTwPuAGonYv0q7+8yDc/A==", + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + } + } + }, + "style-to-js": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.0.tgz", + "integrity": "sha512-1OqefPDxGrlMwcbfpsTVRyzwdhr4W0uxYQzeA2F1CBc8WG04udg2+ybRnvh3XYL4TdHQrCahLtax2jc8xaE6rA==", + "requires": { + "style-to-object": "0.3.0" + } + }, + "style-to-object": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-0.3.0.tgz", + "integrity": "sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==", + "requires": { + "inline-style-parser": "0.1.1" + } + }, + "stylis": { + "version": "4.0.13", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.0.13.tgz", + "integrity": "sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==" + }, + "subarg": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz", + "integrity": "sha1-9izxdYHplrSPyWVpn1TAauJouNI=", + "requires": { + "minimist": "^1.1.0" + }, + "dependencies": { + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + } + } + }, + "superagent": { + "version": "3.8.3", + "resolved": "https://registry.npmjs.org/superagent/-/superagent-3.8.3.tgz", + "integrity": "sha512-GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA==", + "requires": { + "component-emitter": "^1.2.0", + "cookiejar": "^2.1.0", + "debug": "^3.1.0", + "extend": "^3.0.0", + "form-data": "^2.3.1", + "formidable": "^1.2.0", + "methods": "^1.1.1", + "mime": "^1.4.1", + "qs": "^6.5.1", + "readable-stream": "^2.3.5" + }, + "dependencies": { + "combined-stream": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz", + "integrity": "sha1-cj599ugBrFYTETp+RFqbactjKBg=", "requires": { - "chalk": "^2.0.1", - "glob": "^7.1.1", - "jest-environment-jsdom": "^21.2.1", - "jest-environment-node": "^21.2.1", - "jest-get-type": "^21.2.0", - "jest-jasmine2": "^21.2.1", - "jest-regex-util": "^21.2.0", - "jest-resolve": "^21.2.0", - "jest-util": "^21.2.1", - "jest-validate": "^21.2.1", - "pretty-format": "^21.2.1" + "delayed-stream": "~1.0.0" } }, - "jest-diff": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-21.2.1.tgz", - "integrity": "sha512-E5fu6r7PvvPr5qAWE1RaUwIh/k6Zx/3OOkZ4rk5dBJkEWRrUuSgbMt2EO8IUTPTd6DOqU3LW6uTIwX5FRvXoFA==", + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", "requires": { - "chalk": "^2.0.1", - "diff": "^3.2.0", - "jest-get-type": "^21.2.0", - "pretty-format": "^21.2.1" + "ms": "2.0.0" } }, - "jest-docblock": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-21.2.0.tgz", - "integrity": "sha512-5IZ7sY9dBAYSV+YjQ0Ovb540Ku7AO9Z5o2Cg789xj167iQuZ2cG+z0f3Uct6WeYLbU6aQiM2pCs7sZ+4dotydw==" - }, - "jest-environment-jsdom": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-21.2.1.tgz", - "integrity": "sha512-mecaeNh0eWmzNrUNMWARysc0E9R96UPBamNiOCYL28k7mksb1d0q6DD38WKP7ABffjnXyUWJPVaWRgUOivwXwg==", + "form-data": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz", + "integrity": "sha1-SXBJi+YEwgwAXU9cI67NIda0kJk=", "requires": { - "jest-mock": "^21.2.0", - "jest-util": "^21.2.1", - "jsdom": "^9.12.0" + "asynckit": "^0.4.0", + "combined-stream": "1.0.6", + "mime-types": "^2.1.12" } }, - "jest-environment-node": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-21.2.1.tgz", - "integrity": "sha512-R211867wx9mVBVHzrjGRGTy5cd05K7eqzQl/WyZixR/VkJ4FayS8qkKXZyYnwZi6Rxo6WEV81cDbiUx/GfuLNw==", + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", "requires": { - "jest-mock": "^21.2.0", - "jest-util": "^21.2.1" + "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" } }, - "jest-haste-map": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-21.2.0.tgz", - "integrity": "sha512-5LhsY/loPH7wwOFRMs+PT4aIAORJ2qwgbpMFlbWbxfN0bk3ZCwxJ530vrbSiTstMkYLao6JwBkLhCJ5XbY7ZHw==", + "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==", "requires": { - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.1.11", - "jest-docblock": "^21.2.0", - "micromatch": "^2.3.11", - "sane": "^2.0.0", - "worker-farm": "^1.3.1" + "safe-buffer": "~5.1.0" } + } + } + }, + "supports-color": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.2.0.tgz", + "integrity": "sha512-Ts0Mu/A1S1aZxEJNG88I4Oc9rcZSBFNac5e27yh4j2mqbhZSSzR1Ah79EYwSn9Zuh7lrlGD2cVGzw1RKGzyLSg==", + "requires": { + "has-flag": "^2.0.0" + } + }, + "supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "dev": true, + "requires": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "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 }, - "jest-jasmine2": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-21.2.1.tgz", - "integrity": "sha512-lw8FXXIEekD+jYNlStfgNsUHpfMWhWWCgHV7n0B7mA/vendH7vBFs8xybjQsDzJSduptBZJHqQX9SMssya9+3A==", + "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": { - "chalk": "^2.0.1", - "expect": "^21.2.1", - "graceful-fs": "^4.1.11", - "jest-diff": "^21.2.1", - "jest-matcher-utils": "^21.2.1", - "jest-message-util": "^21.2.1", - "jest-snapshot": "^21.2.1", - "p-cancelable": "^0.3.0" + "has-flag": "^4.0.0" } - }, - "jest-matcher-utils": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-21.2.1.tgz", - "integrity": "sha512-kn56My+sekD43dwQPrXBl9Zn9tAqwoy25xxe7/iY4u+mG8P3ALj5IK7MLHZ4Mi3xW7uWVCjGY8cm4PqgbsqMCg==", + } + } + }, + "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==" + }, + "svg-tag-names": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/svg-tag-names/-/svg-tag-names-1.1.2.tgz", + "integrity": "sha512-LIDOy8NRLGfJegTEnpizWA/ofg3Gyx58JgPEEjvATFciUJW9dHZ2aPTYY0Mn2rQYCeUGZElpHfu91OcWK0IMIw==" + }, + "svgo": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz", + "integrity": "sha1-n1dyQTlSE1xv779Ar+ak+qiLS7U=", + "requires": { + "coa": "~1.0.1", + "colors": "~1.1.2", + "csso": "~2.3.1", + "js-yaml": "~3.7.0", + "mkdirp": "~0.5.1", + "sax": "~1.2.1", + "whet.extend": "~0.9.9" + }, + "dependencies": { + "js-yaml": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz", + "integrity": "sha1-XJZ93YN6m/3KXy3oQlOr6KHAO4A=", "requires": { - "chalk": "^2.0.1", - "jest-get-type": "^21.2.0", - "pretty-format": "^21.2.1" + "argparse": "^1.0.7", + "esprima": "^2.6.0" } + } + } + }, + "symbol-tree": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.2.tgz", + "integrity": "sha1-rifbOPZgp64uHDt9G8KQgZuFGeY=" + }, + "syntax-error": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/syntax-error/-/syntax-error-1.4.0.tgz", + "integrity": "sha512-YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w==", + "requires": { + "acorn-node": "^1.2.0" + } + }, + "table": { + "version": "3.8.3", + "resolved": "https://registry.npmjs.org/table/-/table-3.8.3.tgz", + "integrity": "sha1-K7xULw/amGGnVdOUf+/Ys/UThV8=", + "requires": { + "ajv": "^4.7.0", + "ajv-keywords": "^1.0.0", + "chalk": "^1.1.1", + "lodash": "^4.0.0", + "slice-ansi": "0.0.4", + "string-width": "^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=" }, - "jest-message-util": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-21.2.1.tgz", - "integrity": "sha512-EbC1X2n0t9IdeMECJn2BOg7buOGivCvVNjqKMXTzQOu7uIfLml+keUfCALDh8o4rbtndIeyGU8/BKfoTr/LVDQ==", + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "requires": { - "chalk": "^2.0.1", - "micromatch": "^2.3.11", - "slash": "^1.0.0" + "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" } }, - "jest-mock": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-21.2.0.tgz", - "integrity": "sha512-aZDfyVf0LEoABWiY6N0d+O963dUQSyUa4qgzurHR3TBDPen0YxKCJ6l2i7lQGh1tVdsuvdrCZ4qPj+A7PievCw==" - }, - "jest-regex-util": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-21.2.0.tgz", - "integrity": "sha512-BKQ1F83EQy0d9Jen/mcVX7D+lUt2tthhK/2gDWRgLDJRNOdRgSp1iVqFxP8EN1ARuypvDflRfPzYT8fQnoBQFQ==" + "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=" }, - "jest-resolve": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-21.2.0.tgz", - "integrity": "sha512-vefQ/Lr+VdNvHUZFQXWtOqHX3HEdOc2MtSahBO89qXywEbUxGPB9ZLP9+BHinkxb60UT2Q/tTDOS6rYc6Mwigw==", + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", "requires": { - "browser-resolve": "^1.11.2", - "chalk": "^2.0.1", - "is-builtin-module": "^1.0.0" + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + }, + "dependencies": { + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "requires": { + "ansi-regex": "^3.0.0" + } + } } }, - "jest-resolve-dependencies": { - "version": "21.2.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-21.2.0.tgz", - "integrity": "sha512-ok8ybRFU5ScaAcfufIQrCbdNJSRZ85mkxJ1EhUp8Bhav1W1/jv/rl1Q6QoVQHObNxmKnbHVKrfLZbCbOsXQ+bQ==", - "requires": { - "jest-regex-util": "^21.2.0" - } + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" + } + } + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" + }, + "tape": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/tape/-/tape-2.3.3.tgz", + "integrity": "sha1-Lnzgox3wn41oUWZKcYQuDKUFevc=", + "requires": { + "deep-equal": "~0.1.0", + "defined": "~0.0.0", + "inherits": "~2.0.1", + "jsonify": "~0.0.0", + "resumer": "~0.0.0", + "through": "~2.3.4" + }, + "dependencies": { + "deep-equal": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-0.1.2.tgz", + "integrity": "sha1-skbCuApXCkfBG+HZvRBw7IeLh84=" }, - "jest-runtime": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-21.2.1.tgz", - "integrity": "sha512-6omlpA3+NSE+rHwD0PQjNEjZeb2z+oRmuehMfM1tWQVum+E0WV3pFt26Am0DUfQkkPyTABvxITRjCUclYgSOsA==", - "requires": { - "babel-core": "^6.0.0", - "babel-jest": "^21.2.0", - "babel-plugin-istanbul": "^4.0.0", - "chalk": "^2.0.1", - "convert-source-map": "^1.4.0", - "graceful-fs": "^4.1.11", - "jest-config": "^21.2.1", - "jest-haste-map": "^21.2.0", - "jest-regex-util": "^21.2.0", - "jest-resolve": "^21.2.0", - "jest-util": "^21.2.1", - "json-stable-stringify": "^1.0.1", - "micromatch": "^2.3.11", - "slash": "^1.0.0", - "strip-bom": "3.0.0", - "write-file-atomic": "^2.1.0", - "yargs": "^9.0.0" - } + "defined": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/defined/-/defined-0.0.0.tgz", + "integrity": "sha1-817qfXBekzuvE7LwOz+D2SFAOz4=" + } + } + }, + "tar": { + "version": "6.1.11", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.11.tgz", + "integrity": "sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==", + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" }, - "jest-snapshot": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-21.2.1.tgz", - "integrity": "sha512-bpaeBnDpdqaRTzN8tWg0DqOTo2DvD3StOemxn67CUd1p1Po+BUpvePAp44jdJ7Pxcjfg+42o4NHw1SxdCA2rvg==", + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + } + }, + "tcp-port-used": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/tcp-port-used/-/tcp-port-used-1.0.2.tgz", + "integrity": "sha512-l7ar8lLUD3XS1V2lfoJlCBaeoaWo/2xfYt81hM7VlvR4RrMVFqfmzfhLVk40hAb368uitje5gPtBRL1m/DGvLA==", + "requires": { + "debug": "4.3.1", + "is2": "^2.0.6" + }, + "dependencies": { + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", "requires": { - "chalk": "^2.0.1", - "jest-diff": "^21.2.1", - "jest-matcher-utils": "^21.2.1", - "mkdirp": "^0.5.1", - "natural-compare": "^1.4.0", - "pretty-format": "^21.2.1" + "ms": "2.1.2" } }, - "jest-util": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-21.2.1.tgz", - "integrity": "sha512-r20W91rmHY3fnCoO7aOAlyfC51x2yeV3xF+prGsJAUsYhKeV670ZB8NO88Lwm7ASu8SdH0S+U+eFf498kjhA4g==", + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dev": true, + "requires": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "dependencies": { + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, "requires": { - "callsites": "^2.0.0", - "chalk": "^2.0.1", - "graceful-fs": "^4.1.11", - "jest-message-util": "^21.2.1", - "jest-mock": "^21.2.0", - "jest-validate": "^21.2.1", - "mkdirp": "^0.5.1" + "type-fest": "^0.21.3" } }, - "jest-validate": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-21.2.1.tgz", - "integrity": "sha512-k4HLI1rZQjlU+EC682RlQ6oZvLrE5SCh3brseQc24vbZTxzT/k/3urar5QMCVgjadmSO7lECeGdc6YxnM3yEGg==", + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true + } + } + }, + "test-exclude": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-4.1.1.tgz", + "integrity": "sha512-35+Asrsk3XHJDBgf/VRFexPgh3UyETv8IAn/LRTiZjVy6rjPVqdEk8dJcJYBzl1w0XCJM48lvTy8SfEsCWS4nA==", + "requires": { + "arrify": "^1.0.1", + "micromatch": "^2.3.11", + "object-assign": "^4.1.0", + "read-pkg-up": "^1.0.1", + "require-main-filename": "^1.0.1" + } + }, + "text-segmentation": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/text-segmentation/-/text-segmentation-1.0.3.tgz", + "integrity": "sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==", + "requires": { + "utrie": "^1.0.2" + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + }, + "thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "requires": { + "any-promise": "^1.0.0" + } + }, + "thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=", + "requires": { + "thenify": ">= 3.1.0 < 4" + } + }, + "throat": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", + "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==", + "dev": true + }, + "throttle-debounce": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-2.3.0.tgz", + "integrity": "sha512-H7oLPV0P7+jgvrk+6mwwwBDmxTaxnu9HMXmloNLXwnNO0ZxZ31Orah2n8lU1eMPvsaowP2CX+USCgyovXfdOFQ==" + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + }, + "dependencies": { + "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==" + }, + "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": { - "chalk": "^2.0.1", - "jest-get-type": "^21.2.0", - "leven": "^2.1.0", - "pretty-format": "^21.2.1" + "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" } }, - "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==" - }, - "json-stable-stringify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", - "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", + "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==", "requires": { - "jsonify": "~0.0.0" + "safe-buffer": "~5.1.0" } - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" - }, - "load-json-file": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", - "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", + } + } + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + }, + "time-stamp": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-2.2.0.tgz", + "integrity": "sha512-zxke8goJQpBeEgD82CXABeMh0LSJcj7CXEd0OHOg45HgcofF7pxNwZm9+RknpxpDhwN4gFpySkApKfFYfRQnUA==" + }, + "timers-browserify": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz", + "integrity": "sha1-ycWLV1voQHN1y14kYtrO50NZ9B0=", + "requires": { + "process": "~0.11.0" + } + }, + "timers-ext": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.7.tgz", + "integrity": "sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==", + "requires": { + "es5-ext": "~0.10.46", + "next-tick": "1" + }, + "dependencies": { + "es5-ext": { + "version": "0.10.53", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", + "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "strip-bom": "^3.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - } + "es6-iterator": "~2.0.3", + "es6-symbol": "~3.1.3", + "next-tick": "~1.0.0" } }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" - }, - "nan": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz", - "integrity": "sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==", - "optional": true - }, - "os-locale": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz", - "integrity": "sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==", + "es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", "requires": { - "execa": "^0.7.0", - "lcid": "^1.0.0", - "mem": "^1.1.0" + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" } }, - "path-type": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", - "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", + "es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", "requires": { - "pify": "^2.0.0" + "d": "^1.0.1", + "ext": "^1.1.2" }, "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + "d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "requires": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } } } - }, - "pify": { + } + } + }, + "timespan": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/timespan/-/timespan-2.3.0.tgz", + "integrity": "sha1-SQLOBAvRPYRcj1myfp1ZutbzmSk=" + }, + "tiny-emitter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz", + "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==" + }, + "tinycolor2": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz", + "integrity": "sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==" + }, + "tmatch": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/tmatch/-/tmatch-2.0.1.tgz", + "integrity": "sha1-DFYkbzPzDaG409colauvFmYPOM8=" + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" + }, + "to-fast-properties": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", + "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=" + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "requires": { + "kind-of": "^3.0.2" + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "dependencies": { + "is-number": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" - }, - "pretty-format": { - "version": "21.2.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-21.2.1.tgz", - "integrity": "sha512-ZdWPGYAnYfcVP8yKA3zFjCn8s4/17TeYH28MXuC8vTp0o21eXjbFGcOAXZEaDaOFJjc3h2qa7HQNHNshhvoh2A==", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", "requires": { - "ansi-regex": "^3.0.0", - "ansi-styles": "^3.2.0" + "kind-of": "^3.0.2" + } + } + } + }, + "toggle-selection": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", + "integrity": "sha1-bkWxJj8gF/oKzH2J14sVuL932jI=" + }, + "toposort": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/toposort/-/toposort-1.0.7.tgz", + "integrity": "sha1-LmhELZ9k7HILjMieZEOsbKqVACk=" + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "dependencies": { + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + } + } + }, + "tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" + }, + "traverse": { + "version": "0.6.6", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz", + "integrity": "sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=" + }, + "traverse-chain": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/traverse-chain/-/traverse-chain-0.1.0.tgz", + "integrity": "sha1-YdvC1Ttp/2CRoSoWj9fUMxB+QPE=", + "optional": true + }, + "trim-newlines": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=" + }, + "trim-right": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", + "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=" + }, + "true-case-path": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz", + "integrity": "sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew==", + "requires": { + "glob": "^7.1.2" + } + }, + "tryit": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tryit/-/tryit-1.0.3.tgz", + "integrity": "sha1-OTvnMKlEb9Hq1tpZoBQwjzbCics=" + }, + "ts-jest": { + "version": "27.1.1", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-27.1.1.tgz", + "integrity": "sha512-Ds0VkB+cB+8g2JUmP/GKWndeZcCKrbe6jzolGrVWdqVUFByY/2KDHqxJ7yBSon7hDB1TA4PXxjfZ+JjzJisvgA==", + "dev": true, + "requires": { + "bs-logger": "0.x", + "fast-json-stable-stringify": "2.x", + "jest-util": "^27.0.0", + "json5": "2.x", + "lodash.memoize": "4.x", + "make-error": "1.x", + "semver": "7.x", + "yargs-parser": "20.x" + }, + "dependencies": { + "json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" } }, - "react": { - "version": "16.4.1", - "resolved": "https://registry.npmjs.org/react/-/react-16.4.1.tgz", - "integrity": "sha512-3GEs0giKp6E0Oh/Y9ZC60CmYgUPnp7voH9fbjWsvXtYFb4EWtgQub0ADSq0sJR0BbHc4FThLLtzlcFaFXIorwg==", + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "dev": true + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true + } + } + }, + "ts-loader": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-4.4.2.tgz", + "integrity": "sha512-Z3Y1a7A0KZZ1s/mAZkt74l1NAF7Y5xUhD1V9VB8/1eUlUOk8Qa/oo46tO2Uu5kQ3wXypOlbv77lLQySjXEDcdw==", + "dev": true, + "requires": { + "chalk": "^2.3.0", + "enhanced-resolve": "^4.0.0", + "loader-utils": "^1.0.2", + "micromatch": "^3.1.4", + "semver": "^5.0.1" + }, + "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": { - "fbjs": "^0.8.16", - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.0" - }, - "dependencies": { - "prop-types": { - "version": "15.6.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.1.tgz", - "integrity": "sha512-4ec7bY1Y66LymSUOH/zARVYObB23AT2h8cf6e/O6ZALB/N0sqZFEx7rq6EYPX2MkOdKORuooI/H5k9TlR4q7kQ==", - "requires": { - "fbjs": "^0.8.16", - "loose-envify": "^1.3.1", - "object-assign": "^4.1.1" - } - } + "color-convert": "^1.9.0" } }, - "react-deep-force-update": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/react-deep-force-update/-/react-deep-force-update-2.1.1.tgz", - "integrity": "sha1-jqQmPNZFWgULN0RbPwj9g52G6Qk=" + "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 + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "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 }, - "react-dom": { - "version": "16.4.1", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.4.1.tgz", - "integrity": "sha512-1Gin+wghF/7gl4Cqcvr1DxFX2Osz7ugxSwl6gBqCMpdrxHjIFUS7GYxrFftZ9Ln44FHw0JxCFD9YtZsrbR5/4A==", + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, "requires": { - "fbjs": "^0.8.16", - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.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" }, "dependencies": { - "prop-types": { - "version": "15.6.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.1.tgz", - "integrity": "sha512-4ec7bY1Y66LymSUOH/zARVYObB23AT2h8cf6e/O6ZALB/N0sqZFEx7rq6EYPX2MkOdKORuooI/H5k9TlR4q7kQ==", + "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": { - "fbjs": "^0.8.16", - "loose-envify": "^1.3.1", - "object-assign": "^4.1.1" + "is-extendable": "^0.1.0" } } } }, - "react-hot-loader": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/react-hot-loader/-/react-hot-loader-3.1.3.tgz", - "integrity": "sha512-d7nZf78irxoGN5PY4zd6CSgZiroOhvIWzRast3qwTn4sSnBwlt08kV8WMQ9mitmxEdlCTwZt+5ClrRSjxWguMQ==", + "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": { - "global": "^4.3.0", - "react-deep-force-update": "^2.1.1", - "react-proxy": "^3.0.0-alpha.0", - "redbox-react": "^1.3.6", - "source-map": "^0.6.1" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" } }, - "react-proxy": { - "version": "3.0.0-alpha.1", - "resolved": "https://registry.npmjs.org/react-proxy/-/react-proxy-3.0.0-alpha.1.tgz", - "integrity": "sha1-RABCa8+oDKpnJMd1VpUxUgn6Swc=", - "requires": { - "lodash": "^4.6.1" - } + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true }, - "react-test-renderer": { - "version": "16.4.1", - "resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-16.4.1.tgz", - "integrity": "sha512-wyyiPxRZOTpKnNIgUBOB6xPLTpIzwcQMIURhZvzUqZzezvHjaGNsDPBhMac5fIY3Jf5NuKxoGvV64zDSOECPPQ==", + "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": { - "fbjs": "^0.8.16", - "object-assign": "^4.1.1", - "prop-types": "^15.6.0", - "react-is": "^16.4.1" + "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": { - "prop-types": { - "version": "15.6.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.1.tgz", - "integrity": "sha512-4ec7bY1Y66LymSUOH/zARVYObB23AT2h8cf6e/O6ZALB/N0sqZFEx7rq6EYPX2MkOdKORuooI/H5k9TlR4q7kQ==", + "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": { - "fbjs": "^0.8.16", - "loose-envify": "^1.3.1", - "object-assign": "^4.1.1" + "is-descriptor": "^0.1.0" } - } - } - }, - "react-transition-group": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.3.1.tgz", - "integrity": "sha512-hu4/LAOFSKjWt1+1hgnOv3ldxmt6lvZGTWz4KUkFrqzXrNDIVSu6txIcPszw7PNduR8en9YTN55JLRyd/L1ZiQ==", - "requires": { - "dom-helpers": "^3.3.1", - "loose-envify": "^1.3.1", - "prop-types": "^15.6.1" - }, - "dependencies": { - "prop-types": { - "version": "15.6.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.1.tgz", - "integrity": "sha512-4ec7bY1Y66LymSUOH/zARVYObB23AT2h8cf6e/O6ZALB/N0sqZFEx7rq6EYPX2MkOdKORuooI/H5k9TlR4q7kQ==", + }, + "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" + } + }, + "is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, "requires": { - "fbjs": "^0.8.16", - "loose-envify": "^1.3.1", - "object-assign": "^4.1.1" + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" } } } }, - "read-pkg": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", - "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", - "requires": { - "load-json-file": "^2.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^2.0.0" - } - }, - "read-pkg-up": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", - "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", - "requires": { - "find-up": "^2.0.0", - "read-pkg": "^2.0.0" - } - }, - "sane": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/sane/-/sane-2.5.2.tgz", - "integrity": "sha1-tNwYYcIbQn6SlQej51HiosuKs/o=", + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, "requires": { - "anymatch": "^2.0.0", - "capture-exit": "^1.2.0", - "exec-sh": "^0.2.0", - "fb-watchman": "^2.0.0", - "fsevents": "^1.2.3", - "micromatch": "^3.1.4", - "minimist": "^1.1.1", - "walker": "~1.0.5", - "watch": "~0.18.0" + "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": { - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "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": { - "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" + "is-descriptor": "^1.0.0" + } + }, + "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" } } } }, - "schema-utils": { - "version": "0.4.5", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.5.tgz", - "integrity": "sha512-yYrjb9TX2k/J1Y5UNy3KYdZq10xhYcF8nMpAW6o3hy6Q8WSIEf9lJHG/ePnOBfziPM3fvQwfOwa13U/Fh8qTfA==", - "requires": { - "ajv": "^6.1.0", - "ajv-keywords": "^3.1.0" - } - }, - "semver": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", - "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "string-length": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz", - "integrity": "sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=", - "requires": { - "astral-regex": "^1.0.0", - "strip-ansi": "^4.0.0" - } - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { + "fill-range": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "requires": { - "ansi-regex": "^3.0.0" - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" - }, - "supports-color": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", - "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, "requires": { - "has-flag": "^2.0.0" + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "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" + } + } } }, - "tapable": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-0.2.8.tgz", - "integrity": "sha1-mTcqXJmb8t8WCvwNdL7U9HlIzSI=" + "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 }, - "throat": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz", - "integrity": "sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=" + "is-accessor-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", + "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", + "dev": true, + "requires": { + "hasown": "^2.0.0" + } }, - "ua-parser-js": { - "version": "0.7.18", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.18.tgz", - "integrity": "sha512-LtzwHlVHwFGTptfNSgezHp7WUlwiqb0gA9AALRbKaERfxwJoiX0A73QbTToxteIAuIaFshhgIZfqK8s7clqgnA==" + "is-data-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", + "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", + "dev": true, + "requires": { + "hasown": "^2.0.0" + } }, - "watch": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/watch/-/watch-0.18.0.tgz", - "integrity": "sha1-KAlUdsbffJDJYxOJkMClQj60uYY=", + "is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, "requires": { - "exec-sh": "^0.2.0", - "minimist": "^1.2.0" + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" } }, - "webpack": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-3.12.0.tgz", - "integrity": "sha512-Sw7MdIIOv/nkzPzee4o0EdvCuPmxT98+vVpIvwtcwcF1Q4SDSNp92vwcKc4REe7NItH9f1S4ra9FuQ7yuYZ8bQ==", + "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": { - "acorn": "^5.0.0", - "acorn-dynamic-import": "^2.0.0", - "ajv": "^6.1.0", - "ajv-keywords": "^3.1.0", - "async": "^2.1.2", - "enhanced-resolve": "^3.4.0", - "escope": "^3.6.0", - "interpret": "^1.0.0", - "json-loader": "^0.5.4", - "json5": "^0.5.1", - "loader-runner": "^2.3.0", - "loader-utils": "^1.1.0", - "memory-fs": "~0.4.1", - "mkdirp": "~0.5.0", - "node-libs-browser": "^2.0.0", - "source-map": "^0.5.3", - "supports-color": "^4.2.1", - "tapable": "^0.2.7", - "uglifyjs-webpack-plugin": "^0.4.6", - "watchpack": "^1.4.0", - "webpack-sources": "^1.0.1", - "yargs": "^8.0.2" + "kind-of": "^3.0.2" }, "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - }, - "yargs": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-8.0.2.tgz", - "integrity": "sha1-YpmpBVsc78lp/355wdkY3Osiw2A=", + "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": { - "camelcase": "^4.1.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^2.0.0", - "read-pkg-up": "^2.0.0", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^2.0.0", - "which-module": "^2.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^7.0.0" + "is-buffer": "^1.1.5" } } } }, - "which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true }, - "yargs": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-9.0.1.tgz", - "integrity": "sha1-UqzCP+7Kw0BCB47njAwAf1CF20w=", + "json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, "requires": { - "camelcase": "^4.1.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^2.0.0", - "read-pkg-up": "^2.0.0", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^2.0.0", - "which-module": "^2.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^7.0.0" + "minimist": "^1.2.0" } }, - "yargs-parser": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz", - "integrity": "sha1-jQrELxbqVd69MyyvTEA4s+P139k=", + "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 + }, + "loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dev": true, "requires": { - "camelcase": "^4.1.0" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" } - } - } - }, - "select": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz", - "integrity": "sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=" - }, - "select-hose": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" - }, - "selfsigned": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.9.1.tgz", - "integrity": "sha1-zdpEktcNSGVw+HxlVGAjVY4d+lo=", - "requires": { - "node-forge": "0.6.33" - } - }, - "semantic-ui-css": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/semantic-ui-css/-/semantic-ui-css-2.3.1.tgz", - "integrity": "sha512-8M2OkoKZHfEnNUYB4Ha8q+tTAWN/g17X2l6HUg6n3DP4QDJLQl1xyhnRvM9UhJpsRvkRqgWgQLbRA6cl7Ep2dw==", - "requires": { - "jquery": "x.*" - } - }, - "semantic-ui-react": { - "version": "0.76.0", - "resolved": "https://registry.npmjs.org/semantic-ui-react/-/semantic-ui-react-0.76.0.tgz", - "integrity": "sha512-CdiIT8n7ZwUlytZkYsQMnaVGmoIZI/mVs4lijvLcR568kcnlRkYYaFKhMLq5tFDQU6+QhdTD+8WebF7ov0Ql6Q==", - "requires": { - "babel-runtime": "^6.25.0", - "classnames": "^2.2.5", - "lodash": "^4.17.4", - "prop-types": "^15.5.10" - }, - "dependencies": { - "babel-runtime": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", - "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, "requires": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.11.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" } }, - "regenerator-runtime": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", - "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" - } - } - }, - "semver": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", - "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=" - }, - "send": { - "version": "0.15.3", - "resolved": "https://registry.npmjs.org/send/-/send-0.15.3.tgz", - "integrity": "sha1-UBP5+ZAj31DRvZiSwZ4979HVMwk=", - "requires": { - "debug": "2.6.7", - "depd": "~1.1.0", - "destroy": "~1.0.4", - "encodeurl": "~1.0.1", - "escape-html": "~1.0.3", - "etag": "~1.8.0", - "fresh": "0.5.0", - "http-errors": "~1.6.1", - "mime": "1.3.4", - "ms": "2.0.0", - "on-finished": "~2.3.0", - "range-parser": "~1.2.0", - "statuses": "~1.3.1" - }, - "dependencies": { - "debug": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.7.tgz", - "integrity": "sha1-krrR9tBbu2u6Isyoi80OyJTChh4=", + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true + }, + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "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==", + "dev": true, "requires": { - "ms": "2.0.0" + "has-flag": "^3.0.0" } - }, - "mime": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz", - "integrity": "sha1-EV+eO2s9rylZmDyzjxSaLUDrXVM=" } } }, - "serve-index": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.0.tgz", - "integrity": "sha1-0rKA/FYNYW7oG0i/D6gqvtJIXOc=", - "requires": { - "accepts": "~1.3.3", - "batch": "0.6.1", - "debug": "2.6.8", - "escape-html": "~1.0.3", - "http-errors": "~1.6.1", - "mime-types": "~2.1.15", - "parseurl": "~1.3.1" - } - }, - "serve-static": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.12.3.tgz", - "integrity": "sha1-n0uhni8wMMVH+K+ZEHg47DjVseI=", - "requires": { - "encodeurl": "~1.0.1", - "escape-html": "~1.0.3", - "parseurl": "~1.3.1", - "send": "0.15.3" - } - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" - }, - "set-immediate-shim": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", - "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=" - }, - "set-value": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz", - "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==", + "tsconfig-paths": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.12.0.tgz", + "integrity": "sha512-e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg==", "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.0", + "strip-bom": "^3.0.0" }, "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", "requires": { - "is-extendable": "^0.1.0" + "minimist": "^1.2.0" } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" } } }, - "setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" - }, - "setprototypeof": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", - "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=" + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" }, - "sha.js": { - "version": "2.4.8", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.8.tgz", - "integrity": "sha1-NwaMLEdra69ALRSknGf1l5IfY08=", + "tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "requires": { - "inherits": "^2.0.1" + "tslib": "^1.8.1" } }, - "shallow-clone": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-0.1.2.tgz", - "integrity": "sha1-WQnodLp3EG1zrEFM/sH/yofZcGA=", + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", "requires": { - "is-extendable": "^0.1.1", - "kind-of": "^2.0.1", - "lazy-cache": "^0.2.3", - "mixin-object": "^2.0.1" + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, + "twemoji": { + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/twemoji/-/twemoji-14.0.2.tgz", + "integrity": "sha512-BzOoXIe1QVdmsUmZ54xbEH+8AgtOKUiG53zO5vVP2iUu6h5u9lN15NcuS6te4OY96qx0H7JK9vjjl9WQbkTRuA==", + "requires": { + "fs-extra": "^8.0.1", + "jsonfile": "^5.0.0", + "twemoji-parser": "14.0.0", + "universalify": "^0.1.2" }, "dependencies": { - "kind-of": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz", - "integrity": "sha1-AY7HpM5+OobLkUG+UZ0kyPqpgbU=", + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "dependencies": { + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "requires": { + "graceful-fs": "^4.1.6" + } + } + } + }, + "graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" + }, + "jsonfile": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-5.0.0.tgz", + "integrity": "sha512-NQRZ5CRo74MhMMC3/3r5g2k4fjodJ/wh8MxjFbCViWKFjxrnudWSY5vomh+23ZaXzAS7J3fBZIR2dV6WbmfM0w==", "requires": { - "is-buffer": "^1.0.2" + "graceful-fs": "^4.1.6", + "universalify": "^0.1.2" } } } }, - "shasum": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/shasum/-/shasum-1.0.2.tgz", - "integrity": "sha1-5wEjENj0F/TetXEhUOVni4euVl8=", - "requires": { - "json-stable-stringify": "~0.0.0", - "sha.js": "~2.4.4" - } + "twemoji-parser": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/twemoji-parser/-/twemoji-parser-14.0.0.tgz", + "integrity": "sha512-9DUOTGLOWs0pFWnh1p6NF+C3CkQ96PWmEFwhOVmT3WbecRC+68AIqpsnJXygfkFcp4aXbOp8Dwbhh/HQgvoRxA==" }, - "shebang-command": { + "type": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", "requires": { - "shebang-regex": "^1.0.0" + "prelude-ls": "~1.1.2" } }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" + "type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true }, - "shell-quote": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.6.1.tgz", - "integrity": "sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c=", - "requires": { - "array-filter": "~0.0.0", - "array-map": "~0.0.0", - "array-reduce": "~0.0.0", - "jsonify": "~0.0.0" - } + "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==" }, - "shelljs": { - "version": "0.7.8", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.7.8.tgz", - "integrity": "sha1-3svPh0sNHl+3LhSxZKloMEjprLM=", + "type-is": { + "version": "1.6.15", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz", + "integrity": "sha1-yrEPtJCeRByChC6v4a1kbIGARBA=", "requires": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" + "media-typer": "0.3.0", + "mime-types": "~2.1.15" } }, - "shellwords": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.0.tgz", - "integrity": "sha1-Zq/Ue2oSky2Qccv9mKUueFzQuhQ=" - }, - "shortid": { - "version": "2.2.8", - "resolved": "https://registry.npmjs.org/shortid/-/shortid-2.2.8.tgz", - "integrity": "sha1-AzsRfWoul1gE9vCWnb59PQs1UTE=" + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" }, - "shush": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shush/-/shush-1.0.0.tgz", - "integrity": "sha1-wnQVqeRY8v7TmyfPjrN8ADeCtDE=", + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", "requires": { - "caller": "~0.0.1", - "strip-json-comments": "~0.1.1" - }, - "dependencies": { - "strip-json-comments": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-0.1.3.tgz", - "integrity": "sha1-Fkxk43Coo8wAyeAbU55WmCPw7lQ=" - } + "is-typedarray": "^1.0.0" } }, - "signal-exit": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" - }, - "slash": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", - "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=" - }, - "slice-ansi": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz", - "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=" + "typescript": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.3.tgz", + "integrity": "sha512-eVYaEHALSt+s9LbvgEv4Ef+Tdq7hBiIZgii12xXJnukryt3pMgJf6aKhoCZ3FWQsu6sydEnkg11fYXLzhLBjeQ==", + "dev": true }, - "smart-buffer": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-1.1.15.tgz", - "integrity": "sha1-fxFLW2X6s+KjWqd1uxLw0cZJvxY=" + "ua-parser-js": { + "version": "1.0.33", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.33.tgz", + "integrity": "sha512-RqshF7TPTE0XLYAqmjlu5cLLuGdKrNu9O1KLA/qp39QtbZwuzwv1dT46DZSopoUMsYgXpB3Cv8a03FI8b74oFQ==" }, - "snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "uglify-js": { + "version": "2.8.29", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", + "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", "requires": { - "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" + "source-map": "~0.5.1", + "uglify-to-browserify": "~1.0.0", + "yargs": "~3.10.0" }, "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=" + }, + "cliui": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", + "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", "requires": { - "is-descriptor": "^0.1.0" + "center-align": "^0.1.1", + "right-align": "^0.1.1", + "wordwrap": "0.0.2" } }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "wordwrap": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", + "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=" + }, + "yargs": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", + "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", "requires": { - "is-extendable": "^0.1.0" + "camelcase": "^1.0.2", + "cliui": "^2.1.0", + "decamelize": "^1.0.0", + "window-size": "0.1.0" } } } }, - "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==", + "uglify-to-browserify": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", + "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", + "optional": true + }, + "uglifyjs-webpack-plugin": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.3.0.tgz", + "integrity": "sha512-ovHIch0AMlxjD/97j9AYovZxG5wnHOPkL7T1GKochBADp/Zwc44pEWNqpKl1Loupp1WhFg7SlYmHZRUfdAacgw==", "requires": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" + "cacache": "^10.0.4", + "find-cache-dir": "^1.0.0", + "schema-utils": "^0.4.5", + "serialize-javascript": "^1.4.0", + "source-map": "^0.6.1", + "uglify-es": "^3.3.4", + "webpack-sources": "^1.1.0", + "worker-farm": "^1.5.2" }, "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "commander": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz", + "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==" + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", "requires": { - "is-descriptor": "^1.0.0" + "prr": "~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==", + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "uglify-es": { + "version": "3.3.9", + "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz", + "integrity": "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==", "requires": { - "kind-of": "^6.0.0" + "commander": "~2.13.0", + "source-map": "~0.6.1" } }, - "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==", + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", "requires": { - "kind-of": "^6.0.0" + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" } }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" + "errno": "~0.1.7" } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" } } }, - "snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "requires": { - "kind-of": "^3.2.0" - } - }, - "sntp": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", - "integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=", - "requires": { - "hoek": "2.x.x" - } - }, - "sockjs": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.18.tgz", - "integrity": "sha1-2bKJMWyn33dZXvKZ4HXw+TfrQgc=", - "requires": { - "faye-websocket": "^0.10.0", - "uuid": "^2.0.2" - }, - "dependencies": { - "uuid": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz", - "integrity": "sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho=" - } - } + "umd": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/umd/-/umd-3.0.3.tgz", + "integrity": "sha512-4IcGSufhFshvLNcMCV80UnQVlZ5pMOC8mvNPForqwA4+lzYQuetTESLDQkeLmihq8bRcnpbQa48Wb8Lh16/xow==" }, - "sockjs-client": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.1.2.tgz", - "integrity": "sha1-8CEqhVDkyUaMjM6u79LjSTwDOtU=", + "unbox-primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz", + "integrity": "sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==", "requires": { - "debug": "^2.2.0", - "eventsource": "0.1.6", - "faye-websocket": "~0.11.0", - "inherits": "^2.0.1", - "json3": "^3.3.2", - "url-parse": "^1.1.1" + "function-bind": "^1.1.1", + "has-bigints": "^1.0.1", + "has-symbols": "^1.0.2", + "which-boxed-primitive": "^1.0.2" }, "dependencies": { - "faye-websocket": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.1.tgz", - "integrity": "sha1-8O/hjE9W5PQK/H4Gxxn9XuYYjzg=", - "requires": { - "websocket-driver": ">=0.5.1" - } + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" } } }, - "socks": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/socks/-/socks-1.1.10.tgz", - "integrity": "sha1-W4t/x8jzQcU+0FbpKbe/Tei6e1o=", + "undeclared-identifiers": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/undeclared-identifiers/-/undeclared-identifiers-1.1.3.tgz", + "integrity": "sha512-pJOW4nxjlmfwKApE4zvxLScM/njmwj/DiUBv7EabwE4O8kRUy+HIwxQtZLBPll/jx1LJyBcqNfB3/cpv9EZwOw==", "requires": { - "ip": "^1.1.4", - "smart-buffer": "^1.0.13" + "acorn-node": "^1.3.0", + "dash-ast": "^1.0.0", + "get-assigned-identifiers": "^1.2.0", + "simple-concat": "^1.0.0", + "xtend": "^4.0.1" } }, - "sort-keys": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", - "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "underscore": { + "version": "1.13.6", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", + "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==" + }, + "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==", "requires": { - "is-plain-obj": "^1.0.0" + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" } }, - "source-list-map": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-0.1.8.tgz", - "integrity": "sha1-xVCyq1Qn9rPyH1r+rYjE9Vh7IQY=" + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" }, - "source-map": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", - "integrity": "sha1-dc449SvwczxafwwRjYEzSiu19BI=" + "uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=" }, - "source-map-resolve": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", - "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", "requires": { - "atob": "^2.1.1", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" + "unique-slug": "^2.0.0" } }, - "source-map-support": { - "version": "0.4.15", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.15.tgz", - "integrity": "sha1-AyAt9lwG0r2MfsI2KhkwVv7407E=", + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", "requires": { - "source-map": "^0.5.6" + "imurmurhash": "^0.1.4" } }, - "source-map-url": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", - "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=" + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" }, - "sourcemapped-stacktrace": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/sourcemapped-stacktrace/-/sourcemapped-stacktrace-1.1.8.tgz", - "integrity": "sha512-OkVoI7GQOLl/laR1qsSo1c87tS8kF2VXhQq2SrQCDdXufBAcm8FgXogWso96ciMYoDtTw1Dn70CVdwYzoYs6Pg==", + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", "requires": { - "source-map": "0.5.6" + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "requires": { + "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": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "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": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + } } }, - "spdx-correct": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", - "integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=", + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" + }, + "upper-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", + "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=" + }, + "uppercamelcase": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/uppercamelcase/-/uppercamelcase-1.1.0.tgz", + "integrity": "sha1-Mk2YprOvx+iolT4QZBUJsOTiP5c=", "requires": { - "spdx-license-ids": "^1.0.2" + "camelcase": "^1.2.1" + }, + "dependencies": { + "camelcase": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", + "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=" + } } }, - "spdx-expression-parse": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz", - "integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=" + "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==", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": { + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + } + } }, - "spdx-license-ids": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz", - "integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=" + "urijs": { + "version": "1.19.11", + "resolved": "https://registry.npmjs.org/urijs/-/urijs-1.19.11.tgz", + "integrity": "sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ==" }, - "spdy": { - "version": "3.4.7", - "resolved": "https://registry.npmjs.org/spdy/-/spdy-3.4.7.tgz", - "integrity": "sha1-Qv9B7OXMD5mjpsKKq7c/XDsDrLw=", + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", "requires": { - "debug": "^2.6.8", - "handle-thing": "^1.2.5", - "http-deceiver": "^1.2.7", - "safe-buffer": "^5.0.1", - "select-hose": "^2.0.0", - "spdy-transport": "^2.0.18" + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + } } }, - "spdy-transport": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-2.0.20.tgz", - "integrity": "sha1-c15yBUxIayNU/onnAiVgBKOazk0=", + "url-loader": { + "version": "0.5.9", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-0.5.9.tgz", + "integrity": "sha512-B7QYFyvv+fOBqBVeefsxv6koWWtjmHaMFT6KZWti4KRw8YUD/hOU+3AECvXuzyVawIBx3z7zQRejXCDSO5kk1Q==", "requires": { - "debug": "^2.6.8", - "detect-node": "^2.0.3", - "hpack.js": "^2.1.6", - "obuf": "^1.1.1", - "readable-stream": "^2.2.9", - "safe-buffer": "^5.0.1", - "wbuf": "^1.7.2" + "loader-utils": "^1.0.2", + "mime": "1.3.x" + }, + "dependencies": { + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "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==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "mime": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.6.tgz", + "integrity": "sha1-WR2E02U6awtKO5343lqoEI5y5eA=" + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + } } }, - "split": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/split/-/split-1.0.0.tgz", - "integrity": "sha1-xDlc5oOrzSVLwo/h2rtuXCfc/64=", + "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==", "requires": { - "through": "2" + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" } }, - "split-string": { + "use": { "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==", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.0.tgz", + "integrity": "sha512-6UJEQM/L+mzC3ZJNM56Q4DFGLX/evKGRg15UJHGB9X5j5Z3AFbgZvjUh2yq/UJUY4U5dh7Fal++XbNg1uzpRAw==", "requires": { - "extend-shallow": "^3.0.0" + "kind-of": "^6.0.2" + }, + "dependencies": { + "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==" + } } }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" - }, - "sshpk": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz", - "integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=", + "user-home": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz", + "integrity": "sha1-nHC/2Babwdy/SGBODwS4tJzenp8=", "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", - "tweetnacl": "~0.14.0" + "os-homedir": "^1.0.0" + } + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "requires": { + "inherits": "2.0.1" }, "dependencies": { - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" } } }, - "stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=" - }, - "stackframe": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-0.3.1.tgz", - "integrity": "sha1-M6qE8Rd6VUjIk1Uzy/6zQgl19aQ=" + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" }, - "staged-git-files": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/staged-git-files/-/staged-git-files-0.0.4.tgz", - "integrity": "sha1-15fhtVHKemOd7AI33G60u5vhfTU=", - "dev": true + "utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" }, - "static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "utile": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/utile/-/utile-0.2.1.tgz", + "integrity": "sha1-kwyI6ZCY1iIINMNWy9mncFItkNc=", "requires": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" + "async": "~0.2.9", + "deep-equal": "*", + "i": "0.3.x", + "mkdirp": "0.x.x", + "ncp": "0.4.x", + "rimraf": "2.x.x" }, "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "requires": { - "is-descriptor": "^0.1.0" - } + "async": { + "version": "0.2.10", + "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", + "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=" } } }, - "static-interval-tree": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/static-interval-tree/-/static-interval-tree-1.3.0.tgz", - "integrity": "sha1-n2kUldg5XX74C2K9Otj248oSSzo=" - }, - "statuses": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz", - "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4=" + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" }, - "stdout-stream": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.0.tgz", - "integrity": "sha1-osfIWH5U2UJ+qe2zrD8s1SLfN4s=", + "utrie": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/utrie/-/utrie-1.0.2.tgz", + "integrity": "sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==", "requires": { - "readable-stream": "^2.0.1" + "base64-arraybuffer": "^1.0.2" } }, - "stealthy-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", - "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" + "uuid": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz", + "integrity": "sha512-DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g==" }, - "stream-browserify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz", - "integrity": "sha1-ZiZu5fm9uZQKTkUUyvtDu3Hlyds=", - "requires": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - } + "v8-compile-cache": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz", + "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==" }, - "stream-combiner2": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", - "integrity": "sha1-+02KFCDqNidk4hrUeAOXvry0HL4=", + "v8-to-istanbul": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", + "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", + "dev": true, "requires": { - "duplexer2": "~0.1.0", - "readable-stream": "^2.0.2" + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "dependencies": { + "convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true + } } }, - "stream-http": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.7.2.tgz", - "integrity": "sha512-c0yTD2rbQzXtSsFSVhtpvY/vS6u066PcXOX9kBB3mSO76RiUQzL340uJkGBWnlBg4/HZzqiUXtaVA7wcRcJgEw==", + "validate-npm-package-license": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", + "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", "requires": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.2.6", - "to-arraybuffer": "^1.0.0", - "xtend": "^4.0.0" + "spdx-correct": "~1.0.0", + "spdx-expression-parse": "~1.0.0" } }, - "stream-splicer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/stream-splicer/-/stream-splicer-2.0.0.tgz", - "integrity": "sha1-G2O+Q4oTPktnHMGTUZdgAXWRDYM=", - "requires": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.2" - } + "vary": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.1.tgz", + "integrity": "sha1-Z1Neu2lMHVIldFeYRmUyP1h+jTc=" }, - "stream-to-observable": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/stream-to-observable/-/stream-to-observable-0.1.0.tgz", - "integrity": "sha1-Rb8dny19wJvtgfHDB8Qw5ouEz/4=", - "dev": true + "vendors": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==" }, - "streamify": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/streamify/-/streamify-0.2.8.tgz", - "integrity": "sha1-qoEz7PQfcgc9yVYRHvI7rhzQ+60=", + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", "requires": { - "hashish": "~0.0.4" + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + }, + "dependencies": { + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + } } }, - "strict-uri-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" + "vinyl": { + "version": "0.4.6", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz", + "integrity": "sha1-LzVsh6VQolVGHza76ypbqL94SEc=", + "requires": { + "clone": "^0.2.0", + "clone-stats": "^0.0.1" + }, + "dependencies": { + "clone": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz", + "integrity": "sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8=" + } + } }, - "string-length": { + "vinyl-buffer": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-1.0.1.tgz", - "integrity": "sha1-VpcPscOFWOnnC3KL894mmsRa36w=", - "dev": true, + "resolved": "https://registry.npmjs.org/vinyl-buffer/-/vinyl-buffer-1.0.1.tgz", + "integrity": "sha1-lsGjR5uMU5JULGEgKQE7Wyf4i78=", "requires": { - "strip-ansi": "^3.0.0" + "bl": "^1.2.1", + "through2": "^2.0.3" + }, + "dependencies": { + "bl": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", + "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", + "requires": { + "readable-stream": "^2.3.5", + "safe-buffer": "^5.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==" + }, + "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" + } + }, + "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==", + "requires": { + "safe-buffer": "~5.1.0" + } + } } }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "vinyl-source-stream": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vinyl-source-stream/-/vinyl-source-stream-1.1.2.tgz", + "integrity": "sha1-YrU6E1YQqJbpjKlr7jqH8Aio54A=", "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" + "through2": "^2.0.3", + "vinyl": "^0.4.3" } }, - "string_decoder": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz", - "integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==", + "vm-browserify": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz", + "integrity": "sha1-XX6kW7755Kb/ZflUOOCofDV9WnM=", "requires": { - "safe-buffer": "~5.1.0" + "indexof": "0.0.1" } }, - "stringstream": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", - "integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=" - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "dev": true, "requires": { - "ansi-regex": "^2.0.0" + "browser-process-hrtime": "^1.0.0" } }, - "strip-bom": { + "w3c-xmlserializer": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "dev": true, "requires": { - "is-utf8": "^0.2.0" + "xml-name-validator": "^3.0.0" + }, + "dependencies": { + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "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=" + "walker": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", + "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "requires": { + "makeerror": "1.0.x" + } }, - "strip-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", - "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", + "warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/warning/-/warning-3.0.0.tgz", + "integrity": "sha1-MuU3fLVy3kqwR1O9+IIcAe1gW3w=", "requires": { - "get-stdin": "^4.0.1" + "loose-envify": "^1.0.0" } }, - "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=" - }, - "style-loader": { - "version": "0.17.0", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.17.0.tgz", - "integrity": "sha1-6CVLzNt690vVgnTjYQe01atN8xA=", + "watchify": { + "version": "3.11.1", + "resolved": "https://registry.npmjs.org/watchify/-/watchify-3.11.1.tgz", + "integrity": "sha512-WwnUClyFNRMB2NIiHgJU9RQPQNqVeFk7OmZaWf5dC5EnNa0Mgr7imBydbaJ7tGTuPM2hz1Cb4uiBvK9NVxMfog==", "requires": { - "loader-utils": "^1.0.2" + "anymatch": "^2.0.0", + "browserify": "^16.1.0", + "chokidar": "^2.1.1", + "defined": "^1.0.0", + "outpipe": "^1.1.0", + "through2": "^2.0.0", + "xtend": "^4.0.0" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "browser-resolve": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-2.0.0.tgz", + "integrity": "sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ==", + "requires": { + "resolve": "^1.17.0" + }, + "dependencies": { + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + } + } + }, + "browserify": { + "version": "16.5.2", + "resolved": "https://registry.npmjs.org/browserify/-/browserify-16.5.2.tgz", + "integrity": "sha512-TkOR1cQGdmXU9zW4YukWzWVSJwrxmNdADFbqbE3HFgQWe5wqZmOawqZ7J/8MPCwk/W8yY7Y0h+7mOtcZxLP23g==", + "requires": { + "JSONStream": "^1.0.3", + "assert": "^1.4.0", + "browser-pack": "^6.0.1", + "browser-resolve": "^2.0.0", + "browserify-zlib": "~0.2.0", + "buffer": "~5.2.1", + "cached-path-relative": "^1.0.0", + "concat-stream": "^1.6.0", + "console-browserify": "^1.1.0", + "constants-browserify": "~1.0.0", + "crypto-browserify": "^3.0.0", + "defined": "^1.0.0", + "deps-sort": "^2.0.0", + "domain-browser": "^1.2.0", + "duplexer2": "~0.1.2", + "events": "^2.0.0", + "glob": "^7.1.0", + "has": "^1.0.0", + "htmlescape": "^1.1.0", + "https-browserify": "^1.0.0", + "inherits": "~2.0.1", + "insert-module-globals": "^7.0.0", + "labeled-stream-splicer": "^2.0.0", + "mkdirp-classic": "^0.5.2", + "module-deps": "^6.2.3", + "os-browserify": "~0.3.0", + "parents": "^1.0.1", + "path-browserify": "~0.0.0", + "process": "~0.11.0", + "punycode": "^1.3.2", + "querystring-es3": "~0.2.0", + "read-only-stream": "^2.0.0", + "readable-stream": "^2.0.2", + "resolve": "^1.1.4", + "shasum": "^1.0.0", + "shell-quote": "^1.6.1", + "stream-browserify": "^2.0.0", + "stream-http": "^3.0.0", + "string_decoder": "^1.1.1", + "subarg": "^1.0.0", + "syntax-error": "^1.1.1", + "through2": "^2.0.0", + "timers-browserify": "^1.0.1", + "tty-browserify": "0.0.1", + "url": "~0.11.0", + "util": "~0.10.1", + "vm-browserify": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "requires": { + "pako": "~1.0.5" + } + }, + "buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.2.1.tgz", + "integrity": "sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg==", + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4" + } + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "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": { + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + } + } + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "detective": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz", + "integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==", + "requires": { + "acorn-node": "^1.6.1", + "defined": "^1.0.0", + "minimist": "^1.1.1" + } + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" + }, + "events": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/events/-/events-2.1.0.tgz", + "integrity": "sha512-3Zmiobend8P9DjmKAty0Era4jV8oJ0yGYe2nJJAxgymF9+N8F2m0hhZiMoWtcfepExzNKZumFU3ksdQbInGWCg==" + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "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": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "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==" + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "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", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "requires": { + "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": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "requires": { + "is-extglob": "^2.1.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==", + "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==", + "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==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + }, + "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==" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "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" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "module-deps": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/module-deps/-/module-deps-6.2.3.tgz", + "integrity": "sha512-fg7OZaQBcL4/L+AK5f4iVqf9OMbCclXfy/znXRxTVhJSeW5AIlS9AwheYwDaXM3lVW7OBeaeUEY3gbaC6cLlSA==", + "requires": { + "JSONStream": "^1.0.3", + "browser-resolve": "^2.0.0", + "cached-path-relative": "^1.0.2", + "concat-stream": "~1.6.0", + "defined": "^1.0.0", + "detective": "^5.2.0", + "duplexer2": "^0.1.2", + "inherits": "^2.0.1", + "parents": "^1.0.0", + "readable-stream": "^2.0.2", + "resolve": "^1.4.0", + "stream-combiner2": "^1.1.1", + "subarg": "^1.0.0", + "through2": "^2.0.0", + "xtend": "^4.0.0" + }, + "dependencies": { + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + } + } + }, + "nan": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", + "optional": true + }, + "pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "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==" + }, + "stream-http": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-3.2.0.tgz", + "integrity": "sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==", + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "xtend": "^4.0.2" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "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" + } + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + } + } + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "tty-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.1.tgz", + "integrity": "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==" + }, + "vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + } } }, - "subarg": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz", - "integrity": "sha1-9izxdYHplrSPyWVpn1TAauJouNI=", + "watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", "requires": { - "minimist": "^1.1.0" + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" }, "dependencies": { - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "optional": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "optional": true + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "optional": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "optional": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.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==", + "optional": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "optional": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "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==", + "optional": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "optional": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "optional": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "optional": true + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "optional": true + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "optional": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "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==", + "optional": true, + "requires": { + "is-number": "^7.0.0" + } } } }, - "superagent": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/superagent/-/superagent-3.8.3.tgz", - "integrity": "sha512-GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA==", + "watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "optional": true, "requires": { - "component-emitter": "^1.2.0", - "cookiejar": "^2.1.0", - "debug": "^3.1.0", - "extend": "^3.0.0", - "form-data": "^2.3.1", - "formidable": "^1.2.0", - "methods": "^1.1.1", - "mime": "^1.4.1", - "qs": "^6.5.1", - "readable-stream": "^2.3.5" + "chokidar": "^2.1.8" }, "dependencies": { - "combined-stream": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz", - "integrity": "sha1-cj599ugBrFYTETp+RFqbactjKBg=", + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "optional": true, "requires": { - "delayed-stream": "~1.0.0" + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "optional": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "optional": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "optional": true + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "optional": true, + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } } }, - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "optional": true, "requires": { - "ms": "2.0.0" + "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" } }, - "form-data": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz", - "integrity": "sha1-SXBJi+YEwgwAXU9cI67NIda0kJk=", + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "optional": true, "requires": { - "asynckit": "^0.4.0", - "combined-stream": "1.0.6", - "mime-types": "^2.1.12" + "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": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "optional": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "optional": 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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "optional": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "optional": 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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "optional": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "optional": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "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==", + "optional": true + } } }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - }, - "process-nextick-args": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "optional": 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", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "optional": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } }, - "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "optional": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "optional": 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" + "bindings": "^1.5.0", + "nan": "^2.12.1" } }, - "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==", + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "optional": true, "requires": { - "safe-buffer": "~5.1.0" + "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": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "optional": true, + "requires": { + "is-extglob": "^2.1.0" + } + } } - } - } - }, - "supports-color": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.2.0.tgz", - "integrity": "sha512-Ts0Mu/A1S1aZxEJNG88I4Oc9rcZSBFNac5e27yh4j2mqbhZSSzR1Ah79EYwSn9Zuh7lrlGD2cVGzw1RKGzyLSg==", - "requires": { - "has-flag": "^2.0.0" - } - }, - "svg-tag-names": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/svg-tag-names/-/svg-tag-names-1.1.1.tgz", - "integrity": "sha1-lkGynvcQJe4JTHBD983efZn71Qo=" - }, - "svgo": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz", - "integrity": "sha1-n1dyQTlSE1xv779Ar+ak+qiLS7U=", - "requires": { - "coa": "~1.0.1", - "colors": "~1.1.2", - "csso": "~2.3.1", - "js-yaml": "~3.7.0", - "mkdirp": "~0.5.1", - "sax": "~1.2.1", - "whet.extend": "~0.9.9" - } - }, - "symbol-observable": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.4.tgz", - "integrity": "sha1-Kb9hXUqnEhvdiYsi1LP5vE4qoD0=" - }, - "symbol-tree": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.2.tgz", - "integrity": "sha1-rifbOPZgp64uHDt9G8KQgZuFGeY=" - }, - "syntax-error": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/syntax-error/-/syntax-error-1.3.0.tgz", - "integrity": "sha1-HtkmbE1AvnXcVb+bsct3Biu5bKE=", - "requires": { - "acorn": "^4.0.3" - } - }, - "table": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/table/-/table-3.8.3.tgz", - "integrity": "sha1-K7xULw/amGGnVdOUf+/Ys/UThV8=", - "requires": { - "ajv": "^4.7.0", - "ajv-keywords": "^1.0.0", - "chalk": "^1.1.1", - "lodash": "^4.0.0", - "slice-ansi": "0.0.4", - "string-width": "^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=" }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + "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==", + "optional": true, + "requires": { + "kind-of": "^6.0.0" + } }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "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==", + "optional": 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" + "kind-of": "^6.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=" + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "optional": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } }, - "string-width": { + "is-extglob": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "optional": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "optional": true, "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "optional": true, + "requires": { + "kind-of": "^3.0.2" }, "dependencies": { - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "optional": true, "requires": { - "ansi-regex": "^3.0.0" + "is-buffer": "^1.1.5" } } } }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } - }, - "tapable": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-0.2.6.tgz", - "integrity": "sha1-IGvo4YiGC1FEJTdebxrom/sB/Y0=" - }, - "tape": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/tape/-/tape-2.3.3.tgz", - "integrity": "sha1-Lnzgox3wn41oUWZKcYQuDKUFevc=", - "requires": { - "deep-equal": "~0.1.0", - "defined": "~0.0.0", - "inherits": "~2.0.1", - "jsonify": "~0.0.0", - "resumer": "~0.0.0", - "through": "~2.3.4" - }, - "dependencies": { - "deep-equal": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-0.1.2.tgz", - "integrity": "sha1-skbCuApXCkfBG+HZvRBw7IeLh84=" + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "optional": true }, - "defined": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/defined/-/defined-0.0.0.tgz", - "integrity": "sha1-817qfXBekzuvE7LwOz+D2SFAOz4=" - } - } - }, - "tar": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz", - "integrity": "sha1-jk0qJWwOIYXGsYrWlK7JaLg8sdE=", - "requires": { - "block-stream": "*", - "fstream": "^1.0.2", - "inherits": "2" - } - }, - "test-exclude": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-4.1.1.tgz", - "integrity": "sha512-35+Asrsk3XHJDBgf/VRFexPgh3UyETv8IAn/LRTiZjVy6rjPVqdEk8dJcJYBzl1w0XCJM48lvTy8SfEsCWS4nA==", - "requires": { - "arrify": "^1.0.1", - "micromatch": "^2.3.11", - "object-assign": "^4.1.0", - "read-pkg-up": "^1.0.1", - "require-main-filename": "^1.0.1" - } - }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" - }, - "thenify": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.0.tgz", - "integrity": "sha1-5p44obq+lpsBCCB5eLn2K4hgSDk=", - "requires": { - "any-promise": "^1.0.0" - } - }, - "thenify-all": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=", - "requires": { - "thenify": ">= 3.1.0 < 4" - } - }, - "throat": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/throat/-/throat-3.2.0.tgz", - "integrity": "sha512-/EY8VpvlqJ+sFtLPeOgc8Pl7kQVOWv0woD87KTXVHPIAE842FGT+rokxIhe8xIUP1cfgrkt0as0vDLjDiMtr8w==", - "dev": true - }, - "throttleit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", - "integrity": "sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw=" - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" - }, - "through2": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", - "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", - "requires": { - "readable-stream": "^2.1.5", - "xtend": "~4.0.1" - } - }, - "thunky": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/thunky/-/thunky-0.1.0.tgz", - "integrity": "sha1-vzAUaCTituZ7Dy16Ssi+smkIaE4=" - }, - "timers-browserify": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz", - "integrity": "sha1-ycWLV1voQHN1y14kYtrO50NZ9B0=", - "requires": { - "process": "~0.11.0" - } - }, - "timers-ext": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.2.tgz", - "integrity": "sha1-YcxHp2wavTGV8UUn+XjViulMUgQ=", - "requires": { - "es5-ext": "~0.10.14", - "next-tick": "1" - }, - "dependencies": { - "next-tick": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", - "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" + "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==", + "optional": true + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "optional": true, + "requires": { + "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" + } + }, + "nan": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", + "optional": true + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "optional": 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==", + "optional": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } } } }, - "timespan": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/timespan/-/timespan-2.3.0.tgz", - "integrity": "sha1-SQLOBAvRPYRcj1myfp1ZutbzmSk=" - }, - "tiny-emitter": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.0.1.tgz", - "integrity": "sha1-5lkZ2R5Ijip49+voJ6VsaxiNUa8=" - }, - "tmatch": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/tmatch/-/tmatch-2.0.1.tgz", - "integrity": "sha1-DFYkbzPzDaG409colauvFmYPOM8=" - }, - "tmpl": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", - "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=" - }, - "to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" - }, - "to-fast-properties": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", - "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=" - }, - "to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", "requires": { - "kind-of": "^3.0.2" + "minimalistic-assert": "^1.0.0" } }, - "to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "requires": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - } + "webidl-conversions": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.1.tgz", + "integrity": "sha1-gBWherg+fhsxFjhIas6B2mziBqA=" }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" + "webpack": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.19.1.tgz", + "integrity": "sha512-j7Q/5QqZRqIFXJvC0E59ipLV5Hf6lAnS3ezC3I4HMUybwEDikQBVad5d+IpPtmaQPQArvgUZLXIN6lWijHBn4g==", + "requires": { + "@webassemblyjs/ast": "1.7.6", + "@webassemblyjs/helper-module-context": "1.7.6", + "@webassemblyjs/wasm-edit": "1.7.6", + "@webassemblyjs/wasm-parser": "1.7.6", + "acorn": "^5.6.2", + "acorn-dynamic-import": "^3.0.0", + "ajv": "^6.1.0", + "ajv-keywords": "^3.1.0", + "chrome-trace-event": "^1.0.0", + "enhanced-resolve": "^4.1.0", + "eslint-scope": "^4.0.0", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.3.0", + "loader-utils": "^1.1.0", + "memory-fs": "~0.4.1", + "micromatch": "^3.1.8", + "mkdirp": "~0.5.0", + "neo-async": "^2.5.0", + "node-libs-browser": "^2.0.0", + "schema-utils": "^0.4.4", + "tapable": "^1.1.0", + "uglifyjs-webpack-plugin": "^1.2.4", + "watchpack": "^1.5.0", + "webpack-sources": "^1.2.0" }, "dependencies": { + "acorn": { + "version": "5.7.4", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", + "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==" + }, + "acorn-dynamic-import": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz", + "integrity": "sha512-zVWV8Z8lislJoOKKqdNMOB+s6+XV5WERty8MnKBeFgwA+19XJjJHs2RP5dzM57FftIs+jQnRToLiWazKr6sSWg==", + "requires": { + "acorn": "^5.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "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-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==" + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "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==", + "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": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "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", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "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==", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-accessor-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", + "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", + "requires": { + "hasown": "^2.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", + "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", + "requires": { + "hasown": "^2.0.0" + } + }, + "is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + }, "is-number": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", "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==", + "requires": { + "is-buffer": "^1.1.5" + } + } } - } - } - }, - "toposort": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/toposort/-/toposort-1.0.7.tgz", - "integrity": "sha1-LmhELZ9k7HILjMieZEOsbKqVACk=" - }, - "tough-cookie": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.2.tgz", - "integrity": "sha1-8IH3bkyFcg5sN6X6ztc3FQ2EByo=", - "requires": { - "punycode": "^1.4.1" - } - }, - "tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" - }, - "traverse": { - "version": "0.6.6", - "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz", - "integrity": "sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=" - }, - "traverse-chain": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/traverse-chain/-/traverse-chain-0.1.0.tgz", - "integrity": "sha1-YdvC1Ttp/2CRoSoWj9fUMxB+QPE=", - "optional": true - }, - "trim-newlines": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", - "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=" - }, - "trim-right": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", - "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=" - }, - "tryit": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/tryit/-/tryit-1.0.3.tgz", - "integrity": "sha1-OTvnMKlEb9Hq1tpZoBQwjzbCics=" - }, - "tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", - "optional": true - }, - "twemoji": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/twemoji/-/twemoji-2.3.0.tgz", - "integrity": "sha1-RbSvQpLULy/fLY7FuG1aiplrwBg=" - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", - "requires": { - "prelude-ls": "~1.1.2" + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + }, + "json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "requires": { + "minimist": "^1.2.0" + } + }, + "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==" + }, + "loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "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" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + } } }, - "type-detect": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-1.0.0.tgz", - "integrity": "sha1-diIXzAbbJY7EiQihKY6LlRIejqI=" - }, - "type-is": { - "version": "1.6.15", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz", - "integrity": "sha1-yrEPtJCeRByChC6v4a1kbIGARBA=", + "webpack-bundle-tracker": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/webpack-bundle-tracker/-/webpack-bundle-tracker-0.4.3.tgz", + "integrity": "sha512-Sl/+OsNhFAH3/c6XADupRu8jLvGojfXX0pZIIm3O5ZcJqkHHqlY4nLG+NVRcbDgM/jOeWimKDGQMVEa8FBeJ2g==", "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.15" + "deep-extend": "^0.6.0", + "mkdirp": "^0.5.1", + "strip-ansi": "^5.2.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==" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + } } }, - "typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" - }, - "ua-parser-js": { - "version": "0.7.13", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.13.tgz", - "integrity": "sha1-zZ3S+GSTs/RNvu7zeA/adMXuFL4=" - }, - "uglify-js": { - "version": "2.8.29", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", - "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", + "webpack-cli": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.0.4.tgz", + "integrity": "sha512-r5R0hMck4GxUS6a3TXClwi1KhQfnHZRtIfXqsSytQZG4kawKMhTtd5//uNZGoGks/h61Zv5jMnR6jwx15Qf8dA==", "requires": { - "source-map": "~0.5.1", - "uglify-to-browserify": "~1.0.0", - "yargs": "~3.10.0" + "chalk": "^2.4.1", + "cross-spawn": "^6.0.5", + "enhanced-resolve": "^4.0.0", + "global-modules-path": "^2.1.0", + "import-local": "^1.0.0", + "inquirer": "^6.0.0", + "interpret": "^1.1.0", + "loader-utils": "^1.1.0", + "supports-color": "^5.4.0", + "v8-compile-cache": "^2.0.0", + "yargs": "^11.1.0" }, "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==" + }, + "ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==" + }, + "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==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, "camelcase": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", - "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=" + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha512-FxAv7HpHrXbh3aPo4o2qxHay2lkLY3x5Mw3KeE4KQE8ysVfziWeRZDwcjauvwBSGEC/nXUPzZy8zeh4HokqOnw==" }, - "cliui": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "cli-cursor": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", - "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", "requires": { - "center-align": "^0.1.1", - "right-align": "^0.1.1", - "wordwrap": "0.0.2" + "restore-cursor": "^2.0.0" } }, - "wordwrap": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", - "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=" + "cliui": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", + "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", + "requires": { + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0", + "wrap-ansi": "^2.0.0" + }, + "dependencies": { + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", + "requires": { + "ansi-regex": "^3.0.0" + } + } + } }, - "yargs": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", - "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", "requires": { - "camelcase": "^1.0.2", - "cliui": "^2.1.0", - "decamelize": "^1.0.0", - "window-size": "0.1.0" + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" } - } - } - }, - "uglify-to-browserify": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", - "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", - "optional": true - }, - "uglifyjs-webpack-plugin": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz", - "integrity": "sha1-uVH0q7a9YX5m9j64kUmOORdj4wk=", - "requires": { - "source-map": "^0.5.6", - "uglify-js": "^2.8.29", - "webpack-sources": "^1.0.1" - } - }, - "ultron": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz", - "integrity": "sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po=" - }, - "umd": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/umd/-/umd-3.0.1.tgz", - "integrity": "sha1-iuVW4RAR9jwllnCKiDclnwGz1g4=" - }, - "underscore": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz", - "integrity": "sha1-YaajIBBiKvoHljvzJSA88SI51gQ=" - }, - "union-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz", - "integrity": "sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=", - "requires": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^0.4.3" - }, - "dependencies": { - "extend-shallow": { + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "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" + } + }, + "figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "requires": { + "pump": "^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==" + }, + "inquirer": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.5.2.tgz", + "integrity": "sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==", + "requires": { + "ansi-escapes": "^3.2.0", + "chalk": "^2.4.2", + "cli-cursor": "^2.1.0", + "cli-width": "^2.0.0", + "external-editor": "^3.0.3", + "figures": "^2.0.0", + "lodash": "^4.17.12", + "mute-stream": "0.0.7", + "run-async": "^2.2.0", + "rxjs": "^6.4.0", + "string-width": "^2.1.0", + "strip-ansi": "^5.1.0", + "through": "^2.3.6" + } + }, + "interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" + }, + "invert-kv": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", + "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==" + }, + "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==" + }, + "json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "requires": { + "minimist": "^1.2.0" + } + }, + "lcid": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", + "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", + "requires": { + "invert-kv": "^2.0.0" + } + }, + "loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "mem": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", + "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", + "requires": { + "map-age-cleaner": "^0.1.1", + "mimic-fn": "^2.0.0", + "p-is-promise": "^2.0.0" + }, + "dependencies": { + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + } + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" + }, + "mute-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", + "integrity": "sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==" + }, + "onetime": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", "requires": { - "is-extendable": "^0.1.0" + "mimic-fn": "^1.0.0" } }, - "set-value": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz", - "integrity": "sha1-fbCPnT0i3H945Trzw79GZuzfzPE=", + "os-locale": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", + "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.1", - "to-object-path": "^0.3.0" + "execa": "^1.0.0", + "lcid": "^2.0.0", + "mem": "^4.0.0" } - } - } - }, - "uniq": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", - "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" - }, - "uniqid": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/uniqid/-/uniqid-4.1.1.tgz", - "integrity": "sha1-iSIN32t1GuUrX3JISGNShZa7hME=", - "requires": { - "macaddress": "^0.2.8" - } - }, - "uniqs": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", - "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=" - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" - }, - "unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", - "requires": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "dependencies": { - "has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + } + }, + "run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==" + }, + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", "requires": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" }, "dependencies": { - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==", "requires": { - "isarray": "1.0.0" + "ansi-regex": "^3.0.0" } } } }, - "has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.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==" + } + } }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" - } - } - }, - "upper-case": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", - "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=" - }, - "uppercamelcase": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/uppercamelcase/-/uppercamelcase-1.1.0.tgz", - "integrity": "sha1-Mk2YprOvx+iolT4QZBUJsOTiP5c=", - "requires": { - "camelcase": "^1.2.1" - }, - "dependencies": { - "camelcase": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", - "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=" - } - } - }, - "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==", - "requires": { - "punycode": "^2.1.0" - }, - "dependencies": { - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" - } - } - }, - "urijs": { - "version": "1.19.1", - "resolved": "https://registry.npmjs.org/urijs/-/urijs-1.19.1.tgz", - "integrity": "sha512-xVrGVi94ueCJNrBSTjWqjvtgvl3cyOTThp2zaMaFNGp3F542TR6sM3f2o8RqZl+AwteClSVmoCyt0ka4RjQOQg==" - }, - "urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" - }, - "url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", - "requires": { - "punycode": "1.3.2", - "querystring": "0.2.0" - }, - "dependencies": { - "punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" - } - } - }, - "url-loader": { - "version": "0.5.9", - "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-0.5.9.tgz", - "integrity": "sha512-B7QYFyvv+fOBqBVeefsxv6koWWtjmHaMFT6KZWti4KRw8YUD/hOU+3AECvXuzyVawIBx3z7zQRejXCDSO5kk1Q==", - "requires": { - "loader-utils": "^1.0.2", - "mime": "1.3.x" - } - }, - "url-parse": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.1.9.tgz", - "integrity": "sha1-xn8dd11R8KGJEd17P/rSe7nlvRk=", - "requires": { - "querystringify": "~1.0.0", - "requires-port": "1.0.x" - }, - "dependencies": { - "querystringify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-1.0.0.tgz", - "integrity": "sha1-YoYkIRLFtxL6ZU5SZlK/ahP/Bcs=" - } - } - }, - "use": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.0.tgz", - "integrity": "sha512-6UJEQM/L+mzC3ZJNM56Q4DFGLX/evKGRg15UJHGB9X5j5Z3AFbgZvjUh2yq/UJUY4U5dh7Fal++XbNg1uzpRAw==", - "requires": { - "kind-of": "^6.0.2" - }, - "dependencies": { - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==" - } - } - }, - "user-home": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz", - "integrity": "sha1-nHC/2Babwdy/SGBODwS4tJzenp8=", - "requires": { - "os-homedir": "^1.0.0" - } - }, - "util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", - "requires": { - "inherits": "2.0.1" - }, - "dependencies": { - "inherits": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "which-module": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" - } - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, - "utila": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", - "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" - }, - "utile": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/utile/-/utile-0.2.1.tgz", - "integrity": "sha1-kwyI6ZCY1iIINMNWy9mncFItkNc=", - "requires": { - "async": "~0.2.9", - "deep-equal": "*", - "i": "0.3.x", - "mkdirp": "0.x.x", - "ncp": "0.4.x", - "rimraf": "2.x.x" - }, - "dependencies": { - "async": { - "version": "0.2.10", - "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", - "integrity": "sha1-trvgsGdLnXGXCMo43owjfLUmw9E=" + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", + "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" + }, + "yargs": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-11.1.1.tgz", + "integrity": "sha512-PRU7gJrJaXv3q3yQZ/+/X6KBswZiaQ+zOmdprZcouPYtQgvNU35i+68M4b1ZHLZtYFT5QObFLV+ZkmJYcwKdiw==", + "requires": { + "cliui": "^4.0.0", + "decamelize": "^1.1.1", + "find-up": "^2.1.0", + "get-caller-file": "^1.0.1", + "os-locale": "^3.1.0", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^2.0.0", + "which-module": "^2.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^9.0.2" + } + }, + "yargs-parser": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-9.0.2.tgz", + "integrity": "sha512-CswCfdOgCr4MMsT1GzbEJ7Z2uYudWyrGX8Bgh/0eyCzj/DXWdKq6a/ADufkzI1WAOIW6jYaXJvRyLhDO0kfqBw==", + "requires": { + "camelcase": "^4.1.0" + } } } }, - "utils-merge": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz", - "integrity": "sha1-ApT7kiu5N1FTVBxPcJYjHyh8ivg=" - }, - "uuid": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.1.0.tgz", - "integrity": "sha512-DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g==" - }, - "validate-npm-package-license": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", - "integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=", - "requires": { - "spdx-correct": "~1.0.0", - "spdx-expression-parse": "~1.0.0" - } - }, - "vary": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.1.tgz", - "integrity": "sha1-Z1Neu2lMHVIldFeYRmUyP1h+jTc=" - }, - "vendors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.1.tgz", - "integrity": "sha1-N61zyO5Bf7PVgOeFMSMH0nSEfyI=" - }, - "verror": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz", - "integrity": "sha1-z/XfEpRtKX0rqu+qJoniW+AcAFw=", - "requires": { - "extsprintf": "1.0.2" - } - }, - "vinyl": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz", - "integrity": "sha1-LzVsh6VQolVGHza76ypbqL94SEc=", + "webpack-dev-middleware": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-1.11.0.tgz", + "integrity": "sha1-CWkdCXOjCtH4Ksc6EuIIfwpHVPk=", "requires": { - "clone": "^0.2.0", - "clone-stats": "^0.0.1" - }, - "dependencies": { - "clone": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz", - "integrity": "sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8=" - } + "memory-fs": "~0.4.1", + "mime": "^1.3.4", + "path-is-absolute": "^1.0.0", + "range-parser": "^1.0.3" } }, - "vinyl-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/vinyl-buffer/-/vinyl-buffer-1.0.0.tgz", - "integrity": "sha1-ygZ+oIQx1QdyKx3lCD9gJhbrwjQ=", + "webpack-dev-server": { + "version": "2.11.5", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-2.11.5.tgz", + "integrity": "sha512-7TdOKKt7G3sWEhPKV0zP+nD0c4V9YKUJ3wDdBwQsZNo58oZIRoVIu66pg7PYkBW8A74msP9C2kLwmxGHndz/pw==", "requires": { - "bl": "^0.9.1", - "through2": "^0.6.1" + "ansi-html": "0.0.7", + "array-includes": "^3.0.3", + "bonjour": "^3.5.0", + "chokidar": "^2.1.2", + "compression": "^1.7.3", + "connect-history-api-fallback": "^1.3.0", + "debug": "^3.1.0", + "del": "^3.0.0", + "express": "^4.16.2", + "html-entities": "^1.2.0", + "http-proxy-middleware": "^0.19.1", + "import-local": "^1.0.0", + "internal-ip": "1.2.0", + "ip": "^1.1.5", + "killable": "^1.0.0", + "loglevel": "^1.4.1", + "opn": "^5.1.0", + "portfinder": "^1.0.9", + "selfsigned": "^1.9.1", + "serve-index": "^1.9.1", + "sockjs": "0.3.19", + "sockjs-client": "1.1.5", + "spdy": "^4.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^5.1.0", + "webpack-dev-middleware": "1.12.2", + "yargs": "6.6.0" }, "dependencies": { - "bl": { - "version": "0.9.5", - "resolved": "https://registry.npmjs.org/bl/-/bl-0.9.5.tgz", - "integrity": "sha1-wGt5evCF6gC8Unr8jvzxHeIjIFQ=", + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", "requires": { - "readable-stream": "~1.0.26" + "mime-types": "~2.1.24", + "negotiator": "0.6.2" } }, - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } }, - "readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" + "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" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } } }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + }, + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "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" + } + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "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==", + "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==", + "requires": { + "ms": "2.0.0" + } + } + } + }, + "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" + }, + "dependencies": { + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + } + }, + "del": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/del/-/del-3.0.0.tgz", + "integrity": "sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU=", + "requires": { + "globby": "^6.1.0", + "is-path-cwd": "^1.0.0", + "is-path-in-cwd": "^1.0.0", + "p-map": "^1.1.1", + "pify": "^3.0.0", + "rimraf": "^2.2.8" + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "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==", + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "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==" + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "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", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + } + } }, - "through2": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", - "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "optional": true, "requires": { - "readable-stream": ">=1.0.33-1 <1.1.0-0", - "xtend": ">=4.0.0 <4.1.0-0" + "bindings": "^1.5.0", + "nan": "^2.12.1" } - } - } - }, - "vinyl-source-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/vinyl-source-stream/-/vinyl-source-stream-1.1.0.tgz", - "integrity": "sha1-RMvlEIIFJ53rDFZTwJSiiHk4sas=", - "requires": { - "through2": "^0.6.1", - "vinyl": "^0.4.3" - }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" }, - "readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" + "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": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "requires": { + "is-extglob": "^2.1.0" + } + } } }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=" - }, - "through2": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", - "integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=", + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", "requires": { - "readable-stream": ">=1.0.33-1 <1.1.0-0", - "xtend": ">=4.0.0 <4.1.0-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": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } } - } - } - }, - "vm-browserify": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz", - "integrity": "sha1-XX6kW7755Kb/ZflUOOCofDV9WnM=", - "requires": { - "indexof": "0.0.1" - } - }, - "walker": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", - "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", - "requires": { - "makeerror": "1.0.x" - } - }, - "warning": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/warning/-/warning-3.0.0.tgz", - "integrity": "sha1-MuU3fLVy3kqwR1O9+IIcAe1gW3w=", - "requires": { - "loose-envify": "^1.0.0" - } - }, - "watch": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/watch/-/watch-0.10.0.tgz", - "integrity": "sha1-d3mLLaD5kQ1ZXxrOWwwiWFIfIdw=", - "dev": true - }, - "watchify": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/watchify/-/watchify-3.9.0.tgz", - "integrity": "sha1-8HX9LoqGrN6Eztum5cKgvt1SPZ4=", - "requires": { - "anymatch": "^1.3.0", - "browserify": "^14.0.0", - "chokidar": "^1.0.0", - "defined": "^1.0.0", - "outpipe": "^1.1.0", - "through2": "^2.0.0", - "xtend": "^4.0.0" - } - }, - "watchpack": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.4.0.tgz", - "integrity": "sha1-ShRyvLuVK9Cpu0A2gB+VTfs5+qw=", - "requires": { - "async": "^2.1.2", - "chokidar": "^1.7.0", - "graceful-fs": "^4.1.2" - } - }, - "wbuf": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.2.tgz", - "integrity": "sha1-1pe5nx9ZUS3ydRvkJ2nBWAtYAf4=", - "requires": { - "minimalistic-assert": "^1.0.0" - } - }, - "webidl-conversions": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.1.tgz", - "integrity": "sha1-gBWherg+fhsxFjhIas6B2mziBqA=" - }, - "webpack": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-2.7.0.tgz", - "integrity": "sha512-MjAA0ZqO1ba7ZQJRnoCdbM56mmFpipOPUv/vQpwwfSI42p5PVDdoiuK2AL2FwFUVgT859Jr43bFZXRg/LNsqvg==", - "requires": { - "acorn": "^5.0.0", - "acorn-dynamic-import": "^2.0.0", - "ajv": "^4.7.0", - "ajv-keywords": "^1.1.1", - "async": "^2.1.2", - "enhanced-resolve": "^3.3.0", - "interpret": "^1.0.0", - "json-loader": "^0.5.4", - "json5": "^0.5.1", - "loader-runner": "^2.3.0", - "loader-utils": "^0.2.16", - "memory-fs": "~0.4.1", - "mkdirp": "~0.5.0", - "node-libs-browser": "^2.0.0", - "source-map": "^0.5.3", - "supports-color": "^3.1.0", - "tapable": "~0.2.5", - "uglify-js": "^2.8.27", - "watchpack": "^1.3.1", - "webpack-sources": "^1.0.1", - "yargs": "^6.0.0" - }, - "dependencies": { - "acorn": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.1.1.tgz", - "integrity": "sha512-vOk6uEMctu0vQrvuSqFdJyqj1Q0S5VTDL79qtjo+DhRr+1mmaD+tluFSCZqhvi/JUhXSzoZN2BhtstaPEeE8cw==" }, - "camelcase": { + "has-flag": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" }, - "has-flag": { + "is-accessor-descriptor": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" - }, - "loader-utils": { - "version": "0.2.17", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", - "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", "requires": { - "big.js": "^3.1.3", - "emojis-list": "^2.0.0", - "json5": "^0.5.0", - "object-assign": "^4.0.1" + "kind-of": "^6.0.0" } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "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==", "requires": { - "has-flag": "^1.0.0" + "kind-of": "^6.0.0" } }, - "yargs": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz", - "integrity": "sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg=", + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", "requires": { - "camelcase": "^3.0.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^1.4.0", - "read-pkg-up": "^1.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^1.0.2", - "which-module": "^1.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^4.2.0" + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" } }, - "yargs-parser": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz", - "integrity": "sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw=", + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "requires": { - "camelcase": "^3.0.0" + "is-extglob": "^2.1.1" } - } - } - }, - "webpack-bundle-tracker": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/webpack-bundle-tracker/-/webpack-bundle-tracker-0.2.0.tgz", - "integrity": "sha1-KRGYs3TwQKnFIEbs0m30XwCgc8M=", - "requires": { - "deep-extend": "^0.4.1", - "mkdirp": "^0.5.1", - "strip-ansi": "^2.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-1.1.1.tgz", - "integrity": "sha1-QchHGUZGN15qGl0Qw8oFTvn8mA0=" }, - "strip-ansi": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz", - "integrity": "sha1-32LBqpTtLxFOHQ8h/R1QSCt5pg4=", + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", "requires": { - "ansi-regex": "^1.0.0" + "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": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } } - } - } - }, - "webpack-dev-middleware": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-1.11.0.tgz", - "integrity": "sha1-CWkdCXOjCtH4Ksc6EuIIfwpHVPk=", - "requires": { - "memory-fs": "~0.4.1", - "mime": "^1.3.4", - "path-is-absolute": "^1.0.0", - "range-parser": "^1.0.3" - } - }, - "webpack-dev-server": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-2.5.1.tgz", - "integrity": "sha1-oC5yaoe7YD211xq7fW0mSb8Qx2k=", - "requires": { - "ansi-html": "0.0.7", - "bonjour": "^3.5.0", - "chokidar": "^1.6.0", - "compression": "^1.5.2", - "connect-history-api-fallback": "^1.3.0", - "del": "^3.0.0", - "express": "^4.13.3", - "html-entities": "^1.2.0", - "http-proxy-middleware": "~0.17.4", - "internal-ip": "^1.2.0", - "opn": "4.0.2", - "portfinder": "^1.0.9", - "selfsigned": "^1.9.1", - "serve-index": "^1.7.2", - "sockjs": "0.3.18", - "sockjs-client": "1.1.2", - "spdy": "^3.4.1", - "strip-ansi": "^3.0.0", - "supports-color": "^3.1.1", - "webpack-dev-middleware": "^1.11.0", - "yargs": "^6.0.0" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" }, - "del": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/del/-/del-3.0.0.tgz", - "integrity": "sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU=", + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + }, + "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==" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", "requires": { - "globby": "^6.1.0", - "is-path-cwd": "^1.0.0", - "is-path-in-cwd": "^1.0.0", - "p-map": "^1.1.1", - "pify": "^3.0.0", - "rimraf": "^2.2.8" + "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" } }, - "globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "mime-db": { + "version": "1.50.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.50.0.tgz", + "integrity": "sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A==" + }, + "mime-types": { + "version": "2.1.33", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.33.tgz", + "integrity": "sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g==", "requires": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - } + "mime-db": "1.50.0" } }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=" + "nan": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", + "optional": true + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + }, + "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==" }, "pify": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" }, + "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==" + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "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==" + }, "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "requires": { - "has-flag": "^1.0.0" + "has-flag": "^3.0.0" + } + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + }, + "webpack-dev-middleware": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-1.12.2.tgz", + "integrity": "sha512-FCrqPy1yy/sN6U/SaEZcHKRXGlqU0DUaEBL45jkUYoB8foVb6wCnbIJ1HKIx+qUFTW+3JpVcCJCxZ8VATL4e+A==", + "requires": { + "memory-fs": "~0.4.1", + "mime": "^1.5.0", + "path-is-absolute": "^1.0.0", + "range-parser": "^1.0.3", + "time-stamp": "^2.0.0" } }, "yargs": { @@ -18685,27 +33845,22 @@ "requires": { "source-list-map": "^2.0.0", "source-map": "~0.5.3" - }, - "dependencies": { - "source-list-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.0.tgz", - "integrity": "sha512-I2UmuJSRr/T8jisiROLU3A3ltr+swpniSmNPI4Ml3ZCX6tVnDsuZzK7F2hl5jTqbZBWCEKlj5HRQiPExXLgE8A==" - } } }, "websocket-driver": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.6.5.tgz", - "integrity": "sha1-XLJVbOuF9Dc8bYI4qmkchFThOjY=", + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", "websocket-extensions": ">=0.1.1" } }, "websocket-extensions": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.1.tgz", - "integrity": "sha1-domUmcGEtu91Q3fC27DNbLVdKec=" + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" }, "whatwg-encoding": { "version": "1.0.1", @@ -18727,6 +33882,12 @@ "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz", "integrity": "sha1-nITsLc9oGH/wC8ZOEnS0QhduHIQ=" }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "dev": true + }, "whatwg-url": { "version": "4.8.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-4.8.0.tgz", @@ -18756,34 +33917,264 @@ "isexe": "^2.0.0" } }, + "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==", + "requires": { + "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" + }, + "dependencies": { + "has-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz", + "integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==" + }, + "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==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-number-object": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz", + "integrity": "sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "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==", + "requires": { + "has-symbols": "^1.0.2" + } + } + } + }, "which-module": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" }, "whois": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/whois/-/whois-2.6.0.tgz", - "integrity": "sha512-fPschemXwS7Id35Vnk3GoygHj5JgjcElVajSeF79DC+ayCm8E755PClQWvdgoOVovoag033JwZDq9Rz9+ABoJQ==", + "version": "2.14.0", + "resolved": "https://registry.npmjs.org/whois/-/whois-2.14.0.tgz", + "integrity": "sha512-Gz8bk5kXMU0CPWknN6/us/qJvh/t9H6YeAxYh7hvM7jDbefMFEATJ0IHv8oLv82svrm3JhrSvC3oIOgTuCX4uQ==", "requires": { - "optimist": "^0.6.1", - "socks": "^1.1.10", - "underscore": "^1.5.2" + "socks": "^2.2.2", + "underscore": "^1.9.1", + "yargs": "^15.4.1" }, "dependencies": { - "underscore": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz", - "integrity": "sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg==" + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.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==", + "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==" + }, + "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==" + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "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==" + }, + "ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" + }, + "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==" + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "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==", + "requires": { + "p-limit": "^2.2.0" + } + }, + "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==" + }, + "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==" + }, + "smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" + }, + "socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "requires": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + } + }, + "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==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "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==" + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + }, + "yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "requires": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.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": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + } + }, + "yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } } } }, "wide-align": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz", - "integrity": "sha512-ijDLlyQ7s6x1JgCLur53osjm/UXUYD9+0PbYKrBsYisYXzCxN+HC3mYDNy/dWdmf3AwqwU3CXwDCvsNgGK1S0w==", + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", "requires": { - "string-width": "^1.0.2" + "string-width": "^1.0.2 || 2 || 3 || 4" } }, "window-size": { @@ -18791,30 +34182,10 @@ "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=" }, - "winston": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/winston/-/winston-2.3.1.tgz", - "integrity": "sha1-C0hCDZeMAYBM8CMLZIhhWYIloRk=", - "requires": { - "async": "~1.0.0", - "colors": "1.0.x", - "cycle": "1.0.x", - "eyes": "0.1.x", - "isstream": "0.1.x", - "stack-trace": "0.0.x" - }, - "dependencies": { - "async": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async/-/async-1.0.0.tgz", - "integrity": "sha1-+PwEyjoTeErenhZBr5hXjPvWR6k=" - }, - "colors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", - "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=" - } - } + "word-wrap": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.4.tgz", + "integrity": "sha512-2V81OA4ugVo5pRo46hAoD2ivUJx8jXmWXfUkY4KFNw0hEptvN0QfH3K4nHiwzGeKl5rFKedV48QVoqYavy4YpA==" }, "wordwrap": { "version": "1.0.0", @@ -18863,12 +34234,11 @@ } }, "ws": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-1.1.1.tgz", - "integrity": "sha1-CC3bbGQehdS7RR8D1S8G6r2x8Bg=", + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", "requires": { - "options": ">=0.0.5", - "ultron": "1.0.x" + "async-limiter": "~1.0.0" } }, "xml-name-validator": { @@ -18876,6 +34246,12 @@ "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-2.0.1.tgz", "integrity": "sha1-TYuPHszTQZqjYgYb7O9RXh5VljU=" }, + "xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true + }, "xmldom": { "version": "0.1.27", "resolved": "https://registry.npmjs.org/xmldom/-/xmldom-0.1.27.tgz", @@ -18887,64 +34263,142 @@ "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" }, "y18n": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", - "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=" + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", + "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==" }, "yallist": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" }, + "yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + }, "yargs": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz", - "integrity": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=", + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, "requires": { - "camelcase": "^3.0.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^1.4.0", - "read-pkg-up": "^1.0.1", + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^1.0.2", - "which-module": "^1.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^5.0.0" + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" }, "dependencies": { - "camelcase": { + "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" + } + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.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 + }, + "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 + }, + "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 + }, + "is-fullwidth-code-point": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" + "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 + }, + "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": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "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": { + "ansi-regex": "^5.0.1" + } + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true } } }, "yargs-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz", - "integrity": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=", - "requires": { - "camelcase": "^3.0.0" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" - } - } + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" }, - "yauzl": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz", - "integrity": "sha1-lSj0QtqxsihOWLQ3m7GU4i4MQAU=", - "requires": { - "fd-slicer": "~1.0.1" - } + "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==" } } } diff --git a/package.json b/package.json index addcb33231..62b952fada 100644 --- a/package.json +++ b/package.json @@ -3,111 +3,136 @@ "version": "1.0.0", "description": "A Timetable Generator", "dependencies": { - "autoprefixer": "^7.1.1", + "@emotion/react": "^11.10.4", + "@emotion/styled": "^11.10.4", + "@mui/material": "^5.15.6", + "@reduxjs/toolkit": "^1.6.2", + "@testing-library/jest-dom": "^5.16.1", + "@testing-library/react": "^12.1.2", + "@types/lodash": "^4.14.178", + "@types/twemoji": "^13.1.2", + "@typescript-eslint/eslint-plugin": "^5.6.0", + "@typescript-eslint/parser": "^5.6.0", + "autoprefixer": "^7.2.6", "babel": "^6.23.0", - "babel-core": "^6.24.1", - "babel-jest": "^20.0.3", - "babel-loader": "^7.0.0", + "babel-core": "^6.26.3", + "babel-jest": "^27.2.5", + "babel-loader": "^7.1.5", "babel-plugin-react-transform": "^2.0.2", - "babel-plugin-transform-object-rest-spread": "^6.23.0", - "babel-polyfill": "^6.7.4", + "babel-plugin-transform-object-rest-spread": "^6.26.0", + "babel-polyfill": "^6.26.0", "babel-preset-es2015": "^6.24.1", "babel-preset-react": "^6.24.1", "babel-preset-stage-2": "^6.24.1", "babelify": "^7.2.0", - "boron": "^0.2.3", + "boron-15": "^0.3.3", "browser-filesaver": "^1.1.1", - "browserify": "^14.3.0", - "chromedriver": "^2.33.2", - "classnames": "^2.2.4", - "clipboard": "^1.7.1", - "css-loader": "^0.28.0", - "es6-promise": "^4.0.5", - "eslint": "^3.19.0", - "eslint-config-airbnb": "^15.0.1", + "browserify": "^14.5.0", + "chromedriver": "^2.46.0", + "classnames": "^2.3.1", + "clipboard": "^2.0.8", + "css-loader": "^0.28.11", + "es6-promise": "^4.2.8", + "eslint": "^8.34.0", + "eslint-config-airbnb": "^15.1.0", "eslint-loader": "^1.7.1", - "eslint-plugin-import": "^2.2.0", + "eslint-plugin-import": "^2.25.3", "eslint-plugin-jsx-a11y": "^5.0.1", - "eslint-plugin-react": "^7.0.1", + "eslint-plugin-react": "^7.27.1", "events": "^1.1.0", "expect": "^1.16.0", - "extract-text-webpack-plugin": "^2.1.0", - "fbjs": "^0.8.8", + "extract-text-webpack-plugin": "^4.0.0-beta.0", + "fbjs": "^0.8.18", "file-loader": "^0.11.1", - "ical-generator": "^0.2.9", + "follow-redirects": "^1.14.8", + "html-react-parser": "^1.4.9", + "html2canvas": "^1.4.1", + "ical-generator": "^0.2.10", + "immutability-helper": "^3.1.1", "isomorphic-fetch": "^2.2.1", - "jquery": "^3.2.1", + "jquery": "^3.6.0", "js": "^0.1.0", - "js-cookie": "^2.1.4", - "livereactload": "^3.2.0", - "lodash": "^4.17.4", - "loose-envify": "^1.1.0", - "moment": "^2.11.2", - "nock": "^9.0.13", - "node-sass": "^4.5.2", - "normalizr": "^3.2.3", - "phantom": "^4.0.0", - "phantomjs": "^2.1.7", - "postcss-loader": "^2.0.5", - "prop-types": "^15.5.10", - "radium": "^0.19.1", - "react": "^15.5.3", - "react-addons-css-transition-group": "^15.1.0", - "react-addons-shallow-compare": "^15.3.1", - "react-alert": "^2.0.1", + "js-cookie": "^2.2.1", + "livereactload": "^3.5.0", + "loader-utils": "^3.2.1", + "lodash": "^4.17.21", + "loose-envify": "^1.4.0", + "moment": "^2.29.4", + "node-sass": "^7.0.0", + "normalizr": "^3.6.1", + "postcss-loader": "^2.1.6", + "prop-types": "^15.8.1", + "react": "^16.14.0", + "react-addons-css-transition-group": "^15.6.2", + "react-addons-shallow-compare": "^15.6.3", + "react-alert": "^2.4.0", + "react-colorful": "^5.5.1", + "react-copy-to-clipboard": "^5.0.4", "react-date-picker": "^5.3.28", - "react-dnd": "^2.1.4", - "react-dnd-html5-backend": "^2.1.2", - "react-dom": "^15.1.0", + "react-dnd": "^14.0.4", + "react-dnd-html5-backend": "^14.0.2", + "react-dom": "^16.14.0", + "react-error-boundary": "^3.1.4", "react-hot-loader": "^1.3.1", - "react-input-autosize": "^1.1.0", - "react-input-range": "^1.1.3", - "react-onclickout": "^2.0.4", + "react-infinite-scroll-component": "^6.1.0", + "react-input-autosize": "^1.2.0", + "react-input-range": "^1.3.0", + "react-onclickout": "^2.0.8", "react-proxy": "^1.1.8", - "react-redux": "^5.0.2", + "react-redux": "^7.2.6", "react-render-html": "^0.1.6", - "react-select": "^1.0.0-beta13", - "react-swipeable": "^4.0.0", - "react-test-renderer": "^15.5.4", - "react-tooltip": "^3.2.6", + "react-select": "^5.3.2", + "react-swipeable": "^5.5.1", + "react-test-renderer": "^16.14.0", + "react-tooltip": "^4.2.21", "reactify": "^1.1.1", - "redux": "^3.3.1", - "redux-mock-store": "^1.2.3", - "redux-thunk": "^2.0.1", + "redux": "^4.1.2", + "redux-devtools-extension": "^2.13.9", + "redux-mock-store": "^1.5.4", + "redux-thunk": "^2.4.1", "reselect": "^3.0.1", - "sass-lint": "^1.10.2", - "sass-loader": "^6.0.3", + "rodal": "^1.8.3", + "sass-lint": "^1.13.1", "searchneu": "^1.0.6", "static-interval-tree": "^1.3.0", - "streamify": "^0.2.5", + "streamify": "^0.2.9", "style-loader": "^0.17.0", - "twemoji": "^2.2.5", + "tinycolor2": "^1.4.2", + "twemoji": "^14.0.2", + "ua-parser-js": "^1.0.33", + "uglifyjs-webpack-plugin": "^1.3.0", "url-loader": "^0.5.8", - "vinyl-buffer": "^1.0.0", - "vinyl-source-stream": "^1.1.0", - "watchify": "^3.6.1", - "webpack": "^2.4.1", - "webpack-bundle-tracker": "^0.2.0", + "vinyl-buffer": "^1.0.1", + "vinyl-source-stream": "^1.1.2", + "watchify": "^3.11.1", + "webpack": "^4.19.1", + "webpack-bundle-tracker": "^0.4.3", + "webpack-cli": "^3.0.4", "webpack-dev-server": "^2.4.2" }, "jest": { - "setupTestFrameworkScriptFile": "./misc/test_env.jsx", + "setupFilesAfterEnv": [ + "./misc/test_env.jsx" + ], "transformIgnorePatterns": [ - "node_modules/(?!react)" + "node_modules", + "__mocks__" ], "transform": { - "^.+\\.jsx?$": "babel-jest" - } + "^.+\\.(j|t)sx?$": "ts-jest" + }, + "moduleNameMapper": { + "\\.(css|less|scss)$": "/__mocks__/styleMock.js" + }, + "testEnvironment": "jest-environment-jsdom" }, "scripts": { "test": "NODE_ENV=production jest", "test:watch": "npm test -- --watch", - "build": "./node_modules/.bin/webpack --config ./webpack.config.js --progress --colors", + "build": "./node_modules/.bin/webpack --config ./webpack.config.js --progress", "watch": "node misc/server.js", - "lint-staged": "lint-staged", "lint": "./node_modules/.bin/eslint \"static/js/redux/**\"; ./node_modules/.bin/sass-lint -c .sass-lint.yml 'static/css/timetable/*.scss, static/css/timetable/**/*.scss' -v -q", "lint-fix": "./node_modules/.bin/eslint --fix \"static/js/redux/**\" ", - "lint-scss-staged": "./node_modules/.bin/sass-lint -c .sass-lint-precommit.yml -v -q", "validate": "npm ls" }, "repository": { @@ -120,25 +145,27 @@ "url": "https://github.com/rohandas/semesterly/issues" }, "homepage": "https://github.com/rohandas/semesterly#readme", - "pre-commit": [ - "lint-staged" - ], "devDependencies": { - "jest": "^20.0.1", - "lint-staged": "^3.4.0", - "nock": "^9.0.13", - "node-sass": "^4.5.2", - "precommit-hook": "^3.0.0", - "react-test-utils": "0.0.1", + "@types/clipboard": "^2.0.7", + "@types/html2canvas": "^1.0.0", + "@types/jest": "^27.0.3", + "@types/jquery": "^3.5.14", + "@types/js-cookie": "^3.0.1", + "@types/react-copy-to-clipboard": "^5.0.2", + "@types/react-swipeable": "^5.2.0", + "@types/react-tooltip": "^4.2.4", + "@types/tinycolor2": "^1.4.3", + "eslint-config-prettier": "^8.3.0", + "jest": "^27.2.5", + "jest-environment-jsdom": "^27.4.4", + "nock": "^13.2.1", + "node-sass": "^7.0.0", + "prettier": "^2.5.1", "regenerator-runtime": "^0.10.5", - "sass-loader": "^6.0.3" - }, - "lint-staged": { - "*.jsx?": [ - "eslint --fix", - "git add" - ], - "*.scss": "lint-scss-staged" + "sass-loader": "^6.0.7", + "ts-jest": "^27.1.1", + "ts-loader": "^4.4.2", + "typescript": "^4.5.3" }, "sasslintConfig": "sass-lint" } diff --git a/parsing/__init__.py b/parsing/__init__.py index 711905f957..cec0f135c0 100644 --- a/parsing/__init__.py +++ b/parsing/__init__.py @@ -26,9 +26,10 @@ def qualify(filename): """ return os.path.join(os.path.dirname(__file__), filename) -with open(qualify('logging.yaml'), 'r') as f: + +with open(qualify("logging.yaml"), "r") as f: config = f.read().format( - error_filename=qualify('logs/errors.log'), - master_filename=qualify('logs/master.log') + error_filename=qualify("logs/errors.log"), + master_filename=qualify("logs/master.log"), ) logging.config.dictConfig(yaml.safe_load(config)) diff --git a/parsing/common/bn_textbook_parser.py b/parsing/common/bn_textbook_parser.py deleted file mode 100644 index 034b1fd273..0000000000 --- a/parsing/common/bn_textbook_parser.py +++ /dev/null @@ -1,354 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from __future__ import absolute_import, division, print_function - -import re -import requests -from random import randint -from fake_useragent import UserAgent -from time import sleep - -from parsing.library.base_parser import BaseParser -from parsing.common.textbooks.amazon_textbooks import amazon_textbook_fields - -from timetable.models import Course, Section, Textbook, TextbookLink - - -class TextbookSection: - def __init__(self, section_id, name): - self.id = section_id - self.name = name - self.sections = [] - - def __str__(self): - return 'Section -- id: {}, name: {}'.format(self.id, self.name) - - -class TextbookCourse: - def __init__(self, course_id, name): - self.id = course_id - self.name = name - self.sections = [] - - def __str__(self): - return 'Course -- id: {}, name: {}'.format(self.id, self.name) - - -class TextbookDepartment: - def __init__(self, department_id, name): - self.id = department_id - self.name = name - self.courses = [] - - def __str__(self): - return 'Department -- id: {}, name: {}'.format(self.id, self.name) - - -class TextbookSemester: - def __init__(self, semester_id, name, term, year): - self.id = semester_id - self.name = name - self.term = term - self.year = year - self.departments = [] - - def __str__(self): - return 'Semester -- term: {}, year: {}, id: {}'.format(self.term, - self.year, - self.id) - - -class BarnesAndNoblesParser(BaseParser): - - # TODO - make this constructor more readable - def __init__(self, store_id, store_link, school, delimeter, term=None, year=None, **kwargs): - self.year = year - self.term = term - self.semesters = [] - self.max_textbooks = 100 - self.book_request_count = 0 - self.create_count = 0 - self.identified_count = 0 - self.isbn_pattern = re.compile(r"(?:\b\d{13}\b)", re.MULTILINE) - self.code_pattern = re.compile(r".*\.(.*)\.(.*)\s\((.*)\)") - - # TODO: This is unique to each university. - self.store_id = store_id - self.store_link = store_link - self.school = school - self.delimeter = delimeter - - self.begining_textbook_payload = "-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"storeId\"\r\n\r\n" + self.store_id + "\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"catalogId\"\r\n\r\n10001\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"langId\"\r\n\r\n-1\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"clearAll\"\r\n\r\n\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"viewName\"\r\n\r\nTBWizardView\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"secCatList\"\r\n\r\n\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"removeSectionId\"\r\n\r\n\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"mcEnabled\"\r\n\r\nN\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"showCampus\"\r\n\r\nfalse\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"selectTerm\"\r\n\r\nSelect+Term\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"selectDepartment\"\r\n\r\nSelect+Department\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"selectSection\"\r\n\r\nSelect+Section\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"selectCourse\"\r\n\r\nSelect+Course\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campus1\"\r\n\r\n14704480\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"firstTermName_14704480\"\r\n\r\nFall+2016\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"firstTermId_14704480\"\r\n\r\n73256452\r\n-----011000010111000001101001" - self.textbook_payload = TextbookPayload(self.store_id) - - super(BarnesAndNoblesParser, self).__init__(school, **kwargs) - - def start(self, - verbosity=3, - textbooks=True, - departments_filter=None, - years_and_terms_filter=None): - - # TODO - remove hardcoding of year and term and use filtering - for year, terms in years_and_terms_filter.items(): - self.year = year - for term in terms: - self.term = term - self.parse() - - def parse(self): - - self.url = 'http://{}/webapp/wcs/stores/servlet/'.format(self.store_link) - self.params = { - "campusId": "14704480", - "termId": "", - "deptId": "", - "courseId": "", - "sectionId": "", - "storeId": self.store_id, - "catalogId": "10001", - "langId": "-1", - "dropdown": "course" - } - - self.semesters = self.parse_semesters(False) - self.requester.headers = {'User-Agent': UserAgent().random} - for semester in self.semesters: - departments = self.parse_departments(semester) - for department in departments: - courses = self.parse_courses(semester, department) - for course in courses: - sections = self.parse_sections(semester, department, course) - for section in sections: - textbooks = self.get_textbooks(section.id) - if self.textbook_payload.counter != self.textbook_payload.max: - textbooks = self.get_textbooks(section.id, True) - - def parse_semesters(self, is_retry=False): - url = self.url + 'TBWizardView' - params = { - "catalogId":"10001", - "langId":"-1", - "storeId":self.store_id - } - - payload = "-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"id\"\r\n\r\n0\r\n-----011000010111000001101001--" - self.requester.headers['content-type'] = "multipart/form-data; boundary=---011000010111000001101001" - semester_list = self.requester.post(url, - params=params, - data=payload, - throttle=lambda:sleep(randint(300, 500)) - ).find(class_="bncbSelectBox termHeader") - - if is_retry: - return - - semesters = [] - for li in semester_list.find_all("li"): - sem_id = li["data-optionvalue"] - name = li.contents[0] - names = name.split(" ") - term, year = names[:len(names) - 1], names[len(names) - 1:] - semesters.append(TextbookSemester(sem_id, name, term, year)) - return semesters - - def parse_departments(self, semester): - url = self.url + 'TextBookProcessDropdownsCmd' - self.params.update({ - 'termId': semester.id, - 'dropdown': 'term' - }) - self.requester.headers = { - 'User-Agent': UserAgent().random, - } - - return self.get_objects(url, self.params) - - def parse_courses(self, semester, department): - url = self.url + 'TextBookProcessDropdownsCmd' - self.params.update({ - 'deptId': department.id, - 'dropdown': 'dept' - }) - self.requester.headers = { - 'User-Agent': UserAgent().random, - } - - return self.get_objects(url, self.params) - - def parse_sections(self, semester, department, course): - url = self.url + 'TextBookProcessDropdownsCmd' - self.params.update({ - 'courseId': course.id, - 'dropdown': 'course' - }) - self.requester.headers = { - 'User-Agent': UserAgent().random, - } - - return self.get_objects(url, self.params) - - def get_objects(self, url, params): - objs = [] - while True: - raw_objs = self.requester.post(url, - params=params, - throttle=lambda:sleep(randint(300, 500)) - ) - objs = [] - success = True - for obj in raw_objs: - extracted = self.extract_id_and_name(obj) - if extracted is False: - success = False - break - id_, name = extracted - objs.append(TextbookSection(id_, name)) - if success is True: - break - return objs - - def extract_id_and_name(self, obj): - try: - id_ = obj["categoryId"] - name = obj["categoryName"] - return id_, name - except KeyError: - self.requester.session = requests.Session() - self.requester.headers = {'User-Agent': UserAgent().random} - self.parse_semesters(True) - return False - - def parse_textbooks(self, soup): - textbooks = soup.find_all('div', class_='book_details') - textbook_sections = soup.find_all('div',class_="book_sec") - print("( Request #: " + str(self.book_request_count) + ") " + str(len(textbooks)) + " textbooks found.") - self.book_request_count += 1 - self.last_num_found = len(textbooks) - for tbsec in textbook_sections: - raw_code = tbsec.find_all('h1')[0] - code_list = raw_code.get_text().split()[:-2] - course_code = self.delimeter.join(code_list[:-1]) - if len(code_list[2]) == 1: - section = "(0" + code_list[2] + ")" - else: - section = "(" + code_list[2] + ")" - for tb in tbsec.find_all('div',class_="book_details"): - match = re.findall(self.isbn_pattern,"".join(tb.get_text())) - if len(match) > 0: - isbn_number = match[0] - is_required = self.check_required(tb.find('span', class_="recommendBookType").get_text()) - self.make_textbook(is_required, isbn_number, course_code, section) - - def make_textbook(self, is_required, isbn_number, course_code, section_code): - # Commented out ingestor for now. - # Update/Create textbook. - # self.ingestor['isbn'] = isbn_number - # self.ingestor.update(amazon_textbook_fields(str(isbn_number))) - # self.ingestor.ingest_textbook() - - # # Link to all course offerings. - # self.ingestor['school'] = self.school - # self.ingestor['course_code'] = course_code - # self.ingestor['section_code'] = section_code - # self.ingestor['term'] = self.term - # self.ingestor['year'] = self.year - # self.ingestor['isbn'] = isbn_number - # self.ingestor['required'] = is_required - # self.ingestor.ingest_textbook_link() - - # Before DB schema update, use old code: - - try: - course = Course.objects.filter(code__contains = course_code, school = self.school)[0] - print(course) - except IndexError: - print("index error (course does not exist): " + course_code) - return - sections = Section.objects.filter(course = course, meeting_section = section_code) - textbook_data = amazon_textbook_fields(str(isbn_number)) - if textbook_data is None or len(textbook_data) == 0: - print ("No such textbook on Amazon") - return - # update/create textbook - textbook, created = Textbook.objects.update_or_create(isbn=isbn_number, defaults=textbook_data) - self.create_count += int(created) - - # link to all course offerings - for section in sections: - section, created = TextbookLink.objects.update_or_create( - is_required = is_required, - section = section, - textbook = textbook - ) - - # print results - if created: - try: - print("Textbook created: " + str(textbook.title)) - except UnicodeEncodeError: - pass - else: - self.identified_count += 1 - try: - print("Textbook found, not created: " + str(textbook.title)) - except UnicodeEncodeError: - pass - - def check_required(self,html): - if html.find("REQUIRED") != -1: - return True - else: - return False - - def get_textbooks(self, section_id, forced=False): - payload = self.textbook_payload.add_textbook(section_id, forced) - if payload is None: - return None - - self.requester.headers = { - 'content-type': "multipart/form-data; boundary=---011000010111000001101001", - 'User-Agent': UserAgent().random, - } - url = self.url + 'BNCBTBListView' - soup = self.requester.post(url, data=payload, throttle=lambda:sleep(randint(300, 500))) - textbooks = self.parse_textbooks(soup) - - return textbooks - - -class TextbookPayload: - '''Builds up 100 textbook request to request from bn.''' - - def __init__(self, store_id): - self.counter = 0 - self.max = 100 - self.begining_payload = '-----011000010111000001101001\r\nContent-Disposition: form-data; name="storeId"\r\n\r\n{}'.format(store_id) + '\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name="catalogId"\r\n\r\n10001\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name="langId"\r\n\r\n-1\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name="clearAll"\r\n\r\n\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name="viewName"\r\n\r\nTBWizardView\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name="secCatList"\r\n\r\n\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name="removeSectionId"\r\n\r\n\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name="mcEnabled"\r\n\r\nN\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name="showCampus"\r\n\r\nfalse\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name="selectTerm"\r\n\r\nSelect+Term\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name="selectDepartment"\r\n\r\nSelect+Department\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name="selectSection"\r\n\r\nSelect+Section\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name="selectCourse"\r\n\r\nSelect+Course\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name="campus1"\r\n\r\n14704480\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name="firstTermName_14704480"\r\n\r\nFall+2016\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name="firstTermId_14704480"\r\n\r\n73256452\r\n-----011000010111000001101001' - self.payload = self.begining_payload - - def add_textbook(self, section_id, forced=False): - if forced: - return self.dump() - self.counter += 1 - self.payload += '\r\nContent-Disposition: form-data; name="section_{}"\r\n\r\n{}\r\n-----011000010111000001101001'.format(str(self.counter), str(section_id)) - if self.counter >= self.max: - return self.dump() - return None - - def dump(self): - if self.counter == 0: - return None - self.counter = 0 - payload = self.payload - self.payload = self.begining_payload - return payload + '--' diff --git a/parsing/common/peoplesoft/courses.py b/parsing/common/peoplesoft/courses.py index f53606e846..5902e34673 100644 --- a/parsing/common/peoplesoft/courses.py +++ b/parsing/common/peoplesoft/courses.py @@ -10,50 +10,46 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - import re import sys from abc import ABCMeta -from parsing.common.textbooks.amazon_textbooks import amazon_textbook_fields from parsing.library.base_parser import BaseParser from parsing.library.exceptions import ParseError from parsing.library.utils import dict_filter_by_dict, dict_filter_by_list -class PeoplesoftParser(BaseParser): +class PeoplesoftParser(BaseParser, metaclass=ABCMeta): """Generalized Peoplesoft course parser.""" - __metaclass__ = ABCMeta - DAY_MAP = { - 'Mo': 'M', - 'Tu': 'T', - 'We': 'W', - 'Th': 'R', - 'Fr': 'F', - 'Sa': 'S', - 'Su': 'U' + "Mo": "M", + "Tu": "T", + "We": "W", + "Th": "R", + "Fr": "F", + "Sa": "S", + "Su": "U", } - AJAX_PARAMS = { - 'ICAJAX': '1', - 'ICNAVTYPEDROPDOWN': '0' - } + AJAX_PARAMS = {"ICAJAX": "1", "ICNAVTYPEDROPDOWN": "0"} IC_ACTIONS = { - 'adv_search': 'DERIVED_CLSRCH_SSR_EXPAND_COLLAPS$149$$1', - 'save': '#ICSave', - 'term': 'CLASS_SRCH_WRK2_STRM$35$', - 'class_search': 'CLASS_SRCH_WRK2_SSR_PB_CLASS_SRCH', + "adv_search": "DERIVED_CLSRCH_SSR_EXPAND_COLLAPS$149$$1", + "save": "#ICSave", + "term": "CLASS_SRCH_WRK2_STRM$35$", + "class_search": "CLASS_SRCH_WRK2_SSR_PB_CLASS_SRCH", } - def __init__(self, school, url, - url_params=None, - department_name_regex=re.compile(r'(.*)'), - **kwargs): + def __init__( + self, + school, + url, + url_params=None, + department_name_regex=re.compile(r"(.*)"), + **kwargs + ): """Construct Peoplesoft parsing object.""" self.base_url = url self.url_params = url_params or {} @@ -64,55 +60,52 @@ def start(self, **kwargs): """Start parsing courses.""" self.parse(**kwargs) - def parse(self, - verbosity=3, - textbooks=True, - years_and_terms_filter=None, - departments_filter=None, - department_name_regex=None): + def parse( + self, + verbosity=3, + years_and_terms_filter=None, + departments_filter=None, + department_name_regex=None, + ): """Do parse.""" self.verbosity = verbosity - self.textbooks = textbooks self._empty_ingestor_lists() # NOTE: umich will do nothing and return an empty dict soup, params = self._goto_search_page(self.url_params) years_and_terms = dict_filter_by_dict( - self._get_years_and_terms(soup), - years_and_terms_filter + self._get_years_and_terms(soup), years_and_terms_filter ) for year, terms in years_and_terms.items(): - self.ingestor['year'] = year + self.ingestor["year"] = year for term_name, term_code in terms.items(): soup = self._term_update(term_code, params) - self.ingestor['term'] = term_name + self.ingestor["term"] = term_name # NOTE: schools that do not use groups will return {None: None} groups = self._get_groups(soup, params) - for group_id, group_name in groups.items(): + for group_id, group_name in list(groups.items()): params2 = {} if group_id is not None: soup = self._group_update(group_id, params) - params2 = PeoplesoftParser._hidden_params(soup, - ajax=True) + params2 = PeoplesoftParser._hidden_params(soup, ajax=True) else: # School does not use groups. # Update search params to get course list. params = PeoplesoftParser._exclude_ajax_params(params) params.update( - PeoplesoftParser._create_ic_action('class_search') + PeoplesoftParser._create_ic_action("class_search") ) params2 = params # extract department list info dept_param_key = self._get_dept_param_key(soup) departments, department_ids = self._get_departments( - soup, - departments_filter + soup, departments_filter ) - for dept_code, dept_name in departments.iteritems(): - self.ingestor['dept_name'] = dept_name - self.ingestor['dept_code'] = dept_code + for dept_code, dept_name in departments.items(): + self.ingestor["dept_name"] = dept_name + self.ingestor["dept_code"] = dept_code # Update search payload with department code params2[dept_param_key] = dept_code @@ -120,41 +113,38 @@ def parse(self, params2[dept_param_key] = department_ids[dept_code] # Get course listing page for department - soup = self.requester.post(self.base_url, - params=params2) + soup = self.requester.post(self.base_url, params=params2) if not self._is_valid_search_page(soup): continue if self._is_special_search(soup): # too many results soup = self._handle_special_case_on_search(soup) courses = self._get_courses(soup) - course_soups = self._get_course_list_as_soup(courses, - soup) + course_soups = self._get_course_list_as_soup(courses, soup) for course_soup in course_soups: self._parse_course_description(course_soup) @staticmethod def _find_all_isbns(soup): - return zip( - soup.find_all( - 'span', - id=re.compile(r'DERIVED_SSR_TXB_SSR_TXBDTL_ISBN\$\d*') - ), - soup.find_all( - 'span', - id=re.compile(r'DERIVED_SSR_TXB_SSR_TXB_STATDESCR\$\d*') + return list( + zip( + soup.find_all( + "span", id=re.compile(r"DERIVED_SSR_TXB_SSR_TXBDTL_ISBN\$\d*") + ), + soup.find_all( + "span", id=re.compile(r"DERIVED_SSR_TXB_SSR_TXB_STATDESCR\$\d*") + ), ) ) def _get_years_and_terms(self, soup): - term_datas = soup.find( - 'select', - id='CLASS_SRCH_WRK2_STRM$35$' - ).find_all('option') + term_datas = soup.find("select", id="CLASS_SRCH_WRK2_STRM$35$").find_all( + "option" + ) years_terms_values = {} for term_data in term_datas[1:]: # differentiate between term name and years - year_or_term1, year_or_term2 = term_data.text.split(' ', 1) + year_or_term1, year_or_term2 = term_data.text.split(" ", 1) try: year = str(int(year_or_term1)) term = year_or_term2 @@ -164,11 +154,11 @@ def _get_years_and_terms(self, soup): if year not in years_terms_values: years_terms_values[year] = {} - years_terms_values[year][term] = term_data['value'] + years_terms_values[year][term] = term_data["value"] return years_terms_values def _get_courses(self, soup): - return soup.find_all('table', class_='PSLEVEL1GRIDNBONBO') + return soup.find_all("table", class_="PSLEVEL1GRIDNBONBO") def _goto_search_page(self, url_params): """Direct session to search page.""" @@ -176,22 +166,24 @@ def _goto_search_page(self, url_params): # Create search payload for adv search. params = PeoplesoftParser._hidden_params(soup) - params.update(PeoplesoftParser._create_ic_action('adv_search')) + params.update(PeoplesoftParser._create_ic_action("adv_search")) soup = self.requester.post(self.base_url, params=params) refined_search_query = { - 'SSR_CLSRCH_WRK_SSR_OPEN_ONLY$chk$4': 'N', - 'SSR_CLSRCH_WRK_SSR_OPEN_ONLY$chk$5': 'N', - 'SSR_CLSRCH_WRK_INCLUDE_CLASS_DAYS$5': 'J', - 'SSR_CLSRCH_WRK_INCLUDE_CLASS_DAYS$6': 'J' + "SSR_CLSRCH_WRK_SSR_OPEN_ONLY$chk$4": "N", + "SSR_CLSRCH_WRK_SSR_OPEN_ONLY$chk$5": "N", + "SSR_CLSRCH_WRK_INCLUDE_CLASS_DAYS$5": "J", + "SSR_CLSRCH_WRK_INCLUDE_CLASS_DAYS$6": "J", } - for day in ['MON', 'TUES', 'WED', 'THURS', 'FRI', 'SAT', 'SUN']: - refined_search_query.update({ - 'SSR_CLSRCH_WRK_{}$5'.format(day): 'Y', - 'SSR_CLSRCH_WRK_{}$chk$5'.format(day): 'Y', - 'SSR_CLSRCH_WRK_{}$6'.format(day): 'Y', - 'SSR_CLSRCH_WRK_{}$chk$6'.format(day): 'Y', - }) + for day in ["MON", "TUES", "WED", "THURS", "FRI", "SAT", "SUN"]: + refined_search_query.update( + { + "SSR_CLSRCH_WRK_{}$5".format(day): "Y", + "SSR_CLSRCH_WRK_{}$chk$5".format(day): "Y", + "SSR_CLSRCH_WRK_{}$6".format(day): "Y", + "SSR_CLSRCH_WRK_{}$chk$6".format(day): "Y", + } + ) params.update(refined_search_query) return soup, params @@ -204,8 +196,8 @@ def _group_update(self, group_id, params): def _term_update(self, term_code, params): """Update search page with term as parameter.""" - params[PeoplesoftParser.IC_ACTIONS['term']] = term_code - params.update(PeoplesoftParser._create_ic_action('term')) + params[PeoplesoftParser.IC_ACTIONS["term"]] = term_code + params.update(PeoplesoftParser._create_ic_action("term")) params.update(PeoplesoftParser.AJAX_PARAMS) return self.requester.post(self.base_url, params=params) @@ -213,93 +205,81 @@ def _term_update(self, term_code, params): def _exclude_ajax_params(params): """Filter out params related to ajax.""" return { - k: v for k, v in params.items() - if k not in PeoplesoftParser.AJAX_PARAMS.keys() + k: v + for k, v in list(params.items()) + if k not in list(PeoplesoftParser.AJAX_PARAMS.keys()) } def _get_dept_param_key(self, soup): - return soup.find( - 'select', - id=re.compile(r'SSR_CLSRCH_WRK_SUBJECT_SRCH\$\d') - )['id'] + return soup.find("select", id=re.compile(r"SSR_CLSRCH_WRK_SUBJECT_SRCH\$\d"))[ + "id" + ] def _get_departments(self, soup, departments_filter=None): dept_soups = soup.find( - 'select', - id=re.compile(r'SSR_CLSRCH_WRK_SUBJECT_SRCH\$\d') - ).find_all('option')[1:] + "select", id=re.compile(r"SSR_CLSRCH_WRK_SUBJECT_SRCH\$\d") + ).find_all("option")[1:] def extract_dept_name(d): return self.department_name_regex.match(d).group(1) - departments = { - d['value']: extract_dept_name(d.text) for d in dept_soups - } + + departments = {d["value"]: extract_dept_name(d.text) for d in dept_soups} return dict_filter_by_list(departments, departments_filter), None def _get_course_list_as_soup(self, courses, soup): """Fill payload for course description page request.""" payload = PeoplesoftParser._hidden_params(soup) for i in range(len(courses)): - payload.update({'ICAction': 'MTG_CLASS_NBR$' + str(i)}) + payload.update({"ICAction": "MTG_CLASS_NBR$" + str(i)}) soup = self.requester.get(self.base_url, params=payload) yield soup def _parse_course_description(self, soup): # scrape info from page - title = soup.find( - 'span', - id='DERIVED_CLSRCH_DESCR200' - ).text.encode('ascii', 'ignore') - - subtitle = soup.find( - 'span', - id='DERIVED_CLSRCH_SSS_PAGE_KEYDESCR' - ).text.encode('ascii', 'ignore') - - units = soup.find('span', id='SSR_CLS_DTL_WRK_UNITS_RANGE').text - capacity = soup.find('span', id='SSR_CLS_DTL_WRK_ENRL_CAP').text - enrollment = soup.find('span', id='SSR_CLS_DTL_WRK_ENRL_TOT').text + title = soup.find("span", id="DERIVED_CLSRCH_DESCR200").text + + subtitle = soup.find("span", id="DERIVED_CLSRCH_SSS_PAGE_KEYDESCR").text + + units = soup.find("span", id="SSR_CLS_DTL_WRK_UNITS_RANGE").text + capacity = soup.find("span", id="SSR_CLS_DTL_WRK_ENRL_CAP").text + enrollment = soup.find("span", id="SSR_CLS_DTL_WRK_ENRL_TOT").text # waitlist = soup.find('span', id='SSR_CLS_DTL_WRK_WAIT_TOT').text - descr = soup.find('span', id='DERIVED_CLSRCH_DESCRLONG') - notes = soup.find('span', id='DERIVED_CLSRCH_SSR_CLASSNOTE_LONG') - req = soup.find('span', id='SSR_CLS_DTL_WRK_SSR_REQUISITE_LONG') - areas = soup.find('span', id='SSR_CLS_DTL_WRK_SSR_CRSE_ATTR_LONG') + descr = soup.find("span", id="DERIVED_CLSRCH_DESCRLONG") + notes = soup.find("span", id="DERIVED_CLSRCH_SSR_CLASSNOTE_LONG") + req = soup.find("span", id="SSR_CLS_DTL_WRK_SSR_REQUISITE_LONG") + areas = soup.find("span", id="SSR_CLS_DTL_WRK_SSR_CRSE_ATTR_LONG") components = soup.find( - 'div', - id=re.compile(r'win\ddivSSR_CLS_DTL_WRK_SSR_COMPONENT_LONG') + "div", id=re.compile(r"win\ddivSSR_CLS_DTL_WRK_SSR_COMPONENT_LONG") ) # parse table of times - scheds = soup.find_all('span', id=re.compile(r'MTG_SCHED\$\d*')) - locs = soup.find_all('span', id=re.compile(r'MTG_LOC\$\d*')) - instrs = soup.find_all('span', id=re.compile(r'MTG_INSTR\$\d*')) - dates = soup.find_all('span', id=re.compile(r'MTG_DATE\$\d*')) - - # parse textbooks - self._parse_textbooks(soup) + scheds = soup.find_all("span", id=re.compile(r"MTG_SCHED\$\d*")) + locs = soup.find_all("span", id=re.compile(r"MTG_LOC\$\d*")) + instrs = soup.find_all("span", id=re.compile(r"MTG_INSTR\$\d*")) + dates = soup.find_all("span", id=re.compile(r"MTG_DATE\$\d*")) - rtitle = re.match(r'(.+?\s*\w+) - (\w+)\s*(\S.+)', title) - self.ingestor['section_type'] = subtitle.split('|')[2].strip() + rtitle = re.match(r"(.+?\s*\w+) - (\w+)\s*(\S.+)", title) + self.ingestor["section_type"] = subtitle.split("|")[2].strip() # Place course info into course model - self.ingestor['course_code'] = rtitle.group(1) - self.ingestor['course_name'] = rtitle.group(3) - self.ingestor['section_code'] = rtitle.group(2) - self.ingestor['credits'] = float(re.match(r'(\d*).*', units).group(1)) - self.ingestor['prereqs'] = map(lambda x: x.text, filter(None, [req])) - self.ingestor['descr'] = '\n'.join( - map(lambda x: x.text, filter(None, [descr, notes, areas])) + self.ingestor["course_code"] = re.sub(r"\s+", " ", rtitle.group(1)) + self.ingestor["course_name"] = rtitle.group(3) + self.ingestor["section_code"] = rtitle.group(2) + self.ingestor["credits"] = float(re.match(r"(\d*).*", units).group(1)) + self.ingestor["prereqs"] = [x.text for x in [_f for _f in [req] if _f]] + self.ingestor["descr"] = "\n".join( + [x.text for x in [_f for _f in [descr, notes, areas] if _f]] ) - self.ingestor['size'] = int(capacity) - self.ingestor['enrollment'] = int(enrollment) + self.ingestor["size"] = int(capacity) + self.ingestor["enrollment"] = int(enrollment) instructors = [] for instr in instrs: - instructors += instr.text.split(', \r') + instructors += instr.text.split(", \r") # NOTE: truncate instructor list to 5 instructors for db if len(instructors) > 5: instructors = instructors[:5] - instructors.append('..., ...') - self.ingestor['instrs'] = list(set(instructors)) + instructors.append("..., ...") + self.ingestor["instrs"] = list(set(instructors)) # TODO - integrate this nicer # Handle condition such that a laboratory (or another type) of section @@ -308,16 +288,18 @@ def _parse_course_description(self, soup): if components is not None: components = components.text.strip() components = { - component.replace('Required', '').strip() - for component in components.split(',') + component.replace("Required", "").strip() + for component in components.split(",") } - if (len(components) > 1 and - self.ingestor['credits'] == 0 and - 'Lecture' in components and - 'Lecture' != self.ingestor['section_type'] and - self.ingestor['course_code'] in self.ingestor.validator.seen): + if ( + len(components) > 1 + and self.ingestor["credits"] == 0 + and "Lecture" in components + and "Lecture" != self.ingestor["section_type"] + and self.ingestor["course_code"] in self.ingestor.validator.seen + ): create_course = False - course = {'code': self.ingestor['course_code']} + course = {"code": self.ingestor["course_code"]} if create_course: course = self.ingestor.ingest_course() @@ -325,75 +307,27 @@ def _parse_course_description(self, soup): # Parse offering details. for sched, loc, date in zip(scheds, locs, dates): - - rsched = re.match(r'([a-zA-Z]*) (.*) - (.*)', sched.text) + rsched = re.match(r"([a-zA-Z]*) (.*) - (.*)", sched.text) if rsched: - days = map( - lambda d: PeoplesoftParser.DAY_MAP[d], - re.findall(r'[A-Z][^A-Z]*', rsched.group(1)) - ) - time = ( - rsched.group(2), - rsched.group(3) - ) + days = [ + PeoplesoftParser.DAY_MAP[d] + for d in re.findall(r"[A-Z][^A-Z]*", rsched.group(1)) + ] + time = (rsched.group(2), rsched.group(3)) else: # handle TBA classes continue - self.ingestor['time_start'] = time[0] - self.ingestor['time_end'] = time[1] - re.match(r'(.*) (\d+)', loc.text) - self.ingestor['location'] = loc.text - self.ingestor['days'] = days + self.ingestor["time_start"] = time[0] + self.ingestor["time_end"] = time[1] + re.match(r"(.*) (\d+)", loc.text) + self.ingestor["location"] = loc.text + self.ingestor["days"] = days self.ingestor.ingest_meeting(section) self._empty_ingestor_lists() - def _parse_textbooks(self, soup): - # BUG: gaurantee with regex match order and textbook status...? - textbooks = zip( - soup.find_all( - 'span', - id=re.compile(r'DERIVED_SSR_TXB_SSR_TXBDTL_ISBN\$\d*') - ), - soup.find_all( - 'span', - id=re.compile(r'DERIVED_SSR_TXB_SSR_TXB_STATDESCR\$\d*')) - ) - - # Remove extra characters from isbn and tranform Required into boolean. - for i in range(len(textbooks)): - textbooks[i] = { - 'isbn': filter(lambda x: x.isdigit(), textbooks[i][0].text), - 'required': textbooks[i][1].text[0].upper() == 'R', - } - - # Create textbooks. - if self.textbooks: - for textbook in textbooks: - if (not textbook['isbn'] or - (len(textbook['isbn']) != 10 and - len(textbook['isbn']) != 13)): - continue # NOTE: might skip some malformed-isbn values - amazon_fields = amazon_textbook_fields(textbook['isbn']) - if amazon_fields is not None: - textbook.update(amazon_fields) - else: # Make sure to clear ingestor from prev (temp fix) - textbook.update({ - 'detail_url': None, - 'image_url': None, - 'author': None, - 'title': None, - }) - self.ingestor.update(textbook) - self.ingestor.ingest_textbook() - self.ingestor.setdefault('textbooks', []).append({ - 'kind': 'textbook_link', - 'isbn': textbook['isbn'], - 'required': textbook['required'], - }) - def _empty_ingestor_lists(self): """ Hard set optional ingestor fields. @@ -406,11 +340,10 @@ def _empty_ingestor_lists(self): just append to them rather than checking and creating the list every time. """ - self.ingestor['prereqs'] = [] - self.ingestor['coreqs'] = [] - self.ingestor['geneds'] = [] - self.ingestor['fees'] = [] - self.ingestor['textbooks'] = [] + self.ingestor["prereqs"] = [] + self.ingestor["coreqs"] = [] + self.ingestor["geneds"] = [] + self.ingestor["fees"] = [] @staticmethod def _hidden_params(soup, params=None, ajax=False): @@ -425,14 +358,13 @@ def _hidden_params(soup, params=None, ajax=False): params = {} def find(tag): - return soup.find(tag, id=re.compile(r'win\ddivPSHIDDENFIELDS')) - hidden = find('div') + return soup.find(tag, id=re.compile(r"win\ddivPSHIDDENFIELDS")) + + hidden = find("div") if not hidden: - hidden = find('field') + hidden = find("field") - params.update({ - a['name']: a['value'] for a in hidden.find_all('input') - }) + params.update({a["name"]: a["value"] for a in hidden.find_all("input")}) if ajax: params.update(PeoplesoftParser.AJAX_PARAMS) @@ -443,36 +375,35 @@ def _is_valid_search_page(self, soup): # check for valid search/page if soup is None: # TODO - write to error.log with set handle - raise ParseError('is valid search page, soup is None') - errmsg = soup.find('div', id='win1divDERIVED_CLSMSG_ERROR_TEXT') - if soup.find('td', id='PTBADPAGE_') or errmsg: + raise ParseError("is valid search page, soup is None") + errmsg = soup.find("div", id="win1divDERIVED_CLSMSG_ERROR_TEXT") + if soup.find("td", id="PTBADPAGE_") or errmsg: if errmsg: if self.verbosity >= 3: - sys.stderr.write('Error on search: {}'.format(errmsg.text)) + sys.stderr.write("Error on search: {}".format(errmsg.text)) return False return True def _is_special_search(self, soup): - return ( - soup.find('span', class_='SSSMSGINFOTEXT') or - soup.find('span', id='DERIVED_SSE_DSP_SSR_MSG_TEXT') + return soup.find("span", class_="SSSMSGINFOTEXT") or soup.find( + "span", id="DERIVED_SSE_DSP_SSR_MSG_TEXT" ) @staticmethod def _create_ic_action(act): - return {'ICAction': PeoplesoftParser.IC_ACTIONS[act]} + return {"ICAction": PeoplesoftParser.IC_ACTIONS[act]} def _handle_special_case_on_search(self, soup): if self.verbosity >= 3: print( - 'SPECIAL SEARCH MESSAGE: {}'.format( - soup.find('span', class_='SSSMSGINFOTEXT').text + "SPECIAL SEARCH MESSAGE: {}".format( + soup.find("span", class_="SSSMSGINFOTEXT").text ), - file=sys.stderr + file=sys.stderr, ) query = PeoplesoftParser._hidden_params(soup, ajax=True) - query['ICAction'] = '#ICSave' + query["ICAction"] = "#ICSave" return self.requester.post(self.base_url, params=query) @@ -493,38 +424,39 @@ def _get_years_and_terms(self, soup): def _get_departments(self, soup, departments_filter=None): # extract department query list departments = soup.find_all( - 'a', - id=re.compile(r'CLASS_SRCH_WRK2_SSR_PB_CLASS_SRCH\$\d') + "a", id=re.compile(r"CLASS_SRCH_WRK2_SSR_PB_CLASS_SRCH\$\d") ) department_names = soup.find_all( - 'span', - id=re.compile(r'M_SR_SS_SUBJECT_DESCR\$\d') + "span", id=re.compile(r"M_SR_SS_SUBJECT_DESCR\$\d") ) depts = { dept.text: dept_name.text for dept, dept_name in zip(departments, department_names) } - dept_ids = {dept.text: dept['id'] for dept in departments} - return dict_filter_by_list( - depts, - departments_filter, - ), dept_ids + dept_ids = {dept.text: dept["id"] for dept in departments} + return ( + dict_filter_by_list( + depts, + departments_filter, + ), + dept_ids, + ) def _get_dept_param_key(self, soup): - return 'ICAction' + return "ICAction" def _term_update(self, term_code, params): if self.term_base_url is None: self.term_base_url = self.base_url - return self.requester.get(self.term_base_url, {'strm': term_code}) + return self.requester.get(self.term_base_url, {"strm": term_code}) def _get_groups(self, soup, params): params.update(PeoplesoftParser._hidden_params(soup, ajax=True)) - groups = soup.find_all('a', id=re.compile(r'M_SR_DERIVED2_GROUP1\$\d')) - return {group['id']: group.text for group in groups} + groups = soup.find_all("a", id=re.compile(r"M_SR_DERIVED2_GROUP1\$\d")) + return {group["id"]: group.text for group in groups} def _group_update(self, group_id, params): - params['ICAction'] = group_id + params["ICAction"] = group_id soup = self.requester.post(self.base_url, data=params) return soup @@ -533,4 +465,4 @@ def _goto_search_page(self, url_params): return None, {} def _get_courses(self, soup): - return soup.find_all('table', class_='PSLEVEL1GRIDROWNBO') + return soup.find_all("table", class_="PSLEVEL1GRIDROWNBO") diff --git a/parsing/common/textbooks/__init__.py b/parsing/common/textbooks/__init__.py deleted file mode 100644 index defc0f99ee..0000000000 --- a/parsing/common/textbooks/__init__.py +++ /dev/null @@ -1,11 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. diff --git a/parsing/common/textbooks/amazon_textbooks.py b/parsing/common/textbooks/amazon_textbooks.py deleted file mode 100644 index b4287c294f..0000000000 --- a/parsing/common/textbooks/amazon_textbooks.py +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from amazon.api import AmazonAPI -from amazon.api import AsinNotFound - -from semesterly.settings import get_secret - -# NOTE: acts as cache for AmazonAPI -amazon = None - - -def amazon_textbook_fields(isbn): - if amazon is None: - amazon = AmazonAPI(get_secret('AMAZON_ACCESS_KEY'), - get_secret('AMAZON_SECRET_KEY'), - get_secret('AMAZON_ASSOC_TAG')) - try: - product = amazon.lookup(ItemId=isbn, - IdType='ISBN', - SearchIndex='Books') - except AsinNotFound: - return - - if isinstance(product, list): - product = product[0] - - return { - 'detail_url': product.detail_page_url, - 'image_url': product.medium_image_url, - 'author': product.author, - 'title': product.title, - } diff --git a/parsing/common/textbooks/bkstr_dot_com.py b/parsing/common/textbooks/bkstr_dot_com.py deleted file mode 100644 index 1e700f7a75..0000000000 --- a/parsing/common/textbooks/bkstr_dot_com.py +++ /dev/null @@ -1,172 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from __future__ import absolute_import, division, print_function - -import re -import simplejson as json - -from parsing.common.textbooks.amazon_textbooks import amazon_textbook_fields -from parsing.library.base_parser import BaseParser -from parsing.library.utils import dict_filter_by_dict, dict_filter_by_list - - -class BkstrDotComParser(BaseParser): - """Textbook parser for Bkstr.com derivative schools.""" - - URL = 'http://www.bkstr.com/webapp/wcs/stores/servlet/' - - def __init__(self, school, store_id, **kwargs): - """Construct bkstr textbook parser.""" - self.school = school - self.store_id = store_id - super(BkstrDotComParser, self).__init__(school, **kwargs) - - def start(self, - verbosity=3, - departments_filter=None, - years_and_terms_filter=None): - """Start parsing.""" - self.departments_filter = departments_filter - - # Grab cookies from home website. - self.requester.get('http://www.bkstr.com') - - query = { - 'storeId': self.store_id, - 'demoKey': 'd', - 'requestType': 'INITIAL', - '_': '' - } - - # TODO - fix requester issues by refreshing cookies on timeout - - programs = self._extract_json(query) - for program, program_code in programs.items(): - self._parse_program(program, - program_code, - query, - years_and_terms_filter) - - def _parse_program(self, program, program_code, query, - years_and_terms_filter): - query['programId'] = program_code - query['requestType'] = 'TERMS' - terms_and_years = self._extract_json(query) - years_and_terms = self._parse_terms_and_years(terms_and_years) - years_and_terms = dict_filter_by_dict(years_and_terms, - years_and_terms_filter) - for year, terms in years_and_terms.items(): - self.ingestor['year'] = year - for term, term_code in terms.items(): - self._parse_term(term, term_code, query) - - def _parse_term(self, term, term_code, query): - self.ingestor['term'] = term - query['termId'] = term_code - query['requestType'] = 'DEPARTMENTS' - depts = dict_filter_by_list(self._extract_json(query), - self.departments_filter) - for dept, dept_code in depts.items(): - self._parse_dept(dept, dept_code, query) - - def _parse_dept(self, dept, dept_code, query): - self.ingestor['department'] = { - 'code': dept - } - query['departmentName'] = dept_code - query['requestType'] = 'COURSES' - courses = self._extract_json(query) - for course, course_code in courses.items(): - self.ingestor['course_code'] = '{} {}'.format(dept, course) - self._parse_course(course, course_code, query) - - def _parse_course(self, course, course_code, query): - query['courseName'] = course_code - query['requestType'] = 'SECTIONS' - sections = self._extract_json(query) - for section, section_code in sections.items(): - self._parse_section(section, section_code, query) - - def _parse_section(self, section, section_code, query): - self.ingestor['section_code'] = section - - query2 = { - 'categoryId': '9604', - 'storeId': self.store_id, - 'langId': '-1', - 'programId': query['programId'], - 'termId': query['termId'], - 'divisionDisplayName': ' ', - 'departmentDisplayName': query['departmentName'], - 'courseDisplayName': query['courseName'], - 'sectionDisplayName': section_code, - 'demoKey': 'd', - 'purpose': 'browse' - } - - soup = self.requester.get( - '{}/CourseMaterialsResultsView'.format(BkstrDotComParser.URL), - query2 - ) - - materials = soup.find_all('li', class_='material-group') - for material in materials: - self._parse_material(material) - - def _parse_material(self, material): - required = re.match('material-group_(.*)', material['id']).group(1) - self.ingestor['required'] = required == 'REQUIRED' - books = material.find_all('ul') - for book in books: - isbn = book.find('span', id='materialISBN') - isbn.find('strong').extract() - isbn = isbn.text.strip() - self.ingestor['isbn'] = str(isbn) - self.ingestor.update(amazon_textbook_fields(isbn)) - self.ingestor.ingest_textbook() - self.ingestor.ingest_textbook_link() - - def _extract_json(self, query): - """Extract JSON from html response type. - - Bkstr.com returns response as json but labels it as html. - """ - raw_text = self.requester.get( - '{}/LocateCourseMaterialsServlet'.format( - BkstrDotComParser.URL - ), - query, - parse=False - ).text - - return json.loads( - re.search( - r'\'(.*)\'', - raw_text - ).group(1) - )['data'][0] - - @staticmethod - def _parse_terms_and_years(term_and_years): - years = { - term_and_year.split()[1]: {} - for term_and_year, code in term_and_years.items() - } - # Create nesting based on year. - for year in years: - years[year].update({ - term_and_year.split()[0].title(): code - for term_and_year, code in term_and_years.items() - if term_and_year.split()[1] == year - }) - return years diff --git a/parsing/library/base_parser.py b/parsing/library/base_parser.py index 90dd9310cd..395443c79c 100644 --- a/parsing/library/base_parser.py +++ b/parsing/library/base_parser.py @@ -10,15 +10,13 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - from abc import ABCMeta, abstractmethod from parsing.library.ingestor import Ingestor from parsing.library.requester import Requester -class BaseParser: +class BaseParser(metaclass=ABCMeta): """Abstract base parser for data pipeline parsers. Attributes: @@ -28,18 +26,19 @@ class BaseParser: school (:obj:`str`): School that parser is for. """ - __metaclass__ = ABCMeta - - def __init__(self, school, - config=None, - output_path=None, - output_error_path=None, - break_on_error=True, - break_on_warning=False, - skip_duplicates=True, - display_progress_bar=False, - validate=True, - tracker=None): + def __init__( + self, + school, + config=None, + output_path=None, + output_error_path=None, + break_on_error=True, + break_on_warning=False, + skip_duplicates=True, + display_progress_bar=False, + validate=True, + tracker=None, + ): """Create base parser instance. Args: @@ -57,14 +56,16 @@ def __init__(self, school, self.school = school self.requester = Requester() self.tracker = tracker - self.ingestor = Ingestor(config, - output_path, - break_on_error=break_on_error, - break_on_warning=break_on_warning, - skip_duplicates=skip_duplicates, - display_progress_bar=display_progress_bar, - validate=validate, - tracker=self.tracker) + self.ingestor = Ingestor( + config, + output_path, + break_on_error=break_on_error, + break_on_warning=break_on_warning, + skip_duplicates=skip_duplicates, + display_progress_bar=display_progress_bar, + validate=validate, + tracker=self.tracker, + ) @abstractmethod def start(self, **kwargs): diff --git a/parsing/library/digestor.py b/parsing/library/digestor.py index fea6c691f2..7a23cf0f8e 100644 --- a/parsing/library/digestor.py +++ b/parsing/library/digestor.py @@ -10,29 +10,34 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - import sys import django import jsondiff import simplejson as json +from parsing.library.utils import is_short_course from abc import ABCMeta, abstractmethod -from timetable.models import Course, Section, Offering, Textbook, \ - TextbookLink, Evaluation, Semester +from timetable.models import ( + Course, + Section, + Offering, + Evaluation, + Semester, +) from parsing.models import DataUpdate from parsing.library.utils import DotDict, make_list from parsing.library.logger import JSONStreamWriter from parsing.library.tracker import NullTracker from parsing.library.exceptions import PipelineError +from timetable.school_mappers import SCHOOLS_MAP class DigestionError(PipelineError): """Digestor error class.""" -class Digestor(object): +class Digestor: """Digestor in data pipeline. Attributes: @@ -48,13 +53,11 @@ class Digestor(object): """ MODELS = { - 'course': Course, - 'section': Section, - 'offering': Offering, - 'textbook': Textbook, - 'textbook_link': TextbookLink, - 'evaluation': Evaluation, - 'semester': Semester + "course": Course, + "section": Section, + "offering": Offering, + "evaluation": Evaluation, + "semester": Semester, } def __init__(self, school, meta, tracker=NullTracker()): @@ -71,22 +74,21 @@ def __init__(self, school, meta, tracker=NullTracker()): # with open(data, 'r') as f: # data = json.load(f) - self.cache = DotDict(dict( - course={'code': None}, - section={'code': None} - )) + self.cache = DotDict(dict(course={"code": None}, section={"code": None})) self.school = school - self.adapter = DigestionAdapter(school, self.cache) + self.adapter = DigestionAdapter( + school, self.cache, SCHOOLS_MAP[self.school].short_course_weeks_limit + ) self.meta = meta # Setup tracker for digestion and progress bar. self.tracker = tracker - self.tracker.mode = 'digesting' + self.tracker.mode = "digesting" def _resolve_strategy(self, diff, load, output=None): if diff and output is None: - raise ValueError('Cannot generate diff without output') + raise ValueError("Cannot generate diff without output") if diff and load: # Diff only return Burp(self.school, self.meta, output) elif not diff and load: # Load db only @@ -94,7 +96,7 @@ def _resolve_strategy(self, diff, load, output=None): elif diff and not load: # Load db and log diff return Vommit(output) else: # Nothing to do... - raise ValueError('Nothing to run with --no-diff and --no-load.') + raise ValueError("Nothing to run with --no-diff and --no-load.") def digest(self, data, diff=True, load=True, output=None): """Digest data.""" @@ -102,15 +104,13 @@ def digest(self, data, diff=True, load=True, output=None): self.strategy = self._resolve_strategy(diff, load, output) do_digestion = { - 'course': lambda x: self.digest_course(x), - 'section': lambda x: self.digest_section(x), - 'meeting': lambda x: self.digest_meeting(x), - 'textbook': lambda x: self.digest_textbook(x), - 'textbook_link': lambda x: self.digest_textbook_link(x), + "course": lambda x: self.digest_course(x), + "section": lambda x: self.digest_section(x), + "meeting": lambda x: self.digest_meeting(x), + "eval": lambda x: self.digest_eval(x), } - - if self.tracker.has_viewer('progressbar'): - bar = self.tracker.get_viewer('progressbar').bar + if self.tracker.has_viewer("progressbar"): + bar = self.tracker.get_viewer("progressbar").bar for obj in bar(make_list(self.data)): do_digestion[obj.kind](obj) else: @@ -121,7 +121,7 @@ def digest(self, data, diff=True, load=True, output=None): def _update_progress(self, key, exists): if exists: - self.tracker.stats = dict(kind=key, status='total') + self.tracker.stats = dict(kind=key, status="total") # TODO - add more stats including newly created and the like def digest_course(self, course): @@ -134,10 +134,10 @@ def digest_course(self, course): if course_model: self.cache.course = course_model - for section in course.get('sections', []): + for section in course.get("sections", []): self.digest_section(DotDict(section), course_model) - self._update_progress('course', bool(course_model)) + self._update_progress("course", bool(course_model)) return course_model @@ -161,12 +161,9 @@ def digest_section(self, section, course_model=None): if section_model: self.cache.course = course_model self.cache.section = section_model - for meeting in section.get('meetings', []): + for meeting in section.get("meetings", []): self.digest_meeting(DotDict(meeting), section_model) - for textbook_link in section.get('textbooks', []): - self.digest_textbook_link(DotDict(textbook_link), - section_model=section_model) - self._update_progress('section', bool(section_model)) + self._update_progress("section", bool(section_model)) return section_model @@ -180,48 +177,36 @@ def digest_meeting(self, meeting, section_model=None): """ # NOTE: ignoring dates for now offering_models = [] - for offering in self.adapter.adapt_meeting(meeting, - section_model=section_model): + for offering in self.adapter.adapt_meeting( + meeting, section_model=section_model + ): offering_model = self.strategy.digest_offering(offering) offering_models.append(offering_model) - self._update_progress('offering', bool(offering_model)) + self._update_progress("offering", bool(offering_model)) return offering_models - def digest_textbook(self, textbook): - """Digest textbook. + def digest_eval(self, evaluation): + """Digest evaluation. Args: - textbook (dict) + evaluation (dict) """ - textbook_model = self.strategy.digest_textbook( - self.adapter.adapt_textbook(textbook) - ) - self._update_progress('textbook', bool(textbook_model)) - - def digest_textbook_link(self, textbook_link, - textbook_obj=None, - section_obj=None): - """Digest textbook link. + # Skip if there's no related Course + try: + Course.objects.get(code=evaluation.course.code) + except Course.DoesNotExist: + return - Args: - textbook_link (dict): Description - textbook_obj (Textbook, None, optional) - section_obj (Section, None, optional) - """ - # NOTE: currently only support per section digestion. - textbook_link_model = self.strategy.digest_textbook_link( - list(self.adapter.adapt_textbook_link( - textbook_link, - textbook_obj=textbook_obj, - section_obj=section_obj))[0] + evaluation_model = self.strategy.digest_evaluation( + self.adapter.adapt_evaluation(evaluation) ) - self._update_progress('textbook_link', bool(textbook_link_model)) + self._update_progress("evaluation", bool(evaluation_model)) def wrap_up(self): self.strategy.wrap_up() -class DigestionAdapter(object): +class DigestionAdapter: """Converts JSON defititions to model compliant dictionay. Attributes: @@ -229,19 +214,26 @@ class DigestionAdapter(object): school (str): School code. """ - def __init__(self, school, cached): + def __init__(self, school, cached, short_course_weeks_limit): """Construct DigestionAdapter instance. Args: school (str): School code. cached (dict): Cache last created course and section to avoid redundant Django calls + short_course_weeks_limit (str): Use the following attribute to + determine up to how many weeks a course can be defined as + a "short term course". """ self.school = school # Cache last created course and section to avoid redundant Django calls self.cache = cached + # Use the following attribute to determine up to how many weeks + # a course can be defined as a "short term course". + self.short_course_weeks_limit = short_course_weeks_limit + def adapt_course(self, course): """Adapt course for digestion. @@ -255,54 +247,55 @@ def adapt_course(self, course): DigestionError: course is None """ if course is None: - raise DigestionError('none course') + raise DigestionError("none course") adapted = {} - adapted['name'] = course.get('name', '') - if 'credits' in course: - adapted['num_credits'] = course.credits - if 'description' in course: - adapted['description'] = course.description - if 'department' in course: - if 'code' in course.department: - adapted['department'] = course.department.code - if 'name' in course.department: - adapted['department'] = course.department.name - if 'prerequisites' in course: - adapted['prerequisites'] = ', '.join(course.prerequisites) - if 'corequisites' in course: - adapted['corequisites'] = ', '.join(course.corequisites) - if 'exclusions' in course: - adapted['exclusions'] = ', '.join(course.exclusions) - if 'areas' in course: - adapted['areas'] = ', '.join(course.areas) - if 'cores' in course: - adapted['cores'] = ', '.join(course.cores) - if 'geneds' in course: - adapted['geneds'] = ', '.join(course.geneds) - if 'level' in course: - adapted['level'] = course.level + adapted["name"] = course.get("name", "") + if "credits" in course: + adapted["num_credits"] = course.credits + if "description" in course: + adapted["description"] = course.description + if "department" in course: + if "code" in course.department: + adapted["department"] = course.department.code + if "name" in course.department: + adapted["department"] = course.department.name + if "prerequisites" in course: + adapted["prerequisites"] = ", ".join(course.prerequisites) + if "corequisites" in course: + adapted["corequisites"] = ", ".join(course.corequisites) + if "exclusions" in course: + adapted["exclusions"] = ", ".join(course.exclusions) + if "areas" in course: + adapted["areas"] = course.areas + if "cores" in course: + adapted["cores"] = ", ".join(course.cores) + if "geneds" in course: + adapted["geneds"] = ", ".join(course.geneds) + if "level" in course: + adapted["level"] = course.level + if "pos" in course: + adapted["pos"] = course.pos + if "writing_intensive" in course: + adapted["writing_intensive"] = course.writing_intensive + if "sub_school" in course: + adapted["sub_school"] = course.sub_school # Combine pre and co requisites into one field - if 'corequisites' in adapted and 'prerequisites' not in adapted: - adapted['prerequisites'] = 'Co: {}'.format(adapted['corequisites']) - elif 'corequisites' in adapted: - adapted['prerequisites'] = 'Pre: {} Co: {}'.format( - adapted['prerequisites'], adapted['corequisites'] + if "corequisites" in adapted and "prerequisites" not in adapted: + adapted["prerequisites"] = "Co: {}".format(adapted["corequisites"]) + elif "corequisites" in adapted: + adapted["prerequisites"] = "Pre: {} Co: {}".format( + adapted["prerequisites"], adapted["corequisites"] ) - for same_as in course.get('same_as', []): - same_as = Course.objects.filter(school=self.school, - code=same_as).first() + for same_as in course.get("same_as", []): + same_as = Course.objects.filter(school=self.school, code=same_as).first() if same_as is not None: - adapted['same_as'] = same_as + adapted["same_as"] = same_as # TODO - create double-sided relation - return { - 'code': course.code, - 'school': self.school, - 'defaults': adapted - } + return {"code": course.code, "school": self.school, "defaults": adapted} def adapt_section(self, section, course_model=None): """Adapt section to Django model. @@ -318,69 +311,73 @@ def adapt_section(self, section, course_model=None): DigestionError: Description """ if course_model is None: - if (self.cache.course and - section.course.code == self.cache.course.code): + if self.cache.course and section.course.code == self.cache.course.code: course_model = self.cache.course else: course_model = Course.objects.filter( - school=self.school, - code=section.course.code + school=self.school, code=section.course.code ).first() if course_model is None: # TODO - run tests with different database - print('course %s section not already in database'.format( - section.course.code - ), file=sys.stderr) + print( + "course %s section not already in database".format( + section.course.code + ), + file=sys.stderr, + ) adapted = {} - if 'capacity' in section: - adapted['size'] = section.capacity - if 'enrollment' in section: + if "capacity" in section: + adapted["size"] = section.capacity + if "enrollment" in section: # TODO - change 'enrolment' to 'enrollment' in django model - adapted['enrolment'] = section.enrollment - if 'waitlist' in section: - adapted['waitlist'] = section.waitlist - if 'waitlist_size' in section: - adapted['waitlist_size'] = section.waitlist_size - if 'remaining_seats' in section: + adapted["enrolment"] = section.enrollment + if "waitlist" in section: + adapted["waitlist"] = section.waitlist + if "waitlist_size" in section: + adapted["waitlist_size"] = section.waitlist_size + if "remaining_seats" in section: pass # NOTE: possible logic conflict with other data # adapted['remaining_seats'] = section.remaining_seats + if "course_section_id" in section: + adapted["course_section_id"] = section.course_section_id section_type_map = { - 'Lecture': 'L', - 'Laboratory': 'P', - 'Discussion': 'T', + "Lecture": "L", + "Laboratory": "P", + "Discussion": "T", } - if 'type' in section: - adapted['section_type'] = section_type_map.get(section.type, 'L') - if 'fees' in section: + if "type" in section: + adapted["section_type"] = section_type_map.get(section.type, "L") + if "fees" in section: pass # TODO - add fees to database - for instructor in section.get('instructors', []): + for instructor in section.get("instructors", []): instructor = DotDict(instructor) - adapted.setdefault('instructors', '') - if isinstance(instructor.name, basestring): - adapted['instructors'] += instructor.name + adapted.setdefault("instructors", "") + if isinstance(instructor.name, str): + adapted["instructors"] += instructor.name elif isinstance(instructor.name, dict): - adapted['instructors'] += '{} {}'.format(instructor.name.first, - instructor.name.last) + adapted["instructors"] += "{} {}".format( + instructor.name.first, instructor.name.last + ) else: - raise DigestionError('get your instructors straight') - if 'final_exam' in section: + raise DigestionError("get your instructors straight") + if "final_exam" in section: pass # TODO - add to database # Grab semester. - semester, _ = Semester.objects.update_or_create(name=section.term, - year=section.year) + semester, _ = Semester.objects.update_or_create( + name=section.term, year=section.year + ) if semester is None: raise DigestionError( - 'Semester {} {} not in DB'.format(section.term, - section.year) + "Semester {} {} not in DB".format(section.term, section.year) ) return { - 'course': course_model, - 'semester': semester, - 'meeting_section': section.code, - 'defaults': adapted + "course": course_model, + "semester": semester, + "meeting_section": section.code, + "defaults": adapted, } def adapt_meeting(self, meeting, section_model=None): @@ -398,117 +395,103 @@ def adapt_meeting(self, meeting, section_model=None): """ if section_model is None: course_model = None - if (self.cache.code and - meeting.course.code == self.cache.course.code): + if self.cache.code and meeting.course.code == self.cache.course.code: course_model = self.cache.course else: course_model = Course.objects.filter( - school=self.school, - code=meeting.course.code + school=self.school, code=meeting.course.code ).first() if course_model is None: - print('no course object for {}'.format(meeting.course.code), file=sys.stderr) + print( + "no course object for {}".format(meeting.course.code), + file=sys.stderr, + ) # raise DigestionError('no course object for meeting') - if self.cache.course and course_model.code == self.cache.course.code and meeting.section.code == self.cache.section.meeting_section: - section_model = self.cache.section + if ( + self.cache.course + and course_model.code == self.cache.course.code + and meeting.section.code == self.cache.section.meeting_section + ): + section_model = self.cache.section else: section_model = Section.objects.filter( course=course_model, meeting_section=meeting.section.code, semester__name=meeting.section.term, - semester__year=meeting.section.year + semester__year=meeting.section.year, ).first() if section_model is None: - print('no section {} {} for meeting'.format( - meeting.course.code, - meeting.section.code - ), file=sys.stderr) + print( + "no section {} {} for meeting".format( + meeting.course.code, meeting.section.code + ), + file=sys.stderr, + ) # raise DigestionError('no section object for meeting', meeting) - # NOTE: ignoring dates for now - for day in meeting.get('days', []): + for day in meeting.get("days", []): offering = { - 'section': section_model, - 'day': day, - 'time_start': meeting.time.start, - 'time_end': meeting.time.end, - 'defaults': { - 'location': meeting.get('location', {}).get('building', '') + ' ' + meeting.get('location', {}).get('room', '') - } + "section": section_model, + "day": day, + "time_start": meeting.time.start, + "time_end": meeting.time.end, + "date_start": meeting.dates.start, + "date_end": meeting.dates.end, + "is_short_course": is_short_course( + meeting.dates.start, + meeting.dates.end, + self.short_course_weeks_limit, + ), + "defaults": { + "location": meeting.get("location", {}).get("building", "") + + " " + + meeting.get("location", {}).get("room", "") + }, } yield offering - def adapt_textbook(self, textbook): - """Adapt textbook to model dictionary. + def adapt_evaluation(self, evaluation): + """Adapt evaluation to model dictionary. Args: - textbook (dict): validated textbook. + evaluation (dict): validated evaluation. Returns: dict: Description """ - textbook = { - 'isbn': textbook.isbn, - 'defaults': { - 'detail_url': textbook.detail_url, - 'image_url': textbook.image_url, - 'author': textbook.author, - 'title': textbook.title - } + professor = "" + if evaluation.instructors is not None: + for instructor in evaluation.instructors: + instructor = DotDict(instructor) + if isinstance(instructor.name, str): + if professor != "": + professor += ", " + professor += instructor.name + else: + raise DigestionError("get your instructors straight") + + evaluation = { + "course": Course.objects.get(code=evaluation.course.code), + "score": evaluation.score, + "summary": evaluation.summary, + "professor": professor, + "course_code": evaluation.course.code, + "year": evaluation.year, } - for key in textbook['defaults']: - if textbook['defaults'][key] is None: - textbook['defaults'][key] = 'Cannot be found' - return textbook - - def adapt_textbook_link(self, textbook_link, - textbook_model=None, - section_model=None): - """Adapt textbook link to model dictionary. - - Args: - textbook_link (dict): validated - textbook_model (model, None, optional) - section_model (model, None, optional) - - Yields: - dict: model compliant - """ - sections = [section_model] - if section_model is None: - if 'section' not in textbook_link: - sections = Section.objects.filter( - course=textbook_link.course.code, - ) - else: - sections = Section.objects.filter( - course=textbook_link.course.code, - meeting_section=textbook_link.section.code - ) - sections = Section.objects.filter(course=textbook_link.course.code) - if textbook_model is None: - textbook_model = Textbook.objects.filter(isbn=textbook_link.isbn).first() - if 'required' not in textbook_link: - textbook_link.required = True # TODO - optional required field in db and frontend - for section in sections: - yield { - 'section': section, - 'is_required': textbook_link.required, - 'textbook': textbook_model - } - # NOTE: no current usage of course linked textbooks (listified yield will always be length 1) + for key in evaluation: + if evaluation[key] is None: + evaluation[key] = "Cannot be found" + return evaluation -class DigestionStrategy(object): - __metaclass__ = ABCMeta - +class DigestionStrategy(object, metaclass=ABCMeta): @abstractmethod def wrap_up(self): - '''Do whatever needs to be done to wrap_up digestion session.''' + """Do whatever needs to be done to wrap_up digestion session.""" class Vommit(DigestionStrategy): - '''Output diff between input and db data.''' + """Output diff between input and db data.""" def __init__(self, output): self.defaults = Vommit.get_model_defaults() @@ -517,20 +500,20 @@ def __init__(self, output): super(Vommit, self).__init__() def exclude(dct): - return {k: v for k, v in dct.items() if k != 'defaults'} + return {k: v for k, v in list(dct.items()) if k != "defaults"} - for name, model in Digestor.MODELS.items(): + for name, model in list(Digestor.MODELS.items()): # if hasattr(self, 'digest_' + name): - # continue + # continue def closure(name, model): def digest(self, model_params): - obj = model.objects.filter( - **exclude(model_params) - ).first() + obj = model.objects.filter(**exclude(model_params)).first() self.diff(name, model_params, obj) return obj + return digest - setattr(self.__class__, 'digest_' + name, closure(name, model)) + + setattr(self.__class__, "digest_" + name, closure(name, model)) def wrap_up(self): self.json_streamer.exit() @@ -557,65 +540,64 @@ def diff(self, kind, inmodel, dbmodel, hide_defaults=True): # Transform django object to dictionary. dbmodel = dbmodel.__dict__ - context = {'section', 'course', 'semester', 'textbook'} + context = {"section", "course", "semester", "evaluation"} whats = {} - for k, v in inmodel.iteritems(): + for k, v in inmodel.items(): if k not in context: continue try: whats[k] = str(v) - except (django.utils.encoding.DjangoUnicodeDecodeError, - UnicodeEncodeError): - whats[k] = '<{}: [Bad Unicode data]'.format(k) + except (django.utils.encoding.DjangoUnicodeDecodeError, UnicodeEncodeError): + whats[k] = "<{}: [Bad Unicode data]".format(k) # Remove db specific content from model. blacklist = context | { - '_state', - 'id', - 'section_id', - 'course_id', - '_course_cache', - 'semester_id', - '_semester', - 'vector', + "_state", + "id", + "section_id", + "course_id", + "_course_cache", + "semester_id", + "_semester", } def prune(d): - return {k: v for k, v in d.iteritems() if k not in blacklist} + return {k: v for k, v in d.items() if k not in blacklist} + dbmodel = prune(dbmodel) inmodel = prune(inmodel) - if 'course' in dbmodel: - dbmodel['course'] = str(dbmodel['course']) + if "course" in dbmodel: + dbmodel["course"] = str(dbmodel["course"]) # Remove null values from dictionaries. - dbmodel = {k: v for k, v in dbmodel.iteritems() if v is not None} + dbmodel = {k: v for k, v in dbmodel.items() if v is not None} # Move contents of default dictionary to first-level of dictionary. - if 'defaults' in inmodel: - defaults = inmodel['defaults'] - del inmodel['defaults'] + if "defaults" in inmodel: + defaults = inmodel["defaults"] + del inmodel["defaults"] inmodel.update(defaults) # Diff the in-model and db-model - diffed = json.loads(jsondiff.diff(dbmodel, inmodel, - syntax='symmetric', - dump=True)) + diffed = json.loads( + jsondiff.diff(dbmodel, inmodel, syntax="symmetric", dump=True) + ) # Remove db defaulted values from diff output. - if hide_defaults and '$delete' in diffed: - self.remove_defaulted_keys(kind, diffed['$delete']) - if len(diffed['$delete']) == 0: - del diffed['$delete'] + if hide_defaults and "$delete" in diffed: + self.remove_defaulted_keys(kind, diffed["$delete"]) + if len(diffed["$delete"]) == 0: + del diffed["$delete"] # Add `what` and `context` tag to diff output. if len(diffed) > 0: if isinstance(diffed, list) and len(diffed[0]) == 0: - diffed = {'$new': diffed[1]} + diffed = {"$new": diffed[1]} elif isinstance(diffed, dict): - diffed.update({'$what': inmodel}) - diffed.update({'$context': whats}) + diffed.update({"$what": inmodel}) + diffed.update({"$context": whats}) self.json_streamer.write(diffed) return diffed @@ -628,20 +610,18 @@ def remove_defaulted_keys(self, kind, dct): @staticmethod def get_model_defaults(): models = { - 'course': Course, - 'section': Section, - 'offering': Offering, - 'textbook': Textbook, - 'textbook_link': TextbookLink, - 'evaluation': Evaluation + "course": Course, + "section": Section, + "offering": Offering, + "evaluation": Evaluation, } defaults = {} - for model_name, model in models.items(): + for model_name, model in list(models.items()): defaults[model_name] = {} - for field in model._meta.get_all_field_names(): + for field in [f.name for f in model._meta.get_fields()]: try: - default = model._meta.get_field_by_name(field)[0].default + default = model._meta.get_field(field).default except AttributeError: continue if default is django.db.models.fields.NOT_PROVIDED: @@ -666,16 +646,18 @@ def __init__(self, school, meta): @classmethod def _create_digest_methods(cls): - for name, model in Digestor.MODELS.items(): - if hasattr(cls, 'digest_' + name): + for name, model in list(Digestor.MODELS.items()): + if hasattr(cls, "digest_" + name): continue def closure(name, model): def digest(cls, params): obj, created = cls._update_or_create(model, params) return obj + return classmethod(digest) - setattr(cls, 'digest_' + name, closure(name, model)) + + setattr(cls, "digest_" + name, closure(name, model)) @classmethod def digest_section(cls, parmams, clean=True): @@ -689,7 +671,7 @@ def _update_or_create(model_type, model_args): try: return model_type.objects.update_or_create(**model_args) except django.db.utils.DataError as e: - json_model_args = {k: str(v) for k, v in model_args.items()} + json_model_args = {k: str(v) for k, v in list(model_args.items())} raise DigestionError(json_model_args, str(e)) @staticmethod @@ -700,10 +682,10 @@ def remove_section(section_code, course_obj): section (dict): Description course_obj (Course): Section part of this course. """ - if Section.objects.filter(course=course_obj, - meeting_section=section_code).exists(): - s = Section.objects.get(course=course_obj, - meeting_section=section_code) + if Section.objects.filter( + course=course_obj, meeting_section=section_code + ).exists(): + s = Section.objects.get(course=course_obj, meeting_section=section_code) s.delete() @staticmethod @@ -717,19 +699,18 @@ def remove_offerings(section_obj): def wrap_up(self): """Update time updated for school at wrap_up of parse.""" - for school, years in self.meta['$schools'].items(): - for year, terms in years.items(): + for school, years in list(self.meta["$schools"].items()): + for year, terms in list(years.items()): for term in terms: semester, created = Semester.objects.update_or_create( - year=year, - name=term + year=year, name=term ) if created: pass # TODO - add logging to show that semester dne update, _ = DataUpdate.objects.update_or_create( school=self.school, semester=semester, - update_type=DataUpdate.COURSES + update_type=DataUpdate.COURSES, ) update.save() @@ -751,15 +732,17 @@ def __init__(self, school, meta, output=None): @classmethod def _create_digest_methods(cls): for name in Digestor.MODELS: - if hasattr(cls, 'digest_' + name): + if hasattr(cls, "digest_" + name): continue def closure(name): def digest(self, params): - getattr(self.vommit, 'digest_' + name)(params) - return getattr(self.absorb, 'digest_' + name)(params) + getattr(self.vommit, "digest_" + name)(params) + return getattr(self.absorb, "digest_" + name)(params) + return digest - setattr(cls, 'digest_' + name, closure(name)) + + setattr(cls, "digest_" + name, closure(name)) def wrap_up(self): self.vommit.wrap_up() diff --git a/parsing/library/evals_parser.py b/parsing/library/evals_parser.py new file mode 100644 index 0000000000..bcc75d771d --- /dev/null +++ b/parsing/library/evals_parser.py @@ -0,0 +1,218 @@ +from selenium import webdriver +from selenium.webdriver.support.ui import WebDriverWait +from webdriver_manager.chrome import ChromeDriverManager +from selenium.webdriver.chrome.service import Service +from selenium.webdriver.support import expected_conditions as EC +from selenium.webdriver.common.by import By +import requests +import getpass +import os +import json +import time +from tqdm import tqdm + +# Variable +year = 2023 +input_file = "" # Specify file name here, or use an empty string to download data from the Semesterly course API +output_file = "{}/parsing/schools/jhu/data/evals.json".format(os.getcwd()) + +# Get email and password from user input +jhu_email = input("Enter your JHU email: ") +jhu_password = getpass.getpass("Enter your JHU password: ") + +# Config +chrome_options = webdriver.ChromeOptions() +chrome_options.add_argument("--no-sandbox") # Allow running chrome as root in Docker +chrome_options.add_argument("--headless") # Do not require a display +chrome_options.add_argument("--disable-dev-shm-usage") # for docker +chrome_options.add_argument("--window-size=1920x1080") + +service = Service(ChromeDriverManager().install()) +driver = webdriver.Chrome(service=service, options=chrome_options) + +# Load courses +if input_file: + with open(input_file, "r") as file: + courses = json.load(file) +else: + response = requests.get("https://jhu.semester.ly/courses/json") + courses = response.json() + +# Open the URL +url = "https://asen-jhu.evaluationkit.com/" +driver.get(url) + +# Authentication starts here +# Wait for the email input field and enter the email +email_input = WebDriverWait(driver, 10).until( + EC.presence_of_element_located((By.ID, "i0116")) +) +email_input.send_keys(jhu_email) + +# Wait for the next button to be clickable and click it +next_button = WebDriverWait(driver, 10).until( + EC.element_to_be_clickable((By.ID, "idSIButton9")) +) +next_button.click() + +# Wait for the password input field and enter the password +password_input = WebDriverWait(driver, 10).until( + EC.presence_of_element_located((By.ID, "i0118")) +) +password_input.send_keys(jhu_password) + +time.sleep(1) + +# Wait for the sign-in button to be clickable and click it +sign_in_button = WebDriverWait(driver, 10).until( + EC.element_to_be_clickable((By.ID, "idSIButton9")) +) +sign_in_button.click() + +# Start to parse evaluations on courses +course_ratings = {} + +# Dictionary to convert semester codes to full names +semester_conversion = { + "FA": "Fall", + "SP": "Spring", + "SU": "Summer", + "IN": "Intersession", +} + +print(f"Total number of courses to parse: {len(courses)}") + +# Parse course evaluations +with tqdm(total=len(courses), desc="Parsing Courses", unit="course") as pbar: + for course in courses: + course_name = course["name"] + course_code = course["code"] + + # Construct the URL based on the course_name or course_code as needed + course_url = ( + f"https://asen-jhu.evaluationkit.com/Report/Public/Results?" + f"Course={course_name}&Instructor=&TermId=&Year={year}" + f"&AreaId=&QuestionKey=&Search=true" + ) + driver.get(course_url) + + try: + # Continuously click on "Show more results" link while it exists + while True: + try: + show_more_link = WebDriverWait(driver, 0.1).until( + EC.presence_of_element_located((By.ID, "publicMore")) + ) + show_more_link.click() + time.sleep(5) + except: + break + + # After expanding all results, locate all courses + class_elements = driver.find_elements( + By.CLASS_NAME, "sr-dataitem-info-code" + ) + + if class_elements: + # For each located course element, parse the required information + for element in class_elements: + class_info = element.text + + # Split and parse the course code and semester/year + ( + course_code_with_section_parsed, + semester_and_year_parsed, + ) = class_info.rsplit(".", 1) + + # Check if the parsed course code matches the one we're interested in + if course_code in course_code_with_section_parsed: + # Find the parent element which includes both instructor name and rating + parent_div = element.find_element(By.XPATH, "./..") + + try: + # Attempt to extract the instructor name from the parent div + professor_name_element = parent_div.find_element( + By.CLASS_NAME, "sr-dataitem-info-instr" + ) + professor_name = professor_name_element.text + except Exception: + # If the element is not found, set professor name as empty + professor_name = "" + + rating_element = element.find_element( + By.XPATH, "../following-sibling::div//strong" + ) + rating = float(rating_element.text) + + # Organize the data in a dictionary + if course_code not in course_ratings: + course_ratings[course_code] = {} + if semester_and_year_parsed not in course_ratings[course_code]: + course_ratings[course_code][semester_and_year_parsed] = {} + if ( + professor_name + not in course_ratings[course_code][semester_and_year_parsed] + ): + course_ratings[course_code][semester_and_year_parsed][ + professor_name + ] = [] + + # Append the rating to the list for the specific course, semester/year, and professor + course_ratings[course_code][semester_and_year_parsed][ + professor_name + ].append(rating) + + # print(f"Successfully parsed evaluations for course {course_code}") + + else: + # print(f"No evaluations found for course {course_code}.") + pass + + except Exception as e: + print(f"Exception raised with error: {e}.") + + pbar.update(1) + +# Format the collected data and write it to a JSON file +formatted_courses = [] +with tqdm( + total=len(course_ratings.items()), desc="Formatting Parsed Courses", unit="course" +) as pbar: + for course_code, semesters in course_ratings.items(): + for semester_and_year, professors in semesters.items(): + for professor_name, ratings in professors.items(): + average_rating = sum(ratings) / len(ratings) + + # Format the semester and year + term, year = semester_and_year[:2], semester_and_year[2:] + term_full = semester_conversion.get(term, "Unknown Term") + year_full = f"20{year}" + + # Format the professor's name + formatted_professor_name = " ".join( + word.strip().capitalize() + for word in reversed(professor_name.split(",")) + ) + + formatted_course = { + "course": {"code": course_code}, + "instructors": [{"name": formatted_professor_name}], + "kind": "eval", + "score": round(average_rating, 2), + "summary": "", # Empty + "term": term_full, + "year": term_full + ":" + year_full, + } + formatted_courses.append(formatted_course) + pbar.update(1) + +# Save the formatted data to a JSON file +with open(output_file, "w") as outfile: + json.dump( + {"$data": formatted_courses, "$meta": {"$schools": {"jhu": {}}}}, + outfile, + indent=2, + ) + +print(f"Course data formatted and saved to '{output_file}'.") +driver.quit() diff --git a/parsing/library/exceptions.py b/parsing/library/exceptions.py index 391f3e2731..af78b9ad1a 100644 --- a/parsing/library/exceptions.py +++ b/parsing/library/exceptions.py @@ -10,8 +10,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - from parsing.library.utils import pretty_json @@ -45,7 +43,7 @@ def __str__(self): Returns: str """ - return '\n' + '\n'.join(map(str, self.args)) + return "\n" + "\n".join(map(str, self.args)) class PipelineError(PipelineException): diff --git a/parsing/library/extractor.py b/parsing/library/extractor.py index 661e688455..9fd1a25694 100644 --- a/parsing/library/extractor.py +++ b/parsing/library/extractor.py @@ -10,26 +10,23 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - # NOTE: module currently unused as it introduces too many bugs. # Might reconsider for later use. import re + # import unicodedata from collections import namedtuple from parsing.library.utils import make_list -Extraction = namedtuple('Extraction', 'key container patterns') +Extraction = namedtuple("Extraction", "key container patterns") -def extract_info_from_text(text, - inject=None, - extractions=None, - use_lowercase=True, - splice_text=True): +def extract_info_from_text( + text, inject=None, extractions=None, use_lowercase=True, splice_text=True +): """Attempt to extract info from text and put it into course object. NOTE: Currently unstable and unused as it introduces too many bugs. @@ -48,27 +45,24 @@ def extract_info_from_text(text, if extractions is None: extractions = ( Extraction( - key='prereqs', - container=make_list, - patterns=(r'pr-?ereq(?:uisite)?s?[:,\s]\s*(.*?)(?:\.|$)\s*', - r'take (.*)\.?$') - ), - Extraction( - key='coreqs', + key="prereqs", container=make_list, - patterns=(r'co-?req(?:uisite)?s?[:,\s]\s*(.*?)(?:\.|$)\s*',) + patterns=( + r"pr-?ereq(?:uisite)?s?[:,\s]\s*(.*?)(?:\.|$)\s*", + r"take (.*)\.?$", + ), ), Extraction( - key='geneds', + key="coreqs", container=make_list, - patterns=(r'ge (.*)',) + patterns=(r"co-?req(?:uisite)?s?[:,\s]\s*(.*?)(?:\.|$)\s*",), ), + Extraction(key="geneds", container=make_list, patterns=(r"ge (.*)",)), Extraction( - key='fee', + key="fee", container=float, - patterns=( - r'(?:lab )?fees?:?\s{1,2}?\$?\s?(\d+(?:\.\d{1,2})?)',) - ) + patterns=(r"(?:lab )?fees?:?\s{1,2}?\$?\s?(\d+(?:\.\d{1,2})?)",), + ), ) # Search for matches. @@ -79,11 +73,18 @@ def extract_info_from_text(text, if not match: continue try: - contained = container(text[match.start() + match.group().index(match.group(1)): match.start() + match.group().index(match.group(1)) + len(match.group(1))]) # magic... + contained = container( + text[ + match.start() + + match.group().index(match.group(1)) : match.start() + + match.group().index(match.group(1)) + + len(match.group(1)) + ] + ) # magic... default = extracted.setdefault(key, container()) default += contained if splice_text: - text = text[:match.start()] + text[match.end():] + text = text[: match.start()] + text[match.end() :] except: continue # if isinstance(text, basestring): diff --git a/parsing/library/ingestor.py b/parsing/library/ingestor.py index f141fdb88a..8781e7252b 100644 --- a/parsing/library/ingestor.py +++ b/parsing/library/ingestor.py @@ -10,18 +10,26 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - import logging from parsing.library.logger import JSONStreamWriter from parsing.library.tracker import NullTracker from parsing.library.validator import Validator from parsing.library.viewer import Hoarder -from parsing.library.utils import clean, make_list, safe_cast, titlize, time24 +from parsing.library.utils import ( + clean, + make_list, + safe_cast, + titlize, + time24, + short_date, +) from parsing.library.exceptions import PipelineError, PipelineWarning -from parsing.library.validator import ValidationError, ValidationWarning, \ - MultipleDefinitionsWarning +from parsing.library.validator import ( + ValidationError, + ValidationWarning, + MultipleDefinitionsWarning, +) class IngestionError(PipelineError): @@ -50,70 +58,103 @@ class Ingestor(dict): """ ALL_KEYS = { - 'school', - 'school_subdivision_code', 'school_subdivision_name', - 'kind', - 'department', - 'dept', - 'department_name', - 'department_code', - 'dept_name', - 'dept_code', - 'code', 'course_code', 'course', - 'name', - 'course_name', - 'prerequisites', - 'prereqs', - 'corequisites', - 'coreqs', - 'exclusions', - 'description', - 'descr', - 'areas', - 'level', - 'cores', - 'geneds', - 'homepage', - 'website', - 'instructors', - 'instructors', 'instructor', 'instr', 'instrs', 'instr_name', - 'instr_names', 'instructor', 'instructor_name', - 'section', 'sections', 'section_code', 'section_name', - 'meeting_section', - 'section_type', 'type', - 'term', - 'semester', - 'year', - 'instructors', - 'capacity', 'size', - 'enrollment', 'enrolment', - 'waitlist', 'waitlist_size', - 'remaining_seats', - 'fees', 'fee', 'cost', - 'final_exam', - 'offerings', 'meetings', - 'time_start', 'start_time', - 'time_end', 'end_time', - 'location', - 'loc', 'where', - 'days', 'day', 'dates', 'date', - 'time', - 'credits', 'num_credits', - 'campus', # TODO - not really - 'textbooks', 'isbn', 'required', - 'detail_url', 'image_url', 'author', 'title', - 'score', - 'summary', - 'same_as', + "school", + "school_subdivision_code", + "school_subdivision_name", + "kind", + "department", + "department_name", + "department_code", + "dept_name", + "dept_code", + "code", + "course_code", + "course", + "name", + "course_name", + "prerequisites", + "prereqs", + "corequisites", + "coreqs", + "exclusions", + "description", + "descr", + "areas", + "level", + "cores", + "geneds", + "homepage", + "website", + "instructors", + "instructors", + "instructor", + "instr", + "instrs", + "instr_name", + "instr_names", + "instructor", + "instructor_name", + "section", + "sections", + "section_code", + "section_name", + "meeting_section", + "section_type", + "type", + "term", + "semester", + "year", + "instructors", + "capacity", + "size", + "enrollment", + "enrolment", + "waitlist", + "waitlist_size", + "remaining_seats", + "fees", + "fee", + "cost", + "final_exam", + "offerings", + "meetings", + "time_start", + "start_time", + "time_end", + "end_time", + "date_start", + "date_end", + "location", + "loc", + "where", + "days", + "day", + "dates", + "date", + "time", + "credits", + "num_credits", + "campus", # TODO - not really + "score", + "summary", + "same_as", + "pos", + "writing_intensive", + "sub_school", + "course_section_id", } - def __init__(self, config, output, - break_on_error=True, - break_on_warning=False, - display_progress_bar=True, - skip_duplicates=True, - validate=True, - tracker=NullTracker()): + def __init__( + self, + config, + output, + break_on_error=True, + break_on_warning=False, + display_progress_bar=True, + skip_duplicates=True, + validate=True, + tracker=NullTracker(), + ): """Construct ingestor object and resolve options. Args: @@ -128,7 +169,7 @@ def __init__(self, config, output, validate (bool, optional): Perform validation. tracker (library.tracker, optional): tracker object """ - self.school = config['school']['code'] + self.school = config["school"]["code"] self.validate = validate self.break_on_error = break_on_error self.break_on_warning = break_on_warning @@ -140,7 +181,7 @@ def __init__(self, config, output, # Initialize loggers for json and errors. self.json = JSONStreamWriter(output, type_=dict).enter() - self.data_list = self.json.write('$data', type_=list).enter() + self.data_list = self.json.write("$data", type_=list).enter() if self.validate: self.validator = Validator(config, tracker=self.tracker) @@ -165,26 +206,26 @@ def _get(self, *keys, **kwargs): Raises: IngestorError: Enforce Ingestor.ALL_KEYS """ - default = kwargs.get('default') + default = kwargs.get("default") for key in keys: if key not in Ingestor.ALL_KEYS: - raise IngestionWarning(key + ' not in Ingestor.ALL_KEYS') + raise IngestionWarning(key + " not in Ingestor.ALL_KEYS") if key not in self: continue return self[key] return default def _resolve_department(self): - department = self._get('department') - if ('department' not in self or - ('department_name' in self or - 'department_code' in self or - 'dept_name' in self or - 'dept_code' in self)): - # if not isinstance(self._get('department', 'dept'), dict): + department = self._get("department") + if "department" not in self or ( + "department_name" in self + or "department_code" in self + or "dept_name" in self + or "dept_code" in self + ): department = { - 'name': titlize(self._get('department_name', 'dept_name')), - 'code': self._get('department_code', 'dept_code') + "name": titlize(self._get("department_name", "dept_name")), + "code": self._get("department_code", "dept_code"), } return department @@ -192,46 +233,54 @@ def _resolve_instructors(self): instructors = None instr_keys = set( [ - 'instructors', - 'instructor', - 'instr', - 'instrs', - 'instr_name', - 'instr_names', - 'instructor', - 'instructor_name', - 'instructors' - ]) & set(self) + "instructors", + "instructor", + "instr", + "instrs", + "instr_name", + "instr_names", + "instructor", + "instructor_name", + "instructors", + ] + ) & set(self) if len(instr_keys) == 1: instructors = self[list(instr_keys)[0]] instructors = clean(make_list(instructors)) if instructors is not None: for i in range(len(instructors)): - if isinstance(instructors[i], basestring): - instructors[i] = {'name': instructors[i]} + if isinstance(instructors[i], str): + instructors[i] = {"name": instructors[i]} elif len(instr_keys) > 1: raise IngestionWarning( - 'cannot resolve instructors from keys: {}'.format( - ','.join(instr_keys) - ), - self + "cannot resolve instructors from keys: {}".format(",".join(instr_keys)), + self, ) return instructors + def _resolve_date(self): + dates = self._get("date") + if "dates" not in self: + dates = { + "start": short_date(self._get("date_start")), + "end": short_date(self._get("date_end")), + } + return dates + def _resolve_time(self): - time = self._get('time') - if 'time' not in self: + time = self._get("time") + if "time" not in self: time = { - 'start': time24(self._get('time_start', 'start_time')), - 'end': time24(self._get('time_end', 'end_time')) + "start": time24(self._get("time_start", "start_time")), + "end": time24(self._get("time_end", "end_time")), } return time def _resolve_location(self): - location = self._get('location') - if isinstance(self._get('location', 'loc', 'where'), basestring): - location = {'where': self._get('location', 'loc', 'where')} + location = self._get("location") + if isinstance(self._get("location", "loc", "where"), str): + location = {"where": self._get("location", "loc", "where")} return location def ingest_course(self): @@ -241,31 +290,36 @@ def ingest_course(self): dict: course """ course = { - 'kind': 'course', - 'school': { - 'code': self.school, - 'subdivisions': [ + "kind": "course", + "school": { + "code": self.school, + "subdivisions": [ { - 'code': self._get('school_subdivision_code'), - 'name': self._get('school_subdivision_name') + "code": self._get("school_subdivision_code"), + "name": self._get("school_subdivision_name"), } - ] + ], }, - 'code': self._get('course_code', 'code', 'course'), - 'name': titlize(self._get('name', 'course_name')), - 'department': self._resolve_department(), - 'credits': safe_cast(self._get('credits', 'num_credits'), float, default=0.), - 'prerequisites': make_list(self._get('prerequisites', 'prereqs')), - 'corequisites': make_list(self._get('corequisites', 'coreqs')), - 'exclusions': make_list(self._get('exclusions')), - 'areas': make_list(self._get('areas')), - 'level': self._get('level'), - 'cores': make_list(self._get('cores')), - 'geneds': make_list(self._get('geneds')), - 'sections': self._get('sections'), - 'homepage': self._get('homepage', 'website'), - 'same_as': make_list(self._get('same_as')), - 'description': self._get('description', 'descr'), + "code": self._get("course_code", "code", "course"), + "name": titlize(self._get("name", "course_name")), + "department": self._resolve_department(), + "credits": safe_cast( + self._get("credits", "num_credits"), float, default=0.0 + ), + "prerequisites": make_list(self._get("prerequisites", "prereqs")), + "corequisites": make_list(self._get("corequisites", "coreqs")), + "exclusions": make_list(self._get("exclusions")), + "areas": make_list(self._get("areas")), + "level": self._get("level"), + "cores": make_list(self._get("cores")), + "geneds": make_list(self._get("geneds")), + "sections": self._get("sections"), + "homepage": self._get("homepage", "website"), + "same_as": make_list(self._get("same_as")), + "description": self._get("description", "descr"), + "pos": make_list(self._get("pos")), + "writing_intensive": self._get("writing_intensive"), + "sub_school": self._get("sub_school"), # 'description': extract_info_from_text( # self._get('description', 'descr'), # inject=self @@ -274,8 +328,8 @@ def ingest_course(self): course = clean(course) self._validate_and_log(course) - if 'department' in course: - self.tracker.department = course['department'] + if "department" in course: + self.tracker.department = course["department"] return course def ingest_section(self, course): @@ -288,32 +342,29 @@ def ingest_section(self, course): dict: section """ section = { - 'kind': 'section', - 'course': { - 'code': course.get('code') - }, - 'code': self._get('section_code', 'section', - 'meeting_section'), - 'name': titlize(self._get('section_name')), - 'term': self._get('term', 'semester'), - 'year': str(self._get('year')), - 'instructors': self._resolve_instructors(), - 'capacity': safe_cast(self._get('capacity', 'size'), int), - 'enrollment': safe_cast(self._get('enrollment', 'enrolment'), int), - 'waitlist': safe_cast(self._get('waitlist'), int), - 'waitlist_size': safe_cast(self._get('waitlist_size'), int), - 'remaining_seats': safe_cast(self._get('remaining_seats'), int), - 'type': self._get('type', 'section_type'), - 'fees': safe_cast(self._get('fees', 'fee', 'cost'), float), - 'final_exam': self._get('final_exam'), - 'textbooks': self._get('textbooks'), - 'meetings': self._get('offerings', 'meetings') + "kind": "section", + "course": {"code": course.get("code")}, + "code": self._get("section_code", "section", "meeting_section"), + "name": titlize(self._get("section_name")), + "term": self._get("term", "semester"), + "year": str(self._get("year")), + "instructors": self._resolve_instructors(), + "capacity": safe_cast(self._get("capacity", "size"), int), + "enrollment": safe_cast(self._get("enrollment", "enrolment"), int), + "waitlist": safe_cast(self._get("waitlist"), int), + "waitlist_size": safe_cast(self._get("waitlist_size"), int), + "remaining_seats": safe_cast(self._get("remaining_seats"), int), + "type": self._get("type", "section_type"), + "fees": safe_cast(self._get("fees", "fee", "cost"), float), + "final_exam": self._get("final_exam"), + "meetings": self._get("offerings", "meetings"), + "course_section_id": safe_cast(self._get("course_section_id"), int), } section = clean(section) self._validate_and_log(section) - self.tracker.year = section['year'] - self.tracker.term = section['term'] + self.tracker.year = section["year"] + self.tracker.term = section["term"] return section def ingest_meeting(self, section, clean_only=False): @@ -325,24 +376,24 @@ def ingest_meeting(self, section, clean_only=False): Returns: dict: meeting """ - year = str(self._get('year')) - term = self._get('term', 'semester') - if section.get('code') is None: + year = str(self._get("year")) + term = self._get("term", "semester") + if section.get("code") is None: year = None term = None meeting = { - 'kind': 'meeting', - 'course': section.get('course'), - 'section': { - 'code': section.get('code'), - 'year': year, - 'term': term, + "kind": "meeting", + "course": section.get("course"), + "section": { + "code": section.get("code"), + "year": year, + "term": term, }, - 'days': make_list(self._get('days', 'day')), - 'dates': make_list(self._get('dates', 'date')), - 'time': self._resolve_time(), - 'location': self._resolve_location() + "days": make_list(self._get("days", "day")), + "dates": self._resolve_date(), + "time": self._resolve_time(), + "location": self._resolve_location(), } meeting = clean(meeting) @@ -351,65 +402,11 @@ def ingest_meeting(self, section, clean_only=False): return meeting self._validate_and_log(meeting) - if 'time' in meeting: - self.tracker.time = meeting['time']['start'] - self.tracker.time = meeting['time']['end'] + if "time" in meeting: + self.tracker.time = meeting["time"]["start"] + self.tracker.time = meeting["time"]["end"] return meeting - def ingest_textbook_link(self, section=None): - """Create textbook link json object. - - Args: - section (None, :obj:`dict`, optional): Description - Returns: - dict: textbook link. - """ - textbook_link = { - 'kind': 'textbook_link', - 'school': { - 'code': self._get('school', 'school_code') - }, - 'course': { - 'code': self._get('course_code') - }, - 'section': { - 'code': self._get('section_code'), - 'year': str(self._get('year')), - 'term': self._get('term', 'semester') - }, - 'isbn': self._get('isbn'), - 'required': self._get('required') - } - - textbook_link = clean(textbook_link) - self._validate_and_log(textbook_link) - self.tracker.year = textbook_link['section']['year'] - self.tracker.term = textbook_link['section']['term'] - if 'department' in self: - self.tracker.department = self['department'] - return textbook_link - - def ingest_textbook(self): - """Create textbook json object. - - Returns: - dict: textbook - """ - textbook = { - 'kind': 'textbook', - 'isbn': self._get('isbn'), - 'detail_url': self._get('detail_url'), - 'image_url': self._get('image_url'), - 'author': self._get('author'), - 'title': self._get('title') - } - - textbook = clean(textbook) - self._validate_and_log(textbook) - if 'department' in self: - self.tracker.department = self['department'] - return textbook - def ingest_eval(self): """Create evaluation json object. @@ -417,20 +414,19 @@ def ingest_eval(self): dict: eval """ evaluation = { - 'kind': 'eval', - 'year': str(self._get('year')), - 'term': self._get('term'), - 'score': float(self._get('score')), - 'instructors': self._resolve_instructors(), - 'course': { - 'code': self._get('course_code') - } + "kind": "eval", + "year": str(self._get("year")), + "term": self._get("term"), + "score": float(self._get("score")), + "instructors": self._resolve_instructors(), + "course": {"code": self._get("course_code")}, + "summary": self._get("summary"), } evaluation = clean(evaluation) self._validate_and_log(evaluation) - self.tracker.year = evaluation['year'] - self.tracker.term = evaluation['term'] + self.tracker.year = evaluation["year"] + self.tracker.term = evaluation["term"] return evaluation def end(self): @@ -439,17 +435,17 @@ def end(self): Close i/o, clear internal state, write meta info """ self.data_list.exit() - self.json.write('$meta', { - '$schools': self.hoarder.schools, - '$timestamp': self.tracker.start_time - }) + self.json.write( + "$meta", + {"$schools": self.hoarder.schools, "$timestamp": self.tracker.start_time}, + ) self.json.exit() self.clear() def _validate_and_log(self, obj): if self.validate is False: self.data_list.write(obj) - self.tracker.stats = dict(kind=obj['kind'], status='total') + self.tracker.stats = dict(kind=obj["kind"], status="total") return is_valid, skip = self._run_validator(obj) @@ -462,43 +458,40 @@ def _validate_and_log(self, obj): if key in Ingestor.ALL_KEYS: continue raise IngestionWarning( - self, - 'ingestor does not support key {}: {}'.format(key, - self[key]) + self, "ingestor does not support key {}: {}".format(key, self[key]) ) except IngestionWarning as e: is_valid = True - logging.exception('Ingestor warning') + logging.exception("Ingestor warning") if self.break_on_warning: raise e - self.tracker.stats = dict(kind=obj['kind'], status='total') + self.tracker.stats = dict(kind=obj["kind"], status="total") def _run_validator(self, data): is_valid = False full_skip = False - logger = logging.getLogger('parsing.schools.' + self.school) + logger = logging.getLogger("parsing.schools." + self.school) try: self.validator.validate(data) - self.tracker.stats = dict(kind=data['kind'], status='valid') + self.tracker.stats = dict(kind=data["kind"], status="valid") is_valid = True except ValidationError as e: if self.break_on_error: raise ValidationError(*e.args) else: - logger.warning('Ingestion failed', exc_info=True) - logger.debug('Ingestor dump', self) + logger.warning("Ingestion failed", exc_info=True) + logger.debug("Ingestor dump", self) except ValidationWarning as e: - if (isinstance(e, MultipleDefinitionsWarning) and - self.skip_duplicates): + if isinstance(e, MultipleDefinitionsWarning) and self.skip_duplicates: full_skip = True else: is_valid = True if self.break_on_warning: raise ValidationWarning(*e.args) else: - logger.warning('Validation warning', exc_info=True) - logger.debug('Ingestor dump', self) + logger.warning("Validation warning", exc_info=True) + logger.debug("Ingestor dump", self) return is_valid, full_skip diff --git a/parsing/library/logger.py b/parsing/library/logger.py index 94b76c667f..84b8699d92 100644 --- a/parsing/library/logger.py +++ b/parsing/library/logger.py @@ -10,8 +10,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - import logging import sys @@ -20,7 +18,7 @@ from parsing.library.utils import pretty_json -class JSONStreamWriter(object): +class JSONStreamWriter: """Context to stream JSON list to file. Attributes: @@ -65,8 +63,8 @@ class JSONStreamWriter(object): """ BRACES = { - list: ('[', ']'), - dict: ('{', '}'), + list: ("[", "]"), + dict: ("{", "}"), } def __init__(self, obj, type_=list, level=0): @@ -77,11 +75,11 @@ def __init__(self, obj, type_=list, level=0): """ self.first = True self.level = level - if (hasattr(obj, 'read') and hasattr(obj, 'write')): + if hasattr(obj, "read") and hasattr(obj, "write"): self.file = obj self.close_file = False else: - self.file = open(obj, 'wb') + self.file = open(obj, "w") self.close_file = True self.open, self.close = JSONStreamWriter.BRACES[type_] self.type_ = type_ @@ -106,7 +104,7 @@ def write(self, *args, **kwargs): elif self.type_ == dict: return self.write_key_value(*args, **kwargs) else: - raise ValueError('type_ must be `list` or `dict`') + raise ValueError("type_ must be `list` or `dict`") def enter(self): """Wrapper for self.__enter__.""" @@ -118,7 +116,7 @@ def exit(self): def __enter__(self): """Open JSON list.""" - print(' ' * self.level, self.open, file=self.file, sep='') + print(" " * self.level, self.open, file=self.file, sep="") return self def __exit__(self, exc_type, exc_value, traceback): @@ -126,12 +124,13 @@ def __exit__(self, exc_type, exc_value, traceback): Will not close stdout or stderr. """ - print('\n', ' ' * self.level, self.close, - file=self.file, - sep='', - end='') - if (self.file == sys.stdout or self.file == sys.stderr or - self.level > 0 or not self.close_file): + print("\n", " " * self.level, self.close, file=self.file, sep="", end="") + if ( + self.file == sys.stdout + or self.file == sys.stderr + or self.level > 0 + or not self.close_file + ): return self.file.close() @@ -151,28 +150,26 @@ def write_key_value(self, key, value=None, type_=list): if self.first: self.first = False else: - print(',', file=self.file) + print(",", file=self.file) if value is None: - print(' ' * (self.level + 1), '"{}":'.format(key), - file=self.file, - sep='', - end='\n') - return JSONStreamWriter(self.file, - type_=type_, - level=self.level + 1) + print( + " " * (self.level + 1), + '"{}":'.format(key), + file=self.file, + sep="", + end="\n", + ) + return JSONStreamWriter(self.file, type_=type_, level=self.level + 1) if isinstance(value, dict) or isinstance(value, list): - tabbing = '\n' + ' ' * (self.level + 1) + tabbing = "\n" + " " * (self.level + 1) value = tabbing.join(pretty_json(value).splitlines()) elif isinstance(value, str): value = '"{}"'.format(value) - tabbing = ' ' * (self.level + 1) - print(tabbing, '"{}": {}'.format(key, value), - file=self.file, - sep='', - end='') + tabbing = " " * (self.level + 1) + print(tabbing, '"{}": {}'.format(key, value), file=self.file, sep="", end="") def write_obj(self, obj): """Write obj as JSON to file. @@ -183,17 +180,20 @@ def write_obj(self, obj): if self.first: self.first = False else: - print(',', file=self.file) + print(",", file=self.file) - tabbing = ' ' * (self.level + 1) - print(tabbing + ('\n' + tabbing).join(pretty_json(obj).splitlines()), - file=self.file, - sep='\n', - end='') + tabbing = " " * (self.level + 1) + print( + tabbing + ("\n" + tabbing).join(pretty_json(obj).splitlines()), + file=self.file, + sep="\n", + end="", + ) class JSONFormatter(logging.Formatter): """Simple JSON extension of Python logging.Formatter.""" + def format(self, record): """Format record message. @@ -206,7 +206,7 @@ def format(self, record): if isinstance(record.args, dict): try: prettified = pretty_json(record.args) - record.msg += '\n' + prettified + record.msg += "\n" + prettified except TypeError: pass return super(JSONFormatter, self).format(record) @@ -214,10 +214,10 @@ def format(self, record): def colored_json(j): lexer = lexers.JsonLexer() - lexer.add_filter('whitespace') - colorful_json = highlight(unicode(pretty_json(j), 'UTF-8'), - lexer, - formatters.TerminalFormatter()) + lexer.add_filter("whitespace") + colorful_json = highlight( + str(pretty_json(j), "UTF-8"), lexer, formatters.TerminalFormatter() + ) return colorful_json @@ -226,7 +226,7 @@ def format(self, record): if isinstance(record.args, dict): try: prettified = colored_json(record.args) - record.msg += '\n' + prettified + record.msg += "\n" + prettified except TypeError: pass return super(JSONColoredFormatter, self).format(record) diff --git a/parsing/library/requester.py b/parsing/library/requester.py index 6ab380efe1..ee7eaa5087 100644 --- a/parsing/library/requester.py +++ b/parsing/library/requester.py @@ -10,10 +10,8 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - import requests -import cookielib +import http.cookiejar import sys import interruptingcow @@ -21,20 +19,27 @@ from bs4 import BeautifulSoup -class Requester(object): - +class Requester: def __init__(self): self.session = requests.Session() - self.headers = {'User-Agent': UserAgent().random} - self.cookies = cookielib.CookieJar() # TODO - maybe this is not needed + self.headers = {"User-Agent": UserAgent().random} + self.cookies = http.cookiejar.CookieJar() # TODO - maybe this is not needed def new_user_agent(self): - self.headers['User-Agent'] = UserAgent().random + self.headers["User-Agent"] = UserAgent().random def overwrite_header(self, new_headers): self.headers = new_headers - def http_request(self, do_http_request, type, parse=True, quiet=True, timeout=60, throttle=(lambda: None)): + def http_request( + self, + do_http_request, + type, + parse=True, + quiet=True, + timeout=60, + throttle=(lambda: None), + ): """Perform HTTP request. Args: @@ -53,16 +58,17 @@ def http_request(self, do_http_request, type, parse=True, quiet=True, timeout=60 response = None for i in range(10): try: - with interruptingcow.timeout(timeout, exception=requests.exceptions.Timeout): + with interruptingcow.timeout( + timeout, exception=requests.exceptions.Timeout + ): response = do_http_request() - except (requests.exceptions.Timeout, - requests.exceptions.ConnectionError): + except (requests.exceptions.Timeout, requests.exceptions.ConnectionError): if i > 1: - print('THROTTLING REQUESTER', file=sys.stderr) # TODO - should not be stderr, maybe warning? + print( + "THROTTLING REQUESTER", file=sys.stderr + ) # TODO - should not be stderr, maybe warning? throttle() - print("Requester error:", - str(sys.exc_info()[0]), - file=sys.stderr) + print("Requester error:", str(sys.exc_info()[0]), file=sys.stderr) self.new_user_agent() continue @@ -70,7 +76,9 @@ def http_request(self, do_http_request, type, parse=True, quiet=True, timeout=60 break if i > 1: - print('THROTTLING REQUESTER', file=sys.stderr) # TODO - should not be stderr, maybe warning? + print( + "THROTTLING REQUESTER", file=sys.stderr + ) # TODO - should not be stderr, maybe warning? throttle() if not quiet: @@ -85,13 +93,16 @@ def http_request(self, do_http_request, type, parse=True, quiet=True, timeout=60 else: return response - def get(self, url, - params='', - session=None, - cookies=None, - headers=None, - verify=True, - **kwargs): + def get( + self, + url, + params="", + session=None, + cookies=None, + headers=None, + verify=True, + **kwargs + ): """HTTP GET. Args: @@ -105,6 +116,7 @@ def get(self, url, Examples: TODO """ + def request(): return self.session.get( url, @@ -114,15 +126,11 @@ def request(): verify=verify, ) - return self.http_request(request, 'GET', **kwargs) + return self.http_request(request, "GET", **kwargs) - def post(self, url, - data='', - params='', - cookies=None, - headers=None, - verify=True, - **kwargs): + def post( + self, url, data="", params="", cookies=None, headers=None, verify=True, **kwargs + ): """HTTP POST. Args: @@ -134,6 +142,7 @@ def post(self, url, verify (bool, optional): Description **kwargs: Description """ + def request(): return self.session.post( url, @@ -144,7 +153,7 @@ def request(): verify=verify, ) - return self.http_request(request, 'POST', **kwargs) + return self.http_request(request, "POST", **kwargs) @staticmethod def markup(response): @@ -156,8 +165,10 @@ def markup(response): Returns: markedup response """ + def soupify(parser): return BeautifulSoup(response.text, parser) + if response is None: return None try: @@ -165,6 +176,6 @@ def soupify(parser): except ValueError: pass if ""[::-1] in response.text[::-1]: - return soupify('html.parser') + return soupify("html.parser") else: - return soupify('lxml') + return soupify("lxml") diff --git a/parsing/library/schemas/config.json b/parsing/library/schemas/config.json index 7296a6d47d..3e755c42ea 100644 --- a/parsing/library/schemas/config.json +++ b/parsing/library/schemas/config.json @@ -101,6 +101,9 @@ }, "registrar": { "type": "boolean" + }, + "short_course_weeks_limit": { + "type": "integer" } }, "additionalProperties": false, diff --git a/parsing/library/schemas/course.json b/parsing/library/schemas/course.json index d1904c0558..5da040f06a 100644 --- a/parsing/library/schemas/course.json +++ b/parsing/library/schemas/course.json @@ -127,9 +127,9 @@ "fees": {}, "instructors": {}, "final_exam": {}, - "textbooks": {}, "meetings": {}, - "course": {} + "course": {}, + "course_section_id": {} }, "additionalProperties": false, "required": [ diff --git a/parsing/library/schemas/datalist.json b/parsing/library/schemas/datalist.json index 411d9ba10e..cf8e764606 100644 --- a/parsing/library/schemas/datalist.json +++ b/parsing/library/schemas/datalist.json @@ -61,8 +61,8 @@ "fees": {}, "instructors": {}, "final_exam": {}, - "textbooks": {}, - "meetings": {} + "meetings": {}, + "course_section_id": {} }, "additionalProperties": false, "required": [ @@ -99,15 +99,8 @@ "_comment": "'days' or 'dates' requirement nested into structure" }, { - "allOf": [ - { - "$ref": "textbook.json#/" - } - ], "properties": { - "kind": { - "enum": ["textbook_link"] - }, + "kind": {}, "school": {}, "course": {}, "section": {}, @@ -122,15 +115,8 @@ ] }, { - "allOf": [ - { - "$ref": "textbook.json#/" - } - ], "properties": { - "kind": { - "enum": ["textbook"] - }, + "kind": {}, "isbn": {}, "detail_url": {}, "image_url": {}, diff --git a/parsing/library/schemas/definitions.json b/parsing/library/schemas/definitions.json index 0857e88e0c..465e63c922 100644 --- a/parsing/library/schemas/definitions.json +++ b/parsing/library/schemas/definitions.json @@ -11,6 +11,19 @@ "type": "string", "pattern": "\\d{1,2}\/\\d{1,2}\/20[012]\\d" }, + "dates": { + "type": "object", + "properties": { + "start": { + "type": "string", + "format": "date" + }, + "end": { + "type": "string", + "format": "date" + } + } + }, "time": { "type": "object", "properties": { diff --git a/parsing/library/schemas/meeting.json b/parsing/library/schemas/meeting.json index 768bcc0e0e..f356effd5b 100644 --- a/parsing/library/schemas/meeting.json +++ b/parsing/library/schemas/meeting.json @@ -50,16 +50,16 @@ ] }, "dates": { - "type": "array", - "items": { - "allOf": [ - { - "$ref": "definitions.json#/date" - } - ] + "allOf": [ + { + "$ref": "definitions.json#/dates" + } + ], + "properties": { + "start": {}, + "end": {} }, - "uniqueItems": true, - "minItems": 1 + "additionalProperties": false }, "days": { "type": "array", diff --git a/parsing/library/schemas/section.json b/parsing/library/schemas/section.json index 8659e84173..ac321d5cbd 100644 --- a/parsing/library/schemas/section.json +++ b/parsing/library/schemas/section.json @@ -67,6 +67,9 @@ "remaining_seats": { "type": "integer" }, + "course_section_id": { + "type": "integer" + }, "type": { "type": "string", "minLength": 1, @@ -112,28 +115,6 @@ }, "additionalProperties": false }, - "textbooks": { - "type": "array", - "items": { - "allOf": [ - { - "$ref": "textbook.json#/" - } - ], - "properties": { - "kind": {}, - "isbn": {}, - "title": {}, - "author": {}, - "required": {} - }, - "additionalProperties": false, - "required": [ - "kind", - "isbn" - ] - } - }, "meetings": { "type": "array", "items": { @@ -149,7 +130,8 @@ "time": {}, "location": {}, "course": {}, - "section": {} + "section": {}, + "is_short_course": {} }, "additionalProperties": false, "required": [ diff --git a/parsing/library/schemas/section_only.json b/parsing/library/schemas/section_only.json index 758d3887c7..4ca38c3b89 100644 --- a/parsing/library/schemas/section_only.json +++ b/parsing/library/schemas/section_only.json @@ -24,8 +24,8 @@ "fees": {}, "instructors": {}, "final_exam": {}, - "textbooks": {}, - "meetings": {} + "meetings": {}, + "course_section_id": {} }, "additionalProperties": false, "required": [ diff --git a/parsing/library/schemas/textbook.json b/parsing/library/schemas/textbook.json deleted file mode 100644 index e92f77a39e..0000000000 --- a/parsing/library/schemas/textbook.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-04/schema#", - "title": "Textboook", - "description": "Semesterly Textbook JSON schema", - "type": "object", - "properties": { - "kind": { - "enum": ["textbook", "textbook_link"] - }, - "school": { - "allOf": [ - { - "$ref": "definitions.json#/school" - } - ], - "properties": { - "code": {} - }, - "additionalProperties": false, - "required": [ "code" ] - }, - "course": { - "allOf": [ - { - "$ref": "course.json#/" - } - ], - "properties": { - "code": {} - }, - "additionalProperties": false - }, - "section": { - "allOf": [ - { - "$ref": "section.json#/" - } - ], - "properties": { - "code": {}, - "year": {}, - "term": {} - }, - "additionalProperties": false, - "required": [ - "code", "year", "term" - ] - }, - "isbn": { - "type": "string", - "pattern": "^\\d{10}(?:\\d{3})?$" - }, - "detail_url": { - "allOf": [ - { - "$ref": "definitions.json#/url" - } - ] - }, - "image_url": { - "allOf": [ - { - "$ref": "definitions.json#/url" - } - ] - }, - "author": { - "type": "string" - }, - "title": { - "type": "string" - }, - "required": { - "type": "boolean" - } - } -} \ No newline at end of file diff --git a/parsing/library/schemas/textbook_link.json b/parsing/library/schemas/textbook_link.json deleted file mode 100644 index 82144e0a54..0000000000 --- a/parsing/library/schemas/textbook_link.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "$schema": "http://json-schema.org/draft-04/schema#", - "title": "Textboook", - "description": "Semesterly Textbook JSON schema", - "type": "object", - "properties": { "$ref": "textbook.json#/" } -} \ No newline at end of file diff --git a/parsing/library/tracker.py b/parsing/library/tracker.py index 59d0eb88a9..be79de2b72 100644 --- a/parsing/library/tracker.py +++ b/parsing/library/tracker.py @@ -10,8 +10,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - import datetime from timeit import default_timer as timer @@ -23,21 +21,21 @@ class TrackerError(PipelineError): """Tracker error class.""" -class Tracker(object): +class Tracker: """Tracks specified attributes and broadcasts to viewers. @property attributes are defined for all BROADCAST_TYPES """ BROADCAST_TYPES = { - 'SCHOOL', - 'YEAR', - 'TERM', - 'DEPARTMENT', - 'STATS', - 'INSTRUCTOR', - 'TIME', - 'MODE', + "SCHOOL", + "YEAR", + "TERM", + "DEPARTMENT", + "STATS", + "INSTRUCTOR", + "TIME", + "MODE", } def __init__(self): @@ -63,11 +61,14 @@ def year(self, value): """ for btype in Tracker.BROADCAST_TYPES: name = btype.lower() - storage_name = '_{}'.format(name) + storage_name = "_{}".format(name) # If attribute is already part of class, do not override it. - if (hasattr(self, storage_name) or hasattr(self.__class__, name) or - hasattr(self, name)): + if ( + hasattr(self, storage_name) + or hasattr(self.__class__, name) + or hasattr(self, name) + ): continue # NOTE: closure methods are used to capture the variables @@ -76,24 +77,28 @@ def year(self, value): def closure_getter(name, storage_name): def getter(self): return getattr(self, storage_name) + return getter def closure_setter(btype, name, storage_name): def setter(self, value): setattr(self, storage_name, value) self.broadcast(btype) + return setter - setattr(self.__class__, name, property( - closure_getter(name, storage_name), - closure_setter(btype, name, storage_name) - )) + setattr( + self.__class__, + name, + property( + closure_getter(name, storage_name), + closure_setter(btype, name, storage_name), + ), + ) def start(self): """Start timer of tracker object.""" - self.timestamp = datetime.datetime.utcnow().strftime( - '%Y/%m/%d-%H:%M:%S' - ) + self.timestamp = datetime.datetime.utcnow().strftime("%Y/%m/%d-%H:%M:%S") self.start_time = timer() def end(self): @@ -109,7 +114,7 @@ def add_viewer(self, viewer, name=None): name (None, str, optional): Name the viewer. """ if name is None: - name = 'viewer{}'.format(len(self.viewers)) + name = "viewer{}".format(len(self.viewers)) self.viewers.append((name, viewer)) def remove_viewer(self, name): @@ -118,7 +123,7 @@ def remove_viewer(self, name): Args: name (str): Viewer name to remove. """ - self.viewers = filter(lambda v: v[0] != name, self.viewers) + self.viewers = [v for v in self.viewers if v[0] != name] def has_viewer(self, name): """Determine if name exists in viewers. @@ -154,9 +159,7 @@ def broadcast(self, broadcast_type): TrackerError: if broadcast_type is not in BROADCAST_TYPE. """ if broadcast_type not in Tracker.BROADCAST_TYPES: - raise TrackerError( - 'unsupported broadcast type {}'.format(broadcast_type) - ) + raise TrackerError("unsupported broadcast type {}".format(broadcast_type)) # TODO - broadcast based on optional name argument for name, viewer in self.viewers: viewer.receive(self, broadcast_type) diff --git a/parsing/library/utils.py b/parsing/library/utils.py index 706ff33b10..979d1426db 100644 --- a/parsing/library/utils.py +++ b/parsing/library/utils.py @@ -10,19 +10,18 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - import collections -import dateparser +import dateutil import os import re import simplejson as json from datetime import datetime +import dateparser from parsing.library.words import conjunctions_and_prepositions -UNICODE_WHITESPACE = re.compile(r'(?:\u00a0)|(?:\xc2)|(?:\xa0)', re.IGNORECASE) +UNICODE_WHITESPACE = re.compile(r"(?:\u00a0)|(?:\xc2)|(?:\xa0)", re.IGNORECASE) def clean(dirt): @@ -36,7 +35,7 @@ def clean(dirt): - filter out None valued key, value pairs - `None` on empty dict - `basestring`:: + `str`:: - convert unicode whitespace to ascii - strip extra whitespace - None on empty string @@ -51,18 +50,15 @@ def clean(dirt): if isinstance(dirt, dict): cleaned = {} - for k, v in dirt.items(): + for k, v in list(dirt.items()): cleaned_value = clean(v) if cleaned_value is None: continue cleaned[k] = cleaned_value elif isinstance(dirt, list): - cleaned = filter( - lambda x: x is not None, - map(clean, dirt) - ) - elif isinstance(dirt, basestring): - cleaned = UNICODE_WHITESPACE.sub(' ', dirt).strip() + cleaned = [x for x in map(clean, dirt) if x is not None] + elif isinstance(dirt, str): + cleaned = UNICODE_WHITESPACE.sub(" ", dirt).strip() else: return dirt @@ -117,20 +113,20 @@ def __init__(self, dct): Args: dct (dict): Dictionary to create DotDict with. """ - for key, value in dct.items(): - if hasattr(value, 'keys'): + for key, value in list(dct.items()): + if hasattr(value, "keys"): value = DotDict(value) self[key] = value def as_dict(self): """Return pure dictionary representation of self.""" + def rec(d): if isinstance(d, DotDict): return d.as_dict() return d - return { - key: rec(value) for key, value in self.items() - } + + return {key: rec(value) for key, value in list(self.items())} def pretty_json(obj): @@ -142,10 +138,9 @@ def pretty_json(obj): Returns: str: Prettified JSON. """ - return '{}'.format(json.dumps(obj, - sort_keys=True, - indent=2, - separators=(',', ': '))) + return "{}".format( + json.dumps(obj, sort_keys=True, indent=2, separators=(",", ": ")) + ) def safe_cast(val, to_type, default=None): @@ -172,7 +167,7 @@ def update(d, u): >>> update({0: {1: 2, 3: 4}}, {1: 2, 0: {5: 6, 3: 7}}) {0: {1: 2}} """ - for k, v in u.iteritems(): + for k, v in u.items(): if isinstance(v, collections.Mapping): r = update(d.get(k, {}), v) d[k] = r @@ -197,7 +192,7 @@ def iterrify(x): ... print(i) 'hello' """ - if isinstance(x, collections.Iterable) and not isinstance(x, basestring): + if isinstance(x, collections.Iterable) and not isinstance(x, str): return x else: return (x,) @@ -212,14 +207,12 @@ def dir_to_dict(path): Returns: dict: Dictionary representation of the directory. """ - d = {'name': os.path.basename(path)} + d = {"name": os.path.basename(path)} if os.path.isdir(path): - d['kind'] = "directory" - d['children'] = [ - dir_to_dict(os.path.join(path, x)) for x in os.listdir(path) - ] + d["kind"] = "directory" + d["children"] = [dir_to_dict(os.path.join(path, x)) for x in os.listdir(path)] else: - d['kind'] = "file" + d["kind"] = "file" return d @@ -238,7 +231,7 @@ def titlize(name): titled = [] for idx, word in enumerate(name.split()): - if re.match(r'^[ivx]+$', word.lower()) is not None: + if re.match(r"^[ivx]+$", word.lower()) is not None: word = word.upper() elif idx == 0: word = word.title() @@ -247,7 +240,7 @@ def titlize(name): else: word = word.title() titled.append(word) - return ' '.join(titled) + return " ".join(titled) def dict_filter_by_dict(a, b): @@ -268,8 +261,8 @@ def dict_filter_by_dict(a, b): return a filtered = {} - for x, ys in a.items(): - for p, qs in b.items(): + for x, ys in list(a.items()): + for p, qs in list(b.items()): m = re.match(str(p), str(x)) if m is None: continue @@ -327,19 +320,83 @@ def time24(time): """ from parsing.library.validator import ValidationError - if isinstance(time, basestring): - time = dateparser.parse(time) + if isinstance(time, str): + time = dateutil.parser.parse(time) if not isinstance(time, datetime): - raise ValidationError('invalid time input {}'.format(time)) - return time.strftime('%H:%M') + raise ValidationError("invalid time input {}".format(time)) + return time.strftime("%H:%M") + + +def short_date(date): + """Convert input to %m-%d-%y format. Returns None if input is None. + + Args: + date (str): date in reasonable format + + Returns: + str: Date in format %m-%d-%y if the input is not None. + + Raises: + ParseError: Unparseable time input. + """ + from parsing.library.validator import ValidationError + + if date is not None: + if isinstance(date, str): + date = dateparser.parse(date) + if not isinstance(date, datetime): + raise ValidationError("invalid date input {}".format(date)) + return date.strftime("%m-%d-%y") + else: + return None + + +def is_short_course(date_start, date_end, short_course_weeks_limit): + """Checks whether a course's duration is longer than a short term + course week limit or not. Limit is defined in the config file for + the corresponding school. + + Arguments: + date_start {str} -- Any reasonable date value for start date + date_end {str} -- Any reasonable date value for end date + short_course_weeks_limit {int} -- Number of weeks a course can be + defined as "short term". + + Raises: + ValidationError: Invalid date input + ValidationError: Invalid date input + + Returns: + bool -- Defines whether the course is short term or not. + """ + + from parsing.library.validator import ValidationError + + is_short = False + + if short_course_weeks_limit is not None: + if isinstance(date_start, str): + date_start = dateparser.parse(date_start) + if isinstance(date_end, str): + date_end = dateparser.parse(date_end) + if not isinstance(date_start, datetime): + raise ValidationError("invalid date input {}".format(date_start)) + if not isinstance(date_end, datetime): + raise ValidationError("invalid date input {}".format(date_end)) + date_diff = date_end - date_start + is_short = date_diff.days <= short_course_weeks_limit * 7 + + return is_short class SimpleNamespace: def __init__(self, **kwargs): self.__dict__.update(kwargs) + def __repr__(self): keys = sorted(self.__dict__) items = ("{}={!r}".format(k, self.__dict__[k]) for k in keys) return "{}({})".format(type(self).__name__, ", ".join(items)) + def __eq__(self, other): - return self.__dict__ == other.__dict__ \ No newline at end of file + return self.__dict__ == other.__dict__ diff --git a/parsing/library/validator.py b/parsing/library/validator.py index 0eeb8ee23c..d144e6d49c 100644 --- a/parsing/library/validator.py +++ b/parsing/library/validator.py @@ -10,14 +10,12 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - # TODO - consider something to load db field sizes into validator # However, that would ruin the purity of the adapter. -from __future__ import absolute_import, division, print_function import dateutil.parser as dparser -import httplib +import http.client import jsonschema import logging import re @@ -58,17 +56,15 @@ class Validator: """ KINDS = { - 'config', - 'datalist', - 'course', - 'section', - 'meeting', - 'directory', - 'eval', - 'instructor', - 'final_exam', - 'textbook', - 'textbook_link', + "config", + "datalist", + "course", + "section", + "meeting", + "directory", + "eval", + "instructor", + "final_exam", } def __init__(self, config, tracker=None, relative=True): @@ -82,8 +78,9 @@ def __init__(self, config, tracker=None, relative=True): Validator.load_schemas() self.kind_to_validation_function = { - kind: getattr(self, 'validate_' + kind) - if hasattr(self, 'validate_' + kind) else lambda *_, **__: None + kind: getattr(self, "validate_" + kind) + if hasattr(self, "validate_" + kind) + else lambda *_, **__: None for kind in Validator.KINDS } @@ -91,7 +88,7 @@ def __init__(self, config, tracker=None, relative=True): self.seen = {} self.config = DotDict(config) - self.config['kind'] = 'config' + self.config["kind"] = "config" self.validate(self.config) self.course_code_regex = re.compile(self.config.course_code_regex) @@ -100,7 +97,7 @@ def __init__(self, config, tracker=None, relative=True): if tracker is None: # Used during self-contained validation. self.tracker = Tracker() self.tracker.school = self.config.school.code - self.tracker.mode = 'validating' + self.tracker.mode = "validating" self.tracker.start() else: self.tracker = tracker @@ -115,28 +112,22 @@ def load_schemas(cls, schema_path=None): Args: schema_path (None, str, optional): Override default schema_path """ - if hasattr(cls, 'SCHEMAS') and schema_path is None: + if hasattr(cls, "SCHEMAS") and schema_path is None: return if schema_path is None: - schema_path = '{}/{}/library/schemas'.format( - settings.BASE_DIR, - settings.PARSING_MODULE + schema_path = "{}/{}/library/schemas".format( + settings.BASE_DIR, settings.PARSING_MODULE ) def load(kind): - filepath = '{}/{}.json'.format(schema_path, kind) - with open(filepath, 'r') as file: + filepath = "{}/{}.json".format(schema_path, kind) + with open(filepath, "r") as file: schema = json.load(file) - resolved = jsonschema.RefResolver( - 'file://{}/'.format(schema_path), - schema - ) + resolved = jsonschema.RefResolver("file://{}/".format(schema_path), schema) return (schema, resolved) - cls.SCHEMAS = DotDict({ - kind: load(kind) for kind in cls.KINDS - }) + cls.SCHEMAS = DotDict({kind: load(kind) for kind in cls.KINDS}) # TODO - make into a namedtuple instead @staticmethod @@ -152,8 +143,7 @@ def schema_validate(data, schema, resolver=None): jsonschema.exceptions.ValidationError: Invalid object. """ try: - jsonschema.Draft4Validator(schema, - resolver=resolver).validate(data) + jsonschema.Draft4Validator(schema, resolver=resolver).validate(data) except jsonschema.exceptions.ValidationError as e: raise ValidationError(data, *e.args) # TODO - Create iter_errors from jsonschema validator @@ -172,6 +162,7 @@ def file_to_json(path, allow_duplicates=False): Returns: dict: JSON-compliant dictionary. """ + def raise_on_duplicates(ordered_pairs): """Reject duplicate keys in dictionary.""" d = {} @@ -181,7 +172,7 @@ def raise_on_duplicates(ordered_pairs): d[k] = v return d - with open(path, 'r') as f: + with open(path, "r") as f: if allow_duplicates: return json.load(f) return json.load(f, object_pairs_hook=raise_on_duplicates) @@ -200,14 +191,19 @@ def validate(self, data, transact=True): self.kind_to_validation_function[data.kind](data) if transact and self.transaction.key: - self.seen.setdefault(self.transaction.key, set()).update(self.transaction.values) - - def validate_self_contained(self, data_path, - break_on_error=True, - break_on_warning=False, - output_error=None, - display_progress_bar=True, - master_log_path=None): + self.seen.setdefault(self.transaction.key, set()).update( + self.transaction.values + ) + + def validate_self_contained( + self, + data_path, + break_on_error=True, + break_on_warning=False, + output_error=None, + display_progress_bar=True, + master_log_path=None, + ): """Validate JSON file as without ingestor. Args: @@ -224,21 +220,21 @@ def validate_self_contained(self, data_path, Raises: ValidationError: Description """ - data = Validator.file_to_json(data_path)['$data'] + data = Validator.file_to_json(data_path)["$data"] # Validator.schema_validate(data, *Validator.SCHEMAS.datalist) for obj in map(DotDict, data): try: self.validate(obj) - self.tracker.stats = dict(kind=obj.kind, status='valid') + self.tracker.stats = dict(kind=obj.kind, status="valid") except ValidationError as e: - logging.exception('Validation error') + logging.exception("Validation error") if break_on_error: raise ValidationError(*e.args) except ValidationWarning as e: logging.warn(e) # warnings.warn('', e, stacklevel=2) - self.tracker.stats = dict(kind=obj.kind, status='total') + self.tracker.stats = dict(kind=obj.kind, status="total") # TODO - this should be handled by caller self.tracker.end() @@ -254,42 +250,42 @@ def validate_course(self, course): same session. ValidationError: Invalid course. """ - if 'kind' in course and course.kind != 'course': - raise ValidationError(course, - 'course object must be of kind course') + if "kind" in course and course.kind != "course": + raise ValidationError(course, "course object must be of kind course") - if ('school' in course and - course.school.code != self.config.school.code): - raise ValidationError(course, - 'course schools does not match config') + if "school" in course and course.school.code != self.config.school.code: + raise ValidationError(course, "course schools does not match config") if self.course_code_regex.match(course.code) is None: raise ValidationError( course, "course code {} does not match r'{}'".format( - course.code, - self.config.course_code_regex - ) + course.code, self.config.course_code_regex + ), ) - if ('department' in course and - 'code' in course.department and - 'departments' in self.config): + if ( + "department" in course + and "code" in course.department + and "departments" in self.config + ): department_codes = {d.code for d in self.config.departments} if course.department.code not in department_codes: raise ValidationError( course, - 'department {} is not in config.json departments'.format( - course.department) + "department {} is not in config.json departments".format( + course.department + ), ) - if 'homepage' in course: + if "homepage" in course: self.validate_website(course.homepage) - for sa in course.get('same_as', []): + for sa in course.get("same_as", []): if self.course_code_regex.match(sa) is not None: continue - # raise ValidationError( + # FIXME -- should still do this check but it breaks due to the course not being written + # raise ValidationWarning( # course, # "same as course code {} does not match r'{}'".format( # course.code, @@ -300,25 +296,22 @@ def validate_course(self, course): if self.relative: if course.code in self.seen: raise MultipleDefinitionsWarning( - course, - 'multiple definitions of course {}'.format(course.code) + course, "multiple definitions of course {}".format(course.code) ) self.transaction.key = course.code - for section in course.get('sections', []): - if ('course' in section and - section['course']['code'] != course.code): + for section in course.get("sections", []): + if "course" in section and section["course"]["code"] != course.code: raise ValidationError( course, - 'nested {} does not match parent {}'.format( - section['course']['code'], - course.code - ) + "nested {} does not match parent {}".format( + section["course"]["code"], course.code + ), ) # NOTE: mutating dictionary - section['course'] = {'code': course.code} - section['kind'] = 'section' + section["course"] = {"code": course.code} + section["kind"] = "section" self.validate(DotDict(section), transact=False) def validate_section(self, section): @@ -331,129 +324,122 @@ def validate_section(self, section): MultipleDefinitionsWarning: Invalid section. ValidationError: Description """ - if 'course' not in section: - raise ValidationError(section, - 'section doesnt define a parent course') + if "course" not in section: + raise ValidationError(section, "section doesnt define a parent course") - if 'kind' in section and section.kind != 'section': - raise ValidationError(section, - 'section must be of kind section') + if "kind" in section and section.kind != "section": + raise ValidationError(section, "section must be of kind section") - if ('course' in section and - self.course_code_regex.match(section.course.code) is None): + if ( + "course" in section + and self.course_code_regex.match(section.course.code) is None + ): raise ValidationError( section, - 'course code {} does not match r\'{}\''.format( - section.course.code, - self.config.course_code_regex - ) + "course code {} does not match r'{}'".format( + section.course.code, self.config.course_code_regex + ), ) - if 'term' in section and section.term not in self.config.terms: + if "term" in section and section.term not in self.config.terms: raise ValidationError( - section, - 'term {} not in config.json term list'.format(section.term) + section, "term {} not in config.json term list".format(section.term) ) - if 'instructors' in section: + if "instructors" in section: db_instructor_textfield_max_size = 500 - instructor_textfield = '' - for instructor in section.get('instructors', []): + instructor_textfield = "" + for instructor in section.get("instructors", []): instructor = DotDict(instructor) - if isinstance(instructor.name, basestring): + if isinstance(instructor.name, str): instructor_textfield += instructor.name elif isinstance(instructor.name, dict): - instructor_textfield += '{} {}'.format(instructor.name.first, - instructor.name.last) + instructor_textfield += "{} {}".format( + instructor.name.first, instructor.name.last + ) db_instructor_textfield_size = len(instructor_textfield) if db_instructor_textfield_size > db_instructor_textfield_max_size: raise ValidationError( - section, - 'db field too small for comma-joined instructor names' + section, "db field too small for comma-joined instructor names" ) - for instructor in section.get('instructors', []): + for instructor in section.get("instructors", []): self.validate_instructor(instructor) - if 'final_exam' in section: - if ('course' in section.final_exam and - section.final_exam.course.code != section.course.code): + if "final_exam" in section: + if ( + "course" in section.final_exam + and section.final_exam.course.code != section.course.code + ): raise ValidationError( section, - 'final exam course {} doesnt match course code {}'.format( - section.final_exam.course.code, - section.course.code - ) + "final exam course {} doesnt match course code {}".format( + section.final_exam.course.code, section.course.code + ), ) - if ('section' in section.final_exam and - section.final_exam.section.code != section.code): + if ( + "section" in section.final_exam + and section.final_exam.section.code != section.code + ): raise ValidationError( section, - 'final exam section {} doesnt match section {}'.format( - section.final_exam.section.code, - section.code - ) + "final exam section {} doesnt match section {}".format( + section.final_exam.section.code, section.code + ), ) # final_exam['course'] = section.course # final_exam['section'] = {'code': section.code} # self.validate_final_exam(section.final_exam) if self.relative: - if section.course.code not in self.seen and self.transaction.key != section.course.code: - print(self.seen) + if ( + section.course.code not in self.seen + and self.transaction.key != section.course.code + ): raise ValidationError( - 'course code {} isnt defined'.format(section.course.code), - section + "course code {} isnt defined".format(section.course.code), section ) - elif ((section.code, section.year, section.term) - in self.seen.get(section.course.code, set()) | self.transaction.values): + elif (section.code, section.year, section.term) in self.seen.get( + section.course.code, set() + ) | self.transaction.values: raise MultipleDefinitionsWarning( section, - 'multiple defs for {} {} - {} already defined'.format( - section.course.code, - section.code, - section.year - ) + "multiple defs for {} {} - {} already defined".format( + section.course.code, section.code, section.year + ), ) self.transaction.key = section.course.code self.transaction.values.add((section.code, section.year, section.term)) - for meeting in section.get('meetings', []): + for meeting in section.get("meetings", []): meeting = DotDict(meeting) - if ('course' in meeting and - meeting.course.code != section.course.code): + if "course" in meeting and meeting.course.code != section.course.code: raise ValidationError( section, - 'course code {} in meeting doesnt match parent section \ - course code {}'.format( - meeting.course.code, - section.course.code - ) + "course code {} in meeting doesnt match parent section \ + course code {}".format( + meeting.course.code, section.course.code + ), ) - if 'section' in meeting and meeting.section.code != section.code: + if "section" in meeting and meeting.section.code != section.code: raise ValidationError( section, - 'section code {} in nested meeting doesnt match parent \ - section code {}'.format( - meeting.section.code, - section.code - ) + "section code {} in nested meeting doesnt match parent \ + section code {}".format( + meeting.section.code, section.code + ), ) # NOTE: mutating obj - meeting['course'] = section.course - meeting['section'] = { - 'code': section.code, - 'year': section.year, - 'term': section.term + meeting["course"] = section.course + meeting["section"] = { + "code": section.code, + "year": section.year, + "term": section.term, } - meeting['kind'] = 'meeting' + meeting["kind"] = "meeting" self.validate(DotDict(meeting), transact=False) - if 'textbooks' in section: - for textbook in section.textbooks: - self.validate_textbook_link(textbook) - def validate_meeting(self, meeting): """Validate meeting object. @@ -464,53 +450,57 @@ def validate_meeting(self, meeting): ValidationError: Invalid meeting. ValidationWarning: Description """ - if 'kind' in meeting and meeting.kind != 'meeting': - raise ValidationError(meeting, - 'meeting object must be kind instructor') - if ('course' in meeting and - self.course_code_regex.match(meeting.course.code) is None): + if "kind" in meeting and meeting.kind != "meeting": + raise ValidationError(meeting, "meeting object must be kind instructor") + if ( + "course" in meeting + and self.course_code_regex.match(meeting.course.code) is None + ): raise ValidationError( meeting, - 'course code {} does not match regex \'{}\''.format( - meeting.course.code, - self.config.course_code_regex - ) + "course code {} does not match regex '{}'".format( + meeting.course.code, self.config.course_code_regex + ), ) - if 'time' in meeting: + if "time" in meeting: try: self.validate_time_range(meeting.time.start, meeting.time.end) except (ValidationError, ValidationWarning) as e: - message = 'meeting for {} {}, '.format( - meeting.course.code, - meeting.section.code + message = "meeting for {} {}, ".format( + meeting.course.code, meeting.section.code ) if isinstance(e, ValidationError): raise ValidationError(message, *e.args) raise ValidationWarning(message, *e.args) - if 'location' in meeting: + if "location" in meeting: try: self.validate_location(meeting.location) except ValidationError as e: - message = 'meeting for {} {}, '.format( - meeting.course.code, - meeting.section.code + message = "meeting for {} {}, ".format( + meeting.course.code, meeting.section.code ) raise ValidationError(message, *e.args) if not self.relative: return - if 'course' in meeting and meeting.course.code not in self.seen and self.transaction is None: + if ( + "course" in meeting + and meeting.course.code not in self.seen + and self.transaction is None + ): raise ValidationError( - meeting, - 'course code {} isnt defined'.format(meeting.course.code) + meeting, "course code {} isnt defined".format(meeting.course.code) ) - if 'section' not in meeting: + if "section" not in meeting: return - if (meeting.section.code, meeting.section.year, meeting.section.term) not in self.seen.get(meeting.course.code, set()) | self.transaction.values: + if ( + meeting.section.code, + meeting.section.year, + meeting.section.term, + ) not in self.seen.get(meeting.course.code, set()) | self.transaction.values: raise ValidationError( - meeting, - 'section {} isnt defined'.format(meeting.section.code) + meeting, "section {} isnt defined".format(meeting.section.code) ) def validate_eval(self, course_eval): @@ -526,9 +516,8 @@ def validate_eval(self, course_eval): raise ValidationError( course_eval, "course code {} does not match r'{}'".format( - course_eval.course.code, - self.config.course_code_regex - ) + course_eval.course.code, self.config.course_code_regex + ), ) def validate_instructor(self, instructor): @@ -540,48 +529,48 @@ def validate_instructor(self, instructor): Raises: ValidationError: Invalid instructor. """ - if 'kind' in instructor and instructor.kind != 'instructor': + if "kind" in instructor and instructor.kind != "instructor": raise ValidationError( - instructor, - 'instructor object must be of kind instructor' + instructor, "instructor object must be of kind instructor" ) - for class_ in instructor.get('classes', []): - if ('course' in class_ and - self.course_code_regex.match(class_.course.code) is None): + for class_ in instructor.get("classes", []): + if ( + "course" in class_ + and self.course_code_regex.match(class_.course.code) is None + ): raise ValidationError( instructor, - 'course code {} does not match given regex {}'.format( - class_.course.code, - self.config.course_code_regex - ) + "course code {} does not match given regex {}".format( + class_.course.code, self.config.course_code_regex + ), ) - if 'department' in instructor and 'departments' in self.config: + if "department" in instructor and "departments" in self.config: dept_codes = {d.code for d in self.config.departments} if instructor.department not in dept_codes: raise ValidationError( instructor, - 'department {} not listed in config.json'.format( + "department {} not listed in config.json".format( instructor.department - ) + ), ) - if 'homepage' in instructor: + if "homepage" in instructor: try: self.validate_homepage(instructor.homepage) except ValidationError as e: - message = 'instructor {} office, {}'.format(instructor.name) + message = "instructor {} office, {}".format(instructor.name) raise ValidationError(message, *e.args) - if 'office' in instructor: + if "office" in instructor: try: - if 'location' in instructor.office: + if "location" in instructor.office: self.validate_location(instructor.office.location) - for office_hour in instructor.office.get('hours', []): + for office_hour in instructor.office.get("hours", []): self.validate_meeting(office_hour) except ValidationError as e: - message = 'instructor {} office, {}'.format(instructor.name) + message = "instructor {} office, {}".format(instructor.name) raise ValidationError(message, *e.args) def validate_final_exam(self, final_exam): @@ -595,34 +584,15 @@ def validate_final_exam(self, final_exam): Raises: ValidationError: Invalid final exam. """ - if 'kind' in final_exam and final_exam.kind != 'final_exam': + if "kind" in final_exam and final_exam.kind != "final_exam": raise ValidationError( - final_exam, - 'final_exam object must be of kind "final_exam"' + final_exam, 'final_exam object must be of kind "final_exam"' ) try: self.validate_meeting(final_exam.meeting) except ValidationError as e: raise ValidationError(final_exam, *e.args) - def validate_textbook_link(self, textbook_link): - """Validate textbook link. - - Args: - textbook_link (DotDict): Textbook link object to validate. - - Raises: - ValidationError: Invalid textbook link. - """ - if 'course' not in textbook_link: - return - if self.course_code_regex.match(textbook_link.course.code) is not None: - return - raise ValidationError( - textbook_link, - 'textbook_link course code doent match course code regex' - ) - def validate_location(self, location): """Validate location. @@ -632,17 +602,17 @@ def validate_location(self, location): Raises: ValidationWarning: Invalid location. """ - if 'campus' in location and 'campuses' in self.config: + if "campus" in location and "campuses" in self.config: if location.campus not in self.config.campuses: raise ValidationWarning( location, - 'campus {} not in config'.format(location.campus), + "campus {} not in config".format(location.campus), ) - if 'building' in location and 'buildings' in self.config: + if "building" in location and "buildings" in self.config: if location.building not in self.config.buildings: raise ValidationWarning( location, - 'building {} not in config'.format(location.building), + "building {} not in config".format(location.building), ) @staticmethod @@ -655,8 +625,8 @@ def validate_website(url): Raises: ValidationError: URL is invalid. """ - c = httplib.HTTPConnection(url) - c.request('HEAD', '') + c = http.client.HTTPConnection(url) + c.request("HEAD", "") # NOTE: 200 - good status # 301 - redirected if c.getresponse().status == 200 or c.getresponse().status == 301: @@ -676,13 +646,12 @@ def validate_time_range(self, start, end): ValidationError: Time range is invalid. """ try: - start, end = map(dparser.parse, [start, end]) + start, end = list(map(dparser.parse, [start, end])) except ValueError: - raise ValidationError('invalid time format {}-{}'.format(start, - end)) + raise ValidationError("invalid time format {}-{}".format(start, end)) if start > end: - raise ValidationError('start {} > end {}'.format(start, end)) + raise ValidationError("start {} > end {}".format(start, end)) elif start == end: pass # TODO - this should be reported # raise ValidationWarning('start {} = end {}'.format(start, end)) @@ -702,7 +671,7 @@ def validate_directory(self, directory): try: name = directory directory = dir_to_dict(directory) - directory['name'] = name + directory["name"] = name except IOError as e: raise ValidationError(str(e)) Validator.schema_validate(directory, *Validator.SCHEMAS.directory) diff --git a/parsing/library/viewer.py b/parsing/library/viewer.py index 2d0a4524f5..ead7fd54b9 100644 --- a/parsing/library/viewer.py +++ b/parsing/library/viewer.py @@ -10,9 +10,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - -import dateparser +import dateutil import progressbar from abc import ABCMeta, abstractmethod @@ -24,11 +22,9 @@ class ViewerError(PipelineError): """Viewer error class.""" -class Viewer(object): +class Viewer(metaclass=ABCMeta): """A view that is updated via a tracker object broadcast or report.""" - __metaclass__ = ABCMeta - @abstractmethod def receive(self, tracker, broadcast_type): """Incremental updates of tracking info. @@ -47,17 +43,15 @@ def report(self, tracker): """ -class Timer(progressbar.widgets.FormatLabel, - progressbar.widgets.TimeSensitiveWidgetBase): +class Timer( + progressbar.widgets.FormatLabel, progressbar.widgets.TimeSensitiveWidgetBase +): """Custom timer created to take away 'Elapsed Time' string.""" - def __init__(self, format='%(elapsed)s', **kwargs): + def __init__(self, format="%(elapsed)s", **kwargs): """Contruct Timer instance.""" - progressbar.widgets.FormatLabel.__init__(self, - format=format, - **kwargs) - progressbar.widgets.TimeSensitiveWidgetBase.__init__(self, - **kwargs) + progressbar.widgets.FormatLabel.__init__(self, format=format, **kwargs) + progressbar.widgets.TimeSensitiveWidgetBase.__init__(self, **kwargs) class StatProgressBar(Viewer): @@ -65,67 +59,68 @@ class StatProgressBar(Viewer): SWITCH_SIZE = 100 - def __init__(self, stat_format='', statistics=None): + def __init__(self, stat_format="", statistics=None): """Construct instance of data pipeline progress bar.""" self.statistics = statistics or StatView() self.stat_format = stat_format self.format_custom_text = progressbar.FormatCustomText( - '(%(school)s) ==%(mode)s== %(stats)s', + "(%(school)s) ==%(mode)s== %(stats)s", ) self.bar = progressbar.ProgressBar( redirect_stdout=True, # max_value=progressbar.UnknownLength, widgets=[ - ' [', Timer(), '] ', + " [", + Timer(), + "] ", self.format_custom_text, - ]) + ], + ) def receive(self, tracker, broadcast_type): """Incremental update to progress bar.""" self.statistics.receive(tracker, broadcast_type) - if (broadcast_type != 'SCHOOL' and - broadcast_type != 'TERM' and - broadcast_type != 'DEPARTMENT' and - broadcast_type != 'STATS'): + if ( + broadcast_type != "SCHOOL" + and broadcast_type != "TERM" + and broadcast_type != "DEPARTMENT" + and broadcast_type != "STATS" + ): return counters = self.statistics.stats - formatted_string = '' + formatted_string = "" if progressbar.utils.get_terminal_size()[0] > StatProgressBar.SWITCH_SIZE: - attrs = ['year', 'term', 'department'] + attrs = ["year", "term", "department"] for attr in attrs: if not hasattr(tracker, attr): continue - if attr == 'department': - if 'code' in tracker.department: - formatted_string += ' | {}'.format( - tracker.department['code'] - ) + if attr == "department": + if "code" in tracker.department: + formatted_string += " | {}".format(tracker.department["code"]) else: - formatted_string += ' | {}'.format( - tracker.department['name'] - ) + formatted_string += " | {}".format(tracker.department["name"]) continue - formatted_string += ' | {}'.format(getattr(tracker, attr)) - for data_type, counter in counters.items(): - if counter['total'] == 0: + formatted_string += " | {}".format(getattr(tracker, attr)) + for data_type, counter in list(counters.items()): + if counter["total"] == 0: continue - formatted_string += ' | {label}: {stat}'.format( + formatted_string += " | {label}: {stat}".format( label=data_type[:3].title(), stat=self.stat_format.format( - new=counter['new'], - valid=counter['valid'], - total=counter['total'], - created=counter['created'], - updated=counter['updated'] - ) + new=counter["new"], + valid=counter["valid"], + total=counter["total"], + created=counter["created"], + updated=counter["updated"], + ), ) - self.format_custom_text.update_mapping(school=tracker.school, - mode=tracker.mode.upper(), - stats=formatted_string) + self.format_custom_text.update_mapping( + school=tracker.school, mode=tracker.mode.upper(), stats=formatted_string + ) self.bar.update() def report(self, tracker): @@ -134,26 +129,31 @@ def report(self, tracker): class ETAProgressBar(Viewer): def __init__(self): - self.format_custom_text = progressbar.FormatCustomText( - '(%(school)s) ==%(mode)s== ', + "(%(school)s) ==%(mode)s== ", ) self.bar = progressbar.ProgressBar( redirect_stdout=True, max_value=progressbar.UnknownLength, widgets=[ - ' [', Timer(), '] ', + " [", + Timer(), + "] ", self.format_custom_text, progressbar.Bar(), - '(', progressbar.ETA(), ')', - ]) + "(", + progressbar.ETA(), + ")", + ], + ) def receive(self, tracker, broadcast_type): - if broadcast_type != 'SCHOOL' and broadcast_type != 'MODE': + if broadcast_type != "SCHOOL" and broadcast_type != "MODE": return - self.format_custom_text.update_mapping(school=tracker.school, - mode=tracker.mode.upper()) + self.format_custom_text.update_mapping( + school=tracker.school, mode=tracker.mode.upper() + ) def report(self, tracker): """Do nothing.""" @@ -171,24 +171,20 @@ class StatView(Viewer): # TODO - move to central location w/Validator/schema kinds KINDS = ( - 'course', - 'section', - 'meeting', - 'textbook', - 'evaluation', - 'offering', - 'textbook_link', - 'eval', + "course", + "section", + "meeting", + "evaluation", + "offering", + "eval", ) - LABELS = ('valid', 'created', 'new', 'updated', 'total') + LABELS = ("valid", "created", "new", "updated", "total") def __init__(self): """Construct StatView instance.""" self.stats = { - subject: { - stat: 0 for stat in StatView.LABELS - } for subject in StatView.KINDS + subject: {stat: 0 for stat in StatView.LABELS} for subject in StatView.KINDS } def __iter__(self): @@ -220,9 +216,9 @@ def receive(self, tracker, broadcast_type): Tracker receiving update from. broadcast_type (str): Broadcast message from tracker. """ - if broadcast_type != 'STATS': + if broadcast_type != "STATS": return - self._increment(tracker.stats['kind'], tracker.stats['status']) + self._increment(tracker.stats["kind"], tracker.stats["status"]) def report(self, tracker=None): """Dump stats.""" @@ -244,10 +240,7 @@ class TimeDistributionView(Viewer): def __init__(self): """Construct TimeDistributionView.""" - self.distribution = { - 12: 0, - 24: 0 - } + self.distribution = {12: 0, 24: 0} self.granularity = 60 @@ -261,12 +254,12 @@ def receive(self, tracker, broadcast_type): Tracker receiving update from. broadcast_type (str): Broadcast message from tracker. """ - if broadcast_type != 'TIME': + if broadcast_type != "TIME": return - time = dateparser.parse(getattr(tracker, broadcast_type.lower())) + time = dateutil.parser.parse(getattr(tracker, broadcast_type.lower())) - if time > dateparser.parse('12:00pm'): + if time > dateutil.parser.parse("12:00pm"): self.time_distribution[24] += 1 else: self.time_distribution[12] += 1 @@ -314,7 +307,7 @@ def receive(self, tracker, broadcast_type): Tracker receiving update from. broadcast_type (str): Broadcast message from tracker. """ - if broadcast_type == 'TERM': + if broadcast_type == "TERM": try: semesters = self.schools.setdefault(tracker.school, {}) terms = semesters.setdefault(tracker.year, []) diff --git a/parsing/library/words.py b/parsing/library/words.py index 890570bf7c..b640ff875e 100644 --- a/parsing/library/words.py +++ b/parsing/library/words.py @@ -11,148 +11,148 @@ # GNU General Public License for more details. conjunctions_and_prepositions = { - 'the', + "the", # conjunctions - 'and', - 'or', - 'but', - 'yet', - 'so', - 'and also', - 'and additionally', - 'however', - 'and consequently', - 'and furthermore', - 'and nonetheless', - 'hence', - 'then', - 'and moreover', - 'and still', - 'and nevertheless', - 'therefore', - 'thus', - 'after', - 'as', - 'before', - 'because', - 'where', - 'wherever', - 'and often', - 'since', - 'while', - 'until', - 'when', - 'so that', + "and", + "or", + "but", + "yet", + "so", + "and also", + "and additionally", + "however", + "and consequently", + "and furthermore", + "and nonetheless", + "hence", + "then", + "and moreover", + "and still", + "and nevertheless", + "therefore", + "thus", + "after", + "as", + "before", + "because", + "where", + "wherever", + "and often", + "since", + "while", + "until", + "when", + "so that", # prepositions - 'aboard', - 'about', - 'above', - 'according to', - 'across', - 'across from', - 'after', - 'against', - 'ahead of', - 'along', - 'alongside', - 'along with', - 'amid', - 'amidst', - 'among', - 'amongst', - 'apart from', - 'around', - 'as', - 'as for', - 'aside from', - 'as to', - 'astride', - 'at', - 'away from', - 'barring', - 'because of', - 'before', - 'behind', - 'below', - 'beneath', - 'beside', - 'besides', - 'between', - 'beyond', - 'by', - 'by means of', - 'circa', - 'close to', - 'considering', - 'contrary to', - 'depending on', - 'despite', - 'due to', - 'during', - 'excepting', - 'excluding', - 'following', - 'for', - 'forward of', - 'from', - 'in', - 'in between', - 'including', - 'in favour of', - 'in front of', - 'in lieu of', - 'inside', - 'inside of', - 'in spite of', - 'instead of', - 'into', - 'irrespective of', - 'like', - 'near', - 'near to', - 'next to', - 'notwithstanding', - 'of', - 'off', - 'on', - 'on account of', - 'on board', - 'onto', - 'on top of', - 'opposite', - 'opposite to', - 'other than', - 'out of', - 'outside', - 'outside of', - 'over', - 'owing to', - 'past', - 'pending', - 'preparatory to', - 'prior to', - 'regarding', - 'regardless of', - 'save', - 'save for', - 'thanks to', - 'through', - 'to', - 'together with', - 'toward', - 'towards', - 'under', - 'underneath', - 'unlike', - 'until', - 'up', - 'up against', - 'upon', - 'up to', - 'up until', - 'versus', - 'via', - 'with', - 'within', - 'without', + "aboard", + "about", + "above", + "according to", + "across", + "across from", + "after", + "against", + "ahead of", + "along", + "alongside", + "along with", + "amid", + "amidst", + "among", + "amongst", + "apart from", + "around", + "as", + "as for", + "aside from", + "as to", + "astride", + "at", + "away from", + "barring", + "because of", + "before", + "behind", + "below", + "beneath", + "beside", + "besides", + "between", + "beyond", + "by", + "by means of", + "circa", + "close to", + "considering", + "contrary to", + "depending on", + "despite", + "due to", + "during", + "excepting", + "excluding", + "following", + "for", + "forward of", + "from", + "in", + "in between", + "including", + "in favour of", + "in front of", + "in lieu of", + "inside", + "inside of", + "in spite of", + "instead of", + "into", + "irrespective of", + "like", + "near", + "near to", + "next to", + "notwithstanding", + "of", + "off", + "on", + "on account of", + "on board", + "onto", + "on top of", + "opposite", + "opposite to", + "other than", + "out of", + "outside", + "outside of", + "over", + "owing to", + "past", + "pending", + "preparatory to", + "prior to", + "regarding", + "regardless of", + "save", + "save for", + "thanks to", + "through", + "to", + "together with", + "toward", + "towards", + "under", + "underneath", + "unlike", + "until", + "up", + "up against", + "upon", + "up to", + "up until", + "versus", + "via", + "with", + "within", + "without", } diff --git a/parsing/management/commands/arguments.py b/parsing/management/commands/arguments.py index bf3dd3a168..b505ee40dc 100644 --- a/parsing/management/commands/arguments.py +++ b/parsing/management/commands/arguments.py @@ -10,8 +10,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - import os import argparse import simplejson as json @@ -26,7 +24,7 @@ # --no-color # --verbosity -SCHOOLS_DIR = settings.PARSING_MODULE + '/schools' +SCHOOLS_DIR = settings.PARSING_MODULE + "/schools" def ingest_args(parser): @@ -38,17 +36,23 @@ def ingest_args(parser): _progress_bar_arg(parser) _school_list_arg(parser) _parser_type_arg(parser) - parser.add_argument('-o', - '--output', - action=WritableFileAction, - help='default: %(default)s', - default=SCHOOLS_DIR + '/{school}/data/courses.json') - parser.add_argument('--terms', nargs='+', type=str, default=[r'\w*']) - parser.add_argument('--years', nargs='+', type=int, default=[r'\d{4}']) - parser.add_argument('--years-and-terms', type=str, dest='years_and_terms', - action=LoadToJsonAction, - help='json formatted (year, term) dictionary. If provided, will override `terms` and `years` values.') - parser.add_argument('--departments', nargs='+', type=str) + parser.add_argument( + "-o", + "--output", + action=WritableFileAction, + help="default: %(default)s", + default=SCHOOLS_DIR + "/{school}/data/{type}.json", + ) + parser.add_argument("--terms", nargs="+", type=str, default=[r"\w*"]) + parser.add_argument("--years", nargs="+", type=int, default=[r"\d{4}"]) + parser.add_argument( + "--years-and-terms", + type=str, + dest="years_and_terms", + action=LoadToJsonAction, + help="json formatted (year, term) dictionary. If provided, will override `terms` and `years` values.", + ) + parser.add_argument("--departments", nargs="+", type=str) _validate_switch_arg(parser) _validator_args(parser) _master_log_arg(parser) @@ -74,19 +78,19 @@ def digest_args(parser): Args: parser (argparser.Parser): Django argument parser. """ + class SetFalseErrorOnNoDiffNoLoadAction(argparse.Action): def __call__(self, parser, namespace, values, option_string=None): setattr(namespace, self.dest, False) - other_attr = 'diff' if self.dest == 'load' else 'load' - if (not getattr(namespace, self.dest) and - not getattr(namespace, other_attr)): - raise parser.error('--no-diff and --no-load does no action') + other_attr = "diff" if self.dest == "load" else "load" + if not getattr(namespace, self.dest) and not getattr(namespace, other_attr): + raise parser.error("--no-diff and --no-load does no action") class RestrictNoValidateAction(argparse.Action): def __call__(self, parser, namespace, values, option_string=None): attr = self.dest if namespace.load: - parser.error('cannot load database without validation') + parser.error("cannot load database without validation") setattr(namespace, attr, False) _progress_bar_arg(parser) @@ -95,41 +99,42 @@ def __call__(self, parser, namespace, values, option_string=None): _data_arg(parser) diff = parser.add_mutually_exclusive_group() - diff.add_argument('--diff', - dest='diff', - action='store_true', - help='output diff between input and django db') - diff.add_argument('--no-diff', - dest='diff', - nargs=0, - action=SetFalseErrorOnNoDiffNoLoadAction) + diff.add_argument( + "--diff", + dest="diff", + action="store_true", + help="output diff between input and django db", + ) + diff.add_argument( + "--no-diff", dest="diff", nargs=0, action=SetFalseErrorOnNoDiffNoLoadAction + ) diff.set_defaults(diff=True) parser.add_argument( - '--output-diff', + "--output-diff", type=str, action=compose_actions(SingleSchoolAction, WritableFileAction), - default=SCHOOLS_DIR + '/{school}/logs/diff_{type}.json', - help='default: %(default)s)' + default=SCHOOLS_DIR + "/{school}/logs/diff_{type}.json", + help="default: %(default)s)", ) load = parser.add_mutually_exclusive_group() - load.add_argument('--load', - dest='load', - action='store_true', - help='load django db models with info from json') - load.add_argument('--no-load', - dest='load', - nargs=0, - action=SetFalseErrorOnNoDiffNoLoadAction) + load.add_argument( + "--load", + dest="load", + action="store_true", + help="load django db models with info from json", + ) + load.add_argument( + "--no-load", dest="load", nargs=0, action=SetFalseErrorOnNoDiffNoLoadAction + ) load.set_defaults(load=True) _validator_args(parser) - parser.add_argument('--no-validate', - dest='validate', - nargs=0, - action=RestrictNoValidateAction) + parser.add_argument( + "--no-validate", dest="validate", nargs=0, action=RestrictNoValidateAction + ) _master_log_arg(parser) @@ -142,62 +147,63 @@ def __call__(self, parser, namespace, values, option_string=None): if value in ACTIVE_SCHOOLS: continue raise parser.error( - 'invalid school: {0!r} (choose from [{1}])'.format( - value, - ', '.join(ACTIVE_SCHOOLS) + "invalid school: {0!r} (choose from [{1}])".format( + value, ", ".join(ACTIVE_SCHOOLS) ) ) if values: setattr(namespace, self.dest, list(set(values))) else: - setattr(namespace, - self.dest, - list(ACTIVE_SCHOOLS)) + setattr(namespace, self.dest, list(ACTIVE_SCHOOLS)) - parser.add_argument('schools', - type=str, - nargs='*', - action=SchoolVerifierAction, - help='default: parsing.schools.active.ACTIVE_SCHOOLS') + parser.add_argument( + "schools", + type=str, + nargs="*", + action=SchoolVerifierAction, + help="default: parsing.schools.active.ACTIVE_SCHOOLS", + ) def _validate_switch_arg(parser): - parser.add_argument('--no-validate', - dest='validate', - action='store_false') + parser.add_argument("--no-validate", dest="validate", action="store_false") def _master_log_arg(parser): - parser.add_argument('--master-log', - type=str, - action=WritableFileAction, - default=settings.PARSING_MODULE + '/logs/master.log', - help='default: %(default)s') + parser.add_argument( + "--master-log", + type=str, + action=WritableFileAction, + default=settings.PARSING_MODULE + "/logs/master.log", + help="default: %(default)s", + ) def _parser_type_arg(parser): - parser.add_argument('--types', - default=['courses'], - nargs='+', - choices=['courses', 'textbooks', 'evals'], - help='default: %(default)s') + parser.add_argument( + "--types", + default=["courses"], + nargs="+", + choices=["courses", "evals"], + help="default: %(default)s", + ) def _progress_bar_arg(parser): # NOTE: name and dest are logical inverses - parser.add_argument('--no-display-progress-bar', - dest='display_progress_bar', - action='store_false') + parser.add_argument( + "--no-display-progress-bar", dest="display_progress_bar", action="store_false" + ) def _validator_args(parser): parser.add_argument( - '--config', - action=compose_actions(SingleSchoolAction, - ReadableFileAction, - LoadFileToJsonAction), - help='default: %(default)s', - default=SCHOOLS_DIR + '/{school}/config.json' + "--config", + action=compose_actions( + SingleSchoolAction, ReadableFileAction, LoadFileToJsonAction + ), + help="default: %(default)s", + default=SCHOOLS_DIR + "/{school}/config.json", ) # parser.add_argument( @@ -207,26 +213,26 @@ def _validator_args(parser): # default=SCHOOLS_DIR + '/{school}/logs/error_{type}.log' # ) - parser.add_argument('--no-break-on-error', - dest='break_on_error', - action='store_false') + parser.add_argument( + "--no-break-on-error", dest="break_on_error", action="store_false" + ) break_on_warning = parser.add_mutually_exclusive_group() - break_on_warning.add_argument('--no-break-on-warning', - dest='break_on_warning', - action='store_false') - break_on_warning.add_argument('--break-on-warning', - dest='break_on_warning', - action='store_true') + break_on_warning.add_argument( + "--no-break-on-warning", dest="break_on_warning", action="store_false" + ) + break_on_warning.add_argument( + "--break-on-warning", dest="break_on_warning", action="store_true" + ) break_on_warning.set_defaults(break_on_warning=False) def _data_arg(parser): parser.add_argument( - '--data', + "--data", action=compose_actions(SingleSchoolAction, ReadableFileAction), - default=SCHOOLS_DIR + '/{school}/data/{type}.json', - help='default: %(default)s' + default=SCHOOLS_DIR + "/{school}/data/{type}.json", + help="default: %(default)s", ) @@ -244,15 +250,11 @@ def __call__(self, parser, namespace, values, option_string=None): prospective_file = values prospective_dir = os.path.dirname(os.path.abspath(prospective_file)) if not os.path.isdir(prospective_dir): - raise parser.error( - '{} is not a valid file path'.format(prospective_file) - ) + raise parser.error("{} is not a valid file path".format(prospective_file)) if os.access(prospective_dir, os.W_OK): setattr(namespace, self.dest, prospective_file) else: - raise parser.error( - '{} is not a writable file'.format(prospective_file) - ) + raise parser.error("{} is not a writable file".format(prospective_file)) class ReadableFileAction(argparse.Action): @@ -269,13 +271,11 @@ def __call__(self, parser, namespace, values, option_string=None): prospective_file = values prospective_dir = os.path.dirname(os.path.abspath(prospective_file)) if not os.path.isdir(prospective_dir): - raise parser.error( - '{} is not a valid file path'.format(prospective_file) - ) + raise parser.error("{} is not a valid file path".format(prospective_file)) if os.access(prospective_file, os.R_OK): setattr(namespace, self.dest, prospective_file) return - raise parser.error('{} isnt a readable file'.format(prospective_file)) + raise parser.error("{} isnt a readable file".format(prospective_file)) class SingleSchoolAction(argparse.Action): @@ -287,8 +287,8 @@ def __call__(self, parser, namespace, values, option_string=None): Raises: parser.error: non-default config for mutliple schools. """ - if hasattr(namespace, 'schools') and len(namespace.schools) > 1: - raise parser.error('non-default config invalid for many schools') + if hasattr(namespace, "schools") and len(namespace.schools) > 1: + raise parser.error("non-default config invalid for many schools") class LoadToJsonAction(argparse.Action): @@ -303,7 +303,7 @@ def __call__(self, parser, namespace, values, option_string=None): try: setattr(namespace, self.dest, json.loads(values)) except json.scanner.JSONDecodeError: - parser.error(option_string + ' invalid JSON') + parser.error(option_string + " invalid JSON") class LoadFileToJsonAction(argparse.Action): @@ -315,12 +315,12 @@ def __call__(self, parser, namespace, values, option_string=None): Raises: parser.error: invalid JSON. """ - with open(values, 'r') as file: + with open(values, "r") as file: data = file.read() try: setattr(namespace, self.dest, json.loads(data)) except json.scanner.JSONDecodeError: - parser.error('invalid JSON in {}'.format(values)) + parser.error("invalid JSON in {}".format(values)) def compose_actions(*actions): @@ -332,11 +332,12 @@ def compose_actions(*actions): Returns: argparse.Action: Composed action. """ + class ComposableAction(argparse.Action): def __call__(self, parser, namespace, values, option_string=None): for action in actions: - action(option_string, self.dest).__call__(parser, - namespace, - values, - option_string) + action(option_string, self.dest).__call__( + parser, namespace, values, option_string + ) + return ComposableAction diff --git a/parsing/management/commands/digest.py b/parsing/management/commands/digest.py index 2ecf13c82d..e845db9e68 100644 --- a/parsing/management/commands/digest.py +++ b/parsing/management/commands/digest.py @@ -10,16 +10,13 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - import logging import simplejson as json from django.core.management.base import BaseCommand from parsing.management.commands.arguments import digest_args -from parsing.library.validator import Validator, ValidationError, \ - ValidationWarning +from parsing.library.validator import Validator, ValidationError, ValidationWarning from parsing.library.digestor import Digestor from parsing.library.exceptions import PipelineException from parsing.library.digestor import DigestionError @@ -36,7 +33,7 @@ class Command(BaseCommand): help (str): command help message. """ - help = 'Digestion driver' + help = "Digestion driver" def add_arguments(self, parser): """Add arguments to command parser. @@ -56,11 +53,11 @@ def handle(self, *args, **options): tracker = Tracker() self.stat_view = StatView() tracker.add_viewer(self.stat_view) - tracker.mode = 'digesting' + tracker.mode = "digesting" tracker.start() - for data_type in options['types']: - for school in options['schools']: + for data_type in options["types"]: + for school in options["schools"]: self.run(tracker, school, data_type, options) tracker.end() @@ -68,61 +65,56 @@ def handle(self, *args, **options): def run(self, tracker, school, data_type, options): """Run the command.""" tracker.school = school - tracker.mode = 'validating' - if options['display_progress_bar']: + tracker.mode = "validating" + if options["display_progress_bar"]: tracker.add_viewer( - StatProgressBar('{valid}/{total}', statistics=self.stat_view), - name='progressbar' + StatProgressBar("{valid}/{total}", statistics=self.stat_view), + name="progressbar", ) - logger = logging.getLogger('parsing.schools.' + school) - logger.debug('Digest command options:' + str(options)) + logger = logging.getLogger("parsing.schools." + school) + logger.debug("Digest command options:" + str(options)) # Load config file to dictionary. - if isinstance(options['config'], str): - with open(options['config'].format(school=school, - type=data_type), 'r') as file: - options['config'] = json.load(file) + if isinstance(options["config"], str): + with open( + options["config"].format(school=school, type=data_type), "r" + ) as file: + options["config"] = json.load(file) try: - Validator( - options['config'], - tracker=tracker - ).validate_self_contained( - options['data'].format(school=school, type=data_type), + Validator(options["config"], tracker=tracker).validate_self_contained( + options["data"].format(school=school, type=data_type), break_on_error=True, - break_on_warning=options.get('break_on_warning'), - display_progress_bar=options['display_progress_bar'] + break_on_warning=options.get("break_on_warning"), + display_progress_bar=options["display_progress_bar"], ) except (ValidationError, ValidationWarning, Exception): - logging.exception('Failed validation before digestion') + logging.exception("Failed validation before digestion") return # Skip digestion for this school. - if options['display_progress_bar']: - tracker.remove_viewer('progressbar') - tracker.add_viewer(ETAProgressBar(), name='progressbar') - tracker.mode = 'digesting' + if options["display_progress_bar"]: + tracker.remove_viewer("progressbar") + tracker.add_viewer(ETAProgressBar(), name="progressbar") + tracker.mode = "digesting" - with open(options['data'].format(school=school, type=data_type), 'r') as file: + with open(options["data"].format(school=school, type=data_type), "r") as file: data = json.load(file) try: - Digestor( - school, - meta=data['$meta'], - tracker=tracker - ).digest(data['$data'], - diff=options['diff'], - load=options['load'], - output=options['output_diff'].format(school=school, - type=data_type)) + Digestor(school, meta=data["$meta"], tracker=tracker).digest( + data["$data"], + diff=options["diff"], + load=options["load"], + output=options["output_diff"].format(school=school, type=data_type), + ) except DigestionError: - logging.exception('Failed digestion') + logging.exception("Failed digestion") except PipelineException: - logging.expection('Failed digestion w/in pipeline') + logging.expection("Failed digestion w/in pipeline") except Exception: - logging.exception('Failed digestion with uncaught exception') - - logging.info('Digestion overview for ' + school + ': ' + str(self.stat_view.report())) + logging.exception("Failed digestion with uncaught exception") - # TODO - move to periodic tasks + logging.info( + "Digestion overview for " + school + ": " + str(self.stat_view.report()) + ) diff --git a/parsing/management/commands/ingest.py b/parsing/management/commands/ingest.py index 0eb1b08c8a..005fcc5025 100644 --- a/parsing/management/commands/ingest.py +++ b/parsing/management/commands/ingest.py @@ -10,13 +10,10 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - import logging import simplejson as json from django.core.management.base import BaseCommand -from timetable.school_mappers import SCHOOLS_MAP from parsing.management.commands.arguments import ingest_args from parsing.library.exceptions import PipelineException from parsing.library.tracker import Tracker @@ -32,7 +29,7 @@ class Command(BaseCommand): help (str): command help message. """ - help = 'Ingestion driver.' + help = "Ingestion driver." def add_arguments(self, parser): """Add arguments to command parser. @@ -50,22 +47,35 @@ def handle(self, *args, **options): **options: Command options. """ tracker = Tracker() - tracker.mode = 'ingesting' + tracker.mode = "ingesting" self.stat_view = StatView() tracker.add_viewer(self.stat_view) - if options['display_progress_bar']: - tracker.add_viewer(StatProgressBar('{valid}/{total}', - statistics=self.stat_view)) + if options["display_progress_bar"]: + tracker.add_viewer( + StatProgressBar("{valid}/{total}", statistics=self.stat_view) + ) tracker.start() - for parser_type in options['types']: - for school in options['schools']: + for parser_type in options["types"]: + for school in options["schools"]: tracker.school = school - self.run(SCHOOLS_MAP[school].parsers[parser_type], - tracker, - options, - parser_type, - school) + + try: + parsing = __import__( + "parsing.schools.{school}.{parser_type}".format( + school=school, parser_type=parser_type + ) + ) + parser = eval( + "parsing.schools.{school}.{parser_type}.Parser".format( + school=school, parser_type=parser_type + ) + ) + self.run(parser, tracker, options, parser_type, school) + except ImportError: + logging.exception("Invalid parser") + continue + tracker.end() def run(self, parser, tracker, options, parser_type, school): @@ -75,64 +85,63 @@ def run(self, parser, tracker, options, parser_type, school): parser (parsing.library.base_parser.BaseParser) tracker (parsing.library.tracker.Tracker) options (dict): Command line options for arg parser. - parser_type (str): {'courses', 'evals', 'textbooks'} + parser_type (str): {'courses', 'evals'} school (str): School to parse. """ # Load config file to dictionary. - if isinstance(options['config'], str): - with open(options['config'].format(school=school, - type=parser_type), 'r') as file: - options['config'] = json.load(file) - - logger = logging.getLogger(parser.__module__ + '.' + parser.__name__) - logger.debug('Ingest command options:' + str(options)) - + if isinstance(options["config"], str): + with open( + options["config"].format(school=school, type=parser_type), "r" + ) as file: + options["config"] = json.load(file) + + logger = logging.getLogger(parser.__module__ + "." + parser.__name__) + logger.debug("Ingest command options:" + str(options)) try: p = parser( - config=options['config'], - output_path=options['output'].format(school=school), + config=options["config"], + output_path=options["output"].format(school=school, type=parser_type), # output_error_path=options['output_error'].format( # school=school, # type=parser_type # ), - break_on_error=options['break_on_error'], - break_on_warning=options['break_on_warning'], - display_progress_bar=options['display_progress_bar'], - validate=options['validate'], - tracker=tracker + break_on_error=options["break_on_error"], + break_on_warning=options["break_on_warning"], + display_progress_bar=options["display_progress_bar"], + validate=options["validate"], + tracker=tracker, ) p.start( - verbosity=options['verbosity'], - textbooks=parser_type == 'textbook', - departments_filter=options.get('departments'), - years_and_terms_filter=Command._resolve_years_and_terms( - options - ) + verbosity=options["verbosity"], + departments_filter=options.get("departments"), + years_and_terms_filter=Command._resolve_years_and_terms(options), ) p.end() except PipelineException: - logger.exception('Ingestion failed for ' + school + ' ' + parser_type) + logger.exception("Ingestion failed for " + school + " " + parser_type) try: - logger.debug('Ingestor dump for ' + school, p.ingestor) + logger.debug("Ingestor dump for " + school, p.ingestor) except UnboundLocalError: pass except Exception: - logger.exception('Ingestion failed for ' + school + ' ' + parser_type) + logger.exception("Ingestion failed for " + school + " " + parser_type) - logger.info('Ingestion overview for ' + school + ': ' + str(self.stat_view.report())) + logger.info( + "Ingestion overview for " + school + ": " + str(self.stat_view.report()) + ) @staticmethod def _resolve_years_and_terms(options): - if options.get('years_and_terms') is not None: - return options['years_and_terms'] + if options.get("years_and_terms") is not None: + return options["years_and_terms"] # Construct years and terms dictionary years_and_terms = {} - for year in options['years']: + for year in options["years"]: year = years_and_terms.setdefault(year, []) - for term in options['terms']: + for term in options["terms"]: year.append(term) return years_and_terms diff --git a/parsing/management/commands/makeschool.py b/parsing/management/commands/makeschool.py index 4e84ba1118..5c07fb4ae5 100644 --- a/parsing/management/commands/makeschool.py +++ b/parsing/management/commands/makeschool.py @@ -10,8 +10,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - import os import simplejson as json @@ -31,125 +29,122 @@ class Command(BaseCommand): help = "Scaffolds a directory for a new school, adds to active schools" - template = '{}/{}/management/{{}}_template.txt'.format( - os.getcwd(), - settings.PARSING_MODULE + template = "{}/{}/management/{{}}_template.txt".format( + os.getcwd(), settings.PARSING_MODULE ) def add_arguments(self, parser): """Add arguments to command.""" + parser.add_argument("--name", type=str, help="the school name", required=True) parser.add_argument( - '--name', - type=str, - help='the school name', - required=True - ) - parser.add_argument( - '--code', + "--code", type=str, required=True, - help='the schools shortened name, will be the subdomain (e.g. jhu)' + help="the schools shortened name, will be the subdomain (e.g. jhu)", ) parser.add_argument( - '--regex', + "--regex", type=str, - default=r'(.)*', - help='for detecting/validating course code; default: %(default)s' + default=r"(.)*", + help="for detecting/validating course code; default: %(default)s", ) parser.add_argument( - '--ampm', + "--ampm", type=bool, default=True, - help='school use 12 instead of 24hr time; default: %(default)s' + help="school use 12 instead of 24hr time; default: %(default)s", ) parser.add_argument( - '--full-academic-year-registration', + "--full-academic-year-registration", type=bool, default=False, - help='registration time period; default: %(default)s' + help="registration time period; default: %(default)s", ) parser.add_argument( - '--single-access', + "--single-access", type=bool, default=False, - help='access cannot be parallelized; default: %(default)s' + help="access cannot be parallelized; default: %(default)s", ) parser.add_argument( - '--granularity', + "--granularity", type=int, default=5, - help='minimum time between section offerings; default: %(default)s' + help="minimum time between section offerings; default: %(default)s", ) def handle(self, *args, **options): """Handle the command.""" - name = options['name'] - code = options['code'].lower() + name = options["name"] + code = options["code"].lower() replacements = ( - ('CODE', code), - ('NAME', name), - ('REGEX', options['regex']), - ('AMPM', options['ampm']), - ('GRANULARITY', options['granularity']), - ('SINGLE_ACCESS', options['single_access']), - ('FULL_ACADEMIC_YEAR_REGISTRATION', - options['full_academic_year_registration']), + ("CODE", code), + ("NAME", name), + ("REGEX", options["regex"]), + ("AMPM", options["ampm"]), + ("GRANULARITY", options["granularity"]), + ("SINGLE_ACCESS", options["single_access"]), + ( + "FULL_ACADEMIC_YEAR_REGISTRATION", + options["full_academic_year_registration"], + ), ) - school_dir_path = '{}/{}/schools/{}'.format(os.getcwd(), - settings.PARSING_MODULE, - code) + school_dir_path = "{}/{}/schools/{}".format( + os.getcwd(), settings.PARSING_MODULE, code + ) if os.path.exists(school_dir_path): raise CommandError("This school already exists.") - parser_path = '{}/courses.py'.format(school_dir_path, code) - config_path = '{}/config.json'.format(school_dir_path) - logs_path = '{}/logs'.format(school_dir_path) - data_path = '{}/data'.format(school_dir_path) - init_path = '{}/__init__.py'.format(school_dir_path) - active_schools_path = '{}/active'.format(school_dir_path) + parser_path = "{}/courses.py".format(school_dir_path, code) + config_path = "{}/config.json".format(school_dir_path) + logs_path = "{}/logs".format(school_dir_path) + data_path = "{}/data".format(school_dir_path) + init_path = "{}/__init__.py".format(school_dir_path) + active_schools_path = "{}/active".format(school_dir_path) - with open(active_schools_path, 'r') as file: + with open(active_schools_path, "r") as file: active_schools = set(file.read().splitlines()) active_schools.add(code) - with open('LICENSE_HEADER', 'r') as file: + with open("LICENSE_HEADER", "r") as file: license = file.read() - with open(Command.template.format('parser'), 'rb') as file: - parser = file.read().format(name=name, - code=code, - parser_type='course'.title()) + with open(Command.template.format("parser"), "rb") as file: + parser = file.read().format( + name=name, code=code, parser_type="course".title() + ) - with open(Command.template.format('config'), 'rb') as file: + with open(Command.template.format("config"), "rb") as file: config = file.read() for tag, replacement in replacements: - config = config.replace('<{}>'.format(tag), - json.dumps(replacement)) + config = config.replace("<{}>".format(tag), json.dumps(replacement)) - with open(Command.template.format('init'), 'r') as file: + with open(Command.template.format("init"), "r") as file: init = file.read() os.makedirs(school_dir_path) os.makedirs(logs_path) os.makedirs(data_path) - open(logs_path + '/.gitkeep', 'a').close() - open(data_path + '/.gitkeep', 'a').close() + open(logs_path + "/.gitkeep", "a").close() + open(data_path + "/.gitkeep", "a").close() with open(parser_path, "w") as file: - file.write('# '.join(license.splitlines())) - file.write('\n') + file.write("# ".join(license.splitlines())) + file.write("\n") file.write(parser) with open(config_path, "w") as file: file.write(config) - with open(active_schools_path, 'w') as file: - file.write('\n'.join(sorted(active_schools))) - with open(init_path, 'w') as file: - file.write('# '.join(license.splitlines())) - file.write('\n') + with open(active_schools_path, "w") as file: + file.write("\n".join(sorted(active_schools))) + with open(init_path, "w") as file: + file.write("# ".join(license.splitlines())) + file.write("\n") file.write(init) - self.stdout.write(self.style.SUCCESS( - "Finished! Directory instantiated {}".format(school_dir_path) - )) + self.stdout.write( + self.style.SUCCESS( + "Finished! Directory instantiated {}".format(school_dir_path) + ) + ) diff --git a/parsing/management/commands/validate.py b/parsing/management/commands/validate.py index 01cddd7d9a..a28235b03d 100644 --- a/parsing/management/commands/validate.py +++ b/parsing/management/commands/validate.py @@ -10,8 +10,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - import logging import simplejson as json @@ -21,6 +19,7 @@ from parsing.library.tracker import Tracker from parsing.library.viewer import StatProgressBar + class Command(BaseCommand): """Django command to drive self-contained validation in data pipeline. @@ -30,7 +29,7 @@ class Command(BaseCommand): help (str): command help message. """ - help = 'Validation driver.' + help = "Validation driver." def add_arguments(self, parser): """Add arguments to command parser. @@ -48,13 +47,13 @@ def handle(self, *args, **options): **options: Command options. """ tracker = Tracker() - tracker.mode = 'validating' - if options['display_progress_bar']: - tracker.add_viewer(StatProgressBar('{valid}/{total}')) + tracker.mode = "validating" + if options["display_progress_bar"]: + tracker.add_viewer(StatProgressBar("{valid}/{total}")) tracker.start() - for parser_type in options['types']: - for school in options['schools']: + for parser_type in options["types"]: + for school in options["schools"]: self.run(options, school, parser_type, tracker) def run(self, options, school, parser_type, tracker): @@ -63,27 +62,25 @@ def run(self, options, school, parser_type, tracker): Args: options (dict): Command line options for arg parser. school (str): School to parse. - parser_type (str): {'courses', 'evals', 'textbooks'} + parser_type (str): {'courses', 'evals'} """ tracker.school = school - logger = logging.getLogger('parsing.schools.' + school) - logger.debug('Command options:', options) + logger = logging.getLogger("parsing.schools." + school) + logger.debug("Command options:", options) # Load config file to dictionary. - if isinstance(options['config'], str): - with open(options['config'].format(school=school, - type=parser_type), 'r') as file: - options['config'] = json.load(file) + if isinstance(options["config"], str): + with open( + options["config"].format(school=school, type=parser_type), "r" + ) as file: + options["config"] = json.load(file) try: - Validator( - options['config'], - tracker=tracker - ).validate_self_contained( - options['data'].format(school=school, type=parser_type), - break_on_error=options.get('break_on_error'), - break_on_warning=options.get('break_on_warning'), - display_progress_bar=options['display_progress_bar'] + Validator(options["config"], tracker=tracker).validate_self_contained( + options["data"].format(school=school, type=parser_type), + break_on_error=options.get("break_on_error"), + break_on_warning=options.get("break_on_warning"), + display_progress_bar=options["display_progress_bar"], ) except Exception: - logger.exception('Validation failed for ' + school) + logger.exception("Validation failed for " + school) diff --git a/parsing/management/parser_template.txt b/parsing/management/parser_template.txt index 7ac36b9c27..173a326635 100644 --- a/parsing/management/parser_template.txt +++ b/parsing/management/parser_template.txt @@ -1,5 +1,3 @@ -from __future__ import print_function, division, absolute_import - from parsing.library.base_parser import BaseParser from parsing.library.exceptions import ParserError, ParserWarning, ParserJump @@ -17,7 +15,7 @@ class Parser(BaseParser): Returns: Parser """ - new_instance = object.__new__(cls, *args, **kwargs) + new_instance = object.__new__(cls) # CREDENTIALS BELONG HERE. # cls.CREDENTIALS = { ... } return new_instance @@ -32,7 +30,6 @@ class Parser(BaseParser): def start(self, verbosity=3, - textbooks=False, departments_filter=None, years_and_terms_filter=None): """Start the parse.""" diff --git a/parsing/migrations/0001_initial.py b/parsing/migrations/0001_initial.py index e35f6c580c..07522ded07 100644 --- a/parsing/migrations/0001_initial.py +++ b/parsing/migrations/0001_initial.py @@ -1,29 +1,57 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-08-04 04:09 -from __future__ import unicode_literals + from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): - initial = True dependencies = [ - ('timetable', '0019_merge'), + ("timetable", "0019_merge"), ] operations = [ migrations.CreateModel( - name='DataUpdate', + name="DataUpdate", fields=[ - ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), - ('school', models.CharField(max_length=100)), - ('last_updated', models.DateTimeField(auto_now=True)), - ('reason', models.CharField(default=b'Scheduled Update', max_length=200)), - ('update_type', models.CharField(choices=[(b'C', b'courses'), (b'T', b'textbooks'), (b'E', b'evaluations'), (b'M', b'miscellaneous')], default=b'M', max_length=1)), - ('semester', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='timetable.Semester')), + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ("school", models.CharField(max_length=100)), + ("last_updated", models.DateTimeField(auto_now=True)), + ( + "reason", + models.CharField(default=b"Scheduled Update", max_length=200), + ), + ( + "update_type", + models.CharField( + choices=[ + (b"C", b"courses"), + (b"T", b"textbooks"), + (b"E", b"evaluations"), + (b"M", b"miscellaneous"), + ], + default=b"M", + max_length=1, + ), + ), + ( + "semester", + models.ForeignKey( + on_delete=django.db.models.deletion.CASCADE, + to="timetable.Semester", + ), + ), ], ), ] diff --git a/parsing/migrations/0002_auto_20170803_2329.py b/parsing/migrations/0002_auto_20170803_2329.py index f6b9ecc211..a1bbda8a57 100644 --- a/parsing/migrations/0002_auto_20170803_2329.py +++ b/parsing/migrations/0002_auto_20170803_2329.py @@ -1,20 +1,19 @@ # -*- coding: utf-8 -*- # Generated by Django 1.9.2 on 2017-08-04 04:29 -from __future__ import unicode_literals + from django.db import migrations class Migration(migrations.Migration): - dependencies = [ - ('parsing', '0001_initial'), + ("parsing", "0001_initial"), ] operations = [ migrations.RenameField( - model_name='dataupdate', - old_name='last_updated', - new_name='timestamp', + model_name="dataupdate", + old_name="last_updated", + new_name="timestamp", ), ] diff --git a/parsing/migrations/0003_auto_20170910_2155.py b/parsing/migrations/0003_auto_20170910_2155.py new file mode 100644 index 0000000000..7339b74699 --- /dev/null +++ b/parsing/migrations/0003_auto_20170910_2155.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.4 on 2017-09-11 02:55 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("parsing", "0002_auto_20170803_2329"), + ] + + operations = [ + migrations.AlterField( + model_name="dataupdate", + name="reason", + field=models.CharField(default="Scheduled Update", max_length=200), + ), + migrations.AlterField( + model_name="dataupdate", + name="update_type", + field=models.CharField( + choices=[ + ("C", "courses"), + ("T", "textbooks"), + ("E", "evaluations"), + ("M", "miscellaneous"), + ], + default="M", + max_length=1, + ), + ), + ] diff --git a/parsing/migrations/0004_alter_dataupdate_update_type.py b/parsing/migrations/0004_alter_dataupdate_update_type.py new file mode 100644 index 0000000000..0fbbcf58c5 --- /dev/null +++ b/parsing/migrations/0004_alter_dataupdate_update_type.py @@ -0,0 +1,25 @@ +# Generated by Django 3.2.11 on 2022-01-30 22:08 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("parsing", "0003_auto_20170910_2155"), + ] + + operations = [ + migrations.AlterField( + model_name="dataupdate", + name="update_type", + field=models.CharField( + choices=[ + ("C", "courses"), + ("E", "evaluations"), + ("M", "miscellaneous"), + ], + default="M", + max_length=1, + ), + ), + ] diff --git a/parsing/models.py b/parsing/models.py index fdc11e2d63..f7c61a9c36 100644 --- a/parsing/models.py +++ b/parsing/models.py @@ -33,24 +33,21 @@ class DataUpdate(models.Model): COURSES (str): Update type. EVALUATIONS (str): Update type. MISCELLANEOUS (str): Update type. - TEXTBOOKS (str): Update type. """ - COURSES = 'C' - TEXTBOOKS = 'T' - EVALUATIONS = 'E' - MISCELLANEOUS = 'M' + COURSES = "C" + EVALUATIONS = "E" + MISCELLANEOUS = "M" UPDATE_TYPE = ( - (COURSES, 'courses'), - (TEXTBOOKS, 'textbooks'), - (EVALUATIONS, 'evaluations'), - (MISCELLANEOUS, 'miscellaneous'), + (COURSES, "courses"), + (EVALUATIONS, "evaluations"), + (MISCELLANEOUS, "miscellaneous"), ) school = models.CharField(max_length=100) - semester = models.ForeignKey(Semester) + semester = models.ForeignKey(Semester, on_delete=models.deletion.CASCADE) timestamp = models.DateTimeField(auto_now=True) - reason = models.CharField(max_length=200, default='Scheduled Update') - update_type = models.CharField(max_length=1, - choices=UPDATE_TYPE, - default=MISCELLANEOUS) + reason = models.CharField(max_length=200, default="Scheduled Update") + update_type = models.CharField( + max_length=1, choices=UPDATE_TYPE, default=MISCELLANEOUS + ) diff --git a/parsing/schools/__init__.py b/parsing/schools/__init__.py index 4e053fde40..e47ba68d31 100644 --- a/parsing/schools/__init__.py +++ b/parsing/schools/__init__.py @@ -33,13 +33,11 @@ def load_school_logger(school): Args: name (str): module name. """ - with open(os.path.join(os.path.dirname(__file__), 'logging.yaml'), 'r') as file: + with open(os.path.join(os.path.dirname(__file__), "logging.yaml"), "r") as file: config = file.read().format( - parsing_log_filename=os.path.join(os.path.dirname(__file__), - school, - 'logs', - 'parsing.log'), - module='parsing.schools.' + school + parsing_log_filename=os.path.join( + os.path.dirname(__file__), school, "logs", "parsing.log" + ), + module="parsing.schools." + school, ) logging.config.dictConfig(yaml.safe_load(config)) - diff --git a/parsing/schools/active.py b/parsing/schools/active.py index 431a5e3b0f..1138e8da9d 100644 --- a/parsing/schools/active.py +++ b/parsing/schools/active.py @@ -12,10 +12,9 @@ from django.conf import settings -active_file = '{}/{}/schools/active'.format(settings.BASE_DIR, - settings.PARSING_MODULE) +active_file = "{}/{}/schools/active".format(settings.BASE_DIR, settings.PARSING_MODULE) ACTIVE_PARSING_SCHOOLS = {"jhu"} -with open(active_file, 'r') as file: +with open(active_file, "r") as file: ACTIVE_SCHOOLS = set(file.read().splitlines()) diff --git a/parsing/schools/chapman/__init__.py b/parsing/schools/chapman/__init__.py index 449af654ab..944a06edc8 100644 --- a/parsing/schools/chapman/__init__.py +++ b/parsing/schools/chapman/__init__.py @@ -11,4 +11,5 @@ # GNU General Public License for more details. from parsing.schools import load_school_logger -load_school_logger('chapman') + +load_school_logger("chapman") diff --git a/parsing/schools/chapman/courses.py b/parsing/schools/chapman/courses.py index 51a6bf0d0b..53ff227181 100644 --- a/parsing/schools/chapman/courses.py +++ b/parsing/schools/chapman/courses.py @@ -10,15 +10,13 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - from parsing.common.peoplesoft.courses import PeoplesoftParser class Parser(PeoplesoftParser): """Chapman course parser.""" - URL = 'https://cs90prod.chapman.edu/psc/CS90PROD_1/EMPLOYEE/SA/c/COMMUNITY_ACCESS.CLASS_SEARCH.GBL' + URL = "https://cs90prod.chapman.edu/psc/CS90PROD_1/EMPLOYEE/SA/c/COMMUNITY_ACCESS.CLASS_SEARCH.GBL" def __init__(self, **kwargs): """Construct course parser. @@ -26,4 +24,4 @@ def __init__(self, **kwargs): Args: **kwargs: pass-through """ - super(Parser, self).__init__('chapman', Parser.URL, **kwargs) + super(Parser, self).__init__("chapman", Parser.URL, **kwargs) diff --git a/parsing/schools/gw/__init__.py b/parsing/schools/gw/__init__.py index 71b11cbf47..e68d9d8012 100644 --- a/parsing/schools/gw/__init__.py +++ b/parsing/schools/gw/__init__.py @@ -11,4 +11,5 @@ # GNU General Public License for more details. from parsing.schools import load_school_logger -load_school_logger('gw') + +load_school_logger("gw") diff --git a/parsing/schools/gw/courses.py b/parsing/schools/gw/courses.py index 079b0adf8e..2b01f03a75 100644 --- a/parsing/schools/gw/courses.py +++ b/parsing/schools/gw/courses.py @@ -10,9 +10,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - -from __future__ import absolute_import, division, print_function - import re import sys @@ -30,15 +27,15 @@ class Parser(BaseParser): NOTE: GW cannot support multiple login! """ - URL = 'https://banweb.gwu.edu/PRODCartridge' + URL = "https://banweb.gwu.edu/PRODCartridge" YEARS_AND_TERMS = { 2017: { - 'Fall': '201703', - 'Spring': '201701', + "Fall": "201703", + "Spring": "201701", }, 2016: { - 'Fall': '201603', - } + "Fall": "201603", + }, } def __new__(cls, *args, **kwargs): @@ -49,9 +46,9 @@ def __new__(cls, *args, **kwargs): """ new_instance = object.__new__(cls) cls.CREDENTIALS = { - 'username': get_secret('GW_USER'), - 'password': get_secret('GW_PASS'), - 'security_question_answer': get_secret('GW_SECURITY_ANSWER') + "username": get_secret("GW_USER"), + "password": get_secret("GW_PASS"), + "security_question_answer": get_secret("GW_SECURITY_ANSWER"), } return new_instance @@ -61,125 +58,125 @@ def __init__(self, **kwargs): Args: **kwargs: pass-through """ - super(Parser, self).__init__('gw', **kwargs) - - def start(self, - years_and_terms_filter=None, - departments_filter=None, - verbosity=3, - textbooks=None): + super(Parser, self).__init__("gw", **kwargs) + + def start( + self, + years_and_terms_filter=None, + departments_filter=None, + verbosity=3, + ): """Start parse.""" self._login() self._direct_to_search_page() years_and_terms = dict_filter_by_dict( - Parser.YEARS_AND_TERMS, - years_and_terms_filter + Parser.YEARS_AND_TERMS, years_and_terms_filter ) - for year, terms in years_and_terms.items(): - self.ingestor['year'] = year + for year, terms in list(years_and_terms.items()): + self.ingestor["year"] = year for term_name in terms: term_code = Parser.YEARS_AND_TERMS[year][term_name] - self.ingestor['term'] = term_name + self.ingestor["term"] = term_name # Retrieve term search page. soup = self.requester.get( - Parser.URL + '/bwckgens.p_proc_term_date', - params={ - 'p_calling_proc': 'P_CrseSearch', - 'p_term': term_code - } + Parser.URL + "/bwckgens.p_proc_term_date", + params={"p_calling_proc": "P_CrseSearch", "p_term": term_code}, ) # Create search param list. input_options_soup = soup.find( - 'form', - action='/PRODCartridge/bwskfcls.P_GetCrse' - ).find_all('input') + "form", action="/PRODCartridge/bwskfcls.P_GetCrse" + ).find_all("input") query = {} for input_option in input_options_soup: - query[input_option['name']] = input_option.get('value', '') - query.update({ - 'begin_hh': '0', - 'begin_mi': '0', - 'end_hh': '0', - 'end_mi': '0', - 'sel_ptrm': '%', - 'SUB_BTN': 'Section Search' - }) + query[input_option["name"]] = input_option.get("value", "") + query.update( + { + "begin_hh": "0", + "begin_mi": "0", + "end_hh": "0", + "end_mi": "0", + "sel_ptrm": "%", + "SUB_BTN": "Section Search", + } + ) # Construct list of departments. depts = {} - depts_soup = soup.find('select', id='subj_id').find_all('option') + depts_soup = soup.find("select", id="subj_id").find_all("option") for dept_soup in depts_soup: - depts[dept_soup.text.strip()] = dept_soup['value'] + depts[dept_soup.text.strip()] = dept_soup["value"] - for dept_name, dept_code in depts.iteritems(): - self.ingestor['department'] = { - 'name': dept_name, - 'code': dept_code - } + for dept_name, dept_code in depts.items(): + self.ingestor["department"] = {"name": dept_name, "code": dept_code} - query['sel_subj'] = ['dummy', dept_code] + query["sel_subj"] = ["dummy", dept_code] rows = self.requester.post( - Parser.URL + '/bwskfcls.P_GetCrse', - params=query + Parser.URL + "/bwskfcls.P_GetCrse", params=query ) Parser._check_errorpage(rows) try: - rows = rows.find( - 'table', - class_='datadisplaytable' - ).find_all('tr')[2:] + rows = rows.find("table", class_="datadisplaytable").find_all( + "tr" + )[2:] except AttributeError: - print('message: no results for department', - dept_name, - file=sys.stderr) + print( + "message: no results for department", + dept_name, + file=sys.stderr, + ) continue # no results for department # collect offered courses in department for row in rows: - info = row.find_all('td') - if info[1].find('a'): - + info = row.find_all("td") + if info[1].find("a"): # general info - self.ingestor.update({ - # 'ident': info[1].text, - 'code': info[2].text + ' ' + info[3].text, - # 'href': info[1].find('a')['href'], - 'dept': dept_name, - 'section': info[4].text, - 'credits': safe_cast(info[6].text, float, - default=0.), - 'name': info[7].text, - 'size': int(info[10].text), - 'enrollment': int(info[11].text), - 'waitlist': safe_cast(info[14].text, int, - default=-1), - 'areas': '; '.join(info[22].text.split(' and ')) if len(info) == 23 else '' # FIXME - hacky fix - }) + self.ingestor.update( + { + # 'ident': info[1].text, + "code": info[2].text + " " + info[3].text, + # 'href': info[1].find('a')['href'], + "dept": dept_name, + "section": info[4].text, + "credits": safe_cast( + info[6].text, float, default=0.0 + ), + "name": info[7].text, + "size": int(info[10].text), + "enrollment": int(info[11].text), + "waitlist": safe_cast( + info[14].text, int, default=-1 + ), + "areas": "; ".join(info[22].text.split(" and ")) + if len(info) == 23 + else "", # FIXME - hacky fix + } + ) # Query course catalog to obtain description. catalog = self.requester.get( - Parser.URL + '/bwckctlg.p_display_courses', + Parser.URL + "/bwckctlg.p_display_courses", params={ - 'term_in': term_code, - 'one_subj': dept_code, - 'sel_crse_strt': info[3].text, - 'sel_crse_end': info[3].text, - 'sel_subj': '', - 'sel_levl': '', - 'sel_schd': '', - 'sel_coll': '', - 'sel_divs': '', - 'sel_dept': '', - 'sel_attr': '' - } + "term_in": term_code, + "one_subj": dept_code, + "sel_crse_strt": info[3].text, + "sel_crse_end": info[3].text, + "sel_subj": "", + "sel_levl": "", + "sel_schd": "", + "sel_coll": "", + "sel_divs": "", + "sel_dept": "", + "sel_attr": "", + }, ) if catalog: @@ -190,13 +187,13 @@ def start(self, course = self.ingestor.ingest_course() section_soup = self.requester.get( - Parser.URL + '/bwckschd.p_disp_listcrse', + Parser.URL + "/bwckschd.p_disp_listcrse", params={ - 'term_in': term_code, - 'subj_in': dept_code, - 'crse_in': info[3].text, - 'crn_in': info[1].text, - } + "term_in": term_code, + "subj_in": dept_code, + "crse_in": info[3].text, + "crn_in": info[1].text, + }, ) meetings_soup = Parser._extract_meetings(section_soup) @@ -216,117 +213,113 @@ def start(self, if len(meetings_soup) == 0: continue - self.ingestor['section_type'] = meetings_soup[0].find_all('td')[5].text + self.ingestor["section_type"] = ( + meetings_soup[0].find_all("td")[5].text + ) section_model = self.ingestor.ingest_section(course) self._parse_meetings(meetings_soup, section_model) def _login(self): # Collect necessary cookies - self.requester.get(Parser.URL + '/twbkwbis.P_WWWLogin', - parse=False) + self.requester.get(Parser.URL + "/twbkwbis.P_WWWLogin", parse=False) - self.requester.headers['Referer'] = '{}/twbkwbis.P_WWWLogin'.format( - Parser.URL - ) + self.requester.headers["Referer"] = "{}/twbkwbis.P_WWWLogin".format(Parser.URL) logged_in = self.requester.post( - Parser.URL + '/twbkwbis.P_ValLogin', + Parser.URL + "/twbkwbis.P_ValLogin", parse=False, data={ - 'sid': Parser.CREDENTIALS['username'], - 'PIN': Parser.CREDENTIALS['password'] - } + "sid": Parser.CREDENTIALS["username"], + "PIN": Parser.CREDENTIALS["password"], + }, ) if logged_in.status_code != 200: - print('Unexpected error: login unsuccessful', - sys.exc_info()[0], - file=sys.stderr) - raise Exception('GW Parser, failed login') + print( + "Unexpected error: login unsuccessful", + sys.exc_info()[0], + file=sys.stderr, + ) + raise Exception("GW Parser, failed login") # Deal with security question page. self.requester.post( - '{}/twbkwbis.P_ProcSecurityAnswer'.format(Parser.URL), + "{}/twbkwbis.P_ProcSecurityAnswer".format(Parser.URL), parse=False, data={ - 'RET_CODE': '', - 'SID': Parser.CREDENTIALS['username'], - 'QSTN_NUM': 1, - 'answer': Parser.CREDENTIALS['security_question_answer'] - } + "RET_CODE": "", + "SID": Parser.CREDENTIALS["username"], + "QSTN_NUM": 1, + "answer": Parser.CREDENTIALS["security_question_answer"], + }, ) def _direct_to_search_page(self): - genurl = Parser.URL + '/twbkwbis.P_GenMenu' - actions = ['bmenu.P_MainMnu', 'bmenu.P_StuMainMnu', 'bmenu.P_RegMnu'] - map(lambda n: self.requester.get(genurl, params={'name': n}), actions) - self.requester.get(Parser.URL + '/bwskfcls.P_CrseSearch', - parse=False, - params={'term_in': ''}) + genurl = Parser.URL + "/twbkwbis.P_GenMenu" + actions = ["bmenu.P_MainMnu", "bmenu.P_StuMainMnu", "bmenu.P_RegMnu"] + list(map(lambda n: self.requester.get(genurl, params={"name": n}), actions)) + self.requester.get( + Parser.URL + "/bwskfcls.P_CrseSearch", parse=False, params={"term_in": ""} + ) def _parse_meetings(self, meetings_soup, section_model): for meeting_soup in meetings_soup: - col = meeting_soup.find_all('td') - time = re.match(r'(.*) - (.*)', col[1].text) + col = meeting_soup.find_all("td") + time = re.match(r"(.*) - (.*)", col[1].text) if not time: continue - self.ingestor['time_start'] = time.group(1) - self.ingestor['time_end'] = time.group(2) - self.ingestor['days'] = list(col[2].text) - filtered_days = filter(lambda x: x.replace(u'\xa0', u''), - self.ingestor['days']) + self.ingestor["time_start"] = time.group(1) + self.ingestor["time_end"] = time.group(2) + self.ingestor["days"] = [col[2].text] + filtered_days = [x for x in self.ingestor["days"] if x.replace("\xa0", "")] if len(filtered_days) == 0: break - self.ingestor['location'] = col[3].text + self.ingestor["location"] = col[3].text self.ingestor.ingest_meeting(section_model) def _parse_instructors(self, meetings): - self.ingestor['instrs'] = [] + self.ingestor["instrs"] = [] for meeting in meetings: - instructors = meeting.find_all('td')[6].text.split(',') + instructors = meeting.find_all("td")[6].text.split(",") # NOTE: must constrain instructor length LAW 6683 for instructor in instructors[:5]: # Remove extra internal spaces. - instructor = ' '.join(instructor.split()) + instructor = " ".join(instructor.split()) # Remove primary tag from instructor name. - instructor = re.match( - r'(.*?)(?: \(P\))?$', - instructor - ).group(1) + instructor = re.match(r"(.*?)(?: \(P\))?$", instructor).group(1) - self.ingestor['instrs'].append(instructor) + self.ingestor["instrs"].append(instructor) @staticmethod def _parse_catalogentrypage(soup): fields = {} - meat = soup.find('body').find('table', class_='datadisplaytable') + meat = soup.find("body").find("table", class_="datadisplaytable") if meat is None: return {} - fields.update({'descr': Parser._extract_description(meat)}) - fields.update(Parser._extract_info(meat.find('td', - class_='ntdefault'))) + fields.update({"descr": Parser._extract_description(meat)}) + fields.update(Parser._extract_info(meat.find("td", class_="ntdefault"))) return fields @staticmethod def _extract_description(soup): try: - meat = soup.find_all('tr', recursive=False)[1].find('td') - descr = re.match(r'\n([^<]+)<[^$]*', meat.prettify()) - return ' '.join(descr.group(1).strip().splitlines()) + meat = soup.find_all("tr", recursive=False)[1].find("td") + descr = re.match(r"\n([^<]+)<[^$]*", meat.prettify()) + return " ".join(descr.group(1).strip().splitlines()) except: - return '' + return "" @staticmethod def _extract_info(soup): # Link field in tag to text proceeding it. fields = {} - for t in soup.find_all('span', class_='fieldlabeltext'): + for t in soup.find_all("span", class_="fieldlabeltext"): data = t.next_sibling # Skip newline tags. - while data and isinstance(data, Tag) and data.name == 'br': + while data and isinstance(data, Tag) and data.name == "br": data = data.next_sibling if not isinstance(data, NavigableString): @@ -334,14 +327,14 @@ def _extract_info(soup): fields[t.text.strip()[:-1]] = data extraction = { - 'Schedule Types': ('section_type', lambda s: s[0].upper()), - 'Levels': ('level', lambda s: 'Levels: ' + s.strip()), - 'Course Attributes': ('areas', lambda x: x.strip().split(',')) + "Schedule Types": ("section_type", lambda s: s[0].upper()), + "Levels": ("level", lambda s: "Levels: " + s.strip()), + "Course Attributes": ("areas", lambda x: x.strip().split(",")), } # Filter and map over (header, content) pairs. extracted = {} - for name, data in fields.items(): + for name, data in list(fields.items()): if extraction.get(name): extracted[extraction[name][0]] = extraction[name][1](data) @@ -349,11 +342,11 @@ def _extract_info(soup): @staticmethod def _extract_meetings(soup): - meetings = soup.find('table', class_='datadisplaytable') + meetings = soup.find("table", class_="datadisplaytable") if meetings: - meetings = meetings.find('table', class_='datadisplaytable') + meetings = meetings.find("table", class_="datadisplaytable") if meetings: - meetings = meetings.find_all('tr')[1:] + meetings = meetings.find_all("tr")[1:] if meetings: return meetings else: @@ -361,7 +354,7 @@ def _extract_meetings(soup): @staticmethod def _check_errorpage(soup): - error = soup.find('span', class_='errortext') + error = soup.find("span", class_="errortext") if not error: return - raise ParseError('Error on page request, message: ' + error.text) + raise ParseError("Error on page request, message: " + error.text) diff --git a/parsing/schools/gw/textbooks.py b/parsing/schools/gw/textbooks.py deleted file mode 100644 index 571bd8b616..0000000000 --- a/parsing/schools/gw/textbooks.py +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - - -from parsing.common.textbooks.bkstr_dot_com import BkstrDotComParser - - -class Parser(BkstrDotComParser): - """GW textbook parser. - - Inherits for bkstr.com parser. - """ - - def __init__(self, **kwargs): - """Create instance of textbook parser. - - Args: - **kwargs: pass-through - """ - store_id = '10370' - super(Parser, self).__init__('gw', store_id, **kwargs) diff --git a/parsing/schools/jhu/HopkinsEvaluations/Fall:2012.html b/parsing/schools/jhu/HopkinsEvaluations/Fall_2012.html similarity index 100% rename from parsing/schools/jhu/HopkinsEvaluations/Fall:2012.html rename to parsing/schools/jhu/HopkinsEvaluations/Fall_2012.html diff --git a/parsing/schools/jhu/HopkinsEvaluations/Fall:2013.html b/parsing/schools/jhu/HopkinsEvaluations/Fall_2013.html similarity index 100% rename from parsing/schools/jhu/HopkinsEvaluations/Fall:2013.html rename to parsing/schools/jhu/HopkinsEvaluations/Fall_2013.html diff --git a/parsing/schools/jhu/HopkinsEvaluations/Fall:2014.html b/parsing/schools/jhu/HopkinsEvaluations/Fall_2014.html similarity index 100% rename from parsing/schools/jhu/HopkinsEvaluations/Fall:2014.html rename to parsing/schools/jhu/HopkinsEvaluations/Fall_2014.html diff --git a/parsing/schools/jhu/HopkinsEvaluations/Fall:2015.html b/parsing/schools/jhu/HopkinsEvaluations/Fall_2015.html similarity index 100% rename from parsing/schools/jhu/HopkinsEvaluations/Fall:2015.html rename to parsing/schools/jhu/HopkinsEvaluations/Fall_2015.html diff --git a/parsing/schools/jhu/HopkinsEvaluations/Spring:2013.html b/parsing/schools/jhu/HopkinsEvaluations/Spring_2013.html similarity index 100% rename from parsing/schools/jhu/HopkinsEvaluations/Spring:2013.html rename to parsing/schools/jhu/HopkinsEvaluations/Spring_2013.html diff --git a/parsing/schools/jhu/HopkinsEvaluations/Spring:2014.html b/parsing/schools/jhu/HopkinsEvaluations/Spring_2014.html similarity index 100% rename from parsing/schools/jhu/HopkinsEvaluations/Spring:2014.html rename to parsing/schools/jhu/HopkinsEvaluations/Spring_2014.html diff --git a/parsing/schools/jhu/HopkinsEvaluations/Spring:2015.html b/parsing/schools/jhu/HopkinsEvaluations/Spring_2015.html similarity index 100% rename from parsing/schools/jhu/HopkinsEvaluations/Spring:2015.html rename to parsing/schools/jhu/HopkinsEvaluations/Spring_2015.html diff --git a/parsing/schools/jhu/__init__.py b/parsing/schools/jhu/__init__.py index a14dc9ca66..9d90ca7e95 100644 --- a/parsing/schools/jhu/__init__.py +++ b/parsing/schools/jhu/__init__.py @@ -11,4 +11,5 @@ # GNU General Public License for more details. from parsing.schools import load_school_logger -load_school_logger('jhu') + +load_school_logger("jhu") diff --git a/parsing/schools/jhu/config.json b/parsing/schools/jhu/config.json index 85d0f57287..4efb583a2e 100644 --- a/parsing/schools/jhu/config.json +++ b/parsing/schools/jhu/config.json @@ -4,43 +4,19 @@ "name": "Johns Hopkins University" }, "course_code_regex": "([A-Z]{2}\\.\\d{3}\\.\\d{3})$", - "terms": [ - "Fall", - "Intersession", - "Spring", - "Summer" - ], + "terms": ["Fall", "Intersession", "Spring", "Summer"], "granularity": 5, "ampm": true, "full_academic_year_registration": false, "single_access": false, "active_semesters": { - "2017": [ - "Fall", - "Summer", - "Spring", - "Intersession" - ], - "2018": [ - "Fall", - "Spring" - ], - "2019": [ - "Spring" - ] + "2020": ["Fall", "Spring"], + "2021": ["Fall", "Spring"], + "2022": ["Fall", "Spring"], + "2023": ["Fall", "Spring"], + "2024": ["Fall", "Spring"] }, - "final_exams": { - "2017": [ - "Spring", - "Fall" - ], - "2018": [ - "Spring", - "Fall" - ], - "2019": [ - "Spring" - ] - }, - "registrar": true + "final_exams": {}, + "registrar": true, + "short_course_weeks_limit": 8 } diff --git a/parsing/schools/jhu/course_same_as.py b/parsing/schools/jhu/course_same_as.py index 7a2ea13344..d02bb12369 100644 --- a/parsing/schools/jhu/course_same_as.py +++ b/parsing/schools/jhu/course_same_as.py @@ -11,6 +11,7 @@ # GNU General Public License for more details. import django, os, json, traceback, sys, smtplib + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") django.setup() from timetable.models import Course diff --git a/parsing/schools/jhu/courses.py b/parsing/schools/jhu/courses.py index 365d56e822..57a94eb002 100644 --- a/parsing/schools/jhu/courses.py +++ b/parsing/schools/jhu/courses.py @@ -10,9 +10,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - -import sys import logging import re @@ -34,16 +31,8 @@ class Parser(BaseParser): verbosity (TYPE): Description """ - API_URL = 'https://sis.jhu.edu/api/classes/' - DAY_MAP = { - 'm': 'M', - 't': 'T', - 'w': 'W', - 'th': 'R', - 'f': 'F', - 'sa': 'S', - 's': 'U' - } + API_URL = "https://sis.jhu.edu/api/classes/" + DAY_MAP = {"m": "M", "t": "T", "w": "W", "th": "R", "f": "F", "sa": "S", "s": "U"} def __new__(cls, *args, **kwargs): """Set static variables within closure. @@ -51,35 +40,39 @@ def __new__(cls, *args, **kwargs): Returns: Parser """ - new_instance = object.__new__(cls, *args, **kwargs) - cls.KEY = get_secret('JHU_API_KEY') + new_instance = object.__new__(cls) + cls.KEY = get_secret("JHU_API_KEY") return new_instance def __init__(self, **kwargs): """Construct hopkins parser object.""" self.schools = [] self.last_course = {} - super(Parser, self).__init__('jhu', **kwargs) + super(Parser, self).__init__("jhu", **kwargs) def _get_schools(self): self.schools = self.requester.get( - Parser.API_URL + '/codes/schools', - params={'key': Parser.KEY} + Parser.API_URL + "/codes/schools", params={"key": Parser.KEY} ) def _get_courses(self, school): - url = '{}/{}/{}'.format(Parser.API_URL, - school['Name'], - self.semester) - return self.requester.get(url, params={'key': Parser.KEY}) + url = "{}/{}/{}".format(Parser.API_URL, school["Name"], self.semester) + return self.requester.get(url, params={"key": Parser.KEY}) def _get_section(self, course): return self.requester.get(self._get_section_url(course)) def _get_section_url(self, course): - return Parser.API_URL + '/' \ - + course['OfferingName'].replace(".", "") + course['SectionName'] \ - + '/' + self.semester + '?key=' + Parser.KEY + return ( + Parser.API_URL + + "/" + + course["OfferingName"].replace(".", "") + + course["SectionName"] + + "/" + + self.semester + + "?key=" + + Parser.KEY + ) def _parse_schools(self): for school in self.schools: @@ -92,135 +85,174 @@ def _parse_school(self, school): if len(section) == 0: logging.warn(self._get_section_url(course)) continue - self._load_ingestor(course, section) + self._load_ingestor(school["Name"], course, section) def _compute_size_enrollment(self, course): try: - section_size = int(course['MaxSeats']) + section_size = int(course["MaxSeats"]) except: section_size = 0 try: - section_enrolment = section_size \ - - int(course['SeatsAvailable'].split("/")[0]) + section_enrolment = section_size - int( + course["SeatsAvailable"].split("/")[0] + ) if section_enrolment < 0: section_enrolment = 0 except: section_enrolment = 0 try: - waitlist = int(course.get('Waitlisted')) + waitlist = int(course.get("Waitlisted")) except ValueError: waitlist = None return (section_size, section_enrolment, waitlist) - def _load_ingestor(self, course, section): - section_details = section[0]['SectionDetails'] + def _load_ingestor(self, school, course, section): + self.ingestor["sub_school"] = school + self.ingestor["course_section_id"] = section[0]["SSS_SectionsID"] + section_details = section[0]["SectionDetails"] try: - num_credits = float(course['Credits']) + num_credits = float(course["Credits"]) except: num_credits = 0 - # Load core course fields - self.ingestor['areas'] = filter(lambda a: a != "None", - course['Areas'].split(',')) - if course['IsWritingIntensive'] == "Yes": - self.ingestor['areas'] += ['Writing Intensive'] + areas = [] + if ( + school == "Krieger School of Arts and Sciences" + or school == "Whiting School of Engineering" + ): + if course["Areas"] != "None": + for letter in course["Areas"]: + areas.append(letter) + # Add specialty areas for computer science department + # if course['Department'] == 'EN Computer Science': + # cs_areas_re = r'\bApplications|\bAnalysis|\bSystems|\bGeneral' + # for match in re.findall(cs_areas_re, self.ingestor['description']): + # areas.append(match.encode('ascii', 'ignore')) + self.ingestor["areas"] = areas - if len(section_details[0]['Prerequisites']) > 0: + self.ingestor["writing_intensive"] = course["IsWritingIntensive"] + + if len(section_details[0]["Prerequisites"]) > 0: prereqs = [] - for p in section_details[0]['Prerequisites']: - prereqs.append(p['Description']) - self.ingestor['prerequisites'] = ' '.join(prereqs) + for p in section_details[0]["Prerequisites"]: + prereqs.append(p["Description"]) + self.ingestor["prerequisites"] = " ".join(prereqs) else: - self.ingestor['prerequisites'] = '' - - self.ingestor['level'] = re.findall(re.compile(r".+?\..+?\.(.{1}).+"), - course['OfferingName'])[0] + "00" - self.ingestor['name'] = course['Title'] - self.ingestor['description'] = section_details[0]['Description'] - self.ingestor['code'] = course['OfferingName'].strip() - self.ingestor['num_credits'] = num_credits - self.ingestor['department_name'] = ' '.join( - course['Department'].split()[1:] - ) - self.ingestor['campus'] = 1 - self.ingestor['exclusions'] = section_details[0].get( - 'EnrollmentRestrictedTo' + self.ingestor["prerequisites"] = "" + + self.ingestor["level"] = ( + re.findall(re.compile(r".+?\..+?\.(.{1}).+"), course["OfferingName"])[0] + + "00" ) + self.ingestor["name"] = course["Title"] + self.ingestor["description"] = section_details[0]["Description"] + self.ingestor["code"] = course["OfferingName"].strip() + self.ingestor["num_credits"] = num_credits + self.ingestor["department_name"] = " ".join(course["Department"].split()[1:]) + self.ingestor["campus"] = 1 + self.ingestor["exclusions"] = section_details[0].get("EnrollmentRestrictedTo") - # Add specialty areas for computer science department - if course['Department'] == 'EN Computer Science': - cs_areas_re = r'\bApplications|\bAnalysis|\bSystems|\bGeneral' - for match in re.findall(cs_areas_re, self.ingestor['description']): - self.ingestor['areas'] += [match] + tags = [] + for tag in section_details[0]["PosTags"]: + tags.append(tag["Tag"]) + self.ingestor["pos"] = tags created_course = self.ingestor.ingest_course() - if self.last_course \ - and created_course['code'] == course['OfferingName'].strip() \ - and created_course['name'] != course['Title']: - self.ingestor['section_name'] = course['OfferingName'].strip() + if ( + self.last_course + and created_course["code"] == course["OfferingName"].strip() + and created_course["name"] != course["Title"] + ): + self.ingestor["section_name"] = course["OfferingName"].strip() self.last_course = created_course - for meeting in section_details[0]['Meetings']: + for meeting in section_details[0]["Meetings"]: # Load core section fields - self.ingestor['section'] = "(" + section[0]['SectionName'] + ")" - self.ingestor['instrs'] = map(lambda i: i.strip(), - course['Instructors'].split(',')) + self.ingestor["section"] = "(" + section[0]["SectionName"] + ")" + self.ingestor["instrs"] = [ + i.strip() for i in course["Instructors"].split(",") + ] size, enrollment, waitlist = self._compute_size_enrollment(course) - self.ingestor['size'] = size - self.ingestor['enrollment'] = enrollment - self.ingestor['waitlist'] = waitlist + self.ingestor["size"] = size + self.ingestor["enrollment"] = enrollment + self.ingestor["waitlist"] = waitlist created_section = self.ingestor.ingest_section(created_course) # Load offering fields. - times = meeting['Times'] - for time in filter(lambda t: len(t) > 0, times.split(',')): + dates = meeting["Dates"].split(" to ") + self.ingestor["date_start"] = dates[0] + self.ingestor["date_end"] = dates[1] + + times = meeting["Times"] + for time in [t for t in times.split(",") if len(t) > 0]: time_pieces = re.search( - r'(\d{2}:\d{2} [AP]M) - (\d{2}:\d{2} [AP]M)', - time + r"(\d{2}:\d{2} [AP]M) - (\d{2}:\d{2} [AP]M)", time ) if time_pieces is None: - print("Skipping " + course['Title'] + " invalid time of " + time + ". Expecting a range.") - continue - self.ingestor['time_start'] = time_pieces.group(1) - self.ingestor['time_end'] = time_pieces.group(2) - if (len(meeting['DOW'].strip()) > 0 and - meeting['DOW'] != "TBA" and - meeting['DOW'] != "None"): - self.ingestor['days'] = map( - lambda d: Parser.DAY_MAP.get(d.lower()), - re.findall(r'(?:T[hH])|(?:S[aA])|[SMTWF]', meeting['DOW']) + print( + "Skipping " + + course["Title"] + + " invalid time of " + + time + + ". Expecting a range." ) - if self.ingestor['days'] is None: + continue + self.ingestor["time_start"] = time_pieces.group(1) + self.ingestor["time_end"] = time_pieces.group(2) + if ( + len(meeting["DOW"].strip()) > 0 + and meeting["DOW"] != "TBA" + and meeting["DOW"] != "None" + ): + self.ingestor["days"] = [ + Parser.DAY_MAP.get(d.lower()) + for d in re.findall( + r"(?:T[hH])|(?:S[aA])|[SMTWF]", meeting["DOW"] + ) + ] + if self.ingestor["days"] is None: continue - self.ingestor['location'] = { - 'building': meeting['Building'], - 'room': meeting['Room'] + self.ingestor["location"] = { + "building": meeting["Building"], + "room": meeting["Room"], } + # print(self.ingestor) self.ingestor.ingest_meeting(created_section) - def start(self, - verbosity=3, - textbooks=False, - departments_filter=None, - years_and_terms_filter=None): + def start( + self, + verbosity=3, + departments_filter=None, + years_and_terms_filter=None, + ): """Start parse.""" self.verbosity = verbosity # Default to hardcoded current year. - years = {'2019', '2018', '2017', '2016', '2015'} - terms = {'Spring', 'Fall', 'Summer', 'Intersession'} + years = { + "2024", + "2023", + "2022", + "2021", + "2020", + "2019", + "2018", + "2017", + "2016", + "2015", + } + terms = {"Spring", "Fall", "Summer", "Intersession"} years_and_terms = dict_filter_by_dict( - {year: [term for term in terms] for year in years}, - years_and_terms_filter + {year: [term for term in terms] for year in years}, years_and_terms_filter ) - for year, terms in years_and_terms.items(): - self.ingestor['year'] = year + for year, terms in list(years_and_terms.items()): + self.ingestor["year"] = year for term in terms: - self.ingestor['term'] = term - self.semester = '{} {}'.format(term, year) + self.ingestor["term"] = term + self.semester = "{} {}".format(term, year) self._get_schools() self._parse_schools() diff --git a/parsing/schools/jhu/data/evals.json b/parsing/schools/jhu/data/evals.json new file mode 100644 index 0000000000..99832ae584 --- /dev/null +++ b/parsing/schools/jhu/data/evals.json @@ -0,0 +1,22029 @@ +{ + "$data": [ + { + "course": { + "code": "EN.580.404" + }, + "instructors": [ + { + "name": "Elizabeth Logsdon" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.162" + }, + "instructors": [ + { + "name": "Ann Jarema" + } + ], + "kind": "eval", + "score": 3.99, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.200.323" + }, + "instructors": [ + { + "name": "Jeffrey Bowen" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.362.241" + }, + "instructors": [ + { + "name": "Bryan Carter" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Spring", + "year": "Spring:2017" + }, + { + "course": { + "code": "AS.100.252" + }, + "instructors": [ + { + "name": "Jules Gill peterson" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.105" + }, + "instructors": [ + { + "name": "Joerg-uwe Szipl" + } + ], + "kind": "eval", + "score": 3.95, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "EN.660.150" + }, + "instructors": [ + { + "name": "Leslie Kendrick" + } + ], + "kind": "eval", + "score": 4.14, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "AS.061.377" + }, + "instructors": [ + { + "name": "Linda Delibero" + } + ], + "kind": "eval", + "score": 4.51, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "AS.145.111" + }, + "instructors": [ + { + "name": "Dave Shade" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "AS.180.104" + }, + "instructors": [ + { + "name": "Aniruddha Ghosh" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "AS.280.233" + }, + "instructors": [ + { + "name": "Minal Patel" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "AS.376.142" + }, + "instructors": [ + { + "name": "Michael Rickelton" + } + ], + "kind": "eval", + "score": 3.86, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "EN.530.114" + }, + "instructors": [ + { + "name": "Michael Boyle" + } + ], + "kind": "eval", + "score": 4.16, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "EN.570.410" + }, + "instructors": [ + { + "name": "Carl Liggio" + } + ], + "kind": "eval", + "score": 4.0, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "EN.570.410" + }, + "instructors": [ + { + "name": "Gabriel Thoumi" + } + ], + "kind": "eval", + "score": 4.0, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "EN.570.413" + }, + "instructors": [ + { + "name": "Carl Liggio" + } + ], + "kind": "eval", + "score": 4.15, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "EN.570.413" + }, + "instructors": [ + { + "name": "Lori Simpson" + } + ], + "kind": "eval", + "score": 4.12, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "EN.660.157" + }, + "instructors": [ + { + "name": "Andres Lares" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "AS.030.225" + }, + "instructors": [ + { + "name": "Larissa D'souza" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.030.225" + }, + "instructors": [ + { + "name": "Larissa D'souza" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.225" + }, + "instructors": [ + { + "name": "Thomas Lectka" + } + ], + "kind": "eval", + "score": 3.77, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.540.604" + }, + "instructors": [ + { + "name": "Lakshmi Santhanam" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.374" + }, + "instructors": [ + { + "name": "Anna Coppola" + } + ], + "kind": "eval", + "score": 3.84, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.412" + }, + "instructors": [ + { + "name": "Loreto Sanchez" + } + ], + "kind": "eval", + "score": 4.52, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.560.301" + }, + "instructors": [ + { + "name": "Cristopher Moen" + } + ], + "kind": "eval", + "score": 4.6, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.321" + }, + "instructors": [ + { + "name": "Rajiv Mccoy" + } + ], + "kind": "eval", + "score": 4.03, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.393" + }, + "instructors": [ + { + "name": "Alissa Burkholder murphy" + } + ], + "kind": "eval", + "score": 4.8, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.393" + }, + "instructors": [ + { + "name": "Lucas Buccafusca" + } + ], + "kind": "eval", + "score": 4.8, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.245" + }, + "instructors": [ + { + "name": "Andrew Halladay" + } + ], + "kind": "eval", + "score": 4.57, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.106" + }, + "instructors": [ + { + "name": "Sean Gruber" + } + ], + "kind": "eval", + "score": 3.65, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.110.106" + }, + "instructors": [ + { + "name": "Yuchin Sun" + } + ], + "kind": "eval", + "score": 2.8, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.405" + }, + "instructors": [ + { + "name": "Jeffrey Marino" + } + ], + "kind": "eval", + "score": 4.51, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.110.405" + }, + "instructors": [ + { + "name": "Chamsol Park" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.405" + }, + "instructors": [ + { + "name": "Jeffrey Marino" + } + ], + "kind": "eval", + "score": 4.39, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.405" + }, + "instructors": [ + { + "name": "Jeffrey Marino" + } + ], + "kind": "eval", + "score": 3.98, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.213.334" + }, + "instructors": [ + { + "name": "Jennifer Gosetti" + } + ], + "kind": "eval", + "score": 4.48, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.190.471" + }, + "instructors": [ + { + "name": "Robert Kargon" + } + ], + "kind": "eval", + "score": 3.72, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.190.471" + }, + "instructors": [ + { + "name": "Benjamin Ginsberg" + } + ], + "kind": "eval", + "score": 3.75, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.520.605" + }, + "instructors": [ + { + "name": "Jacob Khurgin" + } + ], + "kind": "eval", + "score": 4.45, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.050.326" + }, + "instructors": [ + { + "name": "Paul Smolensky" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.315" + }, + "instructors": [ + { + "name": "John Edison" + } + ], + "kind": "eval", + "score": 4.09, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.315" + }, + "instructors": [ + { + "name": "Sakul Ratanalert" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.663" + }, + "instructors": [ + { + "name": "Beryl Castello" + } + ], + "kind": "eval", + "score": 4.13, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.560.255" + }, + "instructors": [ + { + "name": "Stavros Gaitanaros" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.570.304" + }, + "instructors": [ + { + "name": "Carsten Prasse" + } + ], + "kind": "eval", + "score": 4.47, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.570.304" + }, + "instructors": [ + { + "name": "Peter Decarlo" + } + ], + "kind": "eval", + "score": 4.53, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.141" + }, + "instructors": [ + { + "name": "Meredith Ward" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.331" + }, + "instructors": [ + { + "name": "Bill Smedick" + } + ], + "kind": "eval", + "score": 4.3, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.660.331" + }, + "instructors": [ + { + "name": "Mia Russell" + } + ], + "kind": "eval", + "score": 3.87, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.331" + }, + "instructors": [ + { + "name": "Bill Smedick" + } + ], + "kind": "eval", + "score": 3.9, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.105" + }, + "instructors": [ + { + "name": "Henry Hallock" + } + ], + "kind": "eval", + "score": 4.11, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.080.105" + }, + "instructors": [ + { + "name": "Stewart Hendry" + } + ], + "kind": "eval", + "score": 4.46, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.580.407" + }, + "instructors": [ + { + "name": "Michelle Zwernemann" + } + ], + "kind": "eval", + "score": 4.59, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "EN.580.407" + }, + "instructors": [ + { + "name": "Elizabeth Logsdon" + } + ], + "kind": "eval", + "score": 4.57, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "AS.130.352" + }, + "instructors": [ + { + "name": "David Katz" + } + ], + "kind": "eval", + "score": 4.35, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.312" + }, + "instructors": [ + { + "name": "Collin Broholm" + } + ], + "kind": "eval", + "score": 3.94, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.040.103" + }, + "instructors": [ + { + "name": "Matthew Roller" + } + ], + "kind": "eval", + "score": 4.33, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.601.771" + }, + "instructors": [ + { + "name": "Daniel Khashabi" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.520.214" + }, + "instructors": [ + { + "name": "Mounya Elhilali" + } + ], + "kind": "eval", + "score": 3.86, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.371" + }, + "instructors": [ + { + "name": "Donniell Fishkind" + } + ], + "kind": "eval", + "score": 4.15, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.560.192" + }, + "instructors": [ + { + "name": "Rachel Sangree" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.230.320" + }, + "instructors": [ + { + "name": "Stefanie Deluca" + } + ], + "kind": "eval", + "score": 4.45, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.230.365" + }, + "instructors": [ + { + "name": "Stephen Morgan" + } + ], + "kind": "eval", + "score": 4.16, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.663" + }, + "instructors": [ + { + "name": "Simon Leonard" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.230.244" + }, + "instructors": [ + { + "name": "Meredith Greif" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.133.451" + }, + "instructors": [ + { + "name": "Marie-lys Arnette" + } + ], + "kind": "eval", + "score": 4.35, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.376.111" + }, + "instructors": [ + { + "name": "Michael Rickelton" + } + ], + "kind": "eval", + "score": 3.91, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.376.111" + }, + "instructors": [ + { + "name": "Jordan Prescott" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.376.111" + }, + "instructors": [ + { + "name": "Lisa Perry" + } + ], + "kind": "eval", + "score": 4.3, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.190.370" + }, + "instructors": [ + { + "name": "John Yasuda" + } + ], + "kind": "eval", + "score": 4.51, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.388" + }, + "instructors": [ + { + "name": "Heather Roberts fox" + } + ], + "kind": "eval", + "score": 4.1, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.302" + }, + "instructors": [ + { + "name": "April Wuensch" + } + ], + "kind": "eval", + "score": 4.03, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.302" + }, + "instructors": [ + { + "name": "Claire Massy-paoli" + } + ], + "kind": "eval", + "score": 4.14, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.382" + }, + "instructors": [ + { + "name": "John Edison" + } + ], + "kind": "eval", + "score": 4.15, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.738" + }, + "instructors": [ + { + "name": "Mauro Maggioni" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.374" + }, + "instructors": [ + { + "name": "Dylan Selterman" + } + ], + "kind": "eval", + "score": 4.12, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.742" + }, + "instructors": [ + { + "name": "Abhishek Jain" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.653" + }, + "instructors": [ + { + "name": "Alejandro Martin gomez" + } + ], + "kind": "eval", + "score": 4.8, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.450" + }, + "instructors": [ + { + "name": "Leslie Kendrick" + } + ], + "kind": "eval", + "score": 3.98, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.332" + }, + "instructors": [ + { + "name": "Mc Coghlan" + } + ], + "kind": "eval", + "score": 3.95, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.660.332" + }, + "instructors": [ + { + "name": "Mc Coghlan" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.363.341" + }, + "instructors": [ + { + "name": "Brad Harmon" + } + ], + "kind": "eval", + "score": 3.74, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.363.341" + }, + "instructors": [ + { + "name": "Katrin Pahl" + } + ], + "kind": "eval", + "score": 3.8, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.510.312" + }, + "instructors": [ + { + "name": "James Spicer" + } + ], + "kind": "eval", + "score": 3.28, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.305" + }, + "instructors": [ + { + "name": "Chelsea Howe" + } + ], + "kind": "eval", + "score": 4.53, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.380" + }, + "instructors": [ + { + "name": "Lawrence Aronhime" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.380" + }, + "instructors": [ + { + "name": "Alexander Cocron" + } + ], + "kind": "eval", + "score": 4.29, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.761" + }, + "instructors": [ + { + "name": "Thabo Samakhoana" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.601.740" + }, + "instructors": [ + { + "name": "Yinzhi Cao" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.211" + }, + "instructors": [ + { + "name": "Nadejda Drenska" + } + ], + "kind": "eval", + "score": 3.36, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.211" + }, + "instructors": [ + { + "name": "Mario Micheli" + } + ], + "kind": "eval", + "score": 4.15, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.211" + }, + "instructors": [ + { + "name": "Zachary Pisano" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.211" + }, + "instructors": [ + { + "name": "Nadejda Drenska" + } + ], + "kind": "eval", + "score": 3.51, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.211" + }, + "instructors": [ + { + "name": "Donniell Fishkind" + } + ], + "kind": "eval", + "score": 4.43, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.373.415" + }, + "instructors": [ + { + "name": "Qian Wang" + } + ], + "kind": "eval", + "score": 4.64, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.110.303" + }, + "instructors": [ + { + "name": "Christopher Ratigan" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.110.303" + }, + "instructors": [ + { + "name": "Christopher Ratigan" + } + ], + "kind": "eval", + "score": 4.48, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.530.202" + }, + "instructors": [ + { + "name": "Noah Cowan" + } + ], + "kind": "eval", + "score": 3.27, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.620" + }, + "instructors": [ + { + "name": "Soumyadipta Acharya" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.560.658" + }, + "instructors": [ + { + "name": "Gonzalo Pita" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.428" + }, + "instructors": [ + { + "name": "Jean Fan" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.416" + }, + "instructors": [ + { + "name": "Fei Lu" + } + ], + "kind": "eval", + "score": 4.15, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.321" + }, + "instructors": [ + { + "name": "Alison Papadakis" + } + ], + "kind": "eval", + "score": 4.35, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.190.220" + }, + "instructors": [ + { + "name": "Daniel Deudney" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.312" + }, + "instructors": [ + { + "name": "Arancha Hubbard" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.312" + }, + "instructors": [ + { + "name": "Loreto Sanchez" + } + ], + "kind": "eval", + "score": 4.34, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.210.312" + }, + "instructors": [ + { + "name": "Arancha Hubbard" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.110.202" + }, + "instructors": [ + { + "name": "Chamsol Park" + } + ], + "kind": "eval", + "score": 3.65, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.110.202" + }, + "instructors": [ + { + "name": "Xiong Wang" + } + ], + "kind": "eval", + "score": 4.07, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.202" + }, + "instructors": [ + { + "name": "Teri Christiansen" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.202" + }, + "instructors": [ + { + "name": "Teri Christiansen" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.110.202" + }, + "instructors": [ + { + "name": "Alexander Shumakovitch" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.225.328" + }, + "instructors": [ + { + "name": "Joe Martin" + } + ], + "kind": "eval", + "score": 4.01, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.215.390" + }, + "instructors": [ + { + "name": "Eduardo Gonzalez" + } + ], + "kind": "eval", + "score": 4.03, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.215.390" + }, + "instructors": [ + { + "name": "Alicia Pinar diaz" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.215.390" + }, + "instructors": [ + { + "name": "Rhiannon Clarke" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.378" + }, + "instructors": [ + { + "name": "Greg Williamson" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.270.205" + }, + "instructors": [ + { + "name": "Xin Chen" + } + ], + "kind": "eval", + "score": 3.27, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.307" + }, + "instructors": [ + { + "name": "Brandon Bangsboll" + } + ], + "kind": "eval", + "score": 3.73, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.307" + }, + "instructors": [ + { + "name": "Zachery Yeager" + } + ], + "kind": "eval", + "score": 3.73, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.211.259" + }, + "instructors": [ + { + "name": "Alessandro Zannirato" + } + ], + "kind": "eval", + "score": 4.23, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.211.259" + }, + "instructors": [ + { + "name": "Alessandro Zannirato" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.190.308" + }, + "instructors": [ + { + "name": "Sebastian Mazzuca" + } + ], + "kind": "eval", + "score": 3.81, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.249" + }, + "instructors": [ + { + "name": "Hellen Seshie-nasser" + } + ], + "kind": "eval", + "score": 3.99, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.180.249" + }, + "instructors": [ + { + "name": "Hellen Seshie-nasser" + } + ], + "kind": "eval", + "score": 4.03, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.302" + }, + "instructors": [ + { + "name": "Laurence Ball" + } + ], + "kind": "eval", + "score": 3.32, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.600" + }, + "instructors": [ + { + "name": "Joshua Reiter" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.659" + }, + "instructors": [ + { + "name": "Laureano Moro velazquez" + } + ], + "kind": "eval", + "score": 4.67, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.413" + }, + "instructors": [ + { + "name": "John Mann" + } + ], + "kind": "eval", + "score": 4.14, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.190.405" + }, + "instructors": [ + { + "name": "Adam Sheingate" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.230.440" + }, + "instructors": [ + { + "name": "Huei-ying Kuo" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.252" + }, + "instructors": [ + { + "name": "Leonardo Proietti" + } + ], + "kind": "eval", + "score": 4.57, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.213.380" + }, + "instructors": [ + { + "name": "Rochelle Tobias" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.454" + }, + "instructors": [ + { + "name": "Sara Thoi" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.140.312" + }, + "instructors": [ + { + "name": "Robert Kargon" + } + ], + "kind": "eval", + "score": 3.87, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.140.312" + }, + "instructors": [ + { + "name": "Benjamin Ginsberg" + } + ], + "kind": "eval", + "score": 3.88, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.101" + }, + "instructors": [ + { + "name": "Bob Barbera" + } + ], + "kind": "eval", + "score": 3.88, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.180.101" + }, + "instructors": [ + { + "name": "Hellen Seshie-nasser" + } + ], + "kind": "eval", + "score": 3.56, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.101" + }, + "instructors": [ + { + "name": "Nino Kodua" + } + ], + "kind": "eval", + "score": 3.79, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.180.347" + }, + "instructors": [ + { + "name": "M Khan" + } + ], + "kind": "eval", + "score": 4.1, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.150.401" + }, + "instructors": [ + { + "name": "Richard Bett" + } + ], + "kind": "eval", + "score": 4.33, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.301" + }, + "instructors": [ + { + "name": "Chia ling Chien" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.520.650" + }, + "instructors": [ + { + "name": "Rama Chellappa" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.785" + }, + "instructors": [ + { + "name": "David Kaplan" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.721" + }, + "instructors": [ + { + "name": "Holden Lee" + } + ], + "kind": "eval", + "score": 4.52, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.661.317" + }, + "instructors": [ + { + "name": "Jenny Bernstein" + } + ], + "kind": "eval", + "score": 4.6, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.225.201" + }, + "instructors": [ + { + "name": "Gerrad Taylor" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.639" + }, + "instructors": [ + { + "name": "Sergey Kushnarev" + } + ], + "kind": "eval", + "score": 3.99, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.280.471" + }, + "instructors": [ + { + "name": "Elizabeth Linton" + } + ], + "kind": "eval", + "score": 3.94, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.449" + }, + "instructors": [ + { + "name": "Colin Norman" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.345" + }, + "instructors": [ + { + "name": "Jay Baraban" + } + ], + "kind": "eval", + "score": 4.24, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.623" + }, + "instructors": [ + { + "name": "Jim Bellingham" + } + ], + "kind": "eval", + "score": 3.59, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.762" + }, + "instructors": [ + { + "name": "Ben Grimmer" + } + ], + "kind": "eval", + "score": 4.35, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.560.112" + }, + "instructors": [ + { + "name": "Ben Schafer" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.663.670" + }, + "instructors": [ + { + "name": "Herman Goodyear" + } + ], + "kind": "eval", + "score": 4.54, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.250.381" + }, + "instructors": [ + { + "name": "Juliette Lecomte" + } + ], + "kind": "eval", + "score": 4.13, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.619" + }, + "instructors": [ + { + "name": "Soumya Acharya" + } + ], + "kind": "eval", + "score": 4.55, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.171.108" + }, + "instructors": [ + { + "name": "Petar Maksimovic" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.108" + }, + "instructors": [ + { + "name": "David Sing" + } + ], + "kind": "eval", + "score": 4.01, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.108" + }, + "instructors": [ + { + "name": "David Nataf" + } + ], + "kind": "eval", + "score": 4.24, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.192.410" + }, + "instructors": [ + { + "name": "Francis Gavin" + } + ], + "kind": "eval", + "score": 4.72, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.192.410" + }, + "instructors": [ + { + "name": "Hal Brands" + } + ], + "kind": "eval", + "score": 4.72, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.145.205" + }, + "instructors": [ + { + "name": "Alicia Puglionesi" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.373.216" + }, + "instructors": [ + { + "name": "Shuyi Yang" + } + ], + "kind": "eval", + "score": 4.45, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.373.216" + }, + "instructors": [ + { + "name": "Aiguo Chen" + } + ], + "kind": "eval", + "score": 4.35, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.417" + }, + "instructors": [ + { + "name": "Kristin Cook-gailloud" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.270" + }, + "instructors": [ + { + "name": "Victoria Harms" + } + ], + "kind": "eval", + "score": 4.26, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.628" + }, + "instructors": [ + { + "name": "Roza Galeeva" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.570.428" + }, + "instructors": [ + { + "name": "Steve Hanke" + } + ], + "kind": "eval", + "score": 4.56, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.679" + }, + "instructors": [ + { + "name": "Wojciech Zbijewski" + } + ], + "kind": "eval", + "score": 4.24, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.215.406" + }, + "instructors": [ + { + "name": "Becquer Seguin" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.520.607" + }, + "instructors": [ + { + "name": "Jacob Khurgin" + } + ], + "kind": "eval", + "score": 3.67, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.050.337" + }, + "instructors": [ + { + "name": "Donald Li" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.277" + }, + "instructors": [ + { + "name": "Flavia De azeredo cerqueira" + } + ], + "kind": "eval", + "score": 3.79, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.277" + }, + "instructors": [ + { + "name": "Benjamin Chaffin" + } + ], + "kind": "eval", + "score": 3.67, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.289" + }, + "instructors": [ + { + "name": "Gatien De broucker" + } + ], + "kind": "eval", + "score": 3.79, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.171.324" + }, + "instructors": [ + { + "name": "Brice Menard" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.020.319" + }, + "instructors": [ + { + "name": "Kyle Cunningham" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.319" + }, + "instructors": [ + { + "name": "Rajiv Mccoy" + } + ], + "kind": "eval", + "score": 4.03, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.606" + }, + "instructors": [ + { + "name": "Yahui Zhang" + } + ], + "kind": "eval", + "score": 3.36, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.310.340" + }, + "instructors": [ + { + "name": "Gaochao He" + } + ], + "kind": "eval", + "score": 4.07, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.663.675" + }, + "instructors": [ + { + "name": "Len Foxwell" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.665" + }, + "instructors": [ + { + "name": "Rama Chellappa" + } + ], + "kind": "eval", + "score": 3.85, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.601.429" + }, + "instructors": [ + { + "name": "Scott Smith" + } + ], + "kind": "eval", + "score": 4.47, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.070.317" + }, + "instructors": [ + { + "name": "Niloofar Haeri" + } + ], + "kind": "eval", + "score": 3.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.646" + }, + "instructors": [ + { + "name": "Trac duy Tran" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.210.319" + }, + "instructors": [ + { + "name": "Naiara Martinez-velez" + } + ], + "kind": "eval", + "score": 4.16, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.319" + }, + "instructors": [ + { + "name": "Carmen Torres burgos" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.510.425" + }, + "instructors": [ + { + "name": "Mingwei Chen" + } + ], + "kind": "eval", + "score": 4.6, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.315" + }, + "instructors": [ + { + "name": "Lucy Bucknell" + } + ], + "kind": "eval", + "score": 4.49, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.060.219" + }, + "instructors": [ + { + "name": "Jared Hickman" + } + ], + "kind": "eval", + "score": 4.58, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.220" + }, + "instructors": [ + { + "name": "Brandon Bangsboll" + } + ], + "kind": "eval", + "score": 3.92, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.220" + }, + "instructors": [ + { + "name": "Zachery Yeager" + } + ], + "kind": "eval", + "score": 3.92, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.220" + }, + "instructors": [ + { + "name": "Michael Lieske" + } + ], + "kind": "eval", + "score": 3.92, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.220" + }, + "instructors": [ + { + "name": "Tim Leung" + } + ], + "kind": "eval", + "score": 3.92, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.688" + }, + "instructors": [ + { + "name": "Dan Naiman" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.688" + }, + "instructors": [ + { + "name": "Dan Naiman" + } + ], + "kind": "eval", + "score": 3.85, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.330" + }, + "instructors": [ + { + "name": "Daeyeol Lee" + } + ], + "kind": "eval", + "score": 4.01, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.335" + }, + "instructors": [ + { + "name": "Steven Marra" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.646" + }, + "instructors": [ + { + "name": "Jamie Spangler" + } + ], + "kind": "eval", + "score": 4.29, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.560.731" + }, + "instructors": [ + { + "name": "Sandor Adany" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.647" + }, + "instructors": [ + { + "name": "Patrick Cahan" + } + ], + "kind": "eval", + "score": 3.78, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.456" + }, + "instructors": [ + { + "name": "Katharine Noel" + } + ], + "kind": "eval", + "score": 4.69, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.389.315" + }, + "instructors": [ + { + "name": "Sanchita Balachandran" + } + ], + "kind": "eval", + "score": 4.14, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.210.313" + }, + "instructors": [ + { + "name": "Carmen Torres burgos" + } + ], + "kind": "eval", + "score": 4.68, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.210.313" + }, + "instructors": [ + { + "name": "Rosario Ramos" + } + ], + "kind": "eval", + "score": 4.46, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.313" + }, + "instructors": [ + { + "name": "Carmen Torres burgos" + } + ], + "kind": "eval", + "score": 4.39, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.373.314" + }, + "instructors": [ + { + "name": "Aiguo Chen" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.641" + }, + "instructors": [ + { + "name": "Abhishek Jain" + } + ], + "kind": "eval", + "score": 4.1, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.641" + }, + "instructors": [ + { + "name": "Matthew Green" + } + ], + "kind": "eval", + "score": 4.12, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.211.315" + }, + "instructors": [ + { + "name": "Samuel Spinner" + } + ], + "kind": "eval", + "score": 3.78, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.211.315" + }, + "instructors": [ + { + "name": "Alice Mandell" + } + ], + "kind": "eval", + "score": 3.86, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.212.340" + }, + "instructors": [ + { + "name": "Suzanne Roos" + } + ], + "kind": "eval", + "score": 4.5, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.262" + }, + "instructors": [ + { + "name": "Tamer El-leithy" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.570.320" + }, + "instructors": [ + { + "name": "Scot Miller" + } + ], + "kind": "eval", + "score": 4.29, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.626" + }, + "instructors": [ + { + "name": "Scott Smith" + } + ], + "kind": "eval", + "score": 4.54, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.201" + }, + "instructors": [ + { + "name": "Jeffrey Bowen" + } + ], + "kind": "eval", + "score": 4.13, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.401" + }, + "instructors": [ + { + "name": "Jason Trageser" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.303" + }, + "instructors": [ + { + "name": "Emily Fisher" + } + ], + "kind": "eval", + "score": 3.76, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.303" + }, + "instructors": [ + { + "name": "Andrew Gordus" + } + ], + "kind": "eval", + "score": 3.61, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.303" + }, + "instructors": [ + { + "name": "Emily Fisher" + } + ], + "kind": "eval", + "score": 3.55, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.560.619" + }, + "instructors": [ + { + "name": "Jamie Guest" + } + ], + "kind": "eval", + "score": 4.54, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.150.424" + }, + "instructors": [ + { + "name": "Lucy Allais" + } + ], + "kind": "eval", + "score": 4.56, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.104" + }, + "instructors": [ + { + "name": "Daniel Reich" + } + ], + "kind": "eval", + "score": 3.98, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.647" + }, + "instructors": [ + { + "name": "David Audley" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.452" + }, + "instructors": [ + { + "name": "Jess Dunleavey" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.452" + }, + "instructors": [ + { + "name": "Jess Dunleavey" + } + ], + "kind": "eval", + "score": 4.43, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.452" + }, + "instructors": [ + { + "name": "Jessica Dunleavey" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.010.102" + }, + "instructors": [ + { + "name": "Rebecca Brown" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.373.316" + }, + "instructors": [ + { + "name": "Aiguo Chen" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.212" + }, + "instructors": [ + { + "name": "Noah Cowan" + } + ], + "kind": "eval", + "score": 3.19, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.271.360" + }, + "instructors": [ + { + "name": "Benjamin Zaitchik" + } + ], + "kind": "eval", + "score": 4.1, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.271.360" + }, + "instructors": [ + { + "name": "Darryn Waugh" + } + ], + "kind": "eval", + "score": 4.02, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.112" + }, + "instructors": [ + { + "name": "Fred Torcaso" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.170" + }, + "instructors": [ + { + "name": "Tobie Meyer-fong" + } + ], + "kind": "eval", + "score": 4.13, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.241" + }, + "instructors": [ + { + "name": "David Kraemer" + } + ], + "kind": "eval", + "score": 4.01, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.353" + }, + "instructors": [ + { + "name": "Mahyar Fazlyab" + } + ], + "kind": "eval", + "score": 3.65, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.344" + }, + "instructors": [ + { + "name": "Kirsten Bohn" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.344" + }, + "instructors": [ + { + "name": "Kirsten Bohn" + } + ], + "kind": "eval", + "score": 4.56, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.172.633" + }, + "instructors": [ + { + "name": "Ethan Vishniac" + } + ], + "kind": "eval", + "score": 3.52, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.130.119" + }, + "instructors": [ + { + "name": "Richard Jasnow" + } + ], + "kind": "eval", + "score": 3.56, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.407" + }, + "instructors": [ + { + "name": "Adam Rodgers" + } + ], + "kind": "eval", + "score": 4.43, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.422" + }, + "instructors": [ + { + "name": "William Rowe" + } + ], + "kind": "eval", + "score": 4.6, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.635" + }, + "instructors": [ + { + "name": "Anil Maybhate" + } + ], + "kind": "eval", + "score": 3.85, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.190.355" + }, + "instructors": [ + { + "name": "Erin Chung" + } + ], + "kind": "eval", + "score": 4.54, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.315" + }, + "instructors": [ + { + "name": "Eric Johnson" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.020.315" + }, + "instructors": [ + { + "name": "Eric Johnson" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.213.374" + }, + "instructors": [ + { + "name": "Jennifer Gosetti" + } + ], + "kind": "eval", + "score": 4.43, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.363.335" + }, + "instructors": [ + { + "name": "Cj Higgins" + } + ], + "kind": "eval", + "score": 2.98, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.242" + }, + "instructors": [ + { + "name": "Aleksander Popel" + } + ], + "kind": "eval", + "score": 3.52, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.760" + }, + "instructors": [ + { + "name": "Misha Kazhdan" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.360.105" + }, + "instructors": [ + { + "name": "Sloane Hanley" + } + ], + "kind": "eval", + "score": 4.03, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.360.105" + }, + "instructors": [ + { + "name": "Ruth Sherman" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.360.105" + }, + "instructors": [ + { + "name": "Steve Malvaso" + } + ], + "kind": "eval", + "score": 3.94, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.360.105" + }, + "instructors": [ + { + "name": "Sloane Hanley" + } + ], + "kind": "eval", + "score": 3.9, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.360.105" + }, + "instructors": [ + { + "name": "Ruth Sherman" + } + ], + "kind": "eval", + "score": 3.94, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.360.105" + }, + "instructors": [ + { + "name": "Paul Davidson" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.360.105" + }, + "instructors": [ + { + "name": "Kaitlin Quigley" + } + ], + "kind": "eval", + "score": 3.74, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.360.105" + }, + "instructors": [ + { + "name": "Jenna Hoffman" + } + ], + "kind": "eval", + "score": 3.73, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.360.105" + }, + "instructors": [ + { + "name": "Michael Gonzales" + } + ], + "kind": "eval", + "score": 3.9, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.530.679" + }, + "instructors": [ + { + "name": "Ryan Hurley" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.510.604" + }, + "instructors": [ + { + "name": "Todd Hufnagel" + } + ], + "kind": "eval", + "score": 3.91, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.752" + }, + "instructors": [ + { + "name": "Kevin Yarema" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.201" + }, + "instructors": [ + { + "name": "Suzanne Roos" + } + ], + "kind": "eval", + "score": 3.87, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.210.201" + }, + "instructors": [ + { + "name": "Jean-ederson Jean-pierre" + } + ], + "kind": "eval", + "score": 3.89, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.210.201" + }, + "instructors": [ + { + "name": "Suzanne Roos" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.418" + }, + "instructors": [ + { + "name": "Dave Shade" + } + ], + "kind": "eval", + "score": 3.98, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.373.116" + }, + "instructors": [ + { + "name": "Shuyi Yang" + } + ], + "kind": "eval", + "score": 4.62, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.373.116" + }, + "instructors": [ + { + "name": "Nan Zhao" + } + ], + "kind": "eval", + "score": 4.62, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.380" + }, + "instructors": [ + { + "name": "Suzanne Roos" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.540.671" + }, + "instructors": [ + { + "name": "Paulette Clancy" + } + ], + "kind": "eval", + "score": 4.03, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.295" + }, + "instructors": [ + { + "name": "Angus Burgin" + } + ], + "kind": "eval", + "score": 4.65, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.627" + }, + "instructors": [ + { + "name": "Alejandro Sisniega crespo" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.627" + }, + "instructors": [ + { + "name": "Ali Uneri" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.363.360" + }, + "instructors": [ + { + "name": "Jo Giardini" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.626" + }, + "instructors": [ + { + "name": "Konstantinos Konstantopoulos" + } + ], + "kind": "eval", + "score": 4.3, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.625" + }, + "instructors": [ + { + "name": "Charles Meneveau" + } + ], + "kind": "eval", + "score": 4.56, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.605" + }, + "instructors": [ + { + "name": "Vicky Nguyen" + } + ], + "kind": "eval", + "score": 4.68, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.200.401" + }, + "instructors": [ + { + "name": "Heather Roberts fox" + } + ], + "kind": "eval", + "score": 3.58, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.150.482" + }, + "instructors": [ + { + "name": "Anne Barnhill" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.180.102" + }, + "instructors": [ + { + "name": "Muhammad Husain" + } + ], + "kind": "eval", + "score": 3.72, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.102" + }, + "instructors": [ + { + "name": "Xudong Zheng" + } + ], + "kind": "eval", + "score": 3.49, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.500.501" + }, + "instructors": [ + { + "name": "" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.001.146" + }, + "instructors": [ + { + "name": "Barbara Landau" + } + ], + "kind": "eval", + "score": 4.07, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.601.682" + }, + "instructors": [ + { + "name": "Mathias Unberath" + } + ], + "kind": "eval", + "score": 3.13, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.001.169" + }, + "instructors": [ + { + "name": "Lena Denis" + } + ], + "kind": "eval", + "score": 3.85, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.001.169" + }, + "instructors": [ + { + "name": "Lori Finkelstein" + } + ], + "kind": "eval", + "score": 3.76, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.220.220" + }, + "instructors": [ + { + "name": "Kyeong-soo Kim" + } + ], + "kind": "eval", + "score": 4.68, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.010.322" + }, + "instructors": [ + { + "name": "Nino Zchomelidse" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.061.159" + }, + "instructors": [ + { + "name": "Suzanne Roos" + } + ], + "kind": "eval", + "score": 3.91, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.061.159" + }, + "instructors": [ + { + "name": "John Mann" + } + ], + "kind": "eval", + "score": 3.89, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.061.159" + }, + "instructors": [ + { + "name": "Lucy Bucknell" + } + ], + "kind": "eval", + "score": 3.95, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.061.159" + }, + "instructors": [ + { + "name": "Linda Delibero" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.171.204" + }, + "instructors": [ + { + "name": "Ibou Bah" + } + ], + "kind": "eval", + "score": 4.1, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.242" + }, + "instructors": [ + { + "name": "Ludmila Poliakova" + } + ], + "kind": "eval", + "score": 3.99, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.313" + }, + "instructors": [ + { + "name": "Lucy Bucknell" + } + ], + "kind": "eval", + "score": 4.02, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.100.190" + }, + "instructors": [ + { + "name": "Leah Wright rigueur" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.100.251" + }, + "instructors": [ + { + "name": "Thomas Keegan" + } + ], + "kind": "eval", + "score": 3.69, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.020.304" + }, + "instructors": [ + { + "name": "Emily Fisher" + } + ], + "kind": "eval", + "score": 3.86, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.020.304" + }, + "instructors": [ + { + "name": "Robert Johnston" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.180.239" + }, + "instructors": [ + { + "name": "Sohani Fatehin" + } + ], + "kind": "eval", + "score": 3.77, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.150.406" + }, + "instructors": [ + { + "name": "Christopher Lebron" + } + ], + "kind": "eval", + "score": 3.66, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.180.223" + }, + "instructors": [ + { + "name": "Hellen Seshie-nasser" + } + ], + "kind": "eval", + "score": 3.7, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.190.423" + }, + "instructors": [ + { + "name": "Daniel Deudney" + } + ], + "kind": "eval", + "score": 4.3, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.560.772" + }, + "instructors": [ + { + "name": "Somnath Ghosh" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.663.668" + }, + "instructors": [ + { + "name": "Eric Rice" + } + ], + "kind": "eval", + "score": 3.96, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.778" + }, + "instructors": [ + { + "name": "Ilya Shpitser" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.190.473" + }, + "instructors": [ + { + "name": "Steven Teles" + } + ], + "kind": "eval", + "score": 4.67, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.200.202" + }, + "instructors": [ + { + "name": "Chelsea Howe" + } + ], + "kind": "eval", + "score": 4.15, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.510.603" + }, + "instructors": [ + { + "name": "Tine Curk" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.050.349" + }, + "instructors": [ + { + "name": "Julia Yarmolinskaya" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.731" + }, + "instructors": [ + { + "name": "Avanti Athreya" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.270.202" + }, + "instructors": [ + { + "name": "Meghan Avolio" + } + ], + "kind": "eval", + "score": 4.01, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.510.615" + }, + "instructors": [ + { + "name": "Patty Mcguiggan" + } + ], + "kind": "eval", + "score": 4.26, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.225.305" + }, + "instructors": [ + { + "name": "Gerrad Taylor" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.520.363" + }, + "instructors": [ + { + "name": "Andreas Andreou" + } + ], + "kind": "eval", + "score": 3.52, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.171" + }, + "instructors": [ + { + "name": "Sammy Khalife" + } + ], + "kind": "eval", + "score": 4.1, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.171" + }, + "instructors": [ + { + "name": "Beryl Castello" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.171" + }, + "instructors": [ + { + "name": "Donniell Fishkind" + } + ], + "kind": "eval", + "score": 4.51, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.230.236" + }, + "instructors": [ + { + "name": "Rhiannon Miller" + } + ], + "kind": "eval", + "score": 4.49, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.060.385" + }, + "instructors": [ + { + "name": "Mitchell Cram" + } + ], + "kind": "eval", + "score": 4.09, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.270.220" + }, + "instructors": [ + { + "name": "Daniel Viete" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.270.220" + }, + "instructors": [ + { + "name": "Emmy Smith" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.280.469" + }, + "instructors": [ + { + "name": "Emily Scott" + } + ], + "kind": "eval", + "score": 4.24, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.540.699" + }, + "instructors": [ + { + "name": "Stavroula Sofou" + } + ], + "kind": "eval", + "score": 4.26, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.500.112" + }, + "instructors": [ + { + "name": "Patricio Simari" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.500.112" + }, + "instructors": [ + { + "name": "Joanne Selinski" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.500.112" + }, + "instructors": [ + { + "name": "Sara More" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.500.112" + }, + "instructors": [ + { + "name": "Greg Anderson" + } + ], + "kind": "eval", + "score": 3.8, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.500.112" + }, + "instructors": [ + { + "name": "Patricio Simari" + } + ], + "kind": "eval", + "score": 4.07, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.500.112" + }, + "instructors": [ + { + "name": "Ivan Sekyonda" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.371.226" + }, + "instructors": [ + { + "name": "Sasha Baskin" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.206" + }, + "instructors": [ + { + "name": "Christopher Falzone" + } + ], + "kind": "eval", + "score": 3.72, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.206" + }, + "instructors": [ + { + "name": "Rebekka Klausen" + } + ], + "kind": "eval", + "score": 3.96, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.206" + }, + "instructors": [ + { + "name": "Eric Hill" + } + ], + "kind": "eval", + "score": 4.09, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.510.622" + }, + "instructors": [ + { + "name": "Anthony shoji Hall" + } + ], + "kind": "eval", + "score": 3.39, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.112" + }, + "instructors": [ + { + "name": "Michelle Tracy" + } + ], + "kind": "eval", + "score": 4.29, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.112" + }, + "instructors": [ + { + "name": "Grecia Chirinos delgado" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.112" + }, + "instructors": [ + { + "name": "Alexis Hernando cubas" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.648" + }, + "instructors": [ + { + "name": "Xiongyi Huang" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.271.107" + }, + "instructors": [ + { + "name": "Jana Kopelent-rehak" + } + ], + "kind": "eval", + "score": 3.65, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.409" + }, + "instructors": [ + { + "name": "Brandon Bukowski" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.362.315" + }, + "instructors": [ + { + "name": "Stuart Schrader" + } + ], + "kind": "eval", + "score": 4.63, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.624" + }, + "instructors": [ + { + "name": "Danielle Evans" + } + ], + "kind": "eval", + "score": 4.7, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.376.244" + }, + "instructors": [ + { + "name": "Wendel Patrick" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.376.244" + }, + "instructors": [ + { + "name": "Wendel Patrick" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.662.692" + }, + "instructors": [ + { + "name": "Pam Sheff" + } + ], + "kind": "eval", + "score": 4.58, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.780" + }, + "instructors": [ + { + "name": "Laurent Younes" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.500.551" + }, + "instructors": [ + { + "name": "" + } + ], + "kind": "eval", + "score": 4.35, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.050.212" + }, + "instructors": [ + { + "name": "Kyle Rawlins" + } + ], + "kind": "eval", + "score": 3.9, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.641" + }, + "instructors": [ + { + "name": "Kevin Yarema" + } + ], + "kind": "eval", + "score": 4.15, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.710" + }, + "instructors": [ + { + "name": "Rachel Karchin" + } + ], + "kind": "eval", + "score": 3.4, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.210.152" + }, + "instructors": [ + { + "name": "Alessandro Zannirato" + } + ], + "kind": "eval", + "score": 3.9, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.152" + }, + "instructors": [ + { + "name": "Leonardo Proietti" + } + ], + "kind": "eval", + "score": 4.14, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.442" + }, + "instructors": [ + { + "name": "Abhishek Jain" + } + ], + "kind": "eval", + "score": 4.5, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.601.633" + }, + "instructors": [ + { + "name": "Gagan Garg" + } + ], + "kind": "eval", + "score": 4.23, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.510.434" + }, + "instructors": [ + { + "name": "Orla Wilson" + } + ], + "kind": "eval", + "score": 5.0, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.661" + }, + "instructors": [ + { + "name": "Jj Rorie" + } + ], + "kind": "eval", + "score": 4.12, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.150" + }, + "instructors": [ + { + "name": "Jin Kang" + } + ], + "kind": "eval", + "score": 4.01, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.620" + }, + "instructors": [ + { + "name": "Pedro Irazoqui" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.270.349" + }, + "instructors": [ + { + "name": "Eric Yee" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.638" + }, + "instructors": [ + { + "name": "Vishal Patel" + } + ], + "kind": "eval", + "score": 4.09, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.764" + }, + "instructors": [ + { + "name": "James Spall" + } + ], + "kind": "eval", + "score": 4.24, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.424" + }, + "instructors": [ + { + "name": "Richard Panek" + } + ], + "kind": "eval", + "score": 4.26, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.611" + }, + "instructors": [ + { + "name": "Kevin Schlaufman" + } + ], + "kind": "eval", + "score": 4.12, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.105" + }, + "instructors": [ + { + "name": "Jamie Young" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.030.623" + }, + "instructors": [ + { + "name": "Stephen Fried" + } + ], + "kind": "eval", + "score": 4.39, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.510.636" + }, + "instructors": [ + { + "name": "Luo Gu" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.404" + }, + "instructors": [ + { + "name": "Gretar Tryggvason" + } + ], + "kind": "eval", + "score": 4.53, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.404" + }, + "instructors": [ + { + "name": "Stephen Belkoff" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Hye ji Choi" + } + ], + "kind": "eval", + "score": 4.34, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Ralph Hubbell" + } + ], + "kind": "eval", + "score": 4.12, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Dylan Carpenter" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Samantha Neugebauer" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Josiah Cox" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Samantha Neugebauer" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Dagan Brown" + } + ], + "kind": "eval", + "score": 4.0, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Brett Kessler" + } + ], + "kind": "eval", + "score": 3.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Landen Raszick" + } + ], + "kind": "eval", + "score": 4.06, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Megan Robinson" + } + ], + "kind": "eval", + "score": 4.12, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Dom Guida" + } + ], + "kind": "eval", + "score": 3.91, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Carlee Jensen" + } + ], + "kind": "eval", + "score": 4.13, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Nicole Tsuno" + } + ], + "kind": "eval", + "score": 4.16, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Olakunle Ologunro" + } + ], + "kind": "eval", + "score": 3.94, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Sam Niven" + } + ], + "kind": "eval", + "score": 3.71, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Jameson Owens" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Gabriel Schicchi" + } + ], + "kind": "eval", + "score": 3.84, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Cora Clark" + } + ], + "kind": "eval", + "score": 4.46, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Gabriella Fee" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.105" + }, + "instructors": [ + { + "name": "Samantha Neugebauer" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.110.302" + }, + "instructors": [ + { + "name": "Yifu Zhou" + } + ], + "kind": "eval", + "score": 3.68, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.110.302" + }, + "instructors": [ + { + "name": "Nicholas Marshburn" + } + ], + "kind": "eval", + "score": 4.13, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.302" + }, + "instructors": [ + { + "name": "Benjamin Dodson" + } + ], + "kind": "eval", + "score": 3.04, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.302" + }, + "instructors": [ + { + "name": "Nicholas Marshburn" + } + ], + "kind": "eval", + "score": 4.0, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.662.611" + }, + "instructors": [ + { + "name": "Annette Leps" + } + ], + "kind": "eval", + "score": 4.14, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.494" + }, + "instructors": [ + { + "name": "Alejandro Sisniega crespo" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.663.618" + }, + "instructors": [ + { + "name": "Julie Reiser" + } + ], + "kind": "eval", + "score": 4.65, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.270.325" + }, + "instructors": [ + { + "name": "Anand Gnanadesikan" + } + ], + "kind": "eval", + "score": 3.99, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.288" + }, + "instructors": [ + { + "name": "Flavia De azeredo cerqueira" + } + ], + "kind": "eval", + "score": 4.23, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.190.111" + }, + "instructors": [ + { + "name": "Robbie Shilliam" + } + ], + "kind": "eval", + "score": 3.95, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.140.329" + }, + "instructors": [ + { + "name": "Emily Clark" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.145.106" + }, + "instructors": [ + { + "name": "Marina Bedran" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.145.106" + }, + "instructors": [ + { + "name": "Nicole Labruto" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.145.106" + }, + "instructors": [ + { + "name": "Lijing Jiang" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.530.646" + }, + "instructors": [ + { + "name": "Jin Kim" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.616" + }, + "instructors": [ + { + "name": "David Goldberg" + } + ], + "kind": "eval", + "score": 4.03, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.010.407" + }, + "instructors": [ + { + "name": "Lisa Deleonardis" + } + ], + "kind": "eval", + "score": 4.11, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.212" + }, + "instructors": [ + { + "name": "Maru Sarazola duarte" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.191.358" + }, + "instructors": [ + { + "name": "Juliana Butron" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.540.605" + }, + "instructors": [ + { + "name": "Rebecca Schulman" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.485" + }, + "instructors": [ + { + "name": "Natalia Trayanova" + } + ], + "kind": "eval", + "score": 3.8, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.200.333" + }, + "instructors": [ + { + "name": "Steve Drigotas" + } + ], + "kind": "eval", + "score": 3.95, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.797" + }, + "instructors": [ + { + "name": "Nicolas Charon" + } + ], + "kind": "eval", + "score": 4.43, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.560.657" + }, + "instructors": [ + { + "name": "Gonzalo Pita" + } + ], + "kind": "eval", + "score": 4.33, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.570.367" + }, + "instructors": [ + { + "name": "Shere Abbott" + } + ], + "kind": "eval", + "score": 3.92, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.375.116" + }, + "instructors": [ + { + "name": "Sana Jafire" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.130.420" + }, + "instructors": [ + { + "name": "Marian Feldman" + } + ], + "kind": "eval", + "score": 4.12, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.570.201" + }, + "instructors": [ + { + "name": "Sarah Preheim" + } + ], + "kind": "eval", + "score": 4.01, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.402" + }, + "instructors": [ + { + "name": "Heather Roberts fox" + } + ], + "kind": "eval", + "score": 3.72, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.500.133" + }, + "instructors": [ + { + "name": "Soumyajit Ray" + } + ], + "kind": "eval", + "score": 3.8, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.500.133" + }, + "instructors": [ + { + "name": "Soumyajit Ray" + } + ], + "kind": "eval", + "score": 3.72, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "EN.500.133" + }, + "instructors": [ + { + "name": "Soumyajit Ray" + } + ], + "kind": "eval", + "score": 3.69, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.500.133" + }, + "instructors": [ + { + "name": "Soumyajit Ray" + } + ], + "kind": "eval", + "score": 3.75, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.225.318" + }, + "instructors": [ + { + "name": "Margaret Denithorne" + } + ], + "kind": "eval", + "score": 4.3, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.614" + }, + "instructors": [ + { + "name": "Youseph Yazdi" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.614" + }, + "instructors": [ + { + "name": "Michelle Zwernemann" + } + ], + "kind": "eval", + "score": 4.5, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.614" + }, + "instructors": [ + { + "name": "Soumyadipta Acharya" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.614" + }, + "instructors": [ + { + "name": "April Zambelli-weiner" + } + ], + "kind": "eval", + "score": 4.51, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.720" + }, + "instructors": [ + { + "name": "Scott Wilson" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.350" + }, + "instructors": [ + { + "name": "Steven Salzberg" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.433" + }, + "instructors": [ + { + "name": "Gagan Garg" + } + ], + "kind": "eval", + "score": 3.96, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.020.320" + }, + "instructors": [ + { + "name": "Andrew Hoyt" + } + ], + "kind": "eval", + "score": 3.97, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.305" + }, + "instructors": [ + { + "name": "D Fairbrother" + } + ], + "kind": "eval", + "score": 3.99, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.060.374" + }, + "instructors": [ + { + "name": "Daniel Mcclurkin" + } + ], + "kind": "eval", + "score": 4.43, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.150.422" + }, + "instructors": [ + { + "name": "Robert Rynasiewicz" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.145.222" + }, + "instructors": [ + { + "name": "Soha Bayoumi" + } + ], + "kind": "eval", + "score": 4.34, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.140.387" + }, + "instructors": [ + { + "name": "Ahmed Ragab" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.376.299" + }, + "instructors": [ + { + "name": "Shirley Yoo" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.070.273" + }, + "instructors": [ + { + "name": "Scott Maclochlainn" + } + ], + "kind": "eval", + "score": 4.49, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.171.708" + }, + "instructors": [ + { + "name": "Emanuele Berti" + } + ], + "kind": "eval", + "score": 4.0, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.329" + }, + "instructors": [ + { + "name": "Bill Smedick" + } + ], + "kind": "eval", + "score": 4.26, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.660.329" + }, + "instructors": [ + { + "name": "Bill Smedick" + } + ], + "kind": "eval", + "score": 4.13, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.217.425" + }, + "instructors": [ + { + "name": "Marina Bedran" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.661.128" + }, + "instructors": [ + { + "name": "Mc Coghlan" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.663.660" + }, + "instructors": [ + { + "name": "Eric Rice" + } + ], + "kind": "eval", + "score": 4.06, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.376" + }, + "instructors": [ + { + "name": "Susanne Sterbing-d'angelo" + } + ], + "kind": "eval", + "score": 3.94, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.601.280" + }, + "instructors": [ + { + "name": "Ali Madooei" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.150.245" + }, + "instructors": [ + { + "name": "Ian Phillips" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.210.352" + }, + "instructors": [ + { + "name": "Giulia m. Cipriani" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.251" + }, + "instructors": [ + { + "name": "Alessandro Zannirato" + } + ], + "kind": "eval", + "score": 4.39, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.210.251" + }, + "instructors": [ + { + "name": "Leonardo Proietti" + } + ], + "kind": "eval", + "score": 4.39, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.061.404" + }, + "instructors": [ + { + "name": "Adam Rodgers" + } + ], + "kind": "eval", + "score": 4.49, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.061.270" + }, + "instructors": [ + { + "name": "Kyle Stine" + } + ], + "kind": "eval", + "score": 3.83, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.375.115" + }, + "instructors": [ + { + "name": "Sana Jafire" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.060.384" + }, + "instructors": [ + { + "name": "Chris Nealon" + } + ], + "kind": "eval", + "score": 4.54, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.171.749" + }, + "instructors": [ + { + "name": "Brice Menard" + } + ], + "kind": "eval", + "score": 3.86, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.040.204" + }, + "instructors": [ + { + "name": "Juan Dopico" + } + ], + "kind": "eval", + "score": 4.07, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.130.247" + }, + "instructors": [ + { + "name": "Karlene Shippelhoute" + } + ], + "kind": "eval", + "score": 4.6, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.660.300" + }, + "instructors": [ + { + "name": "Marco Priolo" + } + ], + "kind": "eval", + "score": 4.13, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.660.300" + }, + "instructors": [ + { + "name": "Michael Kitt" + } + ], + "kind": "eval", + "score": 3.45, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.202" + }, + "instructors": [ + { + "name": "Brandon Bangsboll" + } + ], + "kind": "eval", + "score": 3.67, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.202" + }, + "instructors": [ + { + "name": "Zachery Yeager" + } + ], + "kind": "eval", + "score": 3.67, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.202" + }, + "instructors": [ + { + "name": "Michael Lieske" + } + ], + "kind": "eval", + "score": 3.67, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.202" + }, + "instructors": [ + { + "name": "Tim Leung" + } + ], + "kind": "eval", + "score": 3.67, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.771" + }, + "instructors": [ + { + "name": "Nitish Thakor" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.560.661" + }, + "instructors": [ + { + "name": "Jochen Mueller" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.001.190" + }, + "instructors": [ + { + "name": "Lan Li" + } + ], + "kind": "eval", + "score": 4.47, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.374.320" + }, + "instructors": [ + { + "name": "Brandon Bangsboll" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.320" + }, + "instructors": [ + { + "name": "Shaun Stoner" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.320" + }, + "instructors": [ + { + "name": "Zachery Yeager" + } + ], + "kind": "eval", + "score": 4.34, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.248" + }, + "instructors": [ + { + "name": "Floyd Norris" + } + ], + "kind": "eval", + "score": 3.62, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.180.248" + }, + "instructors": [ + { + "name": "Floyd Norris" + } + ], + "kind": "eval", + "score": 2.92, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.378.216" + }, + "instructors": [ + { + "name": "Makiko Nakao" + } + ], + "kind": "eval", + "score": 4.67, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.396" + }, + "instructors": [ + { + "name": "Laura Mason" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.303" + }, + "instructors": [ + { + "name": "Stavroula Sofou" + } + ], + "kind": "eval", + "score": 3.95, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.792" + }, + "instructors": [ + { + "name": "Donniell Fishkind" + } + ], + "kind": "eval", + "score": 4.52, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.200.403" + }, + "instructors": [ + { + "name": "Heather Roberts fox" + } + ], + "kind": "eval", + "score": 4.13, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.140.149" + }, + "instructors": [ + { + "name": "Lan Li" + } + ], + "kind": "eval", + "score": 4.35, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.140.340" + }, + "instructors": [ + { + "name": "Ryan Hearty" + } + ], + "kind": "eval", + "score": 4.26, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.161" + }, + "instructors": [ + { + "name": "Deborah Mifflin" + } + ], + "kind": "eval", + "score": 4.56, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.210.161" + }, + "instructors": [ + { + "name": "Lisa Schmitz" + } + ], + "kind": "eval", + "score": 4.6, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.210.161" + }, + "instructors": [ + { + "name": "K\u00e4the Erichsen" + } + ], + "kind": "eval", + "score": 4.69, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.110.417" + }, + "instructors": [ + { + "name": "Yannick Sire" + } + ], + "kind": "eval", + "score": 3.69, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.365" + }, + "instructors": [ + { + "name": "Deborah Mifflin" + } + ], + "kind": "eval", + "score": 4.47, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.365" + }, + "instructors": [ + { + "name": "Lisa Schmitz" + } + ], + "kind": "eval", + "score": 4.43, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.172" + }, + "instructors": [ + { + "name": "Drg Gnang" + } + ], + "kind": "eval", + "score": 4.41, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.660.203" + }, + "instructors": [ + { + "name": "Sean Furlong" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.203" + }, + "instructors": [ + { + "name": "Annette Leps" + } + ], + "kind": "eval", + "score": 4.11, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.203" + }, + "instructors": [ + { + "name": "Jane Schlegel" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.203" + }, + "instructors": [ + { + "name": "Lawrence Aronhime" + } + ], + "kind": "eval", + "score": 3.92, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.553.741" + }, + "instructors": [ + { + "name": "James Schmidt" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.670" + }, + "instructors": [ + { + "name": "Benjamin Van durme" + } + ], + "kind": "eval", + "score": 4.5, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.030.245" + }, + "instructors": [ + { + "name": "Sunita Thyagarajan" + } + ], + "kind": "eval", + "score": 4.14, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.362.216" + }, + "instructors": [ + { + "name": "Lester Spence" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.343" + }, + "instructors": [ + { + "name": "Louis Whitcomb" + } + ], + "kind": "eval", + "score": 3.86, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.470" + }, + "instructors": [ + { + "name": "Brett Shapiro" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.470" + }, + "instructors": [ + { + "name": "Pradipto Ghosh" + } + ], + "kind": "eval", + "score": 4.13, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.437" + }, + "instructors": [ + { + "name": "Bruce Snider" + } + ], + "kind": "eval", + "score": 4.72, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.238" + }, + "instructors": [ + { + "name": "Lucy Bucknell" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.377" + }, + "instructors": [ + { + "name": "Susanne Sterbing-d'angelo" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.668" + }, + "instructors": [ + { + "name": "Chen Li" + } + ], + "kind": "eval", + "score": 3.75, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.070.334" + }, + "instructors": [ + { + "name": "Anand Pandian" + } + ], + "kind": "eval", + "score": 3.88, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.240" + }, + "instructors": [ + { + "name": "Heather Roberts fox" + } + ], + "kind": "eval", + "score": 3.89, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.110.275" + }, + "instructors": [ + { + "name": "Nicholas Marshburn" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.130.216" + }, + "instructors": [ + { + "name": "David Katz" + } + ], + "kind": "eval", + "score": 3.6, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.605" + }, + "instructors": [ + { + "name": "Oleg Tchernyshyov" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.190.101" + }, + "instructors": [ + { + "name": "Robert Lieberman" + } + ], + "kind": "eval", + "score": 3.78, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.656" + }, + "instructors": [ + { + "name": "Nitish Thakor" + } + ], + "kind": "eval", + "score": 3.77, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.560.633" + }, + "instructors": [ + { + "name": "Anthoy Dondrea" + } + ], + "kind": "eval", + "score": 4.3, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.560.633" + }, + "instructors": [ + { + "name": "Joe Rogers" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.110.108" + }, + "instructors": [ + { + "name": "Amanda Clayton" + } + ], + "kind": "eval", + "score": 4.45, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.190.228" + }, + "instructors": [ + { + "name": "Benjamin Ginsberg" + } + ], + "kind": "eval", + "score": 3.53, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.520.621" + }, + "instructors": [ + { + "name": "Pablo Iglesias" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.510.106" + }, + "instructors": [ + { + "name": "Jonah Erlebacher" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.742" + }, + "instructors": [ + { + "name": "Gene Fridman" + } + ], + "kind": "eval", + "score": 3.99, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.347" + }, + "instructors": [ + { + "name": "Linda Delibero" + } + ], + "kind": "eval", + "score": 4.3, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.010.413" + }, + "instructors": [ + { + "name": "Jennifer Stager" + } + ], + "kind": "eval", + "score": 4.35, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.137" + }, + "instructors": [ + { + "name": "Trac duy Tran" + } + ], + "kind": "eval", + "score": 3.86, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.246" + }, + "instructors": [ + { + "name": "Sri Sarma" + } + ], + "kind": "eval", + "score": 4.29, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.743" + }, + "instructors": [ + { + "name": "Avi Rubin" + } + ], + "kind": "eval", + "score": 4.54, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.271.499" + }, + "instructors": [ + { + "name": "Ashley Schantz" + } + ], + "kind": "eval", + "score": 3.82, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.271.499" + }, + "instructors": [ + { + "name": "Jerry Burgess" + } + ], + "kind": "eval", + "score": 3.84, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.230.370" + }, + "instructors": [ + { + "name": "Meredith Greif" + } + ], + "kind": "eval", + "score": 4.33, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.230.395" + }, + "instructors": [ + { + "name": "Michael Levien" + } + ], + "kind": "eval", + "score": 4.61, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.410" + }, + "instructors": [ + { + "name": "Emily Fisher" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.410" + }, + "instructors": [ + { + "name": "Katie Tifft oshinnaiye" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.410" + }, + "instructors": [ + { + "name": "Christov Roberson" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.105" + }, + "instructors": [ + { + "name": "Alexa Gaines" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.105" + }, + "instructors": [ + { + "name": "Alexa Gaines" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.540.402" + }, + "instructors": [ + { + "name": "Michael Betenbaugh" + } + ], + "kind": "eval", + "score": 4.13, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.520.637" + }, + "instructors": [ + { + "name": "Enrique Mallada garcia" + } + ], + "kind": "eval", + "score": 4.16, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.500.132" + }, + "instructors": [ + { + "name": "Milad Alemohammad" + } + ], + "kind": "eval", + "score": 4.29, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.500.132" + }, + "instructors": [ + { + "name": "Ivan Sekyonda" + } + ], + "kind": "eval", + "score": 3.78, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "EN.500.132" + }, + "instructors": [ + { + "name": "Ali Madooei" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.500.132" + }, + "instructors": [ + { + "name": "Joanne Selinski" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.580.153" + }, + "instructors": [ + { + "name": "Kathy Wilson" + } + ], + "kind": "eval", + "score": 3.66, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.380" + }, + "instructors": [ + { + "name": "Marina Bedny" + } + ], + "kind": "eval", + "score": 4.02, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.220.662" + }, + "instructors": [ + { + "name": "Andrew Motion" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.230.242" + }, + "instructors": [ + { + "name": "Zophia Edwards" + } + ], + "kind": "eval", + "score": 4.3, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.030.306" + }, + "instructors": [ + { + "name": "Thomas Kempa" + } + ], + "kind": "eval", + "score": 3.82, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.413" + }, + "instructors": [ + { + "name": "Sergey Kushnarev" + } + ], + "kind": "eval", + "score": 3.83, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.411" + }, + "instructors": [ + { + "name": "Michelle Zwernemann" + } + ], + "kind": "eval", + "score": 4.33, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.300.355" + }, + "instructors": [ + { + "name": "Leonardo Lisi" + } + ], + "kind": "eval", + "score": 4.45, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.614" + }, + "instructors": [ + { + "name": "Steven Rokita" + } + ], + "kind": "eval", + "score": 3.86, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.428" + }, + "instructors": [ + { + "name": "David Hovemeyer" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.050.202" + }, + "instructors": [ + { + "name": "Kyle Rawlins" + } + ], + "kind": "eval", + "score": 4.06, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.667" + }, + "instructors": [ + { + "name": "Philipp Koehn" + } + ], + "kind": "eval", + "score": 3.65, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.010.245" + }, + "instructors": [ + { + "name": "Mitchell Merback" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.371.217" + }, + "instructors": [ + { + "name": "John Steck jr." + } + ], + "kind": "eval", + "score": 4.34, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.010.365" + }, + "instructors": [ + { + "name": "Lisa Deleonardis" + } + ], + "kind": "eval", + "score": 4.33, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.010.373" + }, + "instructors": [ + { + "name": "Yinxing Liu" + } + ], + "kind": "eval", + "score": 4.11, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.212.436" + }, + "instructors": [ + { + "name": "Elena Russo" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.010.467" + }, + "instructors": [ + { + "name": "Stephen Campbell" + } + ], + "kind": "eval", + "score": 4.3, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.246" + }, + "instructors": [ + { + "name": "Jonathan Elliott" + } + ], + "kind": "eval", + "score": 3.6, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.322" + }, + "instructors": [ + { + "name": "Kate Isaac" + } + ], + "kind": "eval", + "score": 4.23, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.040.137" + }, + "instructors": [ + { + "name": "Emily Anderson" + } + ], + "kind": "eval", + "score": 4.26, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.060.336" + }, + "instructors": [ + { + "name": "Douglas Mao" + } + ], + "kind": "eval", + "score": 4.7, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.337" + }, + "instructors": [ + { + "name": "Takashi Tsukamoto" + } + ], + "kind": "eval", + "score": 3.65, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.389" + }, + "instructors": [ + { + "name": "Laura Mason" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.118" + }, + "instructors": [ + { + "name": "Rao Noor" + } + ], + "kind": "eval", + "score": 3.85, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.210" + }, + "instructors": [ + { + "name": "Gregory Smaldone" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.218" + }, + "instructors": [ + { + "name": "Malaurie Pilatte" + } + ], + "kind": "eval", + "score": 4.55, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.265" + }, + "instructors": [ + { + "name": "Vincenza Mazzeo" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.570.691" + }, + "instructors": [ + { + "name": "Hedy Alavi" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.228" + }, + "instructors": [ + { + "name": "Taylor Stephens" + } + ], + "kind": "eval", + "score": 4.5, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.388" + }, + "instructors": [ + { + "name": "Sasha Turner bryson" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.372" + }, + "instructors": [ + { + "name": "Didier Gondola" + } + ], + "kind": "eval", + "score": 4.5, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.130.154" + }, + "instructors": [ + { + "name": "Marie-lys Arnette" + } + ], + "kind": "eval", + "score": 4.41, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.140.349" + }, + "instructors": [ + { + "name": "Filip Geaman" + } + ], + "kind": "eval", + "score": 4.23, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.145.321" + }, + "instructors": [ + { + "name": "Loren Ludwig" + } + ], + "kind": "eval", + "score": 4.02, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.150.417" + }, + "instructors": [ + { + "name": "Lucy Allais" + } + ], + "kind": "eval", + "score": 4.49, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.306" + }, + "instructors": [ + { + "name": "Bob Ross" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.306" + }, + "instructors": [ + { + "name": "Haiqing Zhao" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.306" + }, + "instructors": [ + { + "name": "Stewart Hendry" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.150.375" + }, + "instructors": [ + { + "name": "Justin Bledin" + } + ], + "kind": "eval", + "score": 4.03, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.332" + }, + "instructors": [ + { + "name": "Stelios Fourakis" + } + ], + "kind": "eval", + "score": 3.41, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.392" + }, + "instructors": [ + { + "name": "Emel Filiz ozbay" + } + ], + "kind": "eval", + "score": 4.14, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.190.310" + }, + "instructors": [ + { + "name": "Jacob Kripp" + } + ], + "kind": "eval", + "score": 4.58, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.150.220" + }, + "instructors": [ + { + "name": "David Velleman" + } + ], + "kind": "eval", + "score": 3.74, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.190.432" + }, + "instructors": [ + { + "name": "Lester Spence" + } + ], + "kind": "eval", + "score": 4.45, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.191.318" + }, + "instructors": [ + { + "name": "David Johnson" + } + ], + "kind": "eval", + "score": 4.61, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.191.343" + }, + "instructors": [ + { + "name": "Sheharyar Imran" + } + ], + "kind": "eval", + "score": 4.56, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.314" + }, + "instructors": [ + { + "name": "Katie Tifft oshinnaiye" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.360.339" + }, + "instructors": [ + { + "name": "Jocelyne Diruggiero" + } + ], + "kind": "eval", + "score": 4.16, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.192.316" + }, + "instructors": [ + { + "name": "Devesh Kapur" + } + ], + "kind": "eval", + "score": 4.43, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.196.310" + }, + "instructors": [ + { + "name": "Peter Pomeranzev" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.196.310" + }, + "instructors": [ + { + "name": "Anne Applebaum" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.159" + }, + "instructors": [ + { + "name": "Howard Egeth" + } + ], + "kind": "eval", + "score": 4.02, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.325" + }, + "instructors": [ + { + "name": "Dylan Selterman" + } + ], + "kind": "eval", + "score": 3.95, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.626" + }, + "instructors": [ + { + "name": "Xiongyi Huang" + } + ], + "kind": "eval", + "score": 4.0, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.487" + }, + "instructors": [ + { + "name": "Eileen Haase" + } + ], + "kind": "eval", + "score": 3.74, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.213.332" + }, + "instructors": [ + { + "name": "Jennifer Gosetti" + } + ], + "kind": "eval", + "score": 4.58, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.280.390" + }, + "instructors": [ + { + "name": "Tyler Derreth" + } + ], + "kind": "eval", + "score": 4.47, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.215.430" + }, + "instructors": [ + { + "name": "William Egginton" + } + ], + "kind": "eval", + "score": 4.46, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.215.452" + }, + "instructors": [ + { + "name": "Eduardo Gonzalez" + } + ], + "kind": "eval", + "score": 3.78, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.215.452" + }, + "instructors": [ + { + "name": "Ryan Hill" + } + ], + "kind": "eval", + "score": 3.71, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.301" + }, + "instructors": [ + { + "name": "Shannon Robinson" + } + ], + "kind": "eval", + "score": 4.6, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.660" + }, + "instructors": [ + { + "name": "David Yezzi" + } + ], + "kind": "eval", + "score": 2.8, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.300" + }, + "instructors": [ + { + "name": "Andrew Motion" + } + ], + "kind": "eval", + "score": 4.49, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.650.658" + }, + "instructors": [ + { + "name": "Xiangyang Li" + } + ], + "kind": "eval", + "score": 4.14, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.225.220" + }, + "instructors": [ + { + "name": "Abraham Stoll" + } + ], + "kind": "eval", + "score": 4.02, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.230.275" + }, + "instructors": [ + { + "name": "Joel Andreas" + } + ], + "kind": "eval", + "score": 4.29, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.230.334" + }, + "instructors": [ + { + "name": "Feinian Chen" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.270.431" + }, + "instructors": [ + { + "name": "Daniel Viete" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.211.222" + }, + "instructors": [ + { + "name": "Bernadette Wegenstein" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.280.314" + }, + "instructors": [ + { + "name": "Moira Cahan" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.308" + }, + "instructors": [ + { + "name": "Jason Trageser" + } + ], + "kind": "eval", + "score": 4.29, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.100.115" + }, + "instructors": [ + { + "name": "Casey Lurtz" + } + ], + "kind": "eval", + "score": 4.45, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.180.334" + }, + "instructors": [ + { + "name": "Jonathan Wright" + } + ], + "kind": "eval", + "score": 3.99, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.173.111" + }, + "instructors": [ + { + "name": "Reid Mumford" + } + ], + "kind": "eval", + "score": 3.89, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.173.111" + }, + "instructors": [ + { + "name": "Reid Mumford" + } + ], + "kind": "eval", + "score": 3.97, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.173.111" + }, + "instructors": [ + { + "name": "Reid Mumford" + } + ], + "kind": "eval", + "score": 4.35, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.171.304" + }, + "instructors": [ + { + "name": "Yi Li" + } + ], + "kind": "eval", + "score": 4.46, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.361.100" + }, + "instructors": [ + { + "name": "Angelina Cotler" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.280.340" + }, + "instructors": [ + { + "name": "Conan Dickson" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.280.340" + }, + "instructors": [ + { + "name": "John Colmers" + } + ], + "kind": "eval", + "score": 4.03, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.362.335" + }, + "instructors": [ + { + "name": "Stuart Schrader" + } + ], + "kind": "eval", + "score": 4.29, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.362.335" + }, + "instructors": [ + { + "name": "Heather Furnas" + } + ], + "kind": "eval", + "score": 4.23, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.363.353" + }, + "instructors": [ + { + "name": "Cj Higgins" + } + ], + "kind": "eval", + "score": 3.1, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.363.346" + }, + "instructors": [ + { + "name": "Joseph Plaster" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.367" + }, + "instructors": [ + { + "name": "Francesco Bianchi" + } + ], + "kind": "eval", + "score": 3.95, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.370.116" + }, + "instructors": [ + { + "name": "Matthew Sampson" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.371.184" + }, + "instructors": [ + { + "name": "Edgar Reyes" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.371.236" + }, + "instructors": [ + { + "name": "Sasha Baskin" + } + ], + "kind": "eval", + "score": 4.47, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.663" + }, + "instructors": [ + { + "name": "Jin Kim" + } + ], + "kind": "eval", + "score": 4.52, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.613" + }, + "instructors": [ + { + "name": "Steven Rokita" + } + ], + "kind": "eval", + "score": 3.81, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.220.625" + }, + "instructors": [ + { + "name": "James Arthur" + } + ], + "kind": "eval", + "score": 4.6, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.280.240" + }, + "instructors": [ + { + "name": "Melissa Davey-rothwell" + } + ], + "kind": "eval", + "score": 4.11, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.280.240" + }, + "instructors": [ + { + "name": "Karin Tobin" + } + ], + "kind": "eval", + "score": 4.14, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.280.240" + }, + "instructors": [ + { + "name": "Melissa Davey-rothwell" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.280.240" + }, + "instructors": [ + { + "name": "Karin Tobin" + } + ], + "kind": "eval", + "score": 4.1, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.650.614" + }, + "instructors": [ + { + "name": "Michael h Jacobs" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.280.470" + }, + "instructors": [ + { + "name": "Nick Meyerson" + } + ], + "kind": "eval", + "score": 4.15, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.311" + }, + "instructors": [ + { + "name": "Jason Fischer" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.371.131" + }, + "instructors": [ + { + "name": "Tae Hwang" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.371.131" + }, + "instructors": [ + { + "name": "Tae Hwang" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.162" + }, + "instructors": [ + { + "name": "Deborah Mifflin" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.162" + }, + "instructors": [ + { + "name": "Luke Beller" + } + ], + "kind": "eval", + "score": 4.5, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.162" + }, + "instructors": [ + { + "name": "K\u00e4the Erichsen" + } + ], + "kind": "eval", + "score": 4.56, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.190.331" + }, + "instructors": [ + { + "name": "Sebastian Schmidt" + } + ], + "kind": "eval", + "score": 4.07, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.362" + }, + "instructors": [ + { + "name": "Deborah Mifflin" + } + ], + "kind": "eval", + "score": 4.53, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.501.122" + }, + "instructors": [ + { + "name": "Dave Shade" + } + ], + "kind": "eval", + "score": 3.66, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.210.391" + }, + "instructors": [ + { + "name": "Benjamin Chaffin" + } + ], + "kind": "eval", + "score": 3.58, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.150.475" + }, + "instructors": [ + { + "name": "Simon Brown" + } + ], + "kind": "eval", + "score": 4.34, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.510.662" + }, + "instructors": [ + { + "name": "Ken Livi" + } + ], + "kind": "eval", + "score": 4.47, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.216" + }, + "instructors": [ + { + "name": "Ralph Etienne cummings" + } + ], + "kind": "eval", + "score": 4.6, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.510.652" + }, + "instructors": [ + { + "name": "Mitra Taheri" + } + ], + "kind": "eval", + "score": 3.88, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.697" + }, + "instructors": [ + { + "name": "Ashutosh Dutta" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.638" + }, + "instructors": [ + { + "name": "Kevin Hemker" + } + ], + "kind": "eval", + "score": 4.16, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.638" + }, + "instructors": [ + { + "name": "Syed Jalali" + } + ], + "kind": "eval", + "score": 4.12, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.480" + }, + "instructors": [ + { + "name": "Joseph Greenstein" + } + ], + "kind": "eval", + "score": 4.58, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.480" + }, + "instructors": [ + { + "name": "Casey Overby taylor" + } + ], + "kind": "eval", + "score": 4.58, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.611" + }, + "instructors": [ + { + "name": "Soumya Acharya" + } + ], + "kind": "eval", + "score": 4.59, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.530.666" + }, + "instructors": [ + { + "name": "Axel Krieger" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.658" + }, + "instructors": [ + { + "name": "Brandon Bukowski" + } + ], + "kind": "eval", + "score": 4.46, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.767" + }, + "instructors": [ + { + "name": "Nicolas Loizou" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.794" + }, + "instructors": [ + { + "name": "Gregory Eyink" + } + ], + "kind": "eval", + "score": 4.51, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.795" + }, + "instructors": [ + { + "name": "Zachary Lubberts" + } + ], + "kind": "eval", + "score": 3.92, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.400" + }, + "instructors": [ + { + "name": "Illysa izenberg Izenberg" + } + ], + "kind": "eval", + "score": 3.87, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.660.400" + }, + "instructors": [ + { + "name": "Sarah Smith" + } + ], + "kind": "eval", + "score": 3.53, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.660.400" + }, + "instructors": [ + { + "name": "Richard Teague" + } + ], + "kind": "eval", + "score": 3.76, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.280.161" + }, + "instructors": [ + { + "name": "Katherine Henry" + } + ], + "kind": "eval", + "score": 4.0, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.151" + }, + "instructors": [ + { + "name": "Kathy Wilson" + } + ], + "kind": "eval", + "score": 3.51, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.312" + }, + "instructors": [ + { + "name": "Michelle Zwernemann" + } + ], + "kind": "eval", + "score": 4.46, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.312" + }, + "instructors": [ + { + "name": "Elizabeth Logsdon" + } + ], + "kind": "eval", + "score": 4.41, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.312" + }, + "instructors": [ + { + "name": "Nicholas Durr" + } + ], + "kind": "eval", + "score": 4.35, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.668" + }, + "instructors": [ + { + "name": "Hanzhang Lu" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.668" + }, + "instructors": [ + { + "name": "Vikram Chib" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.604" + }, + "instructors": [ + { + "name": "Rao Kosaraju" + } + ], + "kind": "eval", + "score": 3.18, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.613" + }, + "instructors": [ + { + "name": "Krishan Sabnani" + } + ], + "kind": "eval", + "score": 4.1, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.050.102" + }, + "instructors": [ + { + "name": "Julia Yarmolinskaya" + } + ], + "kind": "eval", + "score": 3.95, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.601.646" + }, + "instructors": [ + { + "name": "Benjamin Langmead" + } + ], + "kind": "eval", + "score": 4.67, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.392" + }, + "instructors": [ + { + "name": "Nusaybah Abu-mulaweh" + } + ], + "kind": "eval", + "score": 4.24, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.392" + }, + "instructors": [ + { + "name": "Alissa Burkholder murphy" + } + ], + "kind": "eval", + "score": 4.3, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.663.613" + }, + "instructors": [ + { + "name": "Kevin Dungey" + } + ], + "kind": "eval", + "score": 4.02, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.632" + }, + "instructors": [ + { + "name": "Muyinatu Bell" + } + ], + "kind": "eval", + "score": 4.64, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.601.661" + }, + "instructors": [ + { + "name": "Kapil Katyal" + } + ], + "kind": "eval", + "score": 3.74, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.661" + }, + "instructors": [ + { + "name": "Craig Jones" + } + ], + "kind": "eval", + "score": 3.81, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.290.306" + }, + "instructors": [ + { + "name": "Amy Balanoff" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.290.490" + }, + "instructors": [ + { + "name": "Kirsten Bohn" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.290.490" + }, + "instructors": [ + { + "name": "Amy Balanoff" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.010.330" + }, + "instructors": [ + { + "name": "Unver Rustem" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.109" + }, + "instructors": [ + { + "name": "Fanjun Meng" + } + ], + "kind": "eval", + "score": 3.83, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.110.109" + }, + "instructors": [ + { + "name": "Joseph Cutrone" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.109" + }, + "instructors": [ + { + "name": "Emily Braley" + } + ], + "kind": "eval", + "score": 3.79, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.362.112" + }, + "instructors": [ + { + "name": "Shani Mott" + } + ], + "kind": "eval", + "score": 4.3, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.362.112" + }, + "instructors": [ + { + "name": "Shani Mott" + } + ], + "kind": "eval", + "score": 4.26, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.420" + }, + "instructors": [ + { + "name": "Heath Holt" + } + ], + "kind": "eval", + "score": 4.16, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.420" + }, + "instructors": [ + { + "name": "Zachery Yeager" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.420" + }, + "instructors": [ + { + "name": "Michael Lieske" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.140" + }, + "instructors": [ + { + "name": "Linda Delibero" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.020.347" + }, + "instructors": [ + { + "name": "Trina Schroer" + } + ], + "kind": "eval", + "score": 3.9, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.060.213" + }, + "instructors": [ + { + "name": "Jesse Rosenthal" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.060.213" + }, + "instructors": [ + { + "name": "Jeanne-marie Jackson" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.060.347" + }, + "instructors": [ + { + "name": "Jared Hickman" + } + ], + "kind": "eval", + "score": 4.56, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.378.315" + }, + "instructors": [ + { + "name": "Makiko Nakao" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.080.333" + }, + "instructors": [ + { + "name": "Stewart Hendry" + } + ], + "kind": "eval", + "score": 4.61, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.304" + }, + "instructors": [ + { + "name": "Arnold Bakker" + } + ], + "kind": "eval", + "score": 4.52, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.303" + }, + "instructors": [ + { + "name": "Kyle Stine" + } + ], + "kind": "eval", + "score": 3.99, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.441" + }, + "instructors": [ + { + "name": "Kevin Yarema" + } + ], + "kind": "eval", + "score": 3.97, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.100.256" + }, + "instructors": [ + { + "name": "Pawel Maciejko" + } + ], + "kind": "eval", + "score": 4.1, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.303" + }, + "instructors": [ + { + "name": "Michael Kwass" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.250.351" + }, + "instructors": [ + { + "name": "Barry Zirkin" + } + ], + "kind": "eval", + "score": 3.79, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.180.333" + }, + "instructors": [ + { + "name": "Antonio Trujillo" + } + ], + "kind": "eval", + "score": 3.83, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.371.126" + }, + "instructors": [ + { + "name": "Sasha Baskin" + } + ], + "kind": "eval", + "score": 4.5, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.378.396" + }, + "instructors": [ + { + "name": "Yuki Johnson" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.540.635" + }, + "instructors": [ + { + "name": "Anastasia Georgiou" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.540.635" + }, + "instructors": [ + { + "name": "Yinong Zhao" + } + ], + "kind": "eval", + "score": 3.74, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.211.224" + }, + "instructors": [ + { + "name": "Leonardo Proietti" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.214.225" + }, + "instructors": [ + { + "name": "Martina Franzini" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.214.225" + }, + "instructors": [ + { + "name": "Arielle Saiber" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.214.225" + }, + "instructors": [ + { + "name": "Samuel Zawacki" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.216.320" + }, + "instructors": [ + { + "name": "Neta Stahl" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.225.322" + }, + "instructors": [ + { + "name": "Margaret Denithorne" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.668" + }, + "instructors": [ + { + "name": "Lysley Tenorio" + } + ], + "kind": "eval", + "score": 4.3, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.270.312" + }, + "instructors": [ + { + "name": "Siobhan Cooke" + } + ], + "kind": "eval", + "score": 3.98, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.373.112" + }, + "instructors": [ + { + "name": "Nan Zhao" + } + ], + "kind": "eval", + "score": 4.23, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.376.345" + }, + "instructors": [ + { + "name": "Derrick Wang" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.500.113" + }, + "instructors": [ + { + "name": "Dimitrios Giovanis" + } + ], + "kind": "eval", + "score": 3.94, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.500.113" + }, + "instructors": [ + { + "name": "John Edison" + } + ], + "kind": "eval", + "score": 3.88, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.500.113" + }, + "instructors": [ + { + "name": "Leibny Garcia perera" + } + ], + "kind": "eval", + "score": 3.75, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.500.113" + }, + "instructors": [ + { + "name": "Sathappan Ramesh" + } + ], + "kind": "eval", + "score": 3.65, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.500.113" + }, + "instructors": [ + { + "name": "Scot Miller" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.500.113" + }, + "instructors": [ + { + "name": "John Edison" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.500.113" + }, + "instructors": [ + { + "name": "Corey Oses" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.500.113" + }, + "instructors": [ + { + "name": "Siamak Ardekani" + } + ], + "kind": "eval", + "score": 3.54, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.500.113" + }, + "instructors": [ + { + "name": "Kwame Kutten" + } + ], + "kind": "eval", + "score": 3.97, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.500.113" + }, + "instructors": [ + { + "name": "Kwame Kutten" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.004.302" + }, + "instructors": [ + { + "name": "Rebecca Wilbanks" + } + ], + "kind": "eval", + "score": 4.52, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.374.102" + }, + "instructors": [ + { + "name": "Zachery Yeager" + } + ], + "kind": "eval", + "score": 4.67, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.371.381" + }, + "instructors": [ + { + "name": "Margaret Murphy" + } + ], + "kind": "eval", + "score": 4.61, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.664" + }, + "instructors": [ + { + "name": "Musad Haque" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.683" + }, + "instructors": [ + { + "name": "Jin Kang" + } + ], + "kind": "eval", + "score": 4.52, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.425" + }, + "instructors": [ + { + "name": "Young Moon" + } + ], + "kind": "eval", + "score": 3.58, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.621" + }, + "instructors": [ + { + "name": "Marc Donohue" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.453" + }, + "instructors": [ + { + "name": "Brooke Petty" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.360" + }, + "instructors": [ + { + "name": "Dani Smith" + } + ], + "kind": "eval", + "score": 4.23, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.080.360" + }, + "instructors": [ + { + "name": "Jay Baraban" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.660.406" + }, + "instructors": [ + { + "name": "Illysa izenberg Izenberg" + } + ], + "kind": "eval", + "score": 3.78, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.660.406" + }, + "instructors": [ + { + "name": "Sarah Smith" + } + ], + "kind": "eval", + "score": 3.78, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.660.406" + }, + "instructors": [ + { + "name": "Richard Teague" + } + ], + "kind": "eval", + "score": 3.52, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.020.329" + }, + "instructors": [ + { + "name": "Emily Fisher" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.329" + }, + "instructors": [ + { + "name": "Jocelyne Diruggiero" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.449" + }, + "instructors": [ + { + "name": "Sara Thoi" + } + ], + "kind": "eval", + "score": 3.84, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.020.151" + }, + "instructors": [ + { + "name": "Rebecca Pearlman" + } + ], + "kind": "eval", + "score": 3.95, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.020.151" + }, + "instructors": [ + { + "name": "Richard Shingles" + } + ], + "kind": "eval", + "score": 3.92, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.020.151" + }, + "instructors": [ + { + "name": "Christov Roberson" + } + ], + "kind": "eval", + "score": 4.02, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.020.151" + }, + "instructors": [ + { + "name": "Richard Shingles" + } + ], + "kind": "eval", + "score": 3.61, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.030.301" + }, + "instructors": [ + { + "name": "Stephen Fried" + } + ], + "kind": "eval", + "score": 4.09, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.050.353" + }, + "instructors": [ + { + "name": "Monica Lopez-gonzalez" + } + ], + "kind": "eval", + "score": 3.99, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.040.126" + }, + "instructors": [ + { + "name": "Dimitrios Yatromanolakis" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.130.354" + }, + "instructors": [ + { + "name": "Michael Harrower" + } + ], + "kind": "eval", + "score": 3.97, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.238" + }, + "instructors": [ + { + "name": "Floyd Norris" + } + ], + "kind": "eval", + "score": 3.82, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.219" + }, + "instructors": [ + { + "name": "Karen Yasinsky" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.233" + }, + "instructors": [ + { + "name": "Jimmy Roche" + } + ], + "kind": "eval", + "score": 4.35, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.336" + }, + "instructors": [ + { + "name": "Mohamed Farah" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.250.253" + }, + "instructors": [ + { + "name": "Jaime Sorenson" + } + ], + "kind": "eval", + "score": 3.94, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.250.253" + }, + "instructors": [ + { + "name": "Jaime Sorenson" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.250.253" + }, + "instructors": [ + { + "name": "Aaron Robinson" + } + ], + "kind": "eval", + "score": 4.63, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.280.465" + }, + "instructors": [ + { + "name": "Erin Cooney" + } + ], + "kind": "eval", + "score": 4.16, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.300.305" + }, + "instructors": [ + { + "name": "Chris Taylor" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.290.330" + }, + "instructors": [ + { + "name": "Chris Kraft" + } + ], + "kind": "eval", + "score": 3.85, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.348" + }, + "instructors": [ + { + "name": "William Rowe" + } + ], + "kind": "eval", + "score": 4.1, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.413" + }, + "instructors": [ + { + "name": "John Marshall" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.110.201" + }, + "instructors": [ + { + "name": "Alexander Shumakovitch" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.110.201" + }, + "instructors": [ + { + "name": "Jonathan Weinberger" + } + ], + "kind": "eval", + "score": 3.17, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.201" + }, + "instructors": [ + { + "name": "Nicholas Marshburn" + } + ], + "kind": "eval", + "score": 3.78, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.201" + }, + "instructors": [ + { + "name": "Joseph Cutrone" + } + ], + "kind": "eval", + "score": 4.64, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.110.201" + }, + "instructors": [ + { + "name": "Nicholas Marshburn" + } + ], + "kind": "eval", + "score": 4.16, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.171.201" + }, + "instructors": [ + { + "name": "Julian Krolik" + } + ], + "kind": "eval", + "score": 3.98, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.530.414" + }, + "instructors": [ + { + "name": "Dan Stoianovici" + } + ], + "kind": "eval", + "score": 4.11, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.171.627" + }, + "instructors": [ + { + "name": "Colin Norman" + } + ], + "kind": "eval", + "score": 3.74, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.171.701" + }, + "instructors": [ + { + "name": "Marc Kamionkowski" + } + ], + "kind": "eval", + "score": 4.11, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.171.703" + }, + "instructors": [ + { + "name": "Peter Armitage" + } + ], + "kind": "eval", + "score": 3.21, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.180.355" + }, + "instructors": [ + { + "name": "Muhammad Husain" + } + ], + "kind": "eval", + "score": 3.69, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.266" + }, + "instructors": [ + { + "name": "Josh Feinman" + } + ], + "kind": "eval", + "score": 3.84, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.080.305" + }, + "instructors": [ + { + "name": "Bob Ross" + } + ], + "kind": "eval", + "score": 4.11, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.080.305" + }, + "instructors": [ + { + "name": "Haiqing Zhao" + } + ], + "kind": "eval", + "score": 4.09, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.080.305" + }, + "instructors": [ + { + "name": "Christopher Fetsch" + } + ], + "kind": "eval", + "score": 4.15, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.221" + }, + "instructors": [ + { + "name": "Kevin Yarema" + } + ], + "kind": "eval", + "score": 4.0, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.221" + }, + "instructors": [ + { + "name": "Eileen Haase" + } + ], + "kind": "eval", + "score": 3.9, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.221" + }, + "instructors": [ + { + "name": "Eun hyun Ahn" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.200.132" + }, + "instructors": [ + { + "name": "Lisa Feigenson" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.200.322" + }, + "instructors": [ + { + "name": "Tyler Rickards" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.001.115" + }, + "instructors": [ + { + "name": "Howard Egeth" + } + ], + "kind": "eval", + "score": 3.74, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.601.231" + }, + "instructors": [ + { + "name": "Sara More" + } + ], + "kind": "eval", + "score": 4.03, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.001.141" + }, + "instructors": [ + { + "name": "Richard Brown" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.271.496" + }, + "instructors": [ + { + "name": "Jerry Burgess" + } + ], + "kind": "eval", + "score": 4.16, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.061.267" + }, + "instructors": [ + { + "name": "Kyle Stine" + } + ], + "kind": "eval", + "score": 3.74, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.520.241" + }, + "instructors": [ + { + "name": "Enrique Mallada garcia" + } + ], + "kind": "eval", + "score": 3.67, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.421" + }, + "instructors": [ + { + "name": "Jeremy Brown" + } + ], + "kind": "eval", + "score": 4.12, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.391" + }, + "instructors": [ + { + "name": "David Yezzi" + } + ], + "kind": "eval", + "score": 4.26, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.225.215" + }, + "instructors": [ + { + "name": "Margaret Denithorne" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.622" + }, + "instructors": [ + { + "name": "Honggang Cui" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.622" + }, + "instructors": [ + { + "name": "Kai Qi" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.692" + }, + "instructors": [ + { + "name": "Rayanne Luke" + } + ], + "kind": "eval", + "score": 4.13, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.391" + }, + "instructors": [ + { + "name": "Meredith Ward" + } + ], + "kind": "eval", + "score": 4.69, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.650.640" + }, + "instructors": [ + { + "name": "Matthew Welling" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.280.225" + }, + "instructors": [ + { + "name": "Stan Becker" + } + ], + "kind": "eval", + "score": 3.96, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.280.345" + }, + "instructors": [ + { + "name": "Margaret Taub" + } + ], + "kind": "eval", + "score": 4.06, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.280.345" + }, + "instructors": [ + { + "name": "Leah Jager" + } + ], + "kind": "eval", + "score": 4.06, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.280.355" + }, + "instructors": [ + { + "name": "Meghan Moran" + } + ], + "kind": "eval", + "score": 3.97, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.280.355" + }, + "instructors": [ + { + "name": "Danetta Hendricks sloan" + } + ], + "kind": "eval", + "score": 3.74, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.205" + }, + "instructors": [ + { + "name": "J d Tovar" + } + ], + "kind": "eval", + "score": 3.63, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.030.205" + }, + "instructors": [ + { + "name": "Lawrence Principe" + } + ], + "kind": "eval", + "score": 3.9, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.030.205" + }, + "instructors": [ + { + "name": "Christopher Falzone" + } + ], + "kind": "eval", + "score": 3.8, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.030.205" + }, + "instructors": [ + { + "name": "Eric Hill" + } + ], + "kind": "eval", + "score": 4.02, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.280.495" + }, + "instructors": [ + { + "name": "Peter Winch" + } + ], + "kind": "eval", + "score": 4.48, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.374.101" + }, + "instructors": [ + { + "name": "Brandon Bangsboll" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.374.101" + }, + "instructors": [ + { + "name": "Megan Hale" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.660.419" + }, + "instructors": [ + { + "name": "Lawrence Aronhime" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.419" + }, + "instructors": [ + { + "name": "Alexander Cocron" + } + ], + "kind": "eval", + "score": 4.24, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.360.624" + }, + "instructors": [ + { + "name": "" + } + ], + "kind": "eval", + "score": 4.14, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.510.314" + }, + "instructors": [ + { + "name": "Howard Katz" + } + ], + "kind": "eval", + "score": 4.13, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.233" + }, + "instructors": [ + { + "name": "Lucas Buccafusca" + } + ], + "kind": "eval", + "score": 4.39, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.380.101" + }, + "instructors": [ + { + "name": "Soo yun Kim" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.520.698" + }, + "instructors": [ + { + "name": "Yury Dvorkin" + } + ], + "kind": "eval", + "score": 4.12, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.465" + }, + "instructors": [ + { + "name": "Stavroula Sofou" + } + ], + "kind": "eval", + "score": 4.0, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.530.618" + }, + "instructors": [ + { + "name": "Sung hoon Kang" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.104" + }, + "instructors": [ + { + "name": "Tim Leschke" + } + ], + "kind": "eval", + "score": 3.36, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.104" + }, + "instructors": [ + { + "name": "Tim Leschke" + } + ], + "kind": "eval", + "score": 3.68, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.530.696" + }, + "instructors": [ + { + "name": "Joseph Moore" + } + ], + "kind": "eval", + "score": 4.81, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.670.502" + }, + "instructors": [ + { + "name": "Hai-quan Mao" + } + ], + "kind": "eval", + "score": 4.53, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.540.628" + }, + "instructors": [ + { + "name": "Honggang Cui" + } + ], + "kind": "eval", + "score": 3.99, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.673" + }, + "instructors": [ + { + "name": "Michael Tsapatsis" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.627" + }, + "instructors": [ + { + "name": "Roza Galeeva" + } + ], + "kind": "eval", + "score": 4.01, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.150.484" + }, + "instructors": [ + { + "name": "Michael Williams" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.410" + }, + "instructors": [ + { + "name": "Chuck Bennett" + } + ], + "kind": "eval", + "score": 4.23, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.650" + }, + "instructors": [ + { + "name": "Donald Geman" + } + ], + "kind": "eval", + "score": 3.86, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.102" + }, + "instructors": [ + { + "name": "Claude Guillemard" + } + ], + "kind": "eval", + "score": 4.56, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.102" + }, + "instructors": [ + { + "name": "Julianne Mehra" + } + ], + "kind": "eval", + "score": 4.53, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.400" + }, + "instructors": [ + { + "name": "Andrew Motion" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.124" + }, + "instructors": [ + { + "name": "Monica Lopez-gonzalez" + } + ], + "kind": "eval", + "score": 4.06, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.601.124" + }, + "instructors": [ + { + "name": "Monica Lopez-gonzalez" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.300.336" + }, + "instructors": [ + { + "name": "Yi-ping Ong" + } + ], + "kind": "eval", + "score": 4.39, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.650.667" + }, + "instructors": [ + { + "name": "Tim Leschke" + } + ], + "kind": "eval", + "score": 4.35, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.496" + }, + "instructors": [ + { + "name": "Russell Taylor" + } + ], + "kind": "eval", + "score": 4.45, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.663.411" + }, + "instructors": [ + { + "name": "Julie Reiser" + } + ], + "kind": "eval", + "score": 4.33, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.661.713" + }, + "instructors": [ + { + "name": "Denise Link-farajali" + } + ], + "kind": "eval", + "score": 4.48, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.310" + }, + "instructors": [ + { + "name": "Brian Camley" + } + ], + "kind": "eval", + "score": 3.68, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.215.380" + }, + "instructors": [ + { + "name": "Veronica Rios saavedra" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.376.211" + }, + "instructors": [ + { + "name": "Nathaniel Cornelius" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.376.211" + }, + "instructors": [ + { + "name": "Aaron Houston" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.103" + }, + "instructors": [ + { + "name": "Tobias Marriage" + } + ], + "kind": "eval", + "score": 3.89, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.442" + }, + "instructors": [ + { + "name": "Subas Acharya" + } + ], + "kind": "eval", + "score": 3.89, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.540.203" + }, + "instructors": [ + { + "name": "Efie Kokkoli" + } + ], + "kind": "eval", + "score": 3.97, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.310" + }, + "instructors": [ + { + "name": "Jinchao Feng" + } + ], + "kind": "eval", + "score": 3.69, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.310" + }, + "instructors": [ + { + "name": "Siqi Zhang" + } + ], + "kind": "eval", + "score": 3.74, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.674" + }, + "instructors": [ + { + "name": "Siamak Ardekani" + } + ], + "kind": "eval", + "score": 3.56, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.382" + }, + "instructors": [ + { + "name": "Alison Papadakis" + } + ], + "kind": "eval", + "score": 4.76, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.201" + }, + "instructors": [ + { + "name": "Greg Williamson" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.220.201" + }, + "instructors": [ + { + "name": "Landen Raszick" + } + ], + "kind": "eval", + "score": 3.53, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.201" + }, + "instructors": [ + { + "name": "Greg Williamson" + } + ], + "kind": "eval", + "score": 4.45, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.201" + }, + "instructors": [ + { + "name": "David Yezzi" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.662" + }, + "instructors": [ + { + "name": "Laurent Younes" + } + ], + "kind": "eval", + "score": 3.79, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.754" + }, + "instructors": [ + { + "name": "Jess Dunleavey" + } + ], + "kind": "eval", + "score": 4.45, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.754" + }, + "instructors": [ + { + "name": "Kevin Yarema" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.754" + }, + "instructors": [ + { + "name": "Jessica Dunleavey" + } + ], + "kind": "eval", + "score": 4.34, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.754" + }, + "instructors": [ + { + "name": "Kevin Yarema" + } + ], + "kind": "eval", + "score": 4.35, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.140.334" + }, + "instructors": [ + { + "name": "Yize Hu" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.190.204" + }, + "instructors": [ + { + "name": "Jane Bennett" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.270.353" + }, + "instructors": [ + { + "name": "Jerry Burgess" + } + ], + "kind": "eval", + "score": 4.56, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.001.166" + }, + "instructors": [ + { + "name": "John Marshall" + } + ], + "kind": "eval", + "score": 4.16, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.520.618" + }, + "instructors": [ + { + "name": "Mahyar Fazlyab" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.171.102" + }, + "instructors": [ + { + "name": "Petar Maksimovic" + } + ], + "kind": "eval", + "score": 3.81, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.171.102" + }, + "instructors": [ + { + "name": "Surjeet Rajendran" + } + ], + "kind": "eval", + "score": 4.03, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.656" + }, + "instructors": [ + { + "name": "Howard Weinert" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.304" + }, + "instructors": [ + { + "name": "Veit Stuphorn" + } + ], + "kind": "eval", + "score": 3.95, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.329" + }, + "instructors": [ + { + "name": "Steven Marra" + } + ], + "kind": "eval", + "score": 4.06, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.530.352" + }, + "instructors": [ + { + "name": "Kevin Hemker" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.530.648" + }, + "instructors": [ + { + "name": "Jill Middendorf" + } + ], + "kind": "eval", + "score": 4.0, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.691" + }, + "instructors": [ + { + "name": "Jeremy Brown" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.530.721" + }, + "instructors": [ + { + "name": "Axel Krieger" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.371.130" + }, + "instructors": [ + { + "name": "John Steck jr." + } + ], + "kind": "eval", + "score": 4.26, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "EN.553.444" + }, + "instructors": [ + { + "name": "Roza Galeeva" + } + ], + "kind": "eval", + "score": 3.23, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.644" + }, + "instructors": [ + { + "name": "David Audley" + } + ], + "kind": "eval", + "score": 4.12, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.730" + }, + "instructors": [ + { + "name": "Avanti Athreya" + } + ], + "kind": "eval", + "score": 4.33, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.633" + }, + "instructors": [ + { + "name": "Jim Spall" + } + ], + "kind": "eval", + "score": 4.43, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.510.601" + }, + "instructors": [ + { + "name": "Mingwei Chen" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.520.232" + }, + "instructors": [ + { + "name": "Amy Foster" + } + ], + "kind": "eval", + "score": 3.92, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.490" + }, + "instructors": [ + { + "name": "Dan Kuespert" + } + ], + "kind": "eval", + "score": 3.68, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.540.490" + }, + "instructors": [ + { + "name": "Dan Kuespert" + } + ], + "kind": "eval", + "score": 3.47, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.740" + }, + "instructors": [ + { + "name": "James Schmidt" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.243" + }, + "instructors": [ + { + "name": "Kwame Kutten" + } + ], + "kind": "eval", + "score": 3.89, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.243" + }, + "instructors": [ + { + "name": "Michael Miller" + } + ], + "kind": "eval", + "score": 3.81, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.001.159" + }, + "instructors": [ + { + "name": "Elizabeth Thornberry" + } + ], + "kind": "eval", + "score": 3.52, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.658" + }, + "instructors": [ + { + "name": "Mihaela Pertea" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.723" + }, + "instructors": [ + { + "name": "Siamak Ardekani" + } + ], + "kind": "eval", + "score": 4.29, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.371.153" + }, + "instructors": [ + { + "name": "Tae Hwang" + } + ], + "kind": "eval", + "score": 4.11, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.373.416" + }, + "instructors": [ + { + "name": "Shuyi Yang" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.402" + }, + "instructors": [ + { + "name": "Heath Holt" + } + ], + "kind": "eval", + "score": 4.11, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.402" + }, + "instructors": [ + { + "name": "Zachery Yeager" + } + ], + "kind": "eval", + "score": 4.09, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.402" + }, + "instructors": [ + { + "name": "Michael Lieske" + } + ], + "kind": "eval", + "score": 4.12, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.304" + }, + "instructors": [ + { + "name": "Jamie Spangler" + } + ], + "kind": "eval", + "score": 4.07, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.650.601" + }, + "instructors": [ + { + "name": "Xiangyang Li" + } + ], + "kind": "eval", + "score": 3.72, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.050.339" + }, + "instructors": [ + { + "name": "Julia Yarmolinskaya" + } + ], + "kind": "eval", + "score": 3.98, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.150.479" + }, + "instructors": [ + { + "name": "Travis Rieder" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.145.312" + }, + "instructors": [ + { + "name": "Kamna Balhara" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.230.101" + }, + "instructors": [ + { + "name": "Ryan Calder" + } + ], + "kind": "eval", + "score": 3.95, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.230.101" + }, + "instructors": [ + { + "name": "Andrew Perrin" + } + ], + "kind": "eval", + "score": 3.8, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.230.101" + }, + "instructors": [ + { + "name": "Mike Reese" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.371.216" + }, + "instructors": [ + { + "name": "John Steck jr." + } + ], + "kind": "eval", + "score": 4.35, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.450" + }, + "instructors": [ + { + "name": "Robert Glaser" + } + ], + "kind": "eval", + "score": 4.55, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.318" + }, + "instructors": [ + { + "name": "Ryan Huang" + } + ], + "kind": "eval", + "score": 4.76, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.311" + }, + "instructors": [ + { + "name": "Michelle Zwernemann" + } + ], + "kind": "eval", + "score": 5.0, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.613" + }, + "instructors": [ + { + "name": "Sergey Kushnarev" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.001.112" + }, + "instructors": [ + { + "name": "Beatrice Lang" + } + ], + "kind": "eval", + "score": 3.78, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.001.170" + }, + "instructors": [ + { + "name": "April Wuensch" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.560.305" + }, + "instructors": [ + { + "name": "Lucas De melo" + } + ], + "kind": "eval", + "score": 3.9, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.570.470" + }, + "instructors": [ + { + "name": "Steve Hanke" + } + ], + "kind": "eval", + "score": 4.52, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.488" + }, + "instructors": [ + { + "name": "Chris Bradburne" + } + ], + "kind": "eval", + "score": 3.77, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.637" + }, + "instructors": [ + { + "name": "Deok-ho Kim" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.693" + }, + "instructors": [ + { + "name": "Web Stayman" + } + ], + "kind": "eval", + "score": 4.78, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.290" + }, + "instructors": [ + { + "name": "Joanne Selinski" + } + ], + "kind": "eval", + "score": 4.13, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.426" + }, + "instructors": [ + { + "name": "Adam Charles" + } + ], + "kind": "eval", + "score": 4.33, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.426" + }, + "instructors": [ + { + "name": "Kathleen Cullen" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.426" + }, + "instructors": [ + { + "name": "Vikram Chib" + } + ], + "kind": "eval", + "score": 4.46, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.426" + }, + "instructors": [ + { + "name": "Adrian Haith" + } + ], + "kind": "eval", + "score": 4.33, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.661.370" + }, + "instructors": [ + { + "name": "Shadi Esnaashari" + } + ], + "kind": "eval", + "score": 3.32, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.661.370" + }, + "instructors": [ + { + "name": "Jenna Frye" + } + ], + "kind": "eval", + "score": 4.57, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.663.645" + }, + "instructors": [ + { + "name": "Amanda Hilliard" + } + ], + "kind": "eval", + "score": 4.5, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.310.328" + }, + "instructors": [ + { + "name": "Andrea Worden" + } + ], + "kind": "eval", + "score": 4.52, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.663.623" + }, + "instructors": [ + { + "name": "Denise Link-farajali" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.080.404" + }, + "instructors": [ + { + "name": "Jason Trageser" + } + ], + "kind": "eval", + "score": 4.35, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.150" + }, + "instructors": [ + { + "name": "John Mann" + } + ], + "kind": "eval", + "score": 3.88, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.061.150" + }, + "instructors": [ + { + "name": "John Mann" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.445" + }, + "instructors": [ + { + "name": "John Marshall" + } + ], + "kind": "eval", + "score": 4.5, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.304" + }, + "instructors": [ + { + "name": "Huajie Li" + } + ], + "kind": "eval", + "score": 3.77, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.304" + }, + "instructors": [ + { + "name": "Nicholas Marshburn" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.540.419" + }, + "instructors": [ + { + "name": "Nagma Zerin" + } + ], + "kind": "eval", + "score": 3.8, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.645" + }, + "instructors": [ + { + "name": "Jin Kim" + } + ], + "kind": "eval", + "score": 4.67, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.040.216" + }, + "instructors": [ + { + "name": "Karen Ni mheallaigh" + } + ], + "kind": "eval", + "score": 4.39, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.050.116" + }, + "instructors": [ + { + "name": "Donald Li" + } + ], + "kind": "eval", + "score": 4.06, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.413" + }, + "instructors": [ + { + "name": "Michelle Zwernemann" + } + ], + "kind": "eval", + "score": 4.41, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.413" + }, + "instructors": [ + { + "name": "Elizabeth Logsdon" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.080.339" + }, + "instructors": [ + { + "name": "Bob Ross" + } + ], + "kind": "eval", + "score": 4.53, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.250" + }, + "instructors": [ + { + "name": "Sarah Pearsall" + } + ], + "kind": "eval", + "score": 4.14, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.050.320" + }, + "instructors": [ + { + "name": "Geraldine Legendre" + } + ], + "kind": "eval", + "score": 4.5, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.060.379" + }, + "instructors": [ + { + "name": "Jarvis Young" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.111" + }, + "instructors": [ + { + "name": "Shaun Spisak" + } + ], + "kind": "eval", + "score": 3.82, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.482" + }, + "instructors": [ + { + "name": "William Rowe" + } + ], + "kind": "eval", + "score": 4.39, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.231" + }, + "instructors": [ + { + "name": "Josh Feinman" + } + ], + "kind": "eval", + "score": 3.76, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.060.107" + }, + "instructors": [ + { + "name": "Sharon Achinstein" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.060.107" + }, + "instructors": [ + { + "name": "Mary Favret" + } + ], + "kind": "eval", + "score": 4.12, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.491" + }, + "instructors": [ + { + "name": "Yannis Kevrekidis" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.510.429" + }, + "instructors": [ + { + "name": "Orla Wilson" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.448" + }, + "instructors": [ + { + "name": "Andreas Andreou" + } + ], + "kind": "eval", + "score": 3.46, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.420" + }, + "instructors": [ + { + "name": "David Kraemer" + } + ], + "kind": "eval", + "score": 4.02, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.540.630" + }, + "instructors": [ + { + "name": "Jeff Gray" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.291" + }, + "instructors": [ + { + "name": "Sergey Kushnarev" + } + ], + "kind": "eval", + "score": 4.52, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.291" + }, + "instructors": [ + { + "name": "Mario Micheli" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.291" + }, + "instructors": [ + { + "name": "Prajakta purushottam Bedekar" + } + ], + "kind": "eval", + "score": 4.29, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.291" + }, + "instructors": [ + { + "name": "Sergey Kushnarev" + } + ], + "kind": "eval", + "score": 4.14, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.639" + }, + "instructors": [ + { + "name": "Kechen Zhang" + } + ], + "kind": "eval", + "score": 4.15, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.209" + }, + "instructors": [ + { + "name": "Chelsea Howe" + } + ], + "kind": "eval", + "score": 4.29, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.661.315" + }, + "instructors": [ + { + "name": "Joe Forte" + } + ], + "kind": "eval", + "score": 4.09, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.661.315" + }, + "instructors": [ + { + "name": "Joe Forte" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.661.315" + }, + "instructors": [ + { + "name": "Eric Rice" + } + ], + "kind": "eval", + "score": 3.94, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.661.315" + }, + "instructors": [ + { + "name": "Trevor Mackesey" + } + ], + "kind": "eval", + "score": 3.8, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.162" + }, + "instructors": [ + { + "name": "Rebecca Pearlman" + } + ], + "kind": "eval", + "score": 4.24, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.412" + }, + "instructors": [ + { + "name": "Fanjun Meng" + } + ], + "kind": "eval", + "score": 4.16, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.406" + }, + "instructors": [ + { + "name": "Jeffrey Marino" + } + ], + "kind": "eval", + "score": 3.87, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.140.317" + }, + "instructors": [ + { + "name": "Kristin Brig" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.210.176" + }, + "instructors": [ + { + "name": "Alessandro Zannirato" + } + ], + "kind": "eval", + "score": 4.62, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.225.101" + }, + "instructors": [ + { + "name": "Gerrad Taylor" + } + ], + "kind": "eval", + "score": 4.12, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.603" + }, + "instructors": [ + { + "name": "Nadia Zakamska" + } + ], + "kind": "eval", + "score": 3.94, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.360.304" + }, + "instructors": [ + { + "name": "Tom Lippincott" + } + ], + "kind": "eval", + "score": 4.47, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.360.304" + }, + "instructors": [ + { + "name": "Hale Sirin ryan" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.360.304" + }, + "instructors": [ + { + "name": "Sam Backer" + } + ], + "kind": "eval", + "score": 4.47, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.360.304" + }, + "instructors": [ + { + "name": "Craig Messner" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.614" + }, + "instructors": [ + { + "name": "John Miller" + } + ], + "kind": "eval", + "score": 3.72, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.310.107" + }, + "instructors": [ + { + "name": "Laura Reizman" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.226" + }, + "instructors": [ + { + "name": "Patricio Simari" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.226" + }, + "instructors": [ + { + "name": "Ali Madooei" + } + ], + "kind": "eval", + "score": 4.24, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.306" + }, + "instructors": [ + { + "name": "Katie Tifft oshinnaiye" + } + ], + "kind": "eval", + "score": 3.87, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.306" + }, + "instructors": [ + { + "name": "Yumi Kim" + } + ], + "kind": "eval", + "score": 3.83, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.376.334" + }, + "instructors": [ + { + "name": "Sophie Brady" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.403" + }, + "instructors": [ + { + "name": "Thomas Kempa" + } + ], + "kind": "eval", + "score": 4.48, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.424" + }, + "instructors": [ + { + "name": "Stephen Fried" + } + ], + "kind": "eval", + "score": 4.5, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.310" + }, + "instructors": [ + { + "name": "Alfredo Kirkwood" + } + ], + "kind": "eval", + "score": 4.24, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.080.310" + }, + "instructors": [ + { + "name": "Hey-kyoung Lee" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.140.333" + }, + "instructors": [ + { + "name": "Robert Kargon" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.145.350" + }, + "instructors": [ + { + "name": "Alicia Puglionesi" + } + ], + "kind": "eval", + "score": 3.83, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.070.345" + }, + "instructors": [ + { + "name": "Sabine Mohamed" + } + ], + "kind": "eval", + "score": 4.57, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.101" + }, + "instructors": [ + { + "name": "Andrei Gritsan" + } + ], + "kind": "eval", + "score": 3.7, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.070.284" + }, + "instructors": [ + { + "name": "Zeynel Gul" + } + ], + "kind": "eval", + "score": 4.33, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.107" + }, + "instructors": [ + { + "name": "Tim Campion" + } + ], + "kind": "eval", + "score": 3.66, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.110.107" + }, + "instructors": [ + { + "name": "Richard Brown" + } + ], + "kind": "eval", + "score": 3.62, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.107" + }, + "instructors": [ + { + "name": "Sean Gruber" + } + ], + "kind": "eval", + "score": 3.8, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.150.436" + }, + "instructors": [ + { + "name": "Elanor Taylor" + } + ], + "kind": "eval", + "score": 4.53, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.351" + }, + "instructors": [ + { + "name": "Andrew Hoyt" + } + ], + "kind": "eval", + "score": 4.1, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.180.371" + }, + "instructors": [ + { + "name": "Elena Krasnokutskaya" + } + ], + "kind": "eval", + "score": 3.47, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.301" + }, + "instructors": [ + { + "name": "Erich Goldstein" + } + ], + "kind": "eval", + "score": 4.63, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.250.410" + }, + "instructors": [ + { + "name": "Taekjip Ha" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.250.410" + }, + "instructors": [ + { + "name": "Sua Myong" + } + ], + "kind": "eval", + "score": 4.39, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.380.202" + }, + "instructors": [ + { + "name": "Soo yun Kim" + } + ], + "kind": "eval", + "score": 4.53, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.376.245" + }, + "instructors": [ + { + "name": "Andrew Stella" + } + ], + "kind": "eval", + "score": 4.23, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.194.220" + }, + "instructors": [ + { + "name": "Homayra Ziad" + } + ], + "kind": "eval", + "score": 4.09, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.301" + }, + "instructors": [ + { + "name": "Paul Hofer" + } + ], + "kind": "eval", + "score": 3.57, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.301" + }, + "instructors": [ + { + "name": "Kristin Cook-gailloud" + } + ], + "kind": "eval", + "score": 3.83, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.210.301" + }, + "instructors": [ + { + "name": "Kristin Cook-gailloud" + } + ], + "kind": "eval", + "score": 4.33, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.301" + }, + "instructors": [ + { + "name": "Jean-ederson Jean-pierre" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.225.324" + }, + "instructors": [ + { + "name": "Joe Martin" + } + ], + "kind": "eval", + "score": 4.6, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.140.338" + }, + "instructors": [ + { + "name": "Alexander Parry" + } + ], + "kind": "eval", + "score": 4.49, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.220.231" + }, + "instructors": [ + { + "name": "Katie Moulton" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.250.316" + }, + "instructors": [ + { + "name": "Steven Rokita" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.250.316" + }, + "instructors": [ + { + "name": "Sarah Woodson" + } + ], + "kind": "eval", + "score": 4.13, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.270.224" + }, + "instructors": [ + { + "name": "Darryn Waugh" + } + ], + "kind": "eval", + "score": 3.88, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.270.224" + }, + "instructors": [ + { + "name": "Thomas Haine" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.280.365" + }, + "instructors": [ + { + "name": "Peter Beilenson" + } + ], + "kind": "eval", + "score": 4.0, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.300.102" + }, + "instructors": [ + { + "name": "Paola Marrati" + } + ], + "kind": "eval", + "score": 3.94, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.693" + }, + "instructors": [ + { + "name": "Mario Micheli" + } + ], + "kind": "eval", + "score": 4.39, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.301" + }, + "instructors": [ + { + "name": "Dani Smith" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.110.401" + }, + "instructors": [ + { + "name": "Alexander Shumakovitch" + } + ], + "kind": "eval", + "score": 4.16, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.401" + }, + "instructors": [ + { + "name": "Nicholas Marshburn" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.371.303" + }, + "instructors": [ + { + "name": "Christiana Caro" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.371.219" + }, + "instructors": [ + { + "name": "John Steck jr." + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.376.250" + }, + "instructors": [ + { + "name": "Samuel Burt" + } + ], + "kind": "eval", + "score": 4.01, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.570.698" + }, + "instructors": [ + { + "name": "Shere Abbott" + } + ], + "kind": "eval", + "score": 4.03, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.380.302" + }, + "instructors": [ + { + "name": "Soo yun Kim" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.070.118" + }, + "instructors": [ + { + "name": "Valeria Procupez" + } + ], + "kind": "eval", + "score": 4.26, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.070.289" + }, + "instructors": [ + { + "name": "Veena Das" + } + ], + "kind": "eval", + "score": 3.92, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.070.328" + }, + "instructors": [ + { + "name": "Niloofar Haeri" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.060.326" + }, + "instructors": [ + { + "name": "Sharon Achinstein" + } + ], + "kind": "eval", + "score": 4.46, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.134.101" + }, + "instructors": [ + { + "name": "Ted Lewis" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.230" + }, + "instructors": [ + { + "name": "Pedro Irazoqui" + } + ], + "kind": "eval", + "score": 3.97, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.004.263" + }, + "instructors": [ + { + "name": "George Oppel" + } + ], + "kind": "eval", + "score": 4.15, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.520.142" + }, + "instructors": [ + { + "name": "Lucas Buccafusca" + } + ], + "kind": "eval", + "score": 4.1, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.371.152" + }, + "instructors": [ + { + "name": "Htet San" + } + ], + "kind": "eval", + "score": 3.53, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.243" + }, + "instructors": [ + { + "name": "David Kraemer" + } + ], + "kind": "eval", + "score": 4.1, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.344" + }, + "instructors": [ + { + "name": "Steven Marra" + } + ], + "kind": "eval", + "score": 3.58, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.192.150" + }, + "instructors": [ + { + "name": "Adria Lawrence" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.540.618" + }, + "instructors": [ + { + "name": "Sangmoo Jeong" + } + ], + "kind": "eval", + "score": 4.29, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.510.610" + }, + "instructors": [ + { + "name": "Peter Searson" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.636" + }, + "instructors": [ + { + "name": "Tamas Budavari" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.636" + }, + "instructors": [ + { + "name": "Tamas Budavari" + } + ], + "kind": "eval", + "score": 4.12, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.560.250" + }, + "instructors": [ + { + "name": "Yakov Zelickman" + } + ], + "kind": "eval", + "score": 3.22, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.711" + }, + "instructors": [ + { + "name": "Joseph Greenstein" + } + ], + "kind": "eval", + "score": 3.23, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.711" + }, + "instructors": [ + { + "name": "Patrick Kanold" + } + ], + "kind": "eval", + "score": 3.22, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.681" + }, + "instructors": [ + { + "name": "Mario Micheli" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.101" + }, + "instructors": [ + { + "name": "Dylan Selterman" + } + ], + "kind": "eval", + "score": 3.1, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.200.101" + }, + "instructors": [ + { + "name": "Dylan Selterman" + } + ], + "kind": "eval", + "score": 3.94, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.560.362" + }, + "instructors": [ + { + "name": "Jochen Mueller" + } + ], + "kind": "eval", + "score": 3.6, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.560.392" + }, + "instructors": [ + { + "name": "Rachel Sangree" + } + ], + "kind": "eval", + "score": 3.74, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.326" + }, + "instructors": [ + { + "name": "Mohamed Farah" + } + ], + "kind": "eval", + "score": 4.16, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.622" + }, + "instructors": [ + { + "name": "Mohammad ali Darvish darab" + } + ], + "kind": "eval", + "score": 3.87, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.244" + }, + "instructors": [ + { + "name": "Michael Beer" + } + ], + "kind": "eval", + "score": 3.66, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.663.657" + }, + "instructors": [ + { + "name": "Lawrence Aronhime" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.663.657" + }, + "instructors": [ + { + "name": "Alexander Cocron" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.010.364" + }, + "instructors": [ + { + "name": "Marian Feldman" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.211.303" + }, + "instructors": [ + { + "name": "Rochelle Tobias" + } + ], + "kind": "eval", + "score": 4.54, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.230" + }, + "instructors": [ + { + "name": "Sara More" + } + ], + "kind": "eval", + "score": 3.6, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.601.230" + }, + "instructors": [ + { + "name": "Sara More" + } + ], + "kind": "eval", + "score": 3.68, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.230.445" + }, + "instructors": [ + { + "name": "Ryan Calder" + } + ], + "kind": "eval", + "score": 4.5, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.280.330" + }, + "instructors": [ + { + "name": "Cara Mcnamara" + } + ], + "kind": "eval", + "score": 4.3, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.503" + }, + "instructors": [ + { + "name": "Ali Madooei" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.660.385" + }, + "instructors": [ + { + "name": "Lawrence Aronhime" + } + ], + "kind": "eval", + "score": 4.57, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.385" + }, + "instructors": [ + { + "name": "Alexander Cocron" + } + ], + "kind": "eval", + "score": 4.57, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.280.335" + }, + "instructors": [ + { + "name": "Megan Latshaw" + } + ], + "kind": "eval", + "score": 3.97, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.280.335" + }, + "instructors": [ + { + "name": "Joseph Bressler" + } + ], + "kind": "eval", + "score": 3.92, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.280.335" + }, + "instructors": [ + { + "name": "Megan Latshaw" + } + ], + "kind": "eval", + "score": 3.75, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.280.335" + }, + "instructors": [ + { + "name": "Joseph Bressler" + } + ], + "kind": "eval", + "score": 3.73, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.382" + }, + "instructors": [ + { + "name": "Trevor Mackesey" + } + ], + "kind": "eval", + "score": 4.57, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.377" + }, + "instructors": [ + { + "name": "Anna Coppola" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.228" + }, + "instructors": [ + { + "name": "Eric Hill" + } + ], + "kind": "eval", + "score": 4.07, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.200" + }, + "instructors": [ + { + "name": "Jeffrey Bowen" + } + ], + "kind": "eval", + "score": 3.71, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.210.311" + }, + "instructors": [ + { + "name": "Arancha Hubbard" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.311" + }, + "instructors": [ + { + "name": "Maria Sanchez paraiso" + } + ], + "kind": "eval", + "score": 4.3, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.500.134" + }, + "instructors": [ + { + "name": "Misha Rubanov" + } + ], + "kind": "eval", + "score": 3.73, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "EN.500.134" + }, + "instructors": [ + { + "name": "Misha Rubanov" + } + ], + "kind": "eval", + "score": 3.49, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.570.334" + }, + "instructors": [ + { + "name": "Paul Ferraro" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.363" + }, + "instructors": [ + { + "name": "Carolyn Norris" + } + ], + "kind": "eval", + "score": 3.59, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.363" + }, + "instructors": [ + { + "name": "Mark Van doren" + } + ], + "kind": "eval", + "score": 3.76, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.305" + }, + "instructors": [ + { + "name": "Vincent Hilser" + } + ], + "kind": "eval", + "score": 3.83, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.020.305" + }, + "instructors": [ + { + "name": "Katie Tifft oshinnaiye" + } + ], + "kind": "eval", + "score": 3.9, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.020.305" + }, + "instructors": [ + { + "name": "Katie Tifft oshinnaiye" + } + ], + "kind": "eval", + "score": 3.95, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.305" + }, + "instructors": [ + { + "name": "Christov Roberson" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.305" + }, + "instructors": [ + { + "name": "Robert Horner" + } + ], + "kind": "eval", + "score": 3.74, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.040.208" + }, + "instructors": [ + { + "name": "Giacomo Loi" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.632" + }, + "instructors": [ + { + "name": "Jung-hee Seo" + } + ], + "kind": "eval", + "score": 3.88, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.441" + }, + "instructors": [ + { + "name": "Christopher Falzone" + } + ], + "kind": "eval", + "score": 3.76, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.464" + }, + "instructors": [ + { + "name": "Musad Haque" + } + ], + "kind": "eval", + "score": 3.82, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.601.671" + }, + "instructors": [ + { + "name": "Daniel Khashabi" + } + ], + "kind": "eval", + "score": 4.62, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.303" + }, + "instructors": [ + { + "name": "Sean Furlong" + } + ], + "kind": "eval", + "score": 4.41, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.661.380" + }, + "instructors": [ + { + "name": "Shadi Esnaashari" + } + ], + "kind": "eval", + "score": 3.41, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.396" + }, + "instructors": [ + { + "name": "Jules Gill peterson" + } + ], + "kind": "eval", + "score": 4.62, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.150.118" + }, + "instructors": [ + { + "name": "Peter Achinstein" + } + ], + "kind": "eval", + "score": 3.84, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.190.438" + }, + "instructors": [ + { + "name": "Benjamin Ginsberg" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.280.466" + }, + "instructors": [ + { + "name": "Savannah Brenneke" + } + ], + "kind": "eval", + "score": 4.64, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.172.601" + }, + "instructors": [ + { + "name": "Daniel Reich" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.173.308" + }, + "instructors": [ + { + "name": "Oleg Tchernyshyov" + } + ], + "kind": "eval", + "score": 3.73, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.612" + }, + "instructors": [ + { + "name": "Edward Hedgecock" + } + ], + "kind": "eval", + "score": 3.81, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.229" + }, + "instructors": [ + { + "name": "David Hovemeyer" + } + ], + "kind": "eval", + "score": 4.33, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.601.229" + }, + "instructors": [ + { + "name": "David Hovemeyer" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.570.623" + }, + "instructors": [ + { + "name": "Umesh Korde" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.405" + }, + "instructors": [ + { + "name": "Lan Cheng" + } + ], + "kind": "eval", + "score": 4.54, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.499" + }, + "instructors": [ + { + "name": "Jason Trageser" + } + ], + "kind": "eval", + "score": 3.61, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.080.499" + }, + "instructors": [ + { + "name": "Susanne Sterbing-d'angelo" + } + ], + "kind": "eval", + "score": 3.54, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.080.499" + }, + "instructors": [ + { + "name": "Bob Ross" + } + ], + "kind": "eval", + "score": 3.57, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.080.499" + }, + "instructors": [ + { + "name": "Dani Smith" + } + ], + "kind": "eval", + "score": 3.59, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.225.310" + }, + "instructors": [ + { + "name": "William Roche" + } + ], + "kind": "eval", + "score": 4.13, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.626" + }, + "instructors": [ + { + "name": "Bruce Snider" + } + ], + "kind": "eval", + "score": 4.6, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.230.341" + }, + "instructors": [ + { + "name": "Emily Agree" + } + ], + "kind": "eval", + "score": 3.98, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.230.341" + }, + "instructors": [ + { + "name": "Emily Agree" + } + ], + "kind": "eval", + "score": 3.77, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.150.205" + }, + "instructors": [ + { + "name": "Patrick Connolly" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.210" + }, + "instructors": [ + { + "name": "Giovanna maria dora Dore" + } + ], + "kind": "eval", + "score": 4.39, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.501.123" + }, + "instructors": [ + { + "name": "Randal Burns" + } + ], + "kind": "eval", + "score": 3.86, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.280.499" + }, + "instructors": [ + { + "name": "Peter Winch" + } + ], + "kind": "eval", + "score": 4.72, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.501.119" + }, + "instructors": [ + { + "name": "Mia Russell" + } + ], + "kind": "eval", + "score": 3.86, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.110.125" + }, + "instructors": [ + { + "name": "Alexa Gaines" + } + ], + "kind": "eval", + "score": 4.07, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.190.180" + }, + "instructors": [ + { + "name": "Pj Brendese" + } + ], + "kind": "eval", + "score": 3.82, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.145.320" + }, + "instructors": [ + { + "name": "Christine Slobogin" + } + ], + "kind": "eval", + "score": 4.57, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.356" + }, + "instructors": [ + { + "name": "David Goldberg" + } + ], + "kind": "eval", + "score": 4.1, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.110" + }, + "instructors": [ + { + "name": "Jonathan Flombaum" + } + ], + "kind": "eval", + "score": 3.94, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.230.202" + }, + "instructors": [ + { + "name": "Meredith Greif" + } + ], + "kind": "eval", + "score": 4.12, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.280.380" + }, + "instructors": [ + { + "name": "Peter Winch" + } + ], + "kind": "eval", + "score": 4.41, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.376.252" + }, + "instructors": [ + { + "name": "Ian Sims" + } + ], + "kind": "eval", + "score": 3.77, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.787" + }, + "instructors": [ + { + "name": "Anqi Liu" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.124" + }, + "instructors": [ + { + "name": "Ishan Barman" + } + ], + "kind": "eval", + "score": 3.87, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.010.400" + }, + "instructors": [ + { + "name": "Aaron Hyman" + } + ], + "kind": "eval", + "score": 4.24, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.540.307" + }, + "instructors": [ + { + "name": "Nagma Zerin" + } + ], + "kind": "eval", + "score": 4.02, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.409" + }, + "instructors": [ + { + "name": "Bruce Anderson" + } + ], + "kind": "eval", + "score": 3.97, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.361" + }, + "instructors": [ + { + "name": "Donniell Fishkind" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.361" + }, + "instructors": [ + { + "name": "Konstantinos Pantazis" + } + ], + "kind": "eval", + "score": 3.65, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.120" + }, + "instructors": [ + { + "name": "Zachery Yeager" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.250" + }, + "instructors": [ + { + "name": "Sue Conley" + } + ], + "kind": "eval", + "score": 3.96, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.250" + }, + "instructors": [ + { + "name": "Leslie Kendrick" + } + ], + "kind": "eval", + "score": 3.77, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.666" + }, + "instructors": [ + { + "name": "David Yarowsky" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.106" + }, + "instructors": [ + { + "name": "Mia Russell" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.607" + }, + "instructors": [ + { + "name": "Eric Rice" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.612" + }, + "instructors": [ + { + "name": "Soumyadipta Acharya" + } + ], + "kind": "eval", + "score": 4.34, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.510.316" + }, + "instructors": [ + { + "name": "Hai-quan Mao" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.640" + }, + "instructors": [ + { + "name": "Andreas Andreou" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.640" + }, + "instructors": [ + { + "name": "Daniel Mendat" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.606" + }, + "instructors": [ + { + "name": "Ryan Hurley" + } + ], + "kind": "eval", + "score": 4.41, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.622" + }, + "instructors": [ + { + "name": "Joseph Katz" + } + ], + "kind": "eval", + "score": 4.14, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.212" + }, + "instructors": [ + { + "name": "Michelle Zwernemann" + } + ], + "kind": "eval", + "score": 4.56, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.212" + }, + "instructors": [ + { + "name": "Constanza Miranda mendoza" + } + ], + "kind": "eval", + "score": 4.51, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.212" + }, + "instructors": [ + { + "name": "Elizabeth Logsdon" + } + ], + "kind": "eval", + "score": 4.51, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.212" + }, + "instructors": [ + { + "name": "Nicholas Durr" + } + ], + "kind": "eval", + "score": 4.51, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.150.114" + }, + "instructors": [ + { + "name": "Simon Brown" + } + ], + "kind": "eval", + "score": 4.0, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.412" + }, + "instructors": [ + { + "name": "Michelle Zwernemann" + } + ], + "kind": "eval", + "score": 4.49, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.412" + }, + "instructors": [ + { + "name": "Elizabeth Logsdon" + } + ], + "kind": "eval", + "score": 4.48, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.412" + }, + "instructors": [ + { + "name": "Nicholas Durr" + } + ], + "kind": "eval", + "score": 4.47, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.362.318" + }, + "instructors": [ + { + "name": "Minkah Makalani" + } + ], + "kind": "eval", + "score": 4.45, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.312" + }, + "instructors": [ + { + "name": "Edward Hedgecock" + } + ], + "kind": "eval", + "score": 3.73, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.340" + }, + "instructors": [ + { + "name": "Carolyn Norris" + } + ], + "kind": "eval", + "score": 4.13, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.020.340" + }, + "instructors": [ + { + "name": "Carolyn Norris" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.340" + }, + "instructors": [ + { + "name": "Carolyn Norris" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.020.442" + }, + "instructors": [ + { + "name": "Rebecca Pearlman" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.442" + }, + "instructors": [ + { + "name": "Richard Shingles" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.402" + }, + "instructors": [ + { + "name": "Gregory Quiroz" + } + ], + "kind": "eval", + "score": 4.5, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.402" + }, + "instructors": [ + { + "name": "Paraj Titum" + } + ], + "kind": "eval", + "score": 4.43, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.196.201" + }, + "instructors": [ + { + "name": "Hahrie Han" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.196.201" + }, + "instructors": [ + { + "name": "Lily Mason" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.275" + }, + "instructors": [ + { + "name": "Flavia De azeredo cerqueira" + } + ], + "kind": "eval", + "score": 4.49, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.275" + }, + "instructors": [ + { + "name": "Benjamin Chaffin" + } + ], + "kind": "eval", + "score": 4.54, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.215.231" + }, + "instructors": [ + { + "name": "Alexis Hernando cubas" + } + ], + "kind": "eval", + "score": 3.14, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.215.231" + }, + "instructors": [ + { + "name": "Eduardo Gonzalez" + } + ], + "kind": "eval", + "score": 3.21, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.215.231" + }, + "instructors": [ + { + "name": "Rachel Williams" + } + ], + "kind": "eval", + "score": 4.23, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.371.133" + }, + "instructors": [ + { + "name": "Margaret Murphy" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.371.133" + }, + "instructors": [ + { + "name": "Barbara Gruber" + } + ], + "kind": "eval", + "score": 4.11, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.371.133" + }, + "instructors": [ + { + "name": "Margaret Murphy" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.653" + }, + "instructors": [ + { + "name": "Beryl Castello" + } + ], + "kind": "eval", + "score": 3.98, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.672" + }, + "instructors": [ + { + "name": "Drg Gnang" + } + ], + "kind": "eval", + "score": 4.7, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.389.250" + }, + "instructors": [ + { + "name": "Jennifer Jarvis" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.335" + }, + "instructors": [ + { + "name": "Fadil Santosa" + } + ], + "kind": "eval", + "score": 4.02, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.764" + }, + "instructors": [ + { + "name": "Kenton Murray" + } + ], + "kind": "eval", + "score": 4.54, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.123" + }, + "instructors": [ + { + "name": "Najim Dehak" + } + ], + "kind": "eval", + "score": 2.93, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.410" + }, + "instructors": [ + { + "name": "Eileen Haase" + } + ], + "kind": "eval", + "score": 3.69, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.010.355" + }, + "instructors": [ + { + "name": "Caroline Schopp" + } + ], + "kind": "eval", + "score": 4.41, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.050.206" + }, + "instructors": [ + { + "name": "Julia Yarmolinskaya" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.060.430" + }, + "instructors": [ + { + "name": "Lawrence Jackson" + } + ], + "kind": "eval", + "score": 3.91, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.303" + }, + "instructors": [ + { + "name": "David Kaplan" + } + ], + "kind": "eval", + "score": 3.99, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.171.612" + }, + "instructors": [ + { + "name": "Julian Krolik" + } + ], + "kind": "eval", + "score": 3.6, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.332" + }, + "instructors": [ + { + "name": "Christopher Honey" + } + ], + "kind": "eval", + "score": 4.03, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.336" + }, + "instructors": [ + { + "name": "Bob Barbera" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.211" + }, + "instructors": [ + { + "name": "Naiara Martinez-velez" + } + ], + "kind": "eval", + "score": 4.34, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.211" + }, + "instructors": [ + { + "name": "Michelle Tracy" + } + ], + "kind": "eval", + "score": 4.23, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.111" + }, + "instructors": [ + { + "name": "Michelle Tracy" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.210.111" + }, + "instructors": [ + { + "name": "Michelle Tracy" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.262" + }, + "instructors": [ + { + "name": "Heidi Wheeler" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.107" + }, + "instructors": [ + { + "name": "Morris Swartz" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.171.107" + }, + "instructors": [ + { + "name": "Reid Mumford" + } + ], + "kind": "eval", + "score": 4.73, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.530.327" + }, + "instructors": [ + { + "name": "Rui Ni" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.230.352" + }, + "instructors": [ + { + "name": "Huei-ying Kuo" + } + ], + "kind": "eval", + "score": 4.33, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.280.120" + }, + "instructors": [ + { + "name": "Philip Leaf" + } + ], + "kind": "eval", + "score": 3.75, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.380.102" + }, + "instructors": [ + { + "name": "Soo yun Kim" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.411" + }, + "instructors": [ + { + "name": "Lawrence Aronhime" + } + ], + "kind": "eval", + "score": 3.88, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.411" + }, + "instructors": [ + { + "name": "Anton Dahbura" + } + ], + "kind": "eval", + "score": 3.85, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.150.499" + }, + "instructors": [ + { + "name": "Yitzhak Melamed" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.254" + }, + "instructors": [ + { + "name": "Anna Goodridge" + } + ], + "kind": "eval", + "score": 3.2, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.530.254" + }, + "instructors": [ + { + "name": "Anna Goodridge" + } + ], + "kind": "eval", + "score": 2.83, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.687" + }, + "instructors": [ + { + "name": "Sathappan Ramesh" + } + ], + "kind": "eval", + "score": 4.39, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.560.636" + }, + "instructors": [ + { + "name": "Santiago Bonetti" + } + ], + "kind": "eval", + "score": 4.59, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.248" + }, + "instructors": [ + { + "name": "Joel Bader" + } + ], + "kind": "eval", + "score": 3.45, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.414" + }, + "instructors": [ + { + "name": "Soudeh Ghorbani khaledi" + } + ], + "kind": "eval", + "score": 4.09, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.650.624" + }, + "instructors": [ + { + "name": "Reuben Johnston" + } + ], + "kind": "eval", + "score": 4.6, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.650.631" + }, + "instructors": [ + { + "name": "Lanier Watkins" + } + ], + "kind": "eval", + "score": 4.11, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.010.458" + }, + "instructors": [ + { + "name": "Catherine Popovici" + } + ], + "kind": "eval", + "score": 4.72, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.373.212" + }, + "instructors": [ + { + "name": "Aiguo Chen" + } + ], + "kind": "eval", + "score": 4.1, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.300.307" + }, + "instructors": [ + { + "name": "Paula Mendes" + } + ], + "kind": "eval", + "score": 3.92, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.480" + }, + "instructors": [ + { + "name": "Yun Chen" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.212.353" + }, + "instructors": [ + { + "name": "April Wuensch" + } + ], + "kind": "eval", + "score": 3.48, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.212.353" + }, + "instructors": [ + { + "name": "April Wuensch" + } + ], + "kind": "eval", + "score": 3.54, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.212.353" + }, + "instructors": [ + { + "name": "Julia Jacob" + } + ], + "kind": "eval", + "score": 3.58, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.205" + }, + "instructors": [ + { + "name": "Adam Rodgers" + } + ], + "kind": "eval", + "score": 4.24, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.205" + }, + "instructors": [ + { + "name": "Russell Sharman" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.202" + }, + "instructors": [ + { + "name": "Manon Page" + } + ], + "kind": "eval", + "score": 4.5, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.202" + }, + "instructors": [ + { + "name": "Suzanne Roos" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.202" + }, + "instructors": [ + { + "name": "Camille Roche" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.202" + }, + "instructors": [ + { + "name": "Thomas D'amato" + } + ], + "kind": "eval", + "score": 4.58, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.212" + }, + "instructors": [ + { + "name": "Naiara Martinez-velez" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.212" + }, + "instructors": [ + { + "name": "Grecia Chirinos delgado" + } + ], + "kind": "eval", + "score": 4.41, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.212" + }, + "instructors": [ + { + "name": "Maria Sanchez paraiso" + } + ], + "kind": "eval", + "score": 4.48, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.210.212" + }, + "instructors": [ + { + "name": "Rosario Ramos" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.190.316" + }, + "instructors": [ + { + "name": "Tarak Barkawi" + } + ], + "kind": "eval", + "score": 4.35, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.190.319" + }, + "instructors": [ + { + "name": "Steven Teles" + } + ], + "kind": "eval", + "score": 4.46, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.250.372" + }, + "instructors": [ + { + "name": "Doug Barrick" + } + ], + "kind": "eval", + "score": 4.64, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.230.323" + }, + "instructors": [ + { + "name": "Ryan Calder" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.641" + }, + "instructors": [ + { + "name": "John Miller" + } + ], + "kind": "eval", + "score": 4.1, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.666" + }, + "instructors": [ + { + "name": "Sanjeev Khudanpur" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.451" + }, + "instructors": [ + { + "name": "Yana Safonova" + } + ], + "kind": "eval", + "score": 3.96, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.010.474" + }, + "instructors": [ + { + "name": "Jennifer Stager" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.231" + }, + "instructors": [ + { + "name": "Pedro Irazoqui" + } + ], + "kind": "eval", + "score": 3.72, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.191.334" + }, + "instructors": [ + { + "name": "Kathleen Frydl" + } + ], + "kind": "eval", + "score": 4.64, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.202" + }, + "instructors": [ + { + "name": "Sakul Ratanalert" + } + ], + "kind": "eval", + "score": 4.5, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.540.202" + }, + "instructors": [ + { + "name": "Nagma Zerin" + } + ], + "kind": "eval", + "score": 4.29, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.334" + }, + "instructors": [ + { + "name": "Claire Hur" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.454" + }, + "instructors": [ + { + "name": "Jessica Dunleavey" + } + ], + "kind": "eval", + "score": 3.79, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.454" + }, + "instructors": [ + { + "name": "Winston Timp" + } + ], + "kind": "eval", + "score": 3.75, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.140.106" + }, + "instructors": [ + { + "name": "Nathaniel Comfort" + } + ], + "kind": "eval", + "score": 4.3, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.352" + }, + "instructors": [ + { + "name": "Michael Agronin" + } + ], + "kind": "eval", + "score": 4.01, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.100.426" + }, + "instructors": [ + { + "name": "John Marshall" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.118" + }, + "instructors": [ + { + "name": "Adam Riess" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.118" + }, + "instructors": [ + { + "name": "Wei Zheng" + } + ], + "kind": "eval", + "score": 4.07, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.171.622" + }, + "instructors": [ + { + "name": "Daniel Beller" + } + ], + "kind": "eval", + "score": 4.6, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.050.203" + }, + "instructors": [ + { + "name": "Mick Bonner" + } + ], + "kind": "eval", + "score": 3.7, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.190.398" + }, + "instructors": [ + { + "name": "William Connolly" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.362.140" + }, + "instructors": [ + { + "name": "Jasmine Blanks jones" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.376.231" + }, + "instructors": [ + { + "name": "Suhnne Ahn" + } + ], + "kind": "eval", + "score": 3.84, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.270.114" + }, + "instructors": [ + { + "name": "David Sing" + } + ], + "kind": "eval", + "score": 3.63, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.001.181" + }, + "instructors": [ + { + "name": "Jacek Mostwin" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.510.403" + }, + "instructors": [ + { + "name": "Patty Mcguiggan" + } + ], + "kind": "eval", + "score": 4.34, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.540.637" + }, + "instructors": [ + { + "name": "Marc Ostermeier" + } + ], + "kind": "eval", + "score": 4.16, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.314" + }, + "instructors": [ + { + "name": "Stephen Farias" + } + ], + "kind": "eval", + "score": 4.03, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.314" + }, + "instructors": [ + { + "name": "Lilian Josephson" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.314" + }, + "instructors": [ + { + "name": "David Gracias" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.263" + }, + "instructors": [ + { + "name": "Greg Duffee" + } + ], + "kind": "eval", + "score": 3.84, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.317" + }, + "instructors": [ + { + "name": "Steve Drigotas" + } + ], + "kind": "eval", + "score": 3.68, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.250.205" + }, + "instructors": [ + { + "name": "Ana Damjanovic" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.250.205" + }, + "instructors": [ + { + "name": "Maria Procopio" + } + ], + "kind": "eval", + "score": 4.24, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.250.205" + }, + "instructors": [ + { + "name": "Maria Procopio" + } + ], + "kind": "eval", + "score": 3.94, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.250.205" + }, + "instructors": [ + { + "name": "Ana Damjanovic" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.570.616" + }, + "instructors": [ + { + "name": "Hugh Ellis" + } + ], + "kind": "eval", + "score": 4.09, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.290.101" + }, + "instructors": [ + { + "name": "Amy Balanoff" + } + ], + "kind": "eval", + "score": 3.88, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.652" + }, + "instructors": [ + { + "name": "Konstantinos Konstantopoulos" + } + ], + "kind": "eval", + "score": 4.03, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.603" + }, + "instructors": [ + { + "name": "Soumyadipta Acharya" + } + ], + "kind": "eval", + "score": 4.3, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.376.221" + }, + "instructors": [ + { + "name": "Joshua Fishbein" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.381.102" + }, + "instructors": [ + { + "name": "Radhi Datla" + } + ], + "kind": "eval", + "score": 4.11, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.766" + }, + "instructors": [ + { + "name": "Amitabh Basu" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.570.607" + }, + "instructors": [ + { + "name": "Ben Hobbs" + } + ], + "kind": "eval", + "score": 4.55, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.414" + }, + "instructors": [ + { + "name": "Annette Leps" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.656" + }, + "instructors": [ + { + "name": "Russell Taylor" + } + ], + "kind": "eval", + "score": 4.59, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.691" + }, + "instructors": [ + { + "name": "Maia Stiber" + } + ], + "kind": "eval", + "score": 3.85, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.650.672" + }, + "instructors": [ + { + "name": "Yingchuan Zhang" + } + ], + "kind": "eval", + "score": 4.47, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.626" + }, + "instructors": [ + { + "name": "Subas Acharya" + } + ], + "kind": "eval", + "score": 3.86, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.663.640" + }, + "instructors": [ + { + "name": "Herman Goodyear" + } + ], + "kind": "eval", + "score": 4.48, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.424" + }, + "instructors": [ + { + "name": "John Ratnanather" + } + ], + "kind": "eval", + "score": 3.81, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.424" + }, + "instructors": [ + { + "name": "Eileen Haase" + } + ], + "kind": "eval", + "score": 3.96, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.424" + }, + "instructors": [ + { + "name": "Connor Pyles" + } + ], + "kind": "eval", + "score": 3.97, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.424" + }, + "instructors": [ + { + "name": "Xiaoqin Wang" + } + ], + "kind": "eval", + "score": 4.0, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.424" + }, + "instructors": [ + { + "name": "Patrick Kanold" + } + ], + "kind": "eval", + "score": 4.06, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.153" + }, + "instructors": [ + { + "name": "Rebecca Pearlman" + } + ], + "kind": "eval", + "score": 3.88, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.638" + }, + "instructors": [ + { + "name": "Adam Charles" + } + ], + "kind": "eval", + "score": 4.16, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.691" + }, + "instructors": [ + { + "name": "Reza Shadmehr" + } + ], + "kind": "eval", + "score": 4.47, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.650.654" + }, + "instructors": [ + { + "name": "Xiangyang Li" + } + ], + "kind": "eval", + "score": 4.34, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.675" + }, + "instructors": [ + { + "name": "Raman Arora" + } + ], + "kind": "eval", + "score": 3.9, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.601" + }, + "instructors": [ + { + "name": "Rigoberto Hernandez" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.130.177" + }, + "instructors": [ + { + "name": "Michael Harrower" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.375" + }, + "instructors": [ + { + "name": "Lauren Ross" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.190.322" + }, + "instructors": [ + { + "name": "Robert Lieberman" + } + ], + "kind": "eval", + "score": 4.07, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.442" + }, + "instructors": [ + { + "name": "Sunita Thyagarajan" + } + ], + "kind": "eval", + "score": 4.11, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.211.316" + }, + "instructors": [ + { + "name": "Flavia De azeredo cerqueira" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.250.105" + }, + "instructors": [ + { + "name": "Maria Procopio" + } + ], + "kind": "eval", + "score": 3.93, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.250.105" + }, + "instructors": [ + { + "name": "Linda Delibero" + } + ], + "kind": "eval", + "score": 3.94, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.250.105" + }, + "instructors": [ + { + "name": "Annette Porter" + } + ], + "kind": "eval", + "score": 3.97, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.436" + }, + "instructors": [ + { + "name": "Tamas Budavari" + } + ], + "kind": "eval", + "score": 3.86, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.436" + }, + "instructors": [ + { + "name": "Tamas Budavari" + } + ], + "kind": "eval", + "score": 3.79, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.570.657" + }, + "instructors": [ + { + "name": "Hugh Ellis" + } + ], + "kind": "eval", + "score": 4.03, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.333" + }, + "instructors": [ + { + "name": "Mia Russell" + } + ], + "kind": "eval", + "score": 4.0, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.308" + }, + "instructors": [ + { + "name": "Gueter Aurelien" + } + ], + "kind": "eval", + "score": 4.29, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.133" + }, + "instructors": [ + { + "name": "Steve Drigotas" + } + ], + "kind": "eval", + "score": 3.83, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.200.133" + }, + "instructors": [ + { + "name": "Steve Drigotas" + } + ], + "kind": "eval", + "score": 3.88, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.663.666" + }, + "instructors": [ + { + "name": "Mia Russell" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.116" + }, + "instructors": [ + { + "name": "Steven Marra" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.389.202" + }, + "instructors": [ + { + "name": "Robert Forloney" + } + ], + "kind": "eval", + "score": 4.02, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.302" + }, + "instructors": [ + { + "name": "Brandon Bangsboll" + } + ], + "kind": "eval", + "score": 4.47, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.302" + }, + "instructors": [ + { + "name": "Shaun Stoner" + } + ], + "kind": "eval", + "score": 4.53, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.374.302" + }, + "instructors": [ + { + "name": "Zachery Yeager" + } + ], + "kind": "eval", + "score": 4.5, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.230.150" + }, + "instructors": [ + { + "name": "Christy Thornton" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.270.317" + }, + "instructors": [ + { + "name": "Jerry Burgess" + } + ], + "kind": "eval", + "score": 4.48, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.414" + }, + "instructors": [ + { + "name": "Michelle Zwernemann" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.414" + }, + "instructors": [ + { + "name": "Elizabeth Logsdon" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.220" + }, + "instructors": [ + { + "name": "Mohammad ali Darvish darab" + } + ], + "kind": "eval", + "score": 4.12, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.601.220" + }, + "instructors": [ + { + "name": "David Hovemeyer" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.220" + }, + "instructors": [ + { + "name": "Mohammad ali Darvish darab" + } + ], + "kind": "eval", + "score": 4.02, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.220" + }, + "instructors": [ + { + "name": "Juan Barragan" + } + ], + "kind": "eval", + "score": 4.3, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.601.220" + }, + "instructors": [ + { + "name": "David Hovemeyer" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.660.346" + }, + "instructors": [ + { + "name": "Nusaybah Abu-mulaweh" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.346" + }, + "instructors": [ + { + "name": "Alissa Burkholder murphy" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.346" + }, + "instructors": [ + { + "name": "Jenna Frye" + } + ], + "kind": "eval", + "score": 4.45, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.497" + }, + "instructors": [ + { + "name": "Michelle Zwernemann" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.020.316" + }, + "instructors": [ + { + "name": "Robert Horner" + } + ], + "kind": "eval", + "score": 3.96, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.337" + }, + "instructors": [ + { + "name": "Barry Zirkin" + } + ], + "kind": "eval", + "score": 3.9, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.194.205" + }, + "instructors": [ + { + "name": "Homayra Ziad" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.112" + }, + "instructors": [ + { + "name": "Michelle Zwernemann" + } + ], + "kind": "eval", + "score": 4.46, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.112" + }, + "instructors": [ + { + "name": "Constanza Miranda mendoza" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.112" + }, + "instructors": [ + { + "name": "Elizabeth Logsdon" + } + ], + "kind": "eval", + "score": 4.43, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.112" + }, + "instructors": [ + { + "name": "Nicholas Durr" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.211" + }, + "instructors": [ + { + "name": "Chikako Mese" + } + ], + "kind": "eval", + "score": 3.83, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.171.106" + }, + "instructors": [ + { + "name": "Danielle Speller" + } + ], + "kind": "eval", + "score": 3.69, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.190.334" + }, + "instructors": [ + { + "name": "Calvin Terbeek" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.664" + }, + "instructors": [ + { + "name": "Jeremias Sulam" + } + ], + "kind": "eval", + "score": 4.11, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.663.671" + }, + "instructors": [ + { + "name": "Bill Smedick" + } + ], + "kind": "eval", + "score": 3.79, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.212.334" + }, + "instructors": [ + { + "name": "Elena Russo" + } + ], + "kind": "eval", + "score": 4.4, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.050.105" + }, + "instructors": [ + { + "name": "Michael Mccloskey" + } + ], + "kind": "eval", + "score": 3.9, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.295" + }, + "instructors": [ + { + "name": "Mario Micheli" + } + ], + "kind": "eval", + "score": 4.49, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.510.311" + }, + "instructors": [ + { + "name": "Dingchang Lin" + } + ], + "kind": "eval", + "score": 3.87, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.442" + }, + "instructors": [ + { + "name": "Warren Grayson" + } + ], + "kind": "eval", + "score": 3.91, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.580.442" + }, + "instructors": [ + { + "name": "Jennifer Elisseeff" + } + ], + "kind": "eval", + "score": 3.86, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.660.105" + }, + "instructors": [ + { + "name": "Illysa Izenberg" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.105" + }, + "instructors": [ + { + "name": "Rob Murray" + } + ], + "kind": "eval", + "score": 4.02, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.707" + }, + "instructors": [ + { + "name": "Simon Leonard" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.681" + }, + "instructors": [ + { + "name": "Chao Wang" + } + ], + "kind": "eval", + "score": 4.44, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.683" + }, + "instructors": [ + { + "name": "Rachel Karchin" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.663.676" + }, + "instructors": [ + { + "name": "Sascha Cocron" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.663.676" + }, + "instructors": [ + { + "name": "David Long" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.645" + }, + "instructors": [ + { + "name": "David Audley" + } + ], + "kind": "eval", + "score": 3.0, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.408" + }, + "instructors": [ + { + "name": "Michelle Zwernemann" + } + ], + "kind": "eval", + "score": 4.34, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.408" + }, + "instructors": [ + { + "name": "Elizabeth Logsdon" + } + ], + "kind": "eval", + "score": 4.3, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.660.340" + }, + "instructors": [ + { + "name": "Joshua Reiter" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.140.302" + }, + "instructors": [ + { + "name": "Lijing Jiang" + } + ], + "kind": "eval", + "score": 4.0, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.140.302" + }, + "instructors": [ + { + "name": "Alison Mcmanus" + } + ], + "kind": "eval", + "score": 4.14, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.783" + }, + "instructors": [ + { + "name": "Alan Yuille" + } + ], + "kind": "eval", + "score": 3.96, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.402" + }, + "instructors": [ + { + "name": "Anna Coppola" + } + ], + "kind": "eval", + "score": 3.52, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.302" + }, + "instructors": [ + { + "name": "Kit Bowen" + } + ], + "kind": "eval", + "score": 3.7, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.526" + }, + "instructors": [ + { + "name": "Thomas Lectka" + } + ], + "kind": "eval", + "score": 4.67, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.321" + }, + "instructors": [ + { + "name": "Jason Trageser" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.200" + }, + "instructors": [ + { + "name": "Kate Keleher" + } + ], + "kind": "eval", + "score": 4.6, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.220.200" + }, + "instructors": [ + { + "name": "Kate Keleher" + } + ], + "kind": "eval", + "score": 4.55, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.200" + }, + "instructors": [ + { + "name": "Katie Moulton" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.150.300" + }, + "instructors": [ + { + "name": "Cara Cummings" + } + ], + "kind": "eval", + "score": 3.83, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.106" + }, + "instructors": [ + { + "name": "Jamie Young" + } + ], + "kind": "eval", + "score": 4.25, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.106" + }, + "instructors": [ + { + "name": "Jamie Young" + } + ], + "kind": "eval", + "score": 4.48, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.171.702" + }, + "instructors": [ + { + "name": "Marc Kamionkowski" + } + ], + "kind": "eval", + "score": 4.51, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.241" + }, + "instructors": [ + { + "name": "Somasree Dasgupta" + } + ], + "kind": "eval", + "score": 4.02, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.280.347" + }, + "instructors": [ + { + "name": "Margaret Taub" + } + ], + "kind": "eval", + "score": 4.45, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.620" + }, + "instructors": [ + { + "name": "Fred Torcaso" + } + ], + "kind": "eval", + "score": 4.26, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.620" + }, + "instructors": [ + { + "name": "Fred Torcaso" + } + ], + "kind": "eval", + "score": 4.22, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.648" + }, + "instructors": [ + { + "name": "Trac duy Tran" + } + ], + "kind": "eval", + "score": 4.01, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.615" + }, + "instructors": [ + { + "name": "John Goutsias" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.111" + }, + "instructors": [ + { + "name": "Aseel Titi" + } + ], + "kind": "eval", + "score": 3.66, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.553.420" + }, + "instructors": [ + { + "name": "Fred Torcaso" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.553.420" + }, + "instructors": [ + { + "name": "Fred Torcaso" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.212" + }, + "instructors": [ + { + "name": "J d Tovar" + } + ], + "kind": "eval", + "score": 4.48, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.328" + }, + "instructors": [ + { + "name": "Dani Smith" + } + ], + "kind": "eval", + "score": 4.47, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.196.301" + }, + "instructors": [ + { + "name": "Scott Warren" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.302" + }, + "instructors": [ + { + "name": "Kate Keleher" + } + ], + "kind": "eval", + "score": 4.54, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.225.323" + }, + "instructors": [ + { + "name": "William Roche" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.738" + }, + "instructors": [ + { + "name": "Andreas Andreou" + } + ], + "kind": "eval", + "score": 3.53, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.445" + }, + "instructors": [ + { + "name": "Sina Hazratpour" + } + ], + "kind": "eval", + "score": 3.35, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.180.361" + }, + "instructors": [ + { + "name": "Somasree Dasgupta" + } + ], + "kind": "eval", + "score": 4.29, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.250.310" + }, + "instructors": [ + { + "name": "Ananya Majumdar" + } + ], + "kind": "eval", + "score": 4.47, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.640" + }, + "instructors": [ + { + "name": "Feilim Mac gabhann" + } + ], + "kind": "eval", + "score": 4.42, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.215" + }, + "instructors": [ + { + "name": "Vicky Nguyen" + } + ], + "kind": "eval", + "score": 4.02, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.570.353" + }, + "instructors": [ + { + "name": "Ciaran Harman" + } + ], + "kind": "eval", + "score": 2.83, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.570.421" + }, + "instructors": [ + { + "name": "Ciaran Harman" + } + ], + "kind": "eval", + "score": 3.94, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.570.421" + }, + "instructors": [ + { + "name": "Harihar Rajaram" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.570.421" + }, + "instructors": [ + { + "name": "Hedy Alavi" + } + ], + "kind": "eval", + "score": 4.1, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.101" + }, + "instructors": [ + { + "name": "Kenneth Karlin" + } + ], + "kind": "eval", + "score": 3.25, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.030.101" + }, + "instructors": [ + { + "name": "Joel Tolman" + } + ], + "kind": "eval", + "score": 3.53, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.030.101" + }, + "instructors": [ + { + "name": "Sunita Thyagarajan" + } + ], + "kind": "eval", + "score": 3.89, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.378.116" + }, + "instructors": [ + { + "name": "Rena Naganuma" + } + ], + "kind": "eval", + "score": 4.64, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.378.116" + }, + "instructors": [ + { + "name": "Yuki Johnson" + } + ], + "kind": "eval", + "score": 4.63, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.601.621" + }, + "instructors": [ + { + "name": "Ali Madooei" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.661.250" + }, + "instructors": [ + { + "name": "Jason Heiserman" + } + ], + "kind": "eval", + "score": 4.17, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.661.250" + }, + "instructors": [ + { + "name": "Andy Ross" + } + ], + "kind": "eval", + "score": 4.41, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.661.250" + }, + "instructors": [ + { + "name": "Kevin Dungey" + } + ], + "kind": "eval", + "score": 4.35, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.661.250" + }, + "instructors": [ + { + "name": "Julie Reiser" + } + ], + "kind": "eval", + "score": 4.69, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.661.250" + }, + "instructors": [ + { + "name": "Joshua Reiter" + } + ], + "kind": "eval", + "score": 4.52, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.661.250" + }, + "instructors": [ + { + "name": "Sarah Smith" + } + ], + "kind": "eval", + "score": 4.47, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.661.250" + }, + "instructors": [ + { + "name": "Jason Heiserman" + } + ], + "kind": "eval", + "score": 4.33, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.661.250" + }, + "instructors": [ + { + "name": "Andy Ross" + } + ], + "kind": "eval", + "score": 4.29, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.190.379" + }, + "instructors": [ + { + "name": "Matthew Kocher" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.192.210" + }, + "instructors": [ + { + "name": "Yunshan Ye" + } + ], + "kind": "eval", + "score": 3.7, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.280.350" + }, + "instructors": [ + { + "name": "Michael Schneider" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.280.350" + }, + "instructors": [ + { + "name": "Heather Mckay" + } + ], + "kind": "eval", + "score": 4.04, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.280.350" + }, + "instructors": [ + { + "name": "Michael Schneider" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.280.350" + }, + "instructors": [ + { + "name": "Heather Mckay" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.280.101" + }, + "instructors": [ + { + "name": "Maria Bulzacchelli" + } + ], + "kind": "eval", + "score": 4.07, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.280.101" + }, + "instructors": [ + { + "name": "Maria Bulzacchelli" + } + ], + "kind": "eval", + "score": 3.84, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.380.402" + }, + "instructors": [ + { + "name": "Soo yun Kim" + } + ], + "kind": "eval", + "score": 4.6, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.570.448" + }, + "instructors": [ + { + "name": "Josh Weiss" + } + ], + "kind": "eval", + "score": 4.58, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.644" + }, + "instructors": [ + { + "name": "Kevin Yarema" + } + ], + "kind": "eval", + "score": 4.06, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.622" + }, + "instructors": [ + { + "name": "Xiongyi Huang" + } + ], + "kind": "eval", + "score": 3.96, + "summary": "", + "term": "Intersession", + "year": "Intersession:2023" + }, + { + "course": { + "code": "AS.050.325" + }, + "instructors": [ + { + "name": "Colin Wilson" + } + ], + "kind": "eval", + "score": 4.11, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.340" + }, + "instructors": [ + { + "name": "Debby Haskins" + } + ], + "kind": "eval", + "score": 4.54, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.061.152" + }, + "instructors": [ + { + "name": "Jimmy Roche" + } + ], + "kind": "eval", + "score": 4.18, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.250" + }, + "instructors": [ + { + "name": "Jason Trageser" + } + ], + "kind": "eval", + "score": 4.24, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.080.250" + }, + "instructors": [ + { + "name": "Susanne Sterbing-d'angelo" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.080.250" + }, + "instructors": [ + { + "name": "Bob Ross" + } + ], + "kind": "eval", + "score": 4.21, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.080.250" + }, + "instructors": [ + { + "name": "Jason Trageser" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.250" + }, + "instructors": [ + { + "name": "Susanne Sterbing-d'angelo" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.080.250" + }, + "instructors": [ + { + "name": "Bob Ross" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.311" + }, + "instructors": [ + { + "name": "Yifu Zhou" + } + ], + "kind": "eval", + "score": 3.71, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.301" + }, + "instructors": [ + { + "name": "Yannis Kevrekidis" + } + ], + "kind": "eval", + "score": 3.67, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.301" + }, + "instructors": [ + { + "name": "Thi Vo" + } + ], + "kind": "eval", + "score": 3.71, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.150.219" + }, + "instructors": [ + { + "name": "Hilary Bok" + } + ], + "kind": "eval", + "score": 3.12, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.020.152" + }, + "instructors": [ + { + "name": "Rebecca Pearlman" + } + ], + "kind": "eval", + "score": 3.86, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.152" + }, + "instructors": [ + { + "name": "Richard Shingles" + } + ], + "kind": "eval", + "score": 3.8, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.152" + }, + "instructors": [ + { + "name": "Christov Roberson" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.152" + }, + "instructors": [ + { + "name": "Richard Shingles" + } + ], + "kind": "eval", + "score": 4.06, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.070.402" + }, + "instructors": [ + { + "name": "Anand Pandian" + } + ], + "kind": "eval", + "score": 3.63, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.070.402" + }, + "instructors": [ + { + "name": "Shashawnda Campbell" + } + ], + "kind": "eval", + "score": 3.66, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.370.115" + }, + "instructors": [ + { + "name": "Matthew Sampson" + } + ], + "kind": "eval", + "score": 4.36, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "EN.520.692" + }, + "instructors": [ + { + "name": "Philippe Pouliquen" + } + ], + "kind": "eval", + "score": 4.03, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.681" + }, + "instructors": [ + { + "name": "Joseph Greenstein" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.620" + }, + "instructors": [ + { + "name": "John Toscano" + } + ], + "kind": "eval", + "score": 4.5, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.530.410" + }, + "instructors": [ + { + "name": "Sean Sun" + } + ], + "kind": "eval", + "score": 4.08, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.020.154" + }, + "instructors": [ + { + "name": "Rebecca Pearlman" + } + ], + "kind": "eval", + "score": 4.02, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.413" + }, + "instructors": [ + { + "name": "Ashwin Iyengar" + } + ], + "kind": "eval", + "score": 4.16, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.110.413" + }, + "instructors": [ + { + "name": "Lauren Ross" + } + ], + "kind": "eval", + "score": 4.43, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.173.112" + }, + "instructors": [ + { + "name": "Reid Mumford" + } + ], + "kind": "eval", + "score": 4.07, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.173.112" + }, + "instructors": [ + { + "name": "Reid Mumford" + } + ], + "kind": "eval", + "score": 3.99, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.173.112" + }, + "instructors": [ + { + "name": "Reid Mumford" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.173.116" + }, + "instructors": [ + { + "name": "Reid Mumford" + } + ], + "kind": "eval", + "score": 4.41, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.378.416" + }, + "instructors": [ + { + "name": "Rena Naganuma" + } + ], + "kind": "eval", + "score": 4.68, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.306" + }, + "instructors": [ + { + "name": "Yayuan Liu" + } + ], + "kind": "eval", + "score": 4.19, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.500.114" + }, + "instructors": [ + { + "name": "David Kraemer" + } + ], + "kind": "eval", + "score": 3.75, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.623" + }, + "instructors": [ + { + "name": "Jerry Prince" + } + ], + "kind": "eval", + "score": 4.33, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.520.617" + }, + "instructors": [ + { + "name": "Howard Weinert" + } + ], + "kind": "eval", + "score": 3.95, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.102" + }, + "instructors": [ + { + "name": "Sunita Thyagarajan" + } + ], + "kind": "eval", + "score": 3.47, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.030.102" + }, + "instructors": [ + { + "name": "Jamie Young" + } + ], + "kind": "eval", + "score": 4.47, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "AS.180.301" + }, + "instructors": [ + { + "name": "Sohani Fatehin" + } + ], + "kind": "eval", + "score": 3.87, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.106" + }, + "instructors": [ + { + "name": "Chase Atherton" + } + ], + "kind": "eval", + "score": 3.95, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.220.106" + }, + "instructors": [ + { + "name": "Megan Robinson" + } + ], + "kind": "eval", + "score": 4.34, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.220.106" + }, + "instructors": [ + { + "name": "Kate Keleher" + } + ], + "kind": "eval", + "score": 4.43, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.220.106" + }, + "instructors": [ + { + "name": "Caroline Wray" + } + ], + "kind": "eval", + "score": 4.37, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.106" + }, + "instructors": [ + { + "name": "Dylan Carpenter" + } + ], + "kind": "eval", + "score": 4.2, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.106" + }, + "instructors": [ + { + "name": "Brianna Steidle" + } + ], + "kind": "eval", + "score": 4.29, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.106" + }, + "instructors": [ + { + "name": "Kosisochukwu Ugwueze" + } + ], + "kind": "eval", + "score": 4.33, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.106" + }, + "instructors": [ + { + "name": "Katy Gathright" + } + ], + "kind": "eval", + "score": 4.27, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.106" + }, + "instructors": [ + { + "name": "Eric Emmons" + } + ], + "kind": "eval", + "score": 4.28, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.106" + }, + "instructors": [ + { + "name": "Melissa Cook" + } + ], + "kind": "eval", + "score": 3.98, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.106" + }, + "instructors": [ + { + "name": "Hye ji Choi" + } + ], + "kind": "eval", + "score": 4.38, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.106" + }, + "instructors": [ + { + "name": "Regan Green" + } + ], + "kind": "eval", + "score": 4.35, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.106" + }, + "instructors": [ + { + "name": "Josiah Cox" + } + ], + "kind": "eval", + "score": 4.31, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.220.106" + }, + "instructors": [ + { + "name": "Kate Keleher" + } + ], + "kind": "eval", + "score": 4.64, + "summary": "", + "term": "Summer", + "year": "Summer:2023" + }, + { + "course": { + "code": "EN.530.216" + }, + "instructors": [ + { + "name": "Steven Marra" + } + ], + "kind": "eval", + "score": 4.65, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.540.645" + }, + "instructors": [ + { + "name": "Marc Donohue" + } + ], + "kind": "eval", + "score": 4.67, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.307" + }, + "instructors": [ + { + "name": "Danielle Ploetz" + } + ], + "kind": "eval", + "score": 4.11, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.376.222" + }, + "instructors": [ + { + "name": "Joshua Fishbein" + } + ], + "kind": "eval", + "score": 3.92, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.560.601" + }, + "instructors": [ + { + "name": "Dimitrios Giovanis" + } + ], + "kind": "eval", + "score": 4.14, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "AS.200.141" + }, + "instructors": [ + { + "name": "Bob Ross" + } + ], + "kind": "eval", + "score": 4.32, + "summary": "", + "term": "Fall", + "year": "Fall:2022" + }, + { + "course": { + "code": "AS.200.141" + }, + "instructors": [ + { + "name": "Dani Smith" + } + ], + "kind": "eval", + "score": 4.05, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.580.743" + }, + "instructors": [ + { + "name": "Alexis Battle" + } + ], + "kind": "eval", + "score": 4.66, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + }, + { + "course": { + "code": "EN.500.115" + }, + "instructors": [ + { + "name": "Siamak Ardekani" + } + ], + "kind": "eval", + "score": 3.84, + "summary": "", + "term": "Spring", + "year": "Spring:2023" + } + ], + "$meta": { + "$schools": { + "jhu": {} + } + } +} \ No newline at end of file diff --git a/parsing/schools/jhu/evals.py b/parsing/schools/jhu/evals.py index 22d34bd1c5..0492ebf8e2 100644 --- a/parsing/schools/jhu/evals.py +++ b/parsing/schools/jhu/evals.py @@ -10,11 +10,9 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - import os import re -import urllib +import urllib.request, urllib.parse, urllib.error from bs4 import BeautifulSoup from django.conf import settings @@ -32,12 +30,10 @@ class Parser(BaseParser): THRESH_PATTERN (:obj:`re`): identify valid evals. """ - CODE_PATTERN = re.compile(r'^[A-Z]{2}\.\d{3}\.\d{3}\..*$') - SCORE_PATTERN = re.compile(r'.*(\d\.\d\d).*') - THRESH_PATTERN = re.compile(r'This class had 5 or fewer comments\.') - SUMMARY_PATTERN = re.compile( - r'Summary:.*|This class had 5 or fewer comments\.' - ) + CODE_PATTERN = re.compile(r"^[A-Z]{2}\.\d{3}\.\d{3}\..*$") + SCORE_PATTERN = re.compile(r".*(\d\.\d\d).*") + THRESH_PATTERN = re.compile(r"This class had 5 or fewer comments\.") + SUMMARY_PATTERN = re.compile(r"Summary:.*|This class had 5 or fewer comments\.") def __init__(self, **kwargs): """Create Hopkins eval parser instance. @@ -45,7 +41,7 @@ def __init__(self, **kwargs): Args: **kwargs: pass-through """ - super(Parser, self).__init__('jhu', **kwargs) + super(Parser, self).__init__("jhu", **kwargs) def start(self, **kwargs): """Start parsing. @@ -53,36 +49,27 @@ def start(self, **kwargs): Args: **kwargs: Nothing. """ - directory = '{}/{}/schools/jhu/HopkinsEvaluations'.format(os.getcwd(), settings.PARSING_MODULE) + directory = "{}/{}/schools/jhu/HopkinsEvaluations".format( + os.getcwd(), settings.PARSING_MODULE + ) for fn in os.listdir(directory): - term, year = os.path.splitext(fn)[0].split(':') - eval_file_path = '{}/{}'.format(directory, fn) - soup = BeautifulSoup(urllib.urlopen(eval_file_path).read(), - 'html.parser') - self._process_soup(soup, term, year) + term, year = os.path.splitext(fn)[0].split("_") + eval_file_path = "{}/{}".format(directory, fn) + with open(eval_file_path, mode="r") as f: + soup = BeautifulSoup(f.read(), "html.parser") + self._process_soup(soup, term, year) def _process_soup(self, soup, term, year): - course_codes = list(set(soup.find_all( - 'b', - text=Parser.CODE_PATTERN)) - ) + course_codes = list(set(soup.find_all("b", text=Parser.CODE_PATTERN))) for cc in course_codes: code = cc.contents[0] - title = cc.find_next('b').contents[0] - profs = title.find_next('b').contents[0] - score = self._get_score(profs.find_next( - text=Parser.SCORE_PATTERN) - ) - summary = self._get_summary(title.find_next( - 'p', - text=Parser.SUMMARY_PATTERN) + title = cc.find_next("b").contents[0] + profs = title.find_next("b").contents[0] + score = self._get_score(profs.find_next(text=Parser.SCORE_PATTERN)) + summary = self._get_summary( + title.find_next("p", text=Parser.SUMMARY_PATTERN) ) - self._make_review_item(code, - profs.split(','), - score, - summary, - term, - year) + self._make_review_item(code, profs.split(","), score, summary, term, year) def _get_summary(self, summary_header): if re.match(Parser.THRESH_PATTERN, summary_header.text): @@ -93,24 +80,24 @@ def _get_summary(self, summary_header): if tag.name == "p": if tag.text.find("write-in") != -1: break - elif ('left:450px;' not in tag['style'] and - len(tag.find_all()) == 0): + elif "left:450px;" not in tag["style"] and len(tag.find_all()) == 0: summary.append(tag.text) - elif ("left:108px" in tag['style'] and - re.match(Parser.CODE_PATTERN, tag.text)): + elif "left:108px" in tag["style"] and re.match( + Parser.CODE_PATTERN, tag.text + ): break tag = tag.find_next() - return ''.join(summary) + return "".join(summary) def _get_score(self, raw): match = re.search(Parser.SCORE_PATTERN, raw) return match.group(1) def _make_review_item(self, code, profs, score, summary, term, year): - self.ingestor['year'] = year - self.ingestor['term'] = term - self.ingestor['summary'] = summary - self.ingestor['score'] = min(5, float(score)) - self.ingestor['instrs'] = profs - self.ingestor['course_code'] = code.strip()[:10] + self.ingestor["year"] = year + self.ingestor["term"] = term + self.ingestor["summary"] = summary + self.ingestor["score"] = min(5, float(score)) + self.ingestor["instrs"] = profs + self.ingestor["course_code"] = code.strip()[:10] self.ingestor.ingest_eval() diff --git a/parsing/schools/jhu/textbooks.py b/parsing/schools/jhu/textbooks.py deleted file mode 100644 index 1a26e75255..0000000000 --- a/parsing/schools/jhu/textbooks.py +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from parsing.common.bn_textbook_parser import BarnesAndNoblesParser - - -class Parser(BarnesAndNoblesParser): - """JHU Textbook Parser.""" - - def __init__(self, term="Fall", year=2017, **kwargs): - super(Parser, self).__init__( - "18053", - "johns-hopkins.bncollege.com", - "jhu", - ".", - term, - year, - **kwargs) diff --git a/parsing/schools/neu/__init__.py b/parsing/schools/neu/__init__.py index fb34bd259f..d5b4c18c9d 100644 --- a/parsing/schools/neu/__init__.py +++ b/parsing/schools/neu/__init__.py @@ -11,4 +11,5 @@ # GNU General Public License for more details. from parsing.schools import load_school_logger -load_school_logger('neu') + +load_school_logger("neu") diff --git a/parsing/schools/neu/courses.py b/parsing/schools/neu/courses.py index 88f9621d96..10e908635b 100644 --- a/parsing/schools/neu/courses.py +++ b/parsing/schools/neu/courses.py @@ -20,15 +20,15 @@ from parsing.library.base_parser import BaseParser -class Parser(BaseParser): +class Parser(BaseParser): def __init__(self, **kwargs): """Construct NEU parser object. Args: **kwargs: pass-through """ - super(Parser, self).__init__('neu', **kwargs) + super(Parser, self).__init__("neu", **kwargs) # Required to prevent the python code from writing courses.json. # The JS script saves the courses.json when using search neu scrapers. @@ -36,8 +36,6 @@ def end(self): pass def start(self, **kwargs): - - path = os.path.join(os.path.dirname(__file__), 'main.js') - subprocess.call(['node', '--max_old_space_size=8192', path]) + path = os.path.join(os.path.dirname(__file__), "main.js") + subprocess.call(["node", "--max_old_space_size=8192", path]) print("done scraping neu") - \ No newline at end of file diff --git a/parsing/schools/neu/main.js b/parsing/schools/neu/main.js index efc8568f21..0bd0a76033 100644 --- a/parsing/schools/neu/main.js +++ b/parsing/schools/neu/main.js @@ -1,19 +1,26 @@ -require('babel-core/register'); -require('babel-polyfill'); -const searchneu = require('searchneu'); -const path = require('path'); -const fs = require('fs'); +require("babel-core/register"); +require("babel-polyfill"); +const searchneu = require("searchneu"); +const path = require("path"); +const fs = require("fs"); -searchneu.default.main(true).then((retVal) => { - const semesterlyString = JSON.stringify(retVal, null, 4); - fs.writeFile(path.join(__dirname, 'data', 'courses.json'), semesterlyString, (err) => { - if (err) { - global.console.log(err); - return; - } +searchneu.default + .main(true) + .then((retVal) => { + const semesterlyString = JSON.stringify(retVal, null, 4); + fs.writeFile( + path.join(__dirname, "data", "courses.json"), + semesterlyString, + (err) => { + if (err) { + global.console.log(err); + return; + } - global.console.log('saved semesterly data'); + global.console.log("saved semesterly data"); + } + ); + }) + .catch((err) => { + global.console.log(err); }); -}).catch((err) => { - global.console.log(err); -}); diff --git a/parsing/schools/salisbury/__init__.py b/parsing/schools/salisbury/__init__.py index c7414f02b9..8f13abe8c6 100644 --- a/parsing/schools/salisbury/__init__.py +++ b/parsing/schools/salisbury/__init__.py @@ -11,4 +11,5 @@ # GNU General Public License for more details. from parsing.schools import load_school_logger -load_school_logger('salisbury') + +load_school_logger("salisbury") diff --git a/parsing/schools/salisbury/courses.py b/parsing/schools/salisbury/courses.py index ce8cac052f..ca04262986 100644 --- a/parsing/schools/salisbury/courses.py +++ b/parsing/schools/salisbury/courses.py @@ -16,8 +16,8 @@ class Parser(PeoplesoftParser): """Course parser for Salisbury University.""" - URL = 'https://gullnet.salisbury.edu/psc/csprdguest/EMPLOYEE/SA/c/COMMUNITY_ACCESS.CLASS_SEARCH.GBL' + URL = "https://gullnet.salisbury.edu/psc/csprdguest/EMPLOYEE/SA/c/COMMUNITY_ACCESS.CLASS_SEARCH.GBL" def __init__(self, **kwargs): """Construct Salisbury parsing object.""" - super(Parser, self).__init__('salisbury', Parser.URL, **kwargs) + super(Parser, self).__init__("salisbury", Parser.URL, **kwargs) diff --git a/parsing/schools/umd/__init__.py b/parsing/schools/umd/__init__.py index 34469a35f4..931e1490ec 100644 --- a/parsing/schools/umd/__init__.py +++ b/parsing/schools/umd/__init__.py @@ -11,4 +11,5 @@ # GNU General Public License for more details. from parsing.schools import load_school_logger -load_school_logger('umd') + +load_school_logger("umd") diff --git a/parsing/schools/umd/courses.py b/parsing/schools/umd/courses.py index 98bb97faea..28fbacf45f 100644 --- a/parsing/schools/umd/courses.py +++ b/parsing/schools/umd/courses.py @@ -10,8 +10,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - import re from parsing.library.base_parser import BaseParser @@ -24,21 +22,21 @@ def __init__(self, sem="Fall", year="2017", **kwargs): self.last_course = {} self.last_section = {} self.base_url = "http://ntst.umd.edu/soc/" - self.prereq_pattern = re.compile(r'Prerequisite:.*') - self.restr_pattern = re.compile(r'Restriction: :.*') - super(Parser, self).__init__('umd', **kwargs) + self.prereq_pattern = re.compile(r"Prerequisite:.*") + self.restr_pattern = re.compile(r"Restriction: :.*") + super(Parser, self).__init__("umd", **kwargs) def find_content(self, div_class, parent): try: return parent.find(class_=div_class).contents[0].strip() except: - return '' + return "" def find_url(self, div_class, parent): try: - return parent.find(class_=div_class)['href'] + return parent.find(class_=div_class)["href"] except: - return '' + return "" def find_cores(self, tag, parent): try: @@ -63,23 +61,25 @@ def find_gens(self, div_class, parent): def get_desc_from_course(self, course): try: - return course.find_all(class_='approved-course-text')[-1].contents[0].strip() + return ( + course.find_all(class_="approved-course-text")[-1].contents[0].strip() + ) except: - return '' + return "" def get_departments(self): """Get department in the specified semester in specified year.""" # HARD CODED - semester_map = {'Fall': '08', 'Spring': '01'} + semester_map = {"Fall": "08", "Spring": "01"} soup = self.requester.get(url=self.base_url) - prefix_rows = soup.findAll(class_='course-prefix row') + prefix_rows = soup.findAll(class_="course-prefix row") prefix_a_tags = [] departments = {} for row in prefix_rows: - prefix_a_tags.append(row.find('a')) + prefix_a_tags.append(row.find("a")) for link in prefix_a_tags: - spans = link.findAll('span') + spans = link.findAll("span") department_url = spans[0].string department_name = spans[1].string if self.semester == None or self.year == None: @@ -91,24 +91,26 @@ def get_departments(self): return departments def get_prerequisites(self, course): - prereq_match = course.find('strong', text=self.prereq_pattern) - prereq = '' + prereq_match = course.find("strong", text=self.prereq_pattern) + prereq = "" if prereq_match: - prereq = prereq_match.parent.get_text().strip().replace('Prerequisite:', '') - restr_match = course.find('strong', text=self.restr_pattern) + prereq = prereq_match.parent.get_text().strip().replace("Prerequisite:", "") + restr_match = course.find("strong", text=self.restr_pattern) if restr_match: - prereq += ' ' + restr_match.parent.get_text().strip().replace('Restriction: ', '') + prereq += " " + restr_match.parent.get_text().strip().replace( + "Restriction: ", "" + ) return prereq def get_courses(self, departments): num_created, num_updated = 0, 0 - for department_url, department_name in departments.items(): + for department_url, department_name in list(departments.items()): soup = self.requester.get(url=department_url) course_div = soup.findAll(class_="course") for c in course_div: cid = self.find_content("course-id", c) partial_url = self.find_url("toggle-sections-link", c) - if (partial_url == ''): + if partial_url == "": continue name = self.find_content("course-title", c) @@ -123,16 +125,16 @@ def get_courses(self, departments): level = re.findall(re.compile(r"^\D*(\d)"), cid)[0] + "00" - self.ingestor['cores'] = cores - self.ingestor['geneds'] = geneds - self.ingestor['level'] = level - self.ingestor['name'] = name - self.ingestor['description'] = description - self.ingestor['code'] = cid - self.ingestor['num_credits'] = credits - self.ingestor['department_name'] = department_name - self.ingestor['campus'] = 1 - self.ingestor['prerequisites'] = self.get_prerequisites(c) + self.ingestor["cores"] = cores + self.ingestor["geneds"] = geneds + self.ingestor["level"] = level + self.ingestor["name"] = name + self.ingestor["description"] = description + self.ingestor["code"] = cid + self.ingestor["num_credits"] = credits + self.ingestor["department_name"] = department_name + self.ingestor["campus"] = 1 + self.ingestor["prerequisites"] = self.get_prerequisites(c) course_model = self.ingestor.ingest_course() @@ -164,32 +166,33 @@ def get_sections(self, section_url, course_model): open_seats = self.find_content("open-seats-count", div) waitlist = self.find_content("waitlist-count", div) - self.ingestor['section'] = sid - self.ingestor['semester'] = self.semester - self.ingestor['instructors'] = instructors - self.ingestor['capacity'] = int(total_seats) - self.ingestor['enrollment'] = int(total_seats) - int(open_seats) - self.ingestor['waitlist'] = int(waitlist) - self.ingestor['year'] = self.year + self.ingestor["section"] = sid + self.ingestor["semester"] = self.semester + self.ingestor["instructors"] = instructors + self.ingestor["capacity"] = int(total_seats) + self.ingestor["enrollment"] = int(total_seats) - int(open_seats) + self.ingestor["waitlist"] = int(waitlist) + self.ingestor["year"] = self.year section_model = self.ingestor.ingest_section(course_model) - days = day.replace('Tu', 'T').replace('Th', 'R') + days = day.replace("Tu", "T").replace("Th", "R") valid_days = set(["M", "T", "W", "R", "F", "S", "U"]) for day in days: if day not in valid_days or not start_time or not end_time: continue - self.ingestor['day'] = day - self.ingestor['time_start'] = start_time - self.ingestor['time_end'] = end_time - self.ingestor['location'] = building + room + self.ingestor["day"] = day + self.ingestor["time_start"] = start_time + self.ingestor["time_end"] = end_time + self.ingestor["location"] = building + room self.ingestor.ingest_meeting(section_model) - def start(self, - years_and_terms_filter=None, - departments_filter=None, - textbooks=True, - verbosity=3): + def start( + self, + years_and_terms_filter=None, + departments_filter=None, + verbosity=3, + ): """Start the parse.""" for year, terms in years_and_terms_filter.items(): self.year = year diff --git a/parsing/schools/umd/textbooks.py b/parsing/schools/umd/textbooks.py deleted file mode 100644 index ec10215eac..0000000000 --- a/parsing/schools/umd/textbooks.py +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from parsing.common.bn_textbook_parser import BarnesAndNoblesParser - - -class Parser(BarnesAndNoblesParser): - """UMD Textbook parser.""" - - def __init__(self, term="Fall", year=2017,**kwargs): - super(Parser, self).__init__( - "15551", - "umcp.bncollege.com", - "umd", - "", - term, - year, - **kwargs) diff --git a/parsing/schools/umd/umd_evals.py b/parsing/schools/umd/umd_evals.py index a9e7b3752e..1fa595c5a7 100644 --- a/parsing/schools/umd/umd_evals.py +++ b/parsing/schools/umd/umd_evals.py @@ -14,17 +14,19 @@ # FIXME -- conform to datapipeline. import sys -import requests, cookielib +import requests, http.cookiejar from bs4 import BeautifulSoup import re import datetime import django import os + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") django.setup() django.setup() + class Professor: def __init__(self, name, rank, average_rating, num_reviews): self.name = name @@ -35,8 +37,13 @@ def __init__(self, name, rank, average_rating, num_reviews): def __str__(self): ret = ( - "Name: " + self.name + ", average rating: " + self.average_rating - + ", number of reviews: " + self.num_reviews + "reviews:\n" + "Name: " + + self.name + + ", average rating: " + + self.average_rating + + ", number of reviews: " + + self.num_reviews + + "reviews:\n" ) for review in self.reviews: @@ -64,27 +71,34 @@ def __init__(self, reviewer, rating, course, year, text, professor): summary=text, course_code=course, professor=professor, - year=year) + year=year, + ) if created: - print "Evaluation Object CREATED for: " + course + print("Evaluation Object CREATED for: " + course) else: - print "Evaluation Object FOUND for: " + course + print("Evaluation Object FOUND for: " + course) def __str__(self): return ( - "reviewer: " + self.reviewer + ", rating: " + str(self.rating) + ", course: " - + self.course + ", year: " + self.year + "\ntext: " + self.text + "\n" + "reviewer: " + + self.reviewer + + ", rating: " + + str(self.rating) + + ", course: " + + self.course + + ", year: " + + self.year + + "\ntext: " + + self.text + + "\n" ) class umdReview: - def __init__(self): self.s = requests.Session() - self.cookies = cookielib.CookieJar() - self.headers = { - 'User-Agent': 'My User Agent 1.0' - } + self.cookies = http.cookiejar.CookieJar() + self.headers = {"User-Agent": "My User Agent 1.0"} self.base_url = "http://www.ourumd.com/" self.professors = [] @@ -92,17 +106,16 @@ def get_html(self, url): html = None while html is None: try: - r = self.s.get(url,cookies=self.cookies,headers=self.headers) + r = self.s.get(url, cookies=self.cookies, headers=self.headers) if r.status_code == 200: html = r.text - except (requests.exceptions.Timeout, - requests.exceptions.ConnectionError): + except (requests.exceptions.Timeout, requests.exceptions.ConnectionError): continue - return html.encode('utf-8') + return html.encode("utf-8") def get_reviews(self, url, name): html = self.get_html(self.base_url + url) - soup = BeautifulSoup(html,"html.parser") + soup = BeautifulSoup(html, "html.parser") content = soup.find("div", {"id": "body"}) table = content.find("table") for row in table.findAll("tr"): @@ -151,7 +164,7 @@ def get_reviews(self, url, name): text = "" for paragraph in right_col: - text += str(paragraph.encode('utf-8').decode('ascii', 'ignore')) + text += str(paragraph.encode("utf-8").decode("ascii", "ignore")) text = text.replace("
    ", "") if course: @@ -159,7 +172,7 @@ def get_reviews(self, url, name): def get_professors(self, url): html = self.get_html(self.base_url + url) - soup = BeautifulSoup(html,"html.parser") + soup = BeautifulSoup(html, "html.parser") content = soup.find("div", {"id": "body"}) table = content.find("table") for row in table.findAll("tr"): @@ -172,7 +185,7 @@ def get_professors(self, url): rank = prof[0][:-1] - name = re.sub(' +',' ',prof[1].contents[0]) + name = re.sub(" +", " ", prof[1].contents[0]) review_url = prof[1].get("href") @@ -194,4 +207,4 @@ def parse_reviews(self): if __name__ == "__main__": u = umdReview() - profs = u.parse_reviews() \ No newline at end of file + profs = u.parse_reviews() diff --git a/parsing/schools/umich/__init__.py b/parsing/schools/umich/__init__.py index 2e27ff2312..7728de9778 100644 --- a/parsing/schools/umich/__init__.py +++ b/parsing/schools/umich/__init__.py @@ -11,4 +11,5 @@ # GNU General Public License for more details. from parsing.schools import load_school_logger -load_school_logger('umich') + +load_school_logger("umich") diff --git a/parsing/schools/umich/courses.py b/parsing/schools/umich/courses.py index ab067b05e2..190017b958 100644 --- a/parsing/schools/umich/courses.py +++ b/parsing/schools/umich/courses.py @@ -10,34 +10,34 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - from parsing.common.peoplesoft.courses import UPeoplesoftParser class Parser(UPeoplesoftParser): """Course parser for University of Michigan.""" - URL = 'https://csprod.dsc.umich.edu/psc/csprodpa/EMPLOYEE/HRMS/c/COMMUNITY_ACCESS.M_SR_SC_CLS_SRCH.GBL' - TERM_BASE_URL = 'https://csprod.dsc.umich.edu/services/schedofclasses' + URL = "https://csprod.dsc.umich.edu/psc/csprodpa/EMPLOYEE/HRMS/c/COMMUNITY_ACCESS.M_SR_SC_CLS_SRCH.GBL" + TERM_BASE_URL = "https://csprod.dsc.umich.edu/services/schedofclasses" YEARS_AND_TERMS = { - '2016': { - 'Summer': '2100', - 'Fall': '2110', + "2016": { + "Summer": "2100", + "Fall": "2110", + }, + "2017": { + "Winter": "2120", + "Spring": "2130", + "Spring/Summer": "2140", + "Summer": "2150", + "Fall": "2160", }, - '2017': { - 'Winter': '2120', - 'Spring': '2130', - 'Spring/Summer': '2140', - 'Summer': '2150', - 'Fall': '2160', - } } def __init__(self, **kwargs): """Construct new parsing instance.""" - super(Parser, self).__init__('umich', - Parser.URL, - term_base_url=Parser.TERM_BASE_URL, - years_and_terms=Parser.YEARS_AND_TERMS, - **kwargs) + super(Parser, self).__init__( + "umich", + Parser.URL, + term_base_url=Parser.TERM_BASE_URL, + years_and_terms=Parser.YEARS_AND_TERMS, + **kwargs + ) diff --git a/parsing/schools/umich/textbooks.py b/parsing/schools/umich/textbooks.py deleted file mode 100644 index 2cf081646b..0000000000 --- a/parsing/schools/umich/textbooks.py +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from parsing.common.bn_textbook_parser import BarnesAndNoblesParser - - -class Parser(BarnesAndNoblesParser): - """Textbook parser for University of Michigan.""" - - def __init__(self, term="Fall", year=2017, **kwargs): - super(Parser, self).__init__( - "28052", # storeid - "umichigan.bncollege.com", - "umich", - "-", - term, - year, - **kwargs) diff --git a/parsing/schools/uoft/__init__.py b/parsing/schools/uoft/__init__.py index 8617aa80e4..6a910885e0 100644 --- a/parsing/schools/uoft/__init__.py +++ b/parsing/schools/uoft/__init__.py @@ -11,4 +11,5 @@ # GNU General Public License for more details. from parsing.schools import load_school_logger -load_school_logger('uoft') + +load_school_logger("uoft") diff --git a/parsing/schools/uoft/courses.py b/parsing/schools/uoft/courses.py index 58a69d70d7..26d631171d 100644 --- a/parsing/schools/uoft/courses.py +++ b/parsing/schools/uoft/courses.py @@ -1,5 +1,18 @@ +# Copyright (C) 2017 Semester.ly Technologies, LLC +# +# Semester.ly is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Semester.ly is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + from parsing.library.base_parser import BaseParser -import requests, cookielib +import requests, http.cookiejar + # import http.cookiejar from bs4 import BeautifulSoup from collections import OrderedDict @@ -10,19 +23,24 @@ import sys import django import datetime -from HTMLParser import HTMLParser +from html.parser import HTMLParser + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") django.setup() from timetable.models import * + class MLStripper(HTMLParser): def __init__(self): self.reset() self.fed = [] + def handle_data(self, d): self.fed.append(d) + def get_data(self): - return ''.join(self.fed) + return "".join(self.fed) + def remove_html_tags(text): s = MLStripper() @@ -37,78 +55,105 @@ class Parser(BaseParser): def __init__(self, **kwargs): self.school = "uoft" - self.cookies = cookielib.CookieJar() + self.cookies = http.cookiejar.CookieJar() self.s = requests.Session() self.years_of_study = ["1", "2", "3", "4"] self.level_map = {"1": "100", "2": "200", "3": "300", "4": "400"} - self.day_map = {'MO': 'M', 'TU': 'T', 'WE': 'W', 'TH': 'R', 'FR': 'F', None: ''} + self.day_map = {"MO": "M", "TU": "T", "WE": "W", "TH": "R", "FR": "F", None: ""} self.errors = 0 - self.host = 'http://coursefinder.utoronto.ca/course-search/search' + self.host = "http://coursefinder.utoronto.ca/course-search/search" self.urls = None - self.cookies = cookielib.CookieJar() + self.cookies = http.cookiejar.CookieJar() self.s = requests.Session() self.new = 0 - super(Parser, self).__init__('uoft', **kwargs) + super(Parser, self).__init__("uoft", **kwargs) def get_school_name(self): return self.school + def split_into_parts(self, line, n): - return [line[i:i+n] for i in range(0, len(line), n)] + return [line[i : i + n] for i in range(0, len(line), n)] + def split_locations(self, line): - test = re.findall(r'[A-Z]{2} \d{3,4}', line) + test = re.findall(r"[A-Z]{2} \d{3,4}", line) if test: return test - test2 = re.findall(r'[A-Z]{2} [A-Z]+\d{2}', line) + test2 = re.findall(r"[A-Z]{2} [A-Z]+\d{2}", line) if test2: return test2 return [line] def start_engineering(self): - engineering_day_map = {"Mon": "M", "Tue": "T", "Wed": "W", "Thu": "T", "Fri": "F"} + engineering_day_map = { + "Mon": "M", + "Tue": "T", + "Wed": "W", + "Thu": "T", + "Fri": "F", + } try: for semester in ["fall", "winter"]: - print "Parsing " + semester + " for engineering" + print("Parsing " + semester + " for engineering") json = {} - print "Making request, will update when response received..." - request_url = "http://www.apsc.utoronto.ca/timetable/{}.html".format(semester) - soup = BeautifulSoup(self.s.get(url=request_url, cookies=self.cookies, timeout=15).text) - print "Response received. Initiating parse of response HTML." - tables = soup.find_all('table',attrs={"border": "border"}) + print("Making request, will update when response received...") + request_url = "http://www.apsc.utoronto.ca/timetable/{}.html".format( + semester + ) + soup = BeautifulSoup( + self.s.get(url=request_url, cookies=self.cookies, timeout=15).text + ) + print("Response received. Initiating parse of response HTML.") + tables = soup.find_all("table", attrs={"border": "border"}) data = [] for table in tables: - rows = table.find_all('tr') + rows = table.find_all("tr") for row in rows: - cols = row.find_all('td') + cols = row.find_all("td") cols = [ele.text.strip() for ele in cols] - split_row = [ele for ele in cols if ele] # Get rid of empty values - if not split_row: continue + split_row = [ + ele for ele in cols if ele + ] # Get rid of empty values + if not split_row: + continue assert len(split_row) == 9 course, section, _, day, start, end, loc, profs, __ = split_row - if day not in engineering_day_map: continue + if day not in engineering_day_map: + continue course = course.strip() section = section.strip() section = section[0] + section[3:] - print "On", course + ", section " + section + "..." + print("On", course + ", section " + section + "...") if course not in json: json[course] = {} if section not in json[course]: - json[course][section] = {'profs': profs.strip().replace(" ", "").replace(";", ""), 'offerings': []} - - json[course][section]['offerings'].append({ - 'day': engineering_day_map[day], - 'time_start': start.strip(), - 'time_end': end.strip(), - 'location': loc.strip(), - }) + json[course][section] = { + "profs": profs.strip() + .replace(" ", "") + .replace(";", ""), + "offerings": [], + } + + json[course][section]["offerings"].append( + { + "day": engineering_day_map[day], + "time_start": start.strip(), + "time_end": end.strip(), + "location": loc.strip(), + } + ) for course in json: code = course[:-1] - C, created = Course.objects.update_or_create(school="uoft", code=code,defaults={ - 'campus': code[-1], - 'num_credits': 1 if code[6].upper() == 'Y' else 0.5, - 'level': code[3] + "00", - 'department': code[:3] - }) + C, created = Course.objects.update_or_create( + school="uoft", + code=code, + defaults={ + "campus": code[-1], + "num_credits": 1 if code[6].upper() == "Y" else 0.5, + "level": code[3] + "00", + "department": code[:3], + }, + ) C.save() if created: self.new += 1 @@ -119,160 +164,191 @@ def start_engineering(self): section_type=section[0], semester=course[-1], defaults={ - 'instructors': json[course][section]['profs'], - }) + "instructors": json[course][section]["profs"], + }, + ) S.save() S.offering_set.all().delete() S.save() - for offering_dict in json[course][section]['offerings']: - o, created = Offering.objects.update_or_create(section=S, - day=offering_dict['day'], - time_start=offering_dict['time_start'], - time_end=offering_dict['time_end'], - defaults={ - 'location': offering_dict['location'] - }) + for offering_dict in json[course][section]["offerings"]: + o, created = Offering.objects.update_or_create( + section=S, + day=offering_dict["day"], + time_start=offering_dict["time_start"], + time_end=offering_dict["time_end"], + defaults={"location": offering_dict["location"]}, + ) o.save() - print "Done Engineering, found %d new courses (collectively) so far. Now wrapping up..." % (self.new) + print( + "Done Engineering, found %d new courses (collectively) so far. Now wrapping up..." + % (self.new) + ) except requests.ConnectionError: - print "Couldn't connect. Found %d new courses (collectively) so far. Now wrapping up..." % (self.new) + print( + "Couldn't connect. Found %d new courses (collectively) so far. Now wrapping up..." + % (self.new) + ) self.wrap_up() - def start(self, **kwargs): - print "Starting St. George." + print("Starting St. George.") for year_of_study in self.years_of_study: level = self.level_map[year_of_study] - print "Parsing year: {}".format(year_of_study) - request_url = "https://timetable.iit.artsci.utoronto.ca/api/courses?org=&code=§ion=&studyyear={}&daytime=&weekday=&prof=&breadth=".format(year_of_study) + print("Parsing year: {}".format(year_of_study)) + request_url = "https://timetable.iit.artsci.utoronto.ca/api/courses?org=&code=§ion=&studyyear={}&daytime=&weekday=&prof=&breadth=".format( + year_of_study + ) data = json.loads(self.s.get(url=request_url, cookies=self.cookies).text) for key in data: try: - course_data = data[key] - course_code = course_data['code'] - num_credits = 1 if course_code[6].upper() == 'Y' else 0.5 - - C, created = Course.objects.update_or_create(code=course_code, defaults={ - 'school': "uoft", - 'name': course_data['courseTitle'], - 'description': BeautifulSoup(course_data['courseDescription']).p.get_text(), - 'campus': course_code[-1], - 'areas': course_data['breadthCategories'][-3:], - 'prerequisites': course_data['prerequisite'], - 'exclusions': course_data['exclusion'], - 'num_credits': num_credits, - 'level': level, - 'department': course_code[:3] - }) - print "Course:", C, "New?:", created + course_code = course_data["code"] + num_credits = 1 if course_code[6].upper() == "Y" else 0.5 + + C, created = Course.objects.update_or_create( + code=course_code, + defaults={ + "school": "uoft", + "name": course_data["courseTitle"], + "description": BeautifulSoup( + course_data["courseDescription"] + ).p.get_text(), + "campus": course_code[-1], + "areas": course_data["breadthCategories"][-3:], + "prerequisites": course_data["prerequisite"], + "exclusions": course_data["exclusion"], + "num_credits": num_credits, + "level": level, + "department": course_code[:3], + }, + ) + print("Course:", C, "New?:", created) if created: self.new += 1 - meetings = course_data['meetings'] - semester = course_data['section'] + meetings = course_data["meetings"] + semester = course_data["section"] for section_key in meetings: - section = section_key.split("-")[0][0] + section_key.split("-")[-1] + section = ( + section_key.split("-")[0][0] + section_key.split("-")[-1] + ) section_data = meetings[section_key] - instructor_data = section_data['instructors'] + instructor_data = section_data["instructors"] instructors = "" for instructor in instructor_data: instructor_info = instructor_data[instructor] - instructors += instructor_info['firstName'] + " " + instructor_info['lastName'] + instructors += ( + instructor_info["firstName"] + + " " + + instructor_info["lastName"] + ) if instructors and instructors[-1] == ",": instructors = instructors[:-1] - size = section_data['enrollmentCapacity'] if section_data['enrollmentCapacity'] else 0 + size = ( + section_data["enrollmentCapacity"] + if section_data["enrollmentCapacity"] + else 0 + ) S, s_created = Section.objects.update_or_create( course=C, meeting_section=section, section_type=section[0], semester=semester, defaults={ - 'instructors': instructors, - 'size': size, - 'enrolment': 0, - }) + "instructors": instructors, + "size": size, + "enrolment": 0, + }, + ) S.save() S.offering_set.all().delete() - schedule = section_data['schedule'] + schedule = section_data["schedule"] for offering in schedule: offering_data = schedule[offering] try: - CO, co_created = Offering.objects.update_or_create(section=S, - day=self.day_map[offering_data['meetingDay']], - time_start=offering_data['meetingStartTime'], - time_end=offering_data['meetingEndTime'], - location='') + CO, co_created = Offering.objects.update_or_create( + section=S, + day=self.day_map[offering_data["meetingDay"]], + time_start=offering_data["meetingStartTime"], + time_end=offering_data["meetingEndTime"], + location="", + ) CO.save() except Exception as e: S.delete() - print e + print(e) self.errors += 1 break except Exception as f: import traceback + traceback.print_exc() - print "Total errors:", self.errors - print "Done St. George, found %d new courses. Now starting UTM." % (self.new) + print("Total errors:", self.errors) + print("Done St. George, found %d new courses. Now starting UTM." % (self.new)) self.start_utm() def start_utm(self): - - print "Parsing UTM" + print("Parsing UTM") found_map = {"1": 0, "2": 0, "3": 0, "4": 0} for year_of_study in self.years_of_study: payload = { - 'yos': year_of_study, - 'subjectarea': '0', - 'session': '20169', - 'course': '', - 'instr_sname': '' + "yos": year_of_study, + "subjectarea": "0", + "session": "20169", + "course": "", + "instr_sname": "", } - response = requests.post("https://student.utm.utoronto.ca/timetable/formatCourses2.php", data=payload).text + response = requests.post( + "https://student.utm.utoronto.ca/timetable/formatCourses2.php", + data=payload, + ).text soup = BeautifulSoup(response) level = self.level_map[year_of_study] course_divs = soup.find_all("div", class_="course") for course_div in course_divs: - course_span = course_div.find('span') - code = course_span['id'][:8] + course_span = course_div.find("span") + code = course_span["id"][:8] name = course_span.text.strip().split("-")[-1] try: - name = name[:re.search('\((HUM|SSc|SCI|EXP).*?\)', name).start()] + name = name[: re.search("\((HUM|SSc|SCI|EXP).*?\)", name).start()] except: pass - semester = course_span['id'][-1] - course_desc_and_excl = course_span['title'] + semester = course_span["id"][-1] + course_desc_and_excl = course_span["title"] try: - desc_end_index = re.search(r'\[\d.+\]', course_desc_and_excl).start() + desc_end_index = re.search( + r"\[\d.+\]", course_desc_and_excl + ).start() except: desc_end_index = len(course_desc_and_excl) assert desc_end_index > 0 description = course_desc_and_excl[:desc_end_index].strip() - prerequisites = '' - exclusions = '' + prerequisites = "" + exclusions = "" desc_excl_soup = BeautifulSoup(course_desc_and_excl) - - excl_or_prereq = desc_excl_soup.find('strong') + excl_or_prereq = desc_excl_soup.find("strong") if excl_or_prereq: - if 'exclusion' in excl_or_prereq.text.lower(): - exclusions = desc_excl_soup.find('strong').nextSibling + if "exclusion" in excl_or_prereq.text.lower(): + exclusions = desc_excl_soup.find("strong").nextSibling try: - maybe_prereqs = exclusions.nextSibling.nextSibling.nextSibling - if 'prerequisite' in maybe_prereqs.text.lower(): + maybe_prereqs = ( + exclusions.nextSibling.nextSibling.nextSibling + ) + if "prerequisite" in maybe_prereqs.text.lower(): prerequisites = maybe_prereqs.nextSibling except: pass - elif 'prerequisite' in excl_or_prereq.text.lower(): - prerequisites = desc_excl_soup.find('strong').nextSibling.string + elif "prerequisite" in excl_or_prereq.text.lower(): + prerequisites = desc_excl_soup.find("strong").nextSibling.string try: exclusions = exclusions.text @@ -282,264 +358,339 @@ def start_utm(self): prerequisites = prerequisites.text except: pass - num_credits = 1 if code[6].upper() == 'Y' else 0.5 - - C, created = Course.objects.update_or_create(school="uoft", code=code, defaults={ - 'name': name, - 'description': remove_html_tags(description), - 'campus': code[-1], - 'prerequisites': prerequisites, - 'exclusions': exclusions, - 'num_credits': num_credits, - 'level': level, - 'department': code[:3], - }) - print "Course:", C, "New?:", created + num_credits = 1 if code[6].upper() == "Y" else 0.5 + + C, created = Course.objects.update_or_create( + school="uoft", + code=code, + defaults={ + "name": name, + "description": remove_html_tags(description), + "campus": code[-1], + "prerequisites": prerequisites, + "exclusions": exclusions, + "num_credits": num_credits, + "level": level, + "department": code[:3], + }, + ) + print("Course:", C, "New?:", created) if created: self.new += 1 section_data = [] - section_data_table = course_div.find('table') - tbody = section_data_table.find('tbody') - rows = tbody.find_all('tr') + section_data_table = course_div.find("table") + tbody = section_data_table.find("tbody") + rows = tbody.find_all("tr") for section in rows: - cols = section.find_all('td') + cols = section.find_all("td") cols = [ele.text.strip() for ele in cols] section_data.append([ele for ele in cols]) for si in section_data: - section, instructors, enrolment, size, waitlist = si[2], si[3], si[4], si[5], si[6] + section, instructors, enrolment, size, waitlist = ( + si[2], + si[3], + si[4], + si[5], + si[6], + ) section = section[0] + section[3:] section_type = section[0] - assert section_type in ['L', 'T', 'P'] + assert section_type in ["L", "T", "P"] days = self.split_into_parts(si[7], 2) start_times = self.split_into_parts(si[8], 5) end_times = self.split_into_parts(si[9], 5) locations = self.split_locations(si[10]) if si[10] == "": - locations = ['']*len(days) - if len(locations) == 2*len(days) or code[:-2] in ['FAS147', 'FAS247', 'FAS343', 'FAS447']: - locations = locations[:len(days)] + locations = [""] * len(days) + if len(locations) == 2 * len(days) or code[:-2] in [ + "FAS147", + "FAS247", + "FAS343", + "FAS447", + ]: + locations = locations[: len(days)] if len(locations) != len(days): - print "Failed on:",code, "Locations:",locations, "Days:",days, "Section:",section - assert len(days) == len(start_times) == len(end_times) == len(locations) - print "\t\tSection:", section + print( + "Failed on:", + code, + "Locations:", + locations, + "Days:", + days, + "Section:", + section, + ) + assert ( + len(days) + == len(start_times) + == len(end_times) + == len(locations) + ) + print("\t\tSection:", section) S, s_created = Section.objects.update_or_create( course=C, meeting_section=section, section_type=section[0], semester=semester, defaults={ - 'instructors': instructors, - 'size': size, - 'enrolment': int(enrolment), - 'waitlist': int(waitlist) - }) + "instructors": instructors, + "size": size, + "enrolment": int(enrolment), + "waitlist": int(waitlist), + }, + ) S.save() S.offering_set.all().delete() - for o in xrange(len(days)): - day, start, end, loc = days[o], start_times[o], end_times[o], locations[o] + for o in range(len(days)): + day, start, end, loc = ( + days[o], + start_times[o], + end_times[o], + locations[o], + ) if day not in self.day_map: - print "==============ERROR: Day", day, " is not valid!==============" + print( + "==============ERROR: Day", + day, + " is not valid!==============", + ) continue - CO, co_created = Offering.objects.update_or_create(section=S, - day=self.day_map[day], - time_start=start, - time_end=end, - location=loc) + CO, co_created = Offering.objects.update_or_create( + section=S, + day=self.day_map[day], + time_start=start, + time_end=end, + location=loc, + ) CO.save() - print "\t\t\t", day, start, end, loc - print "Done UTM, found %d new courses (collectively) so far. Now starting UTSC." % (self.new) + print("\t\t\t", day, start, end, loc) + print( + "Done UTM, found %d new courses (collectively) so far. Now starting UTSC." + % (self.new) + ) self.start_utsc() def remove_intermediary_spaces(self, text): - return ' '.join(text.split()) + return " ".join(text.split()) + def get_section_info(self, tds): return { - 'meeting_section': self.remove_intermediary_spaces(tds[0].text), - 'day': self.remove_intermediary_spaces(tds[1].text), - 'time_start': self.remove_intermediary_spaces(tds[2].text), - 'time_end': self.remove_intermediary_spaces(tds[3].text), - 'location': self.remove_intermediary_spaces(tds[4].text), - 'instructors': self.remove_intermediary_spaces(tds[5].text), - 'notes': self.remove_intermediary_spaces(tds[6].text) - } + "meeting_section": self.remove_intermediary_spaces(tds[0].text), + "day": self.remove_intermediary_spaces(tds[1].text), + "time_start": self.remove_intermediary_spaces(tds[2].text), + "time_end": self.remove_intermediary_spaces(tds[3].text), + "location": self.remove_intermediary_spaces(tds[4].text), + "instructors": self.remove_intermediary_spaces(tds[5].text), + "notes": self.remove_intermediary_spaces(tds[6].text), + } + def get_excl_prereq_breadth(self, tag): - excl_prereq_breadth = { - 'exclusions': '', - 'prerequisites': '', - 'breadth': '' - } - while tag and tag.name != 'a': - - if 'Exclusion' not in tag and 'Prerequisite' not in tag and 'Breadth' not in tag: - tag = tag.nextSibling - continue - is_excl = 'Exclusion' in tag - is_prereq = 'Prerequisite' in tag - is_breadth = 'Breadth' in tag - - value = tag[tag.index(":") + 1: ].strip() - while tag.nextSibling and tag.nextSibling.name != "a" and ":" not in tag.nextSibling: - try: - value += tag.nextSibling - except: - value += tag.nextSibling.get_text() - tag = tag.nextSibling - - value = self.remove_intermediary_spaces(value) - if is_excl: - excl_prereq_breadth['exclusions'] = value - elif is_prereq: - excl_prereq_breadth['prerequisites'] = value - elif is_breadth: - excl_prereq_breadth['breadth'] = value - tag = tag.nextSibling - return excl_prereq_breadth + excl_prereq_breadth = {"exclusions": "", "prerequisites": "", "breadth": ""} + while tag and tag.name != "a": + if ( + "Exclusion" not in tag + and "Prerequisite" not in tag + and "Breadth" not in tag + ): + tag = tag.nextSibling + continue + is_excl = "Exclusion" in tag + is_prereq = "Prerequisite" in tag + is_breadth = "Breadth" in tag + + value = tag[tag.index(":") + 1 :].strip() + while ( + tag.nextSibling + and tag.nextSibling.name != "a" + and ":" not in tag.nextSibling + ): + try: + value += tag.nextSibling + except: + value += tag.nextSibling.get_text() + tag = tag.nextSibling + + value = self.remove_intermediary_spaces(value) + if is_excl: + excl_prereq_breadth["exclusions"] = value + elif is_prereq: + excl_prereq_breadth["prerequisites"] = value + elif is_breadth: + excl_prereq_breadth["breadth"] = value + tag = tag.nextSibling + return excl_prereq_breadth def get_course_details(self, code, link): - try: - desc, excl, prereq, breadth = '', '', '', '' - detail_soup = BeautifulSoup(self.s.get(link).text) - [br.extract() for br in detail_soup.find_all('br')] - for anc in detail_soup.find_all('a'): - if not anc.has_attr('name'): - anc.replaceWith(anc.get_text()) - - a = detail_soup.find('a', {'name':code}) - alternate_desc = False - - try: - if a.next_sibling.next_sibling.strip or a.next_sibling.next_sibling.text.strip(): - desc = a.next_sibling.next_sibling + try: + desc, excl, prereq, breadth = "", "", "", "" + detail_soup = BeautifulSoup(self.s.get(link).text) + [br.extract() for br in detail_soup.find_all("br")] + for anc in detail_soup.find_all("a"): + if not anc.has_attr("name"): + anc.replaceWith(anc.get_text()) + + a = detail_soup.find("a", {"name": code}) + alternate_desc = False + + try: + if ( + a.next_sibling.next_sibling.strip + or a.next_sibling.next_sibling.text.strip() + ): + desc = a.next_sibling.next_sibling + else: + alternate_desc = True + desc = a.find_next("span", {"style": "mso-bidi-font-size: 12.0pt;"}) + + except Exception as e: + desc = a.find_next("p") + + if "CITD05" in code or "CITD06" in code: + desc_text = "Unavailable" else: - alternate_desc = True - desc = a.find_next('span', {'style': 'mso-bidi-font-size: 12.0pt;'}) - - except Exception as e: - desc = a.find_next('p') - - if "CITD05" in code or "CITD06" in code: - desc_text = "Unavailable" - else: - desc_text = desc.get_text().strip() - - assert len(desc_text) > 2 - + desc_text = desc.get_text().strip() - if not alternate_desc: - excl_or_prereq = desc.nextSibling - else: - excl_or_prereq = desc.parent.nextSibling - - result = self.get_excl_prereq_breadth(excl_or_prereq) - result ['description'] = self.remove_intermediary_spaces(desc_text).strip() - - return result - except: - print "\tError: Couldn't find desc/excl/prereq/breadth details for", code - return { - 'description': '', - 'exclusions': '', - 'prerequisites': '', - 'breadth': '' - } + assert len(desc_text) > 2 + if not alternate_desc: + excl_or_prereq = desc.nextSibling + else: + excl_or_prereq = desc.parent.nextSibling + + result = self.get_excl_prereq_breadth(excl_or_prereq) + result["description"] = self.remove_intermediary_spaces(desc_text).strip() + + return result + except: + print("\tError: Couldn't find desc/excl/prereq/breadth details for", code) + return { + "description": "", + "exclusions": "", + "prerequisites": "", + "breadth": "", + } def is_tr_relevant(self, tr): - if tr.has_attr('style') and "rgb(231, 234, 239)" not in tr.get('style'): - return False - return True + if tr.has_attr("style") and "rgb(231, 234, 239)" not in tr.get("style"): + return False + return True def is_tr_new_course(self, tr): - return tr.find('b') and tr.find('b').find('a') + return tr.find("b") and tr.find("b").find("a") + def start_utsc(self): payload = { - 'sess': 'year', - 'course': 'DISPLAY_ALL', - 'submit': 'Display+by+Discipline', - 'course2': '', + "sess": "year", + "course": "DISPLAY_ALL", + "submit": "Display+by+Discipline", + "course2": "", } - response = self.s.post(url="http://www.utsc.utoronto.ca/~registrar/scheduling/timetable", data=payload).text + response = self.s.post( + url="http://www.utsc.utoronto.ca/~registrar/scheduling/timetable", + data=payload, + ).text soup = BeautifulSoup(response) table = soup.find("table", class_="tb_border_tb") - trs = filter(self.is_tr_relevant, table.find_all('tr')) + trs = list(filter(self.is_tr_relevant, table.find_all("tr"))) i = 0 utsc_level_map = {"A": "100", "B": "200", "C": "300", "D": "400"} while i < len(trs): tr = trs[i] if self.is_tr_new_course(tr): - code_and_semester = tr.find('a').text.strip() - code = code_and_semester[:-1] - semester = code_and_semester[-1] - course_link = tr.find('a').get('href') - tr.a.extract() - name = tr.find('b').text.strip()[2:] - level = code[3].upper() - assert level in ["A", "B", "C", "D"] - print "On Course:", code, ":", name, "\n" - course_details = self.get_course_details(code, course_link) - C, created = Course.objects.update_or_create(code=code, school="uoft", defaults={ - 'name': name, - 'description': course_details['description'], - 'campus': code[-1], - 'areas': '', - 'prerequisites': course_details['prerequisites'], - 'exclusions': course_details['exclusions'], - 'num_credits': 1 if code[6].upper() == 'Y' else 0.5, - 'level': level, - 'department': code[:3] - }) - if created: - self.new += 1 - - - else: #sections and offerings - tds = tr.find_all('td') - assert len(tds) == 7 - section_info = self.get_section_info(tds) - if section_info['meeting_section']: - meeting_section = section_info['meeting_section'][0] + section_info['meeting_section'][3:] - - if section_info['time_start'] == '' or section_info['time_end'] == '': - print "\tInvalid details for course", code, section_info['meeting_section'], ". Perhaps online?\n" - i += 1 - continue - - instructors = section_info['instructors'] - S, s_created = Section.objects.update_or_create( + code_and_semester = tr.find("a").text.strip() + code = code_and_semester[:-1] + semester = code_and_semester[-1] + course_link = tr.find("a").get("href") + tr.a.extract() + name = tr.find("b").text.strip()[2:] + level = code[3].upper() + assert level in ["A", "B", "C", "D"] + print("On Course:", code, ":", name, "\n") + course_details = self.get_course_details(code, course_link) + C, created = Course.objects.update_or_create( + code=code, + school="uoft", + defaults={ + "name": name, + "description": course_details["description"], + "campus": code[-1], + "areas": "", + "prerequisites": course_details["prerequisites"], + "exclusions": course_details["exclusions"], + "num_credits": 1 if code[6].upper() == "Y" else 0.5, + "level": level, + "department": code[:3], + }, + ) + if created: + self.new += 1 + + else: # sections and offerings + tds = tr.find_all("td") + assert len(tds) == 7 + section_info = self.get_section_info(tds) + if section_info["meeting_section"]: + meeting_section = ( + section_info["meeting_section"][0] + + section_info["meeting_section"][3:] + ) + + if section_info["time_start"] == "" or section_info["time_end"] == "": + print( + "\tInvalid details for course", + code, + section_info["meeting_section"], + ". Perhaps online?\n", + ) + i += 1 + continue + + instructors = section_info["instructors"] + S, s_created = Section.objects.update_or_create( course=C, meeting_section=meeting_section, section_type=meeting_section[0], semester=semester, defaults={ - 'instructors': instructors, - 'enrolment': 0, - }) - CO, co_created = Offering.objects.update_or_create(section=S, - day=self.day_map[section_info['day']], - time_start=section_info['time_start'].strip(), - time_end=section_info['time_end'].strip(), - defaults={ - 'location': section_info['location'] - }) - - CO.save() - print "\t", meeting_section, "taught by", instructors - print "\t\t", section_info['day'] + ":", section_info['time_start'] + "-" + section_info['time_end'], "at", section_info['location'] + "instructors": instructors, + "enrolment": 0, + }, + ) + CO, co_created = Offering.objects.update_or_create( + section=S, + day=self.day_map[section_info["day"]], + time_start=section_info["time_start"].strip(), + time_end=section_info["time_end"].strip(), + defaults={"location": section_info["location"]}, + ) + + CO.save() + print("\t", meeting_section, "taught by", instructors) + print( + "\t\t", + section_info["day"] + ":", + section_info["time_start"] + "-" + section_info["time_end"], + "at", + section_info["location"], + ) i += 1 - print "Done UTSC, found %d new courses (collectively) so far. Now starting Engineering." % (self.new) + print( + "Done UTSC, found %d new courses (collectively) so far. Now starting Engineering." + % (self.new) + ) self.start_engineering() def wrap_up(self): - print "Done! Total new courses found:", self.new + print("Done! Total new courses found:", self.new) update_object, created = Updates.objects.update_or_create( school=self.school, update_field="Course", - defaults={'last_updated': datetime.datetime.now()} + defaults={"last_updated": datetime.datetime.now()}, ) update_object.save() diff --git a/parsing/schools/uoft/music_parser.py b/parsing/schools/uoft/music_parser.py index cf2424daaf..9b35ac5cca 100644 --- a/parsing/schools/uoft/music_parser.py +++ b/parsing/schools/uoft/music_parser.py @@ -1,3 +1,15 @@ +# Copyright (C) 2017 Semester.ly Technologies, LLC +# +# Semester.ly is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Semester.ly is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + import pandas as pd from copy import deepcopy from numpy import nan @@ -8,135 +20,153 @@ class UofTMusicWriter(BaseWriter): - def __init__(self, sheet_path='scripts/uoft/timetable2016-17.xls'): - self.data = get_tt_df(sheet_path) # get data first to pass num rows to base parser - BaseWriter.__init__(self) - self.row_iter = self.data.iterrows() - self.next_course_row = next(self.row_iter)[1] # stores the header row of the next course - - def get_course_elements(self): - try: # iterate through iterator until the end - while True: - course_header_row = self.next_course_row - while not course_header_row.sem or not re.match('[A-Z]{3}[0-9]{3}[HY][0-9]', course_header_row.course_code): - course_header_row = next(self.row_iter)[1] - - course_rows = [course_header_row] - next_row = next(self.row_iter)[1] - while not next_row.course_code: - course_rows.append(next_row) - next_row = next(self.row_iter)[1] - # save to be used as header in next iteration of while loop - self.next_course_row = next_row - yield course_rows - except StopIteration: - pass - - def parse_course_element(self, course_element): - """Here course_element is a list of rows corresponding to a course.""" - course_code = course_element[0].course_code - course_data = { - # mandatory - 'name': ' '.join([row.title for row in course_element if row.title]), - 'school': 'uoft', - - # optional - 'description': '', - 'num_credits': course_element[0].credits or 0.5, - 'campus': 1, - 'areas': '(1)', - 'department': 'MUS', - 'level': course_code[3] + '00', - } - return course_code, course_data - - def get_section_elements(self, course_element): - sections = [] - for row in course_element: - row.sem = course_element[0].sem - if row.meeting_name: - sections.append([row]) - elif sections: - sections[-1].append(row) - - # check for sections whcih have F/S as semester, and split them - for section in sections: - if section[0].sem == 'F/S': - copy = deepcopy(section) - section[0].sem = 'F' - copy[0].sem = 'S' - sections.append(copy) - - return sections - - def parse_section_element(self, section_element): - section_code = section_element[0].meeting_name - section_data = { - # required if not provided to BaseParser: - 'semester': section_element[0].sem, - - # optional - 'section_type': section_code[0], - 'instructors': ', '.join([row.instructor for row in section_element if row.instructor]), - } - return section_code, section_data - - def get_meeting_elements(self, section_element): - meetings = [] - for row in section_element: - if row.day_time: - meetings.append([row]) - elif meetings: - meetings[-1].append(row) - - # check for meetings which have multiple days, and split them - for meeting in meetings: - split_index = find_first_number(meeting[0].day_time) - if split_index > 1: # more than one day - for i in range(1, split_index): - copy = deepcopy(meeting) - copy[0].day_time = meeting[0].day_time[i] + meeting[0].day_time[split_index:] - meetings.append(copy) - meeting[0].day_time = meeting[0].day_time[0] + meeting[0].day_time[split_index:] - - return meetings - - def parse_meeting_element(self, meeting_element): - if meeting_element[0].day_time.lower() == 'tba': - return None - start, end = parse_range_time(meeting_element[0].day_time[1:]) - meeting_data = { - # mandatory - 'day': meeting_element[0].day_time[0], - 'time_start': start, - 'time_end': end, - - # optional - 'location': ', '.join([str(row.location) for row in meeting_element if row.location]) - } - return meeting_data + def __init__(self, sheet_path="scripts/uoft/timetable2016-17.xls"): + self.data = get_tt_df( + sheet_path + ) # get data first to pass num rows to base parser + BaseWriter.__init__(self) + self.row_iter = self.data.iterrows() + self.next_course_row = next(self.row_iter)[ + 1 + ] # stores the header row of the next course + + def get_course_elements(self): + try: # iterate through iterator until the end + while True: + course_header_row = self.next_course_row + while not course_header_row.sem or not re.match( + "[A-Z]{3}[0-9]{3}[HY][0-9]", course_header_row.course_code + ): + course_header_row = next(self.row_iter)[1] + + course_rows = [course_header_row] + next_row = next(self.row_iter)[1] + while not next_row.course_code: + course_rows.append(next_row) + next_row = next(self.row_iter)[1] + # save to be used as header in next iteration of while loop + self.next_course_row = next_row + yield course_rows + except StopIteration: + pass + + def parse_course_element(self, course_element): + """Here course_element is a list of rows corresponding to a course.""" + course_code = course_element[0].course_code + course_data = { + # mandatory + "name": " ".join([row.title for row in course_element if row.title]), + "school": "uoft", + # optional + "description": "", + "num_credits": course_element[0].credits or 0.5, + "campus": 1, + "areas": "(1)", + "department": "MUS", + "level": course_code[3] + "00", + } + return course_code, course_data + + def get_section_elements(self, course_element): + sections = [] + for row in course_element: + row.sem = course_element[0].sem + if row.meeting_name: + sections.append([row]) + elif sections: + sections[-1].append(row) + + # check for sections whcih have F/S as semester, and split them + for section in sections: + if section[0].sem == "F/S": + copy = deepcopy(section) + section[0].sem = "F" + copy[0].sem = "S" + sections.append(copy) + + return sections + + def parse_section_element(self, section_element): + section_code = section_element[0].meeting_name + section_data = { + # required if not provided to BaseParser: + "semester": section_element[0].sem, + # optional + "section_type": section_code[0], + "instructors": ", ".join( + [row.instructor for row in section_element if row.instructor] + ), + } + return section_code, section_data + + def get_meeting_elements(self, section_element): + meetings = [] + for row in section_element: + if row.day_time: + meetings.append([row]) + elif meetings: + meetings[-1].append(row) + + # check for meetings which have multiple days, and split them + for meeting in meetings: + split_index = find_first_number(meeting[0].day_time) + if split_index > 1: # more than one day + for i in range(1, split_index): + copy = deepcopy(meeting) + copy[0].day_time = ( + meeting[0].day_time[i] + meeting[0].day_time[split_index:] + ) + meetings.append(copy) + meeting[0].day_time = ( + meeting[0].day_time[0] + meeting[0].day_time[split_index:] + ) + + return meetings + + def parse_meeting_element(self, meeting_element): + if meeting_element[0].day_time.lower() == "tba": + return None + start, end = parse_range_time(meeting_element[0].day_time[1:]) + meeting_data = { + # mandatory + "day": meeting_element[0].day_time[0], + "time_start": start, + "time_end": end, + # optional + "location": ", ".join( + [str(row.location) for row in meeting_element if row.location] + ), + } + return meeting_data + def get_tt_df(path): - xl = pd.ExcelFile(path) - colnames = ['course_code', - 'sem', - 'credits', - 'title', - 'meeting_name', - 'hrs', - 'day_time', - 'location', - 'instructor', - 'enrol_indicator', - 'enrol_controls'] - return xl.parse('FM', skiprows=4, parse_cols=len(colnames) - 1, names=colnames).fillna('') + xl = pd.ExcelFile(path) + colnames = [ + "course_code", + "sem", + "credits", + "title", + "meeting_name", + "hrs", + "day_time", + "location", + "instructor", + "enrol_indicator", + "enrol_controls", + ] + return xl.parse( + "FM", skiprows=4, parse_cols=len(colnames) - 1, names=colnames + ).fillna("") + def find_first_number(s): - """ Get index of the first number appearing in s, assuming there is one. """ - for i, char in enumerate(s): - if char in '0123456789': - return i - -if __name__ == '__main__': - parser = UofTMusicWriter() - parser.write_courses('music_courses.json') + """Get index of the first number appearing in s, assuming there is one.""" + for i, char in enumerate(s): + if char in "0123456789": + return i + + +if __name__ == "__main__": + parser = UofTMusicWriter() + parser.write_courses("music_courses.json") diff --git a/parsing/schools/uoft/uoft_evals.py b/parsing/schools/uoft/uoft_evals.py index e69de29bb2..defc0f99ee 100644 --- a/parsing/schools/uoft/uoft_evals.py +++ b/parsing/schools/uoft/uoft_evals.py @@ -0,0 +1,11 @@ +# Copyright (C) 2017 Semester.ly Technologies, LLC +# +# Semester.ly is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Semester.ly is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. diff --git a/parsing/schools/uoft/uoft_textbooks.py b/parsing/schools/uoft/uoft_textbooks.py deleted file mode 100644 index 9684e56fc2..0000000000 --- a/parsing/schools/uoft/uoft_textbooks.py +++ /dev/null @@ -1,187 +0,0 @@ -from amazonproduct import API -from fake_useragent import UserAgent -from bs4 import BeautifulSoup -from django.db.models import Q -from django.utils.encoding import smart_str -import cookielib, django, os, re, requests, sys, time - -api = API(locale='us') -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") -django.setup() - -from timetable.models import * -from scripts.amazon_helpers import * - -SESSION = requests.Session() - -def randomize_ua(): - return UserAgent().random - -def get_request(url): - cookies = cookielib.CookieJar() - headers = { - 'User-Agent': randomize_ua(), - 'Accept' : '*/*', - 'Host' : 'uoftbookstore.com', - 'Referer' : 'http://uoftbookstore.com/buy_courselisting.asp', - 'Content-Length' : '0', - 'Content-Type' : 'application/x-www-form-urlencoded' - } - - base_url = "http://uoftbookstore.com/textbooks_xml.asp?" - url = base_url + url - headers['User-Agent'] = randomize_ua() - response = SESSION.get(url=url, cookies=cookies, headers=headers) - return response - -def parse_results(source): - textbooks_found_count = 0 - - soup = BeautifulSoup(source) - page_source = soup.find(id="course-bookdisplay") - - # of all of these headers, we'll need to filter out the ones - # that don't have textbooks - section_headers = page_source.find_all("h3") - - for section_header in section_headers: - sibling = section_header.find_next_sibling() - if "not been informed" in sibling.text.lower(): # filter out the textbook-less sections - continue - matches = re.search("- (.+)[YFS], section (.+?) ", section_header.text) - all_textbooks_info = sibling.find_all('td', class_="book-desc") - print "\t\t\tFor {} section {}, found {} textbook(s). These are:".format( - matches.group(1), matches.group(2), len(all_textbooks_info) - ) - course = Course.objects.get(school="uoft", code=matches.group(1)) - course_sections = Section.objects.filter(course=course, meeting_section=matches.group(2)) - for textbook_info in all_textbooks_info: - try: - title = textbook_info.find('span', class_="book-title").text - author = textbook_info.find('span', class_="book-author").text - isbn = textbook_info.find('span', class_="isbn").text.replace("-", "") - except: - continue - req = textbook_info.find('p', class_="book-req").text - - info = get_amazon_fields(isbn, api) - if info is None: - continue - textbook_data = { - 'detail_url': info['DetailPageURL'], - 'image_url': info["ImageURL"], - 'author': info["Author"], - 'title': info["Title"] - } - textbook, created = Textbook.objects.update_or_create(isbn=isbn, - defaults=textbook_data) - textbooks_found_count += int(created) - for section in course_sections: - if section.textbooks.filter(isbn=isbn).exists(): - continue - new_link = TextbookLink(section=section, textbook=textbook, - is_required=(req.strip().lower() == "required")) - new_link.save() - - print "\t\t\t %s by: %s." % (title, author) - print "\t\t\t ISBN: %s, Book is %s. Saved!" % (isbn, req) - - return textbooks_found_count - - -def process_campus(campus_info, semester="F"): - print "Now processing textbooks for %s." % (campus_info['name']) - - rest = "control=campus&campus=%s&term=%s" % (campus_info['campus_id'], campus_info['term']) - response = get_request(rest) - department_soup = BeautifulSoup(response.text) - depts = department_soup.findAll('department') - department_to_dept_id = {} - for dept in depts: - department_to_dept_id[dept['abrev']] = dept['id'] - - campus_courses = Course.objects.filter(school="uoft", code__endswith=campus_info['ending']).order_by('code') - current_dept = "" - for i, course in enumerate(campus_courses): - available_sections = get_all_sections(course, semester) - if available_sections == []: - continue - print "%d. On Course: %s" % (i + 1, course.code) - # new dept, get course info for this dept and store it in course_to_course_id - if course.department != current_dept: - if course.department not in department_to_dept_id: - continue - current_dept = course.department - - rest = "control=department&dept=%s&term=%s" % (department_to_dept_id[current_dept], - campus_info['term']) - response = get_request(rest) - course_soup = BeautifulSoup(response.text) - soup_courses = course_soup.findAll('course') - course_to_course_id = {} - for soup_course in soup_courses: - code = soup_course['name'] - if code[-1].upper() not in [semester, 'Y']: - print "Skipping", code, "because this entry was for different semester" - continue - course_to_course_id[code[:-1]] = soup_course['id'] - - if course.code not in course_to_course_id: - continue - # process this course - get section data and store it in section_to_section_id - rest = "control=course&course=%s&term=%s" % (course_to_course_id[course.code], - campus_info['term']) - response = get_request(rest) - section_soup = BeautifulSoup(response.text) - soup_sections = section_soup.findAll('section') - section_to_section_id = {} - for soup_section in soup_sections: - section_to_section_id[soup_section['name']] = soup_section['id'] - - # now use the sections actually available for this course in the DB - for section in available_sections: - # make section request, get textbook info and store it in DB - if section not in section_to_section_id: - continue - print "\tSection:", section - rest = "control=section§ion=%s&t=%s" % (section_to_section_id[section], - int(time.time())) - response = get_request(rest) - parse_results('
    ' + response.text + '
    ') - - print "Finished processing textbooks for %s." % (campus_info['name']) - -def parse_uoft_textbooks(): - # campus_id and term for each campus are retrieved from the requests sent at - # http://uoftbookstore.com/buy_courselisting.asp - campus_to_info_map = { - 'St. George': { - 'name': 'St. George', - 'ending': '1', - 'campus_id': '55', - 'term': '610' - }, - 'Scarborough': { - 'name': 'Scarborough', - 'ending': '3', - 'campus_id': '53', - 'term': '600' - }, - 'Mississauga': { - 'name': 'Mississauga', - 'ending': '5', - 'campus_id': '54', - 'term': '608' - } - } - - for campus in ["St. George", "Mississauga", "Scarborough"]: - process_campus(campus_to_info_map[campus]) - - print "Hooray! I'm done!" - - -if __name__ == "__main__": - parse_uoft_textbooks() - - diff --git a/parsing/schools/vandy/__init__.py b/parsing/schools/vandy/__init__.py index 276e1c6248..fcc256b967 100644 --- a/parsing/schools/vandy/__init__.py +++ b/parsing/schools/vandy/__init__.py @@ -11,4 +11,5 @@ # GNU General Public License for more details. from parsing.schools import load_school_logger -load_school_logger('vandy') + +load_school_logger("vandy") diff --git a/parsing/schools/vandy/courses.py b/parsing/schools/vandy/courses.py index 85fbe07df7..563694ca6c 100644 --- a/parsing/schools/vandy/courses.py +++ b/parsing/schools/vandy/courses.py @@ -10,8 +10,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - import re from parsing.library.base_parser import BaseParser @@ -30,20 +28,20 @@ class Parser(BaseParser): verbosity (TYPE): Description """ - URL = 'https://webapp.mis.vanderbilt.edu/more' + URL = "https://webapp.mis.vanderbilt.edu/more" KEY_MAP = { - 'School': 'school_subdivision_name', - 'Career': 'level', - 'Component': 'section_type', - 'Hours': 'num_credits', - 'Consent': 'exclusions', - 'Requirement(s)': 'prerequisites', - 'Class Capacity': 'capacity', - 'Total Enrolled': 'enrollment', - 'Available Seats': 'remaining_seats', - 'Wait List Capacity': 'waitlist_size', - 'Total on Wait List': 'waitlist', - 'Location': 'location' + "School": "school_subdivision_name", + "Career": "level", + "Component": "section_type", + "Hours": "num_credits", + "Consent": "exclusions", + "Requirement(s)": "prerequisites", + "Class Capacity": "capacity", + "Total Enrolled": "enrollment", + "Available Seats": "remaining_seats", + "Wait List Capacity": "waitlist_size", + "Total on Wait List": "waitlist", + "Location": "location", } def __init__(self, **kwargs): @@ -52,130 +50,121 @@ def __init__(self, **kwargs): Args: **kwargs: pass-through """ - super(Parser, self).__init__('vandy', **kwargs) + super(Parser, self).__init__("vandy", **kwargs) def _login(self): - login_url = 'https://login.mis.vanderbilt.edu' - params = { - 'service': Parser.URL + '/j_spring_cas_security_check' - } - soup = self.requester.get(login_url + '/login', params=params) + login_url = "https://login.mis.vanderbilt.edu" + params = {"service": Parser.URL + "/j_spring_cas_security_check"} + soup = self.requester.get(login_url + "/login", params=params) self.requester.post( - login_url + soup.find('form', {'name': 'loginForm'})['action'], + login_url + soup.find("form", {"name": "loginForm"})["action"], parse=False, params=params, data={ - 'username': get_secret('VANDY_USER'), - 'password': get_secret('VANDY_PASS'), - 'lt': soup.find('input', {'name': 'lt'})['value'], - '_eventId': 'submit', - 'submit': 'LOGIN' + "username": get_secret("VANDY_USER"), + "password": get_secret("VANDY_PASS"), + "lt": soup.find("input", {"name": "lt"})["value"], + "_eventId": "submit", + "submit": "LOGIN", }, ) - self.requester.get(Parser.URL + '/Entry.action', parse=False) - - def start(self, - verbosity=3, - textbooks=True, - departments_filter=None, - years_and_terms_filter=None): + self.requester.get(Parser.URL + "/Entry.action", parse=False) + + def start( + self, + verbosity=3, + departments_filter=None, + years_and_terms_filter=None, + ): """Start the parse.""" self.verbosity = verbosity self._login() - years_and_terms = dict_filter_by_dict(self._parse_years_and_terms(), - years_and_terms_filter) + years_and_terms = dict_filter_by_dict( + self._parse_years_and_terms(), years_and_terms_filter + ) for year, terms in years_and_terms.items(): - self.ingestor['year'] = year + self.ingestor["year"] = year for term_name, term_code in terms.items(): - self.ingestor['term'] = term_name + self.ingestor["term"] = term_name # Load environment for targeted semester self.requester.get( - Parser.URL + '/SelectTerm!selectTerm.action', - params={'selectedTermCode': term_code}, - parse=False + Parser.URL + "/SelectTerm!selectTerm.action", + params={"selectedTermCode": term_code}, + parse=False, ) self.requester.get( - Parser.URL + '/SelectTerm!updateSessions.action', - parse=False + Parser.URL + "/SelectTerm!updateSessions.action", parse=False ) # Create payload to request course list from server params = { - 'searchCriteria.classStatusCodes': [ - 'O', 'W', 'C' - ], - '__checkbox_searchCriteria.classStatusCodes': [ - 'O', 'W', 'C' - ] + "searchCriteria.classStatusCodes": ["O", "W", "C"], + "__checkbox_searchCriteria.classStatusCodes": ["O", "W", "C"], } departments = dict_filter_by_list( - dict(self.extract_department_codes()), - departments_filter + dict(self.extract_department_codes()), departments_filter ) for dept_code, dept_name in departments.items(): - self.ingestor['department_code'] = dept_code - self.ingestor['department_name'] = dept_name + self.ingestor["department_code"] = dept_code + self.ingestor["department_name"] = dept_name # Construct payload with department code - params.update({ - 'searchCriteria.subjectAreaCodes': dept_code - }) + params.update({"searchCriteria.subjectAreaCodes": dept_code}) # GET html for department course listings soup = self.requester.get( - Parser.URL + '/SearchClassesExecute!search.action', - params=params + Parser.URL + "/SearchClassesExecute!search.action", + params=params, ) # Parse courses in department self.parse_courses_in_department(soup) # return to search page for next iteration - self.requester.get(Parser.URL + '/Entry.action', - parse=False) + self.requester.get(Parser.URL + "/Entry.action", parse=False) def _parse_years_and_terms(self): - soup = self.requester.get(Parser.URL + '/SearchClasses!input.action') + soup = self.requester.get(Parser.URL + "/SearchClasses!input.action") years_and_terms = {} - for sem in soup.find('select', id='selectedTerm').find_all('option'): + for sem in soup.find("select", id="selectedTerm").find_all("option"): year, term = sem.text.split() - if term == 'Year': + if term == "Year": continue year = years_and_terms.setdefault(int(year), {}) - year[term] = sem['value'] + year[term] = sem["value"] return years_and_terms def extract_department_codes(self): # Query Vandy class search website - soup = self.requester.get(Parser.URL + '/SearchClasses!input.action') + soup = self.requester.get(Parser.URL + "/SearchClasses!input.action") # Retrieve all deparments from dropdown in advanced search department_entries = soup.find_all( - id=re.compile(r'subjAreaMultiSelectOption[0-9]') + id=re.compile(r"subjAreaMultiSelectOption[0-9]") ) # Extract department codes from parsed department entries departments = [] for de in department_entries: - departments.append((de['value'], de['title'])) + departments.append((de["value"], de["title"])) return departments def parse_courses_in_department(self, html): # Check number of results isn't over max - num_hits_search = re.search(r'totalRecords: ([0-9]*),', str(html)) + num_hits_search = re.search(r"totalRecords: ([0-9]*),", str(html)) num_hits = 0 if num_hits_search is not None: num_hits = int(num_hits_search.group(1)) if num_hits == 300: - raise ParseError('vandy num_hits greater than 300') + raise ParseError("vandy num_hits greater than 300") self.parse_set_of_courses(html) @@ -192,15 +181,14 @@ def parse_set_of_courses(self, html): break html = self.requester.get( - Parser.URL + '/SearchClassesExecute!switchPage.action', - params={'pageNum': page_count + 1} + Parser.URL + "/SearchClassesExecute!switchPage.action", + params={"pageNum": page_count + 1}, ) prev_course_number = last_class_number def parse_page_of_courses(self, soup): last_class_number = 0 - for course in soup.find_all('tr', class_='classRow'): - + for course in soup.find_all("tr", class_="classRow"): try: last_class_number = self.parse_course(course) except ParseJump: @@ -210,52 +198,48 @@ def parse_page_of_courses(self, soup): def parse_course(self, soup): # remove cancelled classes - if soup.find('a', class_='cancelledStatus'): - raise ParseJump('cancelled course') + if soup.find("a", class_="cancelledStatus"): + raise ParseJump("cancelled course") # Extract course code and term number to generate access to more info - details = soup.find('td', class_='classSection')['onclick'] + details = soup.find("td", class_="classSection")["onclick"] # Extract course number and term code search = re.search( r"showClassDetailPanel.fire\({classNumber : '([0-9]*)', termCode : '([0-9]*)',", - details + details, ) course_number = search.group(1) soup = self.requester.get( - Parser.URL + '/GetClassSectionDetail.action', - params={ - 'classNumber': course_number, - 'termCode': search.group(2) - } + Parser.URL + "/GetClassSectionDetail.action", + params={"classNumber": course_number, "termCode": search.group(2)}, ) # Extract course name and abbreviation details search = re.search( - r'(.*):.*\n(.*)', - soup.find(id='classSectionDetailDialog').find('h1').text) + r"(.*):.*\n(.*)", soup.find(id="classSectionDetailDialog").find("h1").text + ) abbr = search.group(1) # Extract department code, catalog ID, and section number from abbr - title = re.match(r'(\S*)-(\S*)-(\S*)', abbr) + title = re.match(r"(\S*)-(\S*)-(\S*)", abbr) if not title: - raise ParseJump('no title in course') + raise ParseJump("no title in course") - self.ingestor['course_name'] = search.group(2) - self.ingestor['course_code'] = title.group(1) + '-' + title.group(2) - self.ingestor['section_code'] = '(' + title.group(3).strip() + ')' + self.ingestor["course_name"] = search.group(2) + self.ingestor["course_code"] = title.group(1) + "-" + title.group(2) + self.ingestor["section_code"] = "(" + title.group(3).strip() + ")" # Deal with course details as subgroups seen on details page - detail_headers = soup.find_all('div', class_='detailHeader') - detail_panels = soup.find_all('div', class_='detailPanel') + detail_headers = soup.find_all("div", class_="detailHeader") + detail_panels = soup.find_all("div", class_="detailPanel") if len(detail_headers) != len(detail_panels): - raise ParseError('there should be equal detail headers and panels') + raise ParseError("there should be equal detail headers and panels") for i in range(len(detail_headers)): - # Extract header name header = detail_headers[i].text.strip() @@ -283,29 +267,31 @@ def parse_course(self, soup): course = self.ingestor.ingest_course() self.ingestor.ingest_section(course) - self.ingestor['meetings'] = [] + self.ingestor["meetings"] = [] return course_number def parse_attributes(self, soup): - labels = [l.text.strip() for l in soup.find_all('div', class_='listItem')] - self.ingestor['areas'] = labels + labels = [l.text.strip() for l in soup.find_all("div", class_="listItem")] + self.ingestor["areas"] = labels def parse_labeled_table(self, soup): - # Gather all labeled table entries - labels = soup.find_all('td', class_='label') + labels = soup.find_all("td", class_="label") for label in labels: siblings = label.find_next_siblings() # Check if label value exists if len(siblings) != 0: - # Extract pure label from html key = label.text[:-1].strip() # Extract label's value(s) [deals with multiline multi-values] - values = [l for l in (line.strip() for line in siblings[0].text.splitlines()) if l] + values = [ + l + for l in (line.strip() for line in siblings[0].text.splitlines()) + if l + ] if key not in Parser.KEY_MAP: continue @@ -314,89 +300,92 @@ def parse_labeled_table(self, soup): if key == "Books": values = [] elif key == "Consent" and values[0] == "No Special Consent Required": - values[0] = '' + values[0] = "" - self.ingestor[Parser.KEY_MAP[key]] = ', '.join(values) + self.ingestor[Parser.KEY_MAP[key]] = ", ".join(values) def parse_meeting_times(self, soup): # Gather all labeled table entries - labels = soup.find_all('th', class_='label') + labels = soup.find_all("th", class_="label") if len(labels) <= 0: return - values = soup.find( - 'tr', - class_='courseHeader' - ).find_next_siblings()[0].find_all('td') + values = ( + soup.find("tr", class_="courseHeader") + .find_next_siblings()[0] + .find_all("td") + ) if len(labels) != len(values): - raise ParseError('number of labels and values should be the same') + raise ParseError("number of labels and values should be the same") try: - for label, value in zip(map(lambda x: x.text.strip(), labels), - map(lambda x: x.text.strip(), values)): + for label, value in zip( + [x.text.strip() for x in labels], [x.text.strip() for x in values] + ): if len(label) <= 0 or len(value) <= 0: continue - if label == 'Instructor(s)': + if label == "Instructor(s)": self.extract_instructors(value) - elif label == 'Time': + elif label == "Time": self.extract_time_range(value) - elif label == 'Days': + elif label == "Days": self.extract_days(value) except ParseJump: pass - meetings = self.ingestor.setdefault('meetings', []) + meetings = self.ingestor.setdefault("meetings", []) meetings.append(self.ingestor.ingest_meeting({}, clean_only=True)) def extract_days(self, unformatted_days): - if unformatted_days == 'TBA' or unformatted_days == '': - raise ParseJump(self.ingestor['course_code'] + ' days TBA') - self.ingestor['days'] = list(unformatted_days) + if unformatted_days == "TBA" or unformatted_days == "": + raise ParseJump(self.ingestor["course_code"] + " days TBA") + self.ingestor["days"] = list(unformatted_days) def extract_time_range(self, unformatted_time_range): - if unformatted_time_range == 'TBA' or unformatted_time_range == '': - raise ParseJump(self.ingestor['course_code'] + ' time TBA') + if unformatted_time_range == "TBA" or unformatted_time_range == "": + raise ParseJump(self.ingestor["course_code"] + " time TBA") - search = re.match(r'(.*) \- (.*)', unformatted_time_range) + search = re.match(r"(.*) \- (.*)", unformatted_time_range) if search is None: - raise ParseJump('time not found on page') + raise ParseJump("time not found on page") def ampm(x): - return x.replace('a', 'am').replace('p', 'pm') - self.ingestor['time_start'] = ampm(search.group(1)) - self.ingestor['time_end'] = ampm(search.group(2)) + return x.replace("a", "am").replace("p", "pm") - def extract_instructors(self, string): + self.ingestor["time_start"] = ampm(search.group(1)) + self.ingestor["time_end"] = ampm(search.group(2)) + def extract_instructors(self, string): instructors = string.splitlines() for i in range(len(instructors)): - # Deal with instance of primary instructor - search = re.match(r'(.*) \(Primary\)', instructors[i]) + search = re.match(r"(.*) \(Primary\)", instructors[i]) if search is not None: instructors[i] = search.group(1) - self.ingestor['instrs'] = instructors + self.ingestor["instrs"] = instructors def extract_notes(self, soup): - notes = ' '.join([l for l in (p.strip() for p in soup.text.splitlines()) if l]).strip() - description = self.ingestor.setdefault('description', []) + notes = " ".join( + [l for l in (p.strip() for p in soup.text.splitlines()) if l] + ).strip() + description = self.ingestor.setdefault("description", []) if isinstance(description, list): description.append(notes) - elif isinstance(description, basestring): - description += '\n' + notes + elif isinstance(description, str): + description += "\n" + notes def extract_description(self, soup): description = soup.text.strip() - match = re.match(r'(\[Formerly .*?\] )([\s\S]*)', description) + match = re.match(r"(\[Formerly .*?\] )([\s\S]*)", description) if match is not None: - match2 = re.match(r'\[Formerly (.*?)\]', match.group(1)) + match2 = re.match(r"\[Formerly (.*?)\]", match.group(1)) description = match.group(2) - self.ingestor['same_as'] = match2.group(1) - self.ingestor['description'] = description + self.ingestor["same_as"] = match2.group(1) + self.ingestor["description"] = description diff --git a/parsing/schools/vandy/evals.py b/parsing/schools/vandy/evals.py index 24defb05e1..ee8076d944 100644 --- a/parsing/schools/vandy/evals.py +++ b/parsing/schools/vandy/evals.py @@ -10,9 +10,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - -from __future__ import absolute_import, division, print_function - import re from parsing.library.base_parser import BaseParser @@ -25,8 +22,8 @@ class Parser(BaseParser): BASE_URL (str): location of evals. """ - BASE_URL = 'https://www.sds.vanderbilt.edu/perl/voiceview.pl' - CC_REGEX = re.compile(r'([A-Z&]{2,8}(?:-[A-Z]{2})?-\d{4}[A-Z]?)$') + BASE_URL = "https://www.sds.vanderbilt.edu/perl/voiceview.pl" + CC_REGEX = re.compile(r"([A-Z&]{2,8}(?:-[A-Z]{2})?-\d{4}[A-Z]?)$") def __init__(self, **kwargs): """Construct Vandy Evaluation parser. @@ -34,33 +31,31 @@ def __init__(self, **kwargs): Args: **kwargs: pass-through """ - super(Parser, self).__init__('vandy', **kwargs) + super(Parser, self).__init__("vandy", **kwargs) def _login(self): soup = self.requester.get(Parser.BASE_URL) # Security checkpoint - sec_block = soup.find('input', - attrs={'name': 'VSASM_ASVBlock'})['value'] + sec_block = soup.find("input", attrs={"name": "VSASM_ASVBlock"})["value"] form = { - 'VSASM_ASVBlock': sec_block, - 'VSASM_user': 'khanaf', - 'VSASM_pw': 'Gainz!23', - 'VSASM_Login': 'Login' + "VSASM_ASVBlock": sec_block, + "VSASM_user": "khanaf", + "VSASM_pw": "Gainz!23", + "VSASM_Login": "Login", } # Accept Terms and Conditions page soup = self.requester.post(Parser.BASE_URL, data=form) # Security checkpoint - vsasm_block = soup.find('input', - attrs={'name': 'VSASM_BLOCK'})['value'] + vsasm_block = soup.find("input", attrs={"name": "VSASM_BLOCK"})["value"] form = { - 'VSASM_BLOCK': vsasm_block, - 'VoiceViewUserType': 'ActiveStudent', - 'TermsAccepted': 'OK' + "VSASM_BLOCK": vsasm_block, + "VoiceViewUserType": "ActiveStudent", + "TermsAccepted": "OK", } # Search page @@ -80,101 +75,97 @@ def start(self, **kwargs): def _parse_eval_results(self, school, area, course): # Soupify post response - soup = self.requester.post(Parser.BASE_URL, data={ - 'ViewSchool': school, - 'ViewArea': area, - 'ViewCourse': course - }) + soup = self.requester.post( + Parser.BASE_URL, + data={"ViewSchool": school, "ViewArea": area, "ViewCourse": course}, + ) # Course review overview table - overview_table = soup.find_all('table') + overview_table = soup.find_all("table") # Make sure that table exists on page if len(overview_table) > 3: - # Fun way to extract Score link - for row in overview_table[3].find_all('tr'): - - cells = row.find_all('td') + for row in overview_table[3].find_all("tr"): + cells = row.find_all("td") # Parse scores if available - link = cells[len(cells) - 1].find('a') + link = cells[len(cells) - 1].find("a") if not link: continue # Parse single evaluations score page - url = link['href'].replace('&', '&') + url = link["href"].replace("&", "&") self._parse_eval_score_page(url) def _parse_eval_score_page(self, url): - body = self.requester.get(url).find('table').find('body') - title = body.find('title').text + body = self.requester.get(url).find("table").find("body") + title = body.find("title").text code, prof, sem = self._extract_info_from_title(title) # reformat semester and course code - rsem = re.match(r'([a-zA-Z]*)(\d*)', sem) - term = { - 'FALL': 'Fall', - 'SPR': 'Spring', - 'SUM': 'Summer' - }[rsem.group(1)] + rsem = re.match(r"([a-zA-Z]*)(\d*)", sem) + term = {"FALL": "Fall", "SPR": "Spring", "SUM": "Summer"}[rsem.group(1)] year = rsem.group(2) - rcode = re.match(r'([a-zA-Z]*)(\d*)', code) - code = rcode.group(1) + '-' + rcode.group(2) + rcode = re.match(r"([a-zA-Z]*)(\d*)", code) + code = rcode.group(1) + "-" + rcode.group(2) # List of all questions in review - questions = body.find('table').find('table').find_all('td', - valign='top', - width='200') + questions = ( + body.find("table").find("table").find_all("td", valign="top", width="200") + ) - all_questions = '' + all_questions = "" total_votes = 0 total_score = 0 for question in questions: - # extract table of results for question - table = question.find_next('table') + table = question.find_next("table") # Adjectives to describe scores - adjs = table.find_all('td', { - 'align': 'right', - 'nowrap': '', - 'rowspan': '20', - 'valign': 'center', - 'width': '250' - }) - - all_questions += 'Q: ' + question.text.strip() + '\n' + adjs = table.find_all( + "td", + { + "align": "right", + "nowrap": "", + "rowspan": "20", + "valign": "center", + "width": "250", + }, + ) + + all_questions += "Q: " + question.text.strip() + "\n" # Iterate over adjectives - for adj, i in zip(adjs, range(len(adjs))): - + for adj, i in zip(adjs, list(range(len(adjs)))): # Label (adjective) to describe numeric score label = adj.contents[0].strip() # Number of votes for label - votes = adj.find_next('td', { - 'align': 'right', - 'rowspan': '20', - 'style': 'font-size:75%', - 'valign': 'center', - 'width': '24' - }).text.strip() - - question_text = 'Give an overall rating of the course' - if (label != 'No response' and - question.text.strip() == question_text): + votes = adj.find_next( + "td", + { + "align": "right", + "rowspan": "20", + "style": "font-size:75%", + "valign": "center", + "width": "24", + }, + ).text.strip() + + question_text = "Give an overall rating of the course" + if label != "No response" and question.text.strip() == question_text: total_votes += int(votes) total_score += int(votes) * (i + 1) - all_questions += label + ':' + votes + '\n' + all_questions += label + ":" + votes + "\n" - all_questions += '\n' + all_questions += "\n" try: score = round(float(total_score) / total_votes, 1) @@ -188,38 +179,30 @@ def _extract_info_from_title(self, title): return match.group(1), match.group(2), match.group(3) def _parse_list_of_courses(self, school, area): - soup = self.requester.post(Parser.BASE_URL, data={ - 'ViewSchool': school, - 'ViewArea': area - }) - courses = soup.find('select', - attrs={'name': 'ViewCourse'}).find_all('option') - return [c['value'].strip() for c in courses if c['value'].strip()] + soup = self.requester.post( + Parser.BASE_URL, data={"ViewSchool": school, "ViewArea": area} + ) + courses = soup.find("select", attrs={"name": "ViewCourse"}).find_all("option") + return [c["value"].strip() for c in courses if c["value"].strip()] def _parse_list_of_areas(self, school): - soup = self.requester.post(Parser.BASE_URL, - data={'ViewSchool': school}) - areas = soup.find('select', - attrs={'name': 'ViewArea'}).find_all('option') - return [a['value'] for a in areas if a['value']] + soup = self.requester.post(Parser.BASE_URL, data={"ViewSchool": school}) + areas = soup.find("select", attrs={"name": "ViewArea"}).find_all("option") + return [a["value"] for a in areas if a["value"]] def _parse_list_of_schools(self): soup = self.requester.get(Parser.BASE_URL) - schools = soup.find('select', - attrs={'name': 'ViewSchool'}).find_all('option') - return [s['value'] for s in schools if s['value']] + schools = soup.find("select", attrs={"name": "ViewSchool"}).find_all("option") + return [s["value"] for s in schools if s["value"]] def _create_review_item(self, code, prof, score, summary, year, term): - self.ingestor['year'] = year - self.ingestor['term'] = term - self.ingestor['course_code'] = code - self.ingestor['score'] = score - self.ingestor['summary'] = summary - self.ingestor['instr'] = { - 'name': { - 'first': prof.split(',')[1], - 'last': prof.split(',')[0] - } + self.ingestor["year"] = year + self.ingestor["term"] = term + self.ingestor["course_code"] = code + self.ingestor["score"] = score + self.ingestor["summary"] = summary + self.ingestor["instr"] = { + "name": {"first": prof.split(",")[1], "last": prof.split(",")[0]} } # TODO - review why non-matching cc codes are present in evals diff --git a/parsing/schools/vandy/textbooks.py b/parsing/schools/vandy/textbooks.py deleted file mode 100644 index 7d4f30ae1b..0000000000 --- a/parsing/schools/vandy/textbooks.py +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from parsing.common.bn_textbook_parser import BarnesAndNoblesParser - - -class Parser(BarnesAndNoblesParser): - """Vanderbilt textbook parser.""" - - def __init__(self, **kwargs): - super(Parser, self).__init__( - "65163", - "vanderbilt.bncollege.com", - "vandy", - "-", - **kwargs) diff --git a/parsing/tasks.py b/parsing/tasks.py index 9b2d344ac5..b1188e73d3 100644 --- a/parsing/tasks.py +++ b/parsing/tasks.py @@ -10,8 +10,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import, division, print_function - from celery.decorators import periodic_task, task from celery.task.schedules import crontab from celery.utils.log import get_task_logger @@ -27,19 +25,24 @@ @periodic_task( run_every=(crontab(hour=00, minute=00)), name="task_parse_current_registration_period", - ignore_result=True + ignore_result=True, ) -def task_parse_current_registration_period(schools=None, textbooks=False): - """Parse semesters in current registration period.""" +def task_parse_current_registration_period(schools=None): + """ + Parse semesters in current registration period. + + Args: + school (str, optional): School to parse. + """ schools = set(schools or ACTIVE_SCHOOLS) for school in set(SCHOOLS_MAP) & schools: # Grab the most recent year. - years = [SCHOOLS_MAP[school].active_semesters.items()[-1]] + years = [list(SCHOOLS_MAP[school].active_semesters.items())[-1]] # Handle case where registration is for full academic year if SCHOOLS_MAP[school].full_academic_year_registration: if len(SCHOOLS_MAP[school].active_semesters) > 2: - years.append(SCHOOLS_MAP[school].active_semesters.items()[-2]) + years.append(list(SCHOOLS_MAP[school].active_semesters.items())[-2]) # Group all semesters into single parsing call for schools that # cannot support parallel parsing. @@ -48,82 +51,65 @@ def task_parse_current_registration_period(schools=None, textbooks=False): year: SCHOOLS_MAP[school].active_semesters[year][0] for year in years } - task_parse_school.delay( - school, - years_and_terms - ) + task_parse_school.delay(school, years_and_terms) continue # Create individual parsing tasks. for year, terms in years: - task_parse_school.delay(school, {year: [terms[0]]}, - textbooks=textbooks) + task_parse_school.delay(school, {year: [terms[0]]}) @task() -def task_parse_active(schools=None, textbooks=False): - """Parse all semesters displayed to users (i.e. active semesters).""" +def task_parse_active(schools=None): + """ + Parse all semesters displayed to users (i.e. active semesters). + + Args: + school (str, optional): School to parse. + """ schools = set(schools or ACTIVE_SCHOOLS) for school in set(SCHOOLS_MAP) & schools: if SCHOOLS_MAP[school].singe_access: - task_parse_school.delay( - school, - SCHOOLS_MAP[school].active_semesters - ) + task_parse_school.delay(school, SCHOOLS_MAP[school].active_semesters) continue - for year, terms in SCHOOLS_MAP[school].active_semesters.items(): + for year, terms in list(SCHOOLS_MAP[school].active_semesters.items()): for term in terms: - task_parse_school.delay(school, {year: [term]}, - textbooks=textbooks) - - -@periodic_task( - run_every=(crontab(day_of_week='sun', hour=12, minute=00)), - name="task_parse_textbooks", - ignore_result=True -) -def task_parse_textbooks(schools=None, all=False): - """Parse textbooks for morst recent academic period. - - Note that in some instances parsers parse textbooks - and courses at the same time. - """ - if all: - return task_parse_active(schools, textbooks=True) - return task_parse_current_registration_period(schools, textbooks=True) + task_parse_school.delay(school, {year: [term]}) @task() -def task_parse_school(school, years_and_terms, textbooks=False): - """Call the django management commands to start parse. +def task_parse_school(school, years_and_terms): + """ + Call the django management commands to start parse. Args: school (str): School to parse. years_and_terms (dict): Years and terms dictionary. - textbooks (bool, optional): Flag to parse textbooks. """ - logger.info('Starting parse for ' + school + ' ' + str(years_and_terms)) - filename = '{}/schools/{}/data/courses_{}.json'.format( + logger.info("Starting parse for " + school + " " + str(years_and_terms)) + filename = "{}/schools/{}/data/courses_{}.json".format( settings.PARSING_MODULE, school, - '-'.join( - '{}{}'.format( - year, - ''.join(terms) - ) for year, terms in years_and_terms.items() - ) + "-".join( + "{}{}".format(year, "".join(terms)) + for year, terms in list(years_and_terms.items()) + ), ) - management.call_command('ingest', school, - years_and_terms=years_and_terms, - textbooks=textbooks, - display_progress_bar=False, - verbosity=0, - output=filename) - management.call_command('digest', school, - textbooks=textbooks, - display_progress_bar=False, - verbosity=0, - data=filename) - logger.info('Finished parse for ' + school + ' ' + str(years_and_terms)) + management.call_command( + "ingest", + school, + years_and_terms=years_and_terms, + display_progress_bar=False, + verbosity=0, + output=filename, + ) + management.call_command( + "digest", + school, + display_progress_bar=False, + verbosity=0, + data=filename, + ) + logger.info("Finished parse for " + school + " " + str(years_and_terms)) diff --git a/parsing/tests.py b/parsing/tests.py index ae74ce383d..bd84a3c4d8 100644 --- a/parsing/tests.py +++ b/parsing/tests.py @@ -11,91 +11,80 @@ # GNU General Public License for more details. import simplejson as json -import StringIO +import io from copy import deepcopy from django.test import TestCase, SimpleTestCase from timetable.models import Semester, Course, Section, Offering -from parsing.library.utils import clean, make_list, DotDict, \ - safe_cast, update, iterrify, titlize, dict_filter_by_dict, \ - dict_filter_by_list, time24 +from parsing.library.utils import ( + clean, + make_list, + DotDict, + safe_cast, + update, + iterrify, + titlize, + dict_filter_by_dict, + dict_filter_by_list, + time24, +) from parsing.library.logger import JSONStreamWriter from parsing.library.digestor import Digestor -from parsing.library.validator import Validator, ValidationError, \ - MultipleDefinitionsWarning, ValidationWarning +from parsing.library.validator import ( + Validator, + ValidationError, + MultipleDefinitionsWarning, + ValidationWarning, +) +from collections import namedtuple +from timetable.school_mappers import SCHOOLS_MAP class UtilsTest(SimpleTestCase): """Tests parsing.library.utils.""" def test_clean(self): - dirty1 = [None, 1, '2', False, [' ']] - self.assertEqual([1, '2', False], clean(dirty1)) - dirty2 = {'a': [None, None]} + dirty1 = [None, 1, "2", False, [" "]] + self.assertEqual([1, "2", False], clean(dirty1)) + dirty2 = {"a": [None, None]} self.assertEqual(None, clean(dirty2)) - dirty3 = u'\u00a0\t \t\xa0' + dirty3 = "\u00a0\t \t\xa0" self.assertEqual(None, clean(dirty3)) - dirty4 = 'hello ' - self.assertEqual('hello', clean(dirty4)) - dirty5 = {'a': [None, 'b'], 4: [Exception, ' ', {0: [[None]]}]} - self.assertEqual({'a': ['b'], 4: [Exception]}, clean(dirty5)) + dirty4 = "hello " + self.assertEqual("hello", clean(dirty4)) + dirty5 = {"a": [None, "b"], 4: [Exception, " ", {0: [[None]]}]} + self.assertEqual({"a": ["b"], 4: [Exception]}, clean(dirty5)) def test_make_list(self): self.assertEqual([], make_list()) self.assertEqual([], make_list(None)) - self.assertEqual(['hello'], make_list('hello')) - self.assertEqual(['hello'], make_list(['hello'])) + self.assertEqual(["hello"], make_list("hello")) + self.assertEqual(["hello"], make_list(["hello"])) self.assertEqual([{1: 1}], make_list({1: 1})) def test_dotdict(self): - d = DotDict({'a': 1, 'b': 2, 'c': {'ca': 31}}) + d = DotDict({"a": 1, "b": 2, "c": {"ca": 31}}) self.assertEqual((1, 2), (d.a, d.b)) - self.assertEqual(1, d['a']) - d['a'] = 3 - self.assertEqual((3, 2), (d.a, d['b'])) - self.assertEqual((31, 31), (d.c.ca, d.c['ca'])) - e = DotDict({'a': [{'b': 1}, {'c': 2}]}) - self.assertEqual(e.a[1]['c'], 2) + self.assertEqual(1, d["a"]) + d["a"] = 3 + self.assertEqual((3, 2), (d.a, d["b"])) + self.assertEqual((31, 31), (d.c.ca, d.c["ca"])) + e = DotDict({"a": [{"b": 1}, {"c": 2}]}) + self.assertEqual(e.a[1]["c"], 2) def test_safe_cast(self): - self.assertEqual(3.14159265, safe_cast('3.14159265', float)) - self.assertEqual(None, safe_cast('hi', float)) - self.assertEqual('None', safe_cast(None, str, default=':-)')) - self.assertEqual(False, safe_cast('hi', int, default=False)) + self.assertEqual(3.14159265, safe_cast("3.14159265", float)) + self.assertEqual(None, safe_cast("hi", float)) + self.assertEqual("None", safe_cast(None, str, default=":-)")) + self.assertEqual(False, safe_cast("hi", int, default=False)) def test_update(self): - original = { - 0: { - 1: 2, - 3: 4 - }, - 1: { - 2: 3, - 4: {5: 6} - } - } + original = {0: {1: 2, 3: 4}, 1: {2: 3, 4: {5: 6}}} - delta = { - 0: { - 3: 7 - }, - 1: { - 5: 6 - } - } + delta = {0: {3: 7}, 1: {5: 6}} - updated = { - 0: { - 1: 2, - 3: 7 - }, - 1: { - 2: 3, - 4: {5: 6}, - 5: 6 - } - } + updated = {0: {1: 2, 3: 7}, 1: {2: 3, 4: {5: 6}, 5: 6}} self.assertEqual(updated, update(original, delta)) @@ -104,62 +93,42 @@ def test_iterrify(self): self.assertEqual(1, i) for i in iterrify([1]): self.assertEqual(1, i) - for i in iterrify('hello'): - self.assertEqual('hello', i) + for i in iterrify("hello"): + self.assertEqual("hello", i) def test_titlize(self): - self.assertEqual('Biology of Canines II', - titlize('BIOLOGY OF CANINES II')) - self.assertEqual('After the Age of Extinction', - titlize('AFTer THE AGE oF extinction')) + self.assertEqual("Biology of Canines II", titlize("BIOLOGY OF CANINES II")) + self.assertEqual( + "After the Age of Extinction", titlize("AFTer THE AGE oF extinction") + ) def test_time24(self): - self.assertEqual('07:00', time24('7:00')) - self.assertEqual('07:00', time24('7:00am')) - self.assertEqual('19:01', time24('7:01pm')) + self.assertEqual("07:00", time24("7:00")) + self.assertEqual("07:00", time24("7:00am")) + self.assertEqual("19:01", time24("7:01pm")) def test_dict_filter_by_dict(self): original1 = { 2016: { - 'Fall': 1, - 'Spring': 2, + "Fall": 1, + "Spring": 2, }, - 2017: { - 'Fall': 3, - 'Spring': 4 - } + 2017: {"Fall": 3, "Spring": 4}, } - filtered = dict_filter_by_dict(original1, {2016: ['Fall']}) - self.assertEqual({2016: {'Fall': 1}}, filtered) + filtered = dict_filter_by_dict(original1, {2016: ["Fall"]}) + self.assertEqual({2016: {"Fall": 1}}, filtered) - original2 = { - '2016': [ - 'Fall', - 'Spring' - ], - '2017': [ - 'Fall' - ], - '2018': [] - } - filtered = dict_filter_by_dict(original2, {2016: ['Spring']}) - self.assertEqual({'2016': ['Spring']}, filtered) + original2 = {"2016": ["Fall", "Spring"], "2017": ["Fall"], "2018": []} + filtered = dict_filter_by_dict(original2, {2016: ["Spring"]}) + self.assertEqual({"2016": ["Spring"]}, filtered) def test_dict_filter_by_list(self): - original1 = { - 'A': 1, - 'B': 2, - 'C': {'E': 3}, - 'D': 4 - } - filtered = dict_filter_by_list(original1, {4, 'D', 'C', 'd'}) - self.assertEqual({'D': 4, 'C': {'E': 3}}, filtered) + original1 = {"A": 1, "B": 2, "C": {"E": 3}, "D": 4} + filtered = dict_filter_by_list(original1, {4, "D", "C", "d"}) + self.assertEqual({"D": 4, "C": {"E": 3}}, filtered) - original2 = { - 'A', - 'B' - } + original2 = {"A", "B"} filtered = dict_filter_by_list(original2, {}) self.assertEqual(set(), filtered) filtered = dict_filter_by_list(original2, original2) @@ -168,131 +137,85 @@ def test_dict_filter_by_list(self): class JSONStreamWriterTest(SimpleTestCase): def test1(self): - output = StringIO.StringIO() + output = io.StringIO() with JSONStreamWriter(output, type_=dict) as streamer: - streamer.write('a', 1) - streamer.write('b', 2) - streamer.write('c', 3) - - correct = { - "a": 1, - "b": 2, - "c": 3 - } - self.assertEqual(output.getvalue(), - json.dumps(correct, - sort_keys=True, - indent=2, - separators=(',', ': '))) + streamer.write("a", 1) + streamer.write("b", 2) + streamer.write("c", 3) + + correct = {"a": 1, "b": 2, "c": 3} + self.assertEqual( + output.getvalue(), + json.dumps(correct, sort_keys=True, indent=2, separators=(",", ": ")), + ) - output = StringIO.StringIO() + output = io.StringIO() with JSONStreamWriter(output, type_=dict) as streamer: - streamer.write('a', 1) - with streamer.write('data', type_=list) as streamer2: + streamer.write("a", 1) + with streamer.write("data", type_=list) as streamer2: streamer2.write({0: 0, 1: 1, 2: 2}) - streamer2.write({3: 3, 4: '4'}) + streamer2.write({3: 3, 4: "4"}) streamer2.write(False) - streamer.write('e', 2) + streamer.write("e", 2) - correct = { - "a": 1, - "data": - [ - { - 0: 0, - 1: 1, - 2: 2 - }, - { - 3: 3, - 4: "4" - }, - False - ], - "e": 2 - } + correct = {"a": 1, "data": [{0: 0, 1: 1, 2: 2}, {3: 3, 4: "4"}, False], "e": 2} self.assertEqual( output.getvalue(), - json.dumps(correct, - sort_keys=True, - indent=2, - separators=(',', ': ')).replace(' [', '\n [') + json.dumps( + correct, sort_keys=True, indent=2, separators=(",", ": ") + ).replace(" [", "\n ["), ) class ValidationTest(SimpleTestCase): - config = { - 'kind': 'config', - 'school': { - 'code': 'test', - 'name': 'University of Test' - }, - 'course_code_regex': '([A-Z]+)$', - 'terms': [ - 'Foo', - 'Bar', - 'Baz' - ], - 'granularity': 15, - 'ampm': True, - 'full_academic_year_registration': False, - 'single_access': False, - 'active_semesters': { - '2017': [ - 'Foo', - 'Bar' - ], - '2016': [ - 'Foo', - 'Baz' - ] - }, - 'campuses': [ - 'Homewood' - ] + "kind": "config", + "school": {"code": "test", "name": "University of Test"}, + "course_code_regex": "([A-Z]+)$", + "terms": ["Foo", "Bar", "Baz"], + "granularity": 15, + "ampm": True, + "full_academic_year_registration": False, + "single_access": False, + "active_semesters": {"2017": ["Foo", "Bar"], "2016": ["Foo", "Baz"]}, + "campuses": ["Homewood"], } def test_validator_flat(self): config_required = { - 'school', - 'course_code_regex', - 'terms', - 'single_access', - 'granularity', - 'full_academic_year_registration', - 'active_semesters', - 'ampm' + "school", + "course_code_regex", + "terms", + "single_access", + "granularity", + "full_academic_year_registration", + "active_semesters", + "ampm", } for req in config_required: invalid_config = { - k: v for k, v in ValidationTest.config.items() if k != req + k: v for k, v in list(ValidationTest.config.items()) if k != req } with self.assertRaises(ValidationError): Validator(invalid_config) validator = Validator(ValidationTest.config) course = { - 'kind': 'course', - 'school': { - 'code': 'test' - }, - 'code': 'ABC', - 'name': 'Alphabet', - 'department': { - 'code': 'GHI', - 'name': 'English' - }, - 'credits': 3., - 'prerequisites': ['ABC', 'DEF'], - 'corequisites': ['A', 'AB', 'BC', 'B', 'C'], - 'homepage': 'www.google.com', - 'same_as': ['ABD'], - 'description': 'Um, hi hello', + "kind": "course", + "school": {"code": "test"}, + "code": "ABC", + "name": "Alphabet", + "department": {"code": "GHI", "name": "English"}, + "credits": 3.0, + "prerequisites": ["ABC", "DEF"], + "corequisites": ["A", "AB", "BC", "B", "C"], + "homepage": "www.google.com", + "same_as": ["ABD"], + "description": "Um, hi hello", } with self.assertRaises(ValidationError): invalid = deepcopy(course) - invalid['school']['code'] = 'nottest' + invalid["school"]["code"] = "nottest" validator.validate(invalid) # with self.assertRaises(ValidationError): # invalid = deepcopy(course) @@ -300,108 +223,93 @@ def test_validator_flat(self): # validator.validate(invalid) with self.assertRaises(ValidationError): invalid = deepcopy(course) - invalid['code'] = 'abc' + invalid["code"] = "abc" validator.validate(invalid) with self.assertRaises(ValidationError): invalid = deepcopy(course) - invalid['code'] = 'abc' + invalid["code"] = "abc" validator.validate(invalid) validator.validate(course) with self.assertRaises(MultipleDefinitionsWarning): validator.validate(course) section = { - 'kind': 'section', - 'course': { - 'code': 'ABC', - }, - 'code': '001', - 'term': 'Bar', - 'year': '2017', - 'instructors': [ - { - 'name': { - 'first': 'Sem', - 'last': 'Ly' - } - }, - { - 'name': 'Semesterly' - } + "kind": "section", + "course": { + "code": "ABC", + }, + "code": "001", + "term": "Bar", + "year": "2017", + "instructors": [ + {"name": {"first": "Sem", "last": "Ly"}}, + {"name": "Semesterly"}, ], - 'capacity': 42, - 'enrollment': 41, - 'waitlist': 0, - 'waitlist_size': 100, - 'type': 'Lecture', - 'fees': 50., + "capacity": 42, + "enrollment": 41, + "waitlist": 0, + "waitlist_size": 100, + "type": "Lecture", + "fees": 50.0, } with self.assertRaises(ValidationError): invalid = deepcopy(section) - invalid['course']['code'] = 'ABD' + invalid["course"]["code"] = "ABD" validator.validate(invalid) with self.assertRaises(ValidationError): invalid = deepcopy(section) - invalid['term'] = 'NotInConfig' + invalid["term"] = "NotInConfig" validator.validate(invalid) with self.assertRaises(ValidationError): invalid = deepcopy(section) - invalid['capacity'] = -1 + invalid["capacity"] = -1 validator.validate(invalid) with self.assertRaises(ValidationError): invalid = deepcopy(section) - invalid['enrollment'] = -1 + invalid["enrollment"] = -1 validator.validate(invalid) with self.assertRaises(ValidationError): invalid = deepcopy(section) - invalid['fees'] = 'NotAFloat' + invalid["fees"] = "NotAFloat" validator.validate(invalid) validator.validate(section) with self.assertRaises(MultipleDefinitionsWarning): validator.validate(section) meeting = { - 'kind': 'meeting', - 'course': { - 'code': 'ABC' - }, - 'section': { - 'code': '001', - 'year': '2017', - 'term': 'Bar' - }, - 'days': ['M', 'W', 'F'], - 'time': { - 'start': '14:00', - 'end': '14:50' - }, - 'location': { - 'campus': 'Homewood', - 'building': 'Malone', - 'room': 'Ugrad' - } + "kind": "meeting", + "course": {"code": "ABC"}, + "section": {"code": "001", "year": "2017", "term": "Bar"}, + "days": ["M", "W", "F"], + "dates": { + "start": "08-29-2017", + "end": "12-10-2017", + }, + "time": {"start": "14:00", "end": "14:50"}, + "location": {"campus": "Homewood", "building": "Malone", "room": "Ugrad"}, + "is_short_course": False, } with self.assertRaises(ValidationError): invalid = deepcopy(meeting) - invalid['course']['code'] = 'ABD' + invalid["course"]["code"] = "ABD" validator.validate(invalid) with self.assertRaises(ValidationError): invalid = deepcopy(meeting) - invalid['section']['code'] = '002' + invalid["section"]["code"] = "002" validator.validate(invalid) with self.assertRaises(ValidationError): invalid = deepcopy(meeting) - invalid['section']['term'] = 'InvalidTerm' + invalid["section"]["term"] = "InvalidTerm" validator.validate(invalid) with self.assertRaises(ValidationError): invalid = deepcopy(meeting) - invalid['section']['year'] = '2018' + invalid["section"]["year"] = "2018" validator.validate(invalid) with self.assertRaises(ValidationError): invalid = deepcopy(meeting) - invalid['time']['start'] = '15:00' + invalid["time"]["start"] = "15:00" validator.validate(invalid) # with self.assertRaises(ValidationWarning): # invalid = deepcopy(meeting) @@ -409,130 +317,95 @@ def test_validator_flat(self): # validator.validate(invalid) with self.assertRaises(ValidationWarning): invalid = deepcopy(meeting) - invalid['location']['campus'] = 'NotInConfigList' + invalid["location"]["campus"] = "NotInConfigList" validator.validate(invalid) validator.validate(meeting) - textbook_link = { - 'kind': 'textbook_link', - 'school': { - 'code': 'test' - }, - 'course': { - 'code': 'ABC' - }, - 'section': { - 'code': '001', - 'year': '2017', - 'term': 'Bar' - }, - 'isbn': '9780262033848', - 'required': True - } - - with self.assertRaises(ValidationError): - invalid = deepcopy(textbook_link) - invalid['course']['code'] = 'abc' - validator.validate(invalid) - validator.validate(textbook_link) - def test_validator_nested(self): validator = Validator(ValidationTest.config) nested_course = { - 'kind': 'course', - 'school': { - 'code': 'test' - }, - 'code': 'ABC', - 'name': 'Alphabet', - 'department': { - 'code': 'GHI', - 'name': 'English' - }, - 'credits': 3., - 'prerequisites': ['ABC', 'DEF'], - 'corequisites': ['A', 'AB', 'BC', 'B', 'C'], - 'homepage': 'www.google.com', - 'same_as': ['ABD'], - 'description': 'Um, hi hello', - 'sections': [ + "kind": "course", + "school": {"code": "test"}, + "code": "ABC", + "name": "Alphabet", + "department": {"code": "GHI", "name": "English"}, + "credits": 3.0, + "prerequisites": ["ABC", "DEF"], + "corequisites": ["A", "AB", "BC", "B", "C"], + "homepage": "www.google.com", + "same_as": ["ABD"], + "description": "Um, hi hello", + "sections": [ { - 'code': '001', - 'term': 'Bar', - 'year': '2017', - 'instructors': [ - { - 'name': { - 'first': 'Sem', - 'last': 'Ly' - } - }, - { - 'name': 'Semesterly' - } + "code": "001", + "term": "Bar", + "year": "2017", + "instructors": [ + {"name": {"first": "Sem", "last": "Ly"}}, + {"name": "Semesterly"}, ], - 'capacity': 42, - 'enrollment': 41, - 'waitlist': 0, - 'waitlist_size': 100, - 'type': 'Lecture', - 'fees': 50., + "capacity": 42, + "enrollment": 41, + "waitlist": 0, + "waitlist_size": 100, + "type": "Lecture", + "fees": 50.0, }, { - 'code': '002', - 'term': 'Bar', - 'year': '2017', - 'instructors': [ - { - 'name': 'Semesterly' - } - ], - 'capacity': 40, - 'enrollment': 36, - 'waitlist': 0, - 'waitlist_size': 100, - 'type': 'Lecture', - 'fees': 50., - 'meetings': [ + "code": "002", + "term": "Bar", + "year": "2017", + "instructors": [{"name": "Semesterly"}], + "capacity": 40, + "enrollment": 36, + "waitlist": 0, + "waitlist_size": 100, + "type": "Lecture", + "fees": 50.0, + "meetings": [ { - 'days': ['M', 'F'], - 'time': { - 'start': '14:00', - 'end': '14:50' + "days": ["M", "F"], + "dates": { + "start": "08-29-2017", + "end": "12-10-2017", }, - 'location': { - 'campus': 'Homewood', - 'building': 'Malone', - 'room': 'Ugrad' - } + "time": {"start": "14:00", "end": "14:50"}, + "location": { + "campus": "Homewood", + "building": "Malone", + "room": "Ugrad", + }, + "is_short_course": False, }, { - 'days': ['W'], - 'time': { - 'start': '10:00', - 'end': '12:15' - } - } - ] - } - ] + "days": ["W"], + "dates": { + "start": "08-29-2017", + "end": "12-10-2017", + }, + "time": {"start": "10:00", "end": "12:15"}, + "is_short_course": False, + }, + ], + }, + ], } with self.assertRaises(ValidationError): invalid = deepcopy(nested_course) - invalid['sections'][0]['course'] = {'code': 'ABD'} + invalid["sections"][0]["course"] = {"code": "ABD"} validator.validate(invalid) with self.assertRaises(ValidationError): invalid = deepcopy(nested_course) - invalid['sections'][1]['meetings'][1]['course'] = {'code': 'ABD'} + invalid["sections"][1]["meetings"][1]["course"] = {"code": "ABD"} validator.validate(invalid) with self.assertRaises(MultipleDefinitionsWarning): invalid = deepcopy(nested_course) - invalid['sections'][1]['code'] = '001' + invalid["sections"][1]["code"] = "001" validator.validate(invalid) with self.assertRaises(ValidationError): invalid = deepcopy(nested_course) - invalid['sections'][1]['meetings'][1]['days'] = None + invalid["sections"][1]["meetings"][1]["days"] = None validator.validate(invalid) validator.validate(nested_course) @@ -540,68 +413,72 @@ def test_validator_nested(self): validator.validate(nested_course) -class DigestionTest(TestCase): +_school_attrs = [ + "code", + "name", + "active_semesters", + "granularity", + "ampm", + "full_academic_year_registration", + "single_access", + "final_exams parsers", + "registrar", + "short_course_weeks_limit", +] + +School = namedtuple("School", " ".join(_school_attrs)) + +class DigestionTest(TestCase): config = { - 'kind': 'config', - 'school': { - 'code': 'test', - 'name': 'University of Test' - }, - 'course_code_regex': '([A-Z]+)$', - 'terms': [ - 'Foo', - 'Bar', - 'Baz' - ], - 'granularity': 15, - 'ampm': True, - 'full_academic_year_registration': False, - 'single_access': False, - 'active_semesters': { - '2017': [ - 'Foo', - 'Bar' - ], - '2016': [ - 'Foo', - 'Baz' - ] - }, + "kind": "config", + "school": {"code": "test", "name": "University of Test"}, + "course_code_regex": "([A-Z]+)$", + "terms": ["Foo", "Bar", "Baz"], + "granularity": 15, + "ampm": True, + "full_academic_year_registration": False, + "single_access": False, + "active_semesters": {"2017": ["Foo", "Bar"], "2016": ["Foo", "Baz"]}, } + # Add "test" school config to SCHOOLS_MAP as it is used as part of digestion process + # going forward. + SCHOOLS_MAP["test"] = School( + code=config["school"]["code"], + name=config["school"]["name"], + active_semesters=config["active_semesters"], + granularity=config["granularity"], + ampm=config["ampm"], + full_academic_year_registration=config["full_academic_year_registration"], + single_access=config["single_access"], + final_exams=None, + parsers=None, + registrar=None, + short_course_weeks_limit=None, + ) + def test_digest_flat(self): meta = { - "$schools": { - "salisbury": { - "2017": [ - "Summer" - ] - } - }, - "$timestamp": 1502836183.235978 + "$schools": {"salisbury": {"2017": ["Summer"]}}, + "$timestamp": 1502836183.235978, } - digestor = Digestor('test', meta) + digestor = Digestor("test", meta) course = { - 'kind': 'course', - 'school': { - 'code': 'test' - }, - 'code': 'ABC', - 'name': 'Alphabet', - 'department': { - 'code': 'GHI', - 'name': 'English' - }, - 'credits': 3., - 'prerequisites': ['ABC', 'DEF'], - 'corequisites': ['A', 'AB', 'BC', 'B', 'C'], - 'homepage': 'www.google.com', - 'description': 'Um, hi hello', + "kind": "course", + "school": {"code": "test"}, + "code": "ABC", + "name": "Alphabet", + "department": {"code": "GHI", "name": "English"}, + "credits": 3.0, + "prerequisites": ["ABC", "DEF"], + "corequisites": ["A", "AB", "BC", "B", "C"], + "homepage": "www.google.com", + "description": "Um, hi hello", } - output = StringIO.StringIO() + output = io.StringIO() digestor.digest(course, diff=True, load=False, output=output) diff = [ { @@ -614,83 +491,67 @@ def test_digest_flat(self): "name": "Alphabet", "num_credits": 3.0, "prerequisites": "Pre: ABC, DEF Co: A, AB, BC, B, C", - "school": "test" - } + "school": "test", + }, } ] self.assertEqual( - json.dumps(diff, sort_keys=True, indent=2, separators=(',', ': ')), - output.getvalue() + json.dumps(diff, sort_keys=True, indent=2, separators=(",", ": ")), + output.getvalue(), ) digestor.digest(course, diff=False, load=True) - course_model = Course.objects.get(school='test', - code='ABC', - name='Alphabet') - self.assertEqual(course_model.num_credits, 3.) - self.assertEqual(course_model.department, 'English') - self.assertEqual(course_model.corequisites, 'A, AB, BC, B, C') - self.assertEqual(course_model.description, 'Um, hi hello') - self.assertEqual(course_model.prerequisites, - 'Pre: ABC, DEF Co: A, AB, BC, B, C') - - output = StringIO.StringIO() + course_model = Course.objects.get(school="test", code="ABC", name="Alphabet") + self.assertEqual(course_model.num_credits, 3.0) + self.assertEqual(course_model.department, "English") + self.assertEqual(course_model.corequisites, "A, AB, BC, B, C") + self.assertEqual(course_model.description, "Um, hi hello") + self.assertEqual( + course_model.prerequisites, "Pre: ABC, DEF Co: A, AB, BC, B, C" + ) + + output = io.StringIO() digestor.digest(course, diff=True, load=True, output=output) self.assertEqual(len(eval(output.getvalue())), 0) course2 = { - 'kind': 'course', - 'school': { - 'code': 'test' - }, - 'code': 'ABD', - 'name': 'The second course', - 'department': { - 'name': 'Where' - }, - 'credits': 3.5, - 'same_as': ['ABC'], + "kind": "course", + "school": {"code": "test"}, + "code": "ABD", + "name": "The second course", + "department": {"name": "Where"}, + "credits": 3.5, + "same_as": ["ABC"], } digestor.digest(course2, diff=False, load=True) - course2_model = Course.objects.get(school='test', - code='ABD') + course2_model = Course.objects.get(school="test", code="ABD") self.assertEqual(course2_model.same_as, course_model) section = { - 'kind': 'section', - 'course': { - 'code': 'ABC', - }, - 'code': '001', - 'term': 'Bar', - 'year': '2017', - 'instructors': [ - { - 'name': { - 'first': 'Sem', - 'last': 'Ly' - } - }, - { - 'name': 'Semesterly' - } + "kind": "section", + "course": { + "code": "ABC", + }, + "code": "001", + "term": "Bar", + "year": "2017", + "instructors": [ + {"name": {"first": "Sem", "last": "Ly"}}, + {"name": "Semesterly"}, ], - 'capacity': 42, - 'enrollment': 41, - 'waitlist': 0, - 'waitlist_size': 100, - 'type': 'Lecture', - 'fees': 50., + "capacity": 42, + "enrollment": 41, + "waitlist": 0, + "waitlist_size": 100, + "type": "Lecture", + "fees": 50.0, } - output = StringIO.StringIO() + output = io.StringIO() digestor.digest(section, diff=True, load=True, output=output) diff = [ { - "$context": { - "course": "ABC: Alphabet", - "semester": "Bar 2017" - }, + "$context": {"course": "ABC: Alphabet", "semester": "Bar 2017"}, "$new": { "enrolment": 41, "instructors": "Sem LySemesterly", @@ -698,52 +559,44 @@ def test_digest_flat(self): "section_type": "L", "size": 42, "waitlist": 0, - "waitlist_size": 100 - } + "waitlist_size": 100, + }, } ] self.assertEqual( - json.dumps(diff, sort_keys=True, indent=2, separators=(',', ': ')), - output.getvalue() + json.dumps(diff, sort_keys=True, indent=2, separators=(",", ": ")), + output.getvalue(), ) section_model = Section.objects.get( - course__school='test', - course__code=section['course']['code'], - meeting_section=section['code'], - semester__year=section['year'], - semester__name=section['term'] + course__school="test", + course__code=section["course"]["code"], + meeting_section=section["code"], + semester__year=section["year"], + semester__name=section["term"], ) - Semester.objects.get(year='2017', name='Bar') + Semester.objects.get(year="2017", name="Bar") self.assertEqual(section_model.course, course_model) - self.assertEqual(section_model.size, section['capacity']) - self.assertEqual(section_model.waitlist, section['waitlist']) - self.assertEqual(section_model.waitlist_size, section['waitlist_size']) - self.assertEqual(section_model.section_type, 'L') - self.assertEqual(section_model.enrolment, section['enrollment']) + self.assertEqual(section_model.size, section["capacity"]) + self.assertEqual(section_model.waitlist, section["waitlist"]) + self.assertEqual(section_model.waitlist_size, section["waitlist_size"]) + self.assertEqual(section_model.section_type, "L") + self.assertEqual(section_model.enrolment, section["enrollment"]) meeting = { - 'kind': 'meeting', - 'course': { - 'code': 'ABC' - }, - 'section': { - 'code': '001', - 'year': '2017', - 'term': 'Bar' - }, - 'days': ['M', 'W', 'F'], - 'time': { - 'start': '14:00', - 'end': '14:50' - }, - 'location': { - 'campus': 'Homewood', - 'building': 'Malone', - 'room': 'Ugrad' - } + "kind": "meeting", + "course": {"code": "ABC"}, + "section": {"code": "001", "year": "2017", "term": "Bar"}, + "days": ["M", "W", "F"], + "dates": { + "start": "08-29-2017", + "end": "12-10-2017", + }, + "time": {"start": "14:00", "end": "14:50"}, + "location": {"campus": "Homewood", "building": "Malone", "room": "Ugrad"}, + "is_short_course": False, } - output = StringIO.StringIO() + output = io.StringIO() digestor.digest(meeting, diff=True, load=True, output=output) diff = [ { @@ -753,9 +606,12 @@ def test_digest_flat(self): "$new": { "day": "M", "location": "Malone Ugrad", + "date_start": "08-29-2017", + "date_end": "12-10-2017", "time_end": "14:50", - "time_start": "14:00" - } + "time_start": "14:00", + "is_short_course": False, + }, }, { "$context": { @@ -764,9 +620,12 @@ def test_digest_flat(self): "$new": { "day": "W", "location": "Malone Ugrad", + "date_start": "08-29-2017", + "date_end": "12-10-2017", "time_end": "14:50", - "time_start": "14:00" - } + "time_start": "14:00", + "is_short_course": False, + }, }, { "$context": { @@ -775,114 +634,96 @@ def test_digest_flat(self): "$new": { "day": "F", "location": "Malone Ugrad", + "date_start": "08-29-2017", + "date_end": "12-10-2017", "time_end": "14:50", - "time_start": "14:00" - } - } + "time_start": "14:00", + "is_short_course": False, + }, + }, ] self.assertEqual( - json.dumps(diff, sort_keys=True, indent=2, separators=(',', ': ')), - output.getvalue() - ) - self.assertEqual( - len(Offering.objects.filter(section=section_model)), - 3 + json.dumps(diff, sort_keys=True, indent=2, separators=(",", ": ")), + output.getvalue(), ) + self.assertEqual(len(Offering.objects.filter(section=section_model)), 3) def test_digest_nested(self): meta = { - "$schools": { - "salisbury": { - "2017": [ - "Summer" - ] - } - }, - "$timestamp": 1502836183.235978 + "$schools": {"salisbury": {"2017": ["Summer"]}}, + "$timestamp": 1502836183.235978, } - digestor = Digestor('test', meta) + digestor = Digestor("test", meta) nested_course = { - 'kind': 'course', - 'school': { - 'code': 'test' - }, - 'code': 'ABC', - 'name': 'Alphabet', - 'department': { - 'code': 'GHI', - 'name': 'English' - }, - 'credits': 3., - 'prerequisites': ['ABC', 'DEF'], - 'corequisites': ['A', 'AB', 'BC', 'B', 'C'], - 'homepage': 'www.google.com', - 'same_as': ['ABD'], - 'description': 'Um, hi hello', - 'sections': [ + "kind": "course", + "school": {"code": "test"}, + "code": "ABC", + "name": "Alphabet", + "department": {"code": "GHI", "name": "English"}, + "credits": 3.0, + "prerequisites": ["ABC", "DEF"], + "corequisites": ["A", "AB", "BC", "B", "C"], + "homepage": "www.google.com", + "same_as": ["ABD"], + "description": "Um, hi hello", + "sections": [ { - 'code': '001', - 'term': 'Bar', - 'year': '2017', - 'instructors': [ - { - 'name': { - 'first': 'Sem', - 'last': 'Ly' - } - }, - { - 'name': 'Semesterly' - } + "code": "001", + "term": "Bar", + "year": "2017", + "instructors": [ + {"name": {"first": "Sem", "last": "Ly"}}, + {"name": "Semesterly"}, ], - 'capacity': 42, - 'enrollment': 41, - 'waitlist': 0, - 'waitlist_size': 100, - 'type': 'Lecture', - 'fees': 50., + "capacity": 42, + "enrollment": 41, + "waitlist": 0, + "waitlist_size": 100, + "type": "Lecture", + "fees": 50.0, }, { - 'code': '002', - 'term': 'Bar', - 'year': '2017', - 'instructors': [ - { - 'name': 'Semesterly' - } - ], - 'capacity': 40, - 'enrollment': 36, - 'waitlist': 0, - 'waitlist_size': 100, - 'type': 'Lecture', - 'fees': 50., - 'meetings': [ + "code": "002", + "term": "Bar", + "year": "2017", + "instructors": [{"name": "Semesterly"}], + "capacity": 40, + "enrollment": 36, + "waitlist": 0, + "waitlist_size": 100, + "type": "Lecture", + "fees": 50.0, + "meetings": [ { - 'days': ['M', 'F'], - 'time': { - 'start': '14:00', - 'end': '14:50' + "days": ["M", "F"], + "dates": { + "start": "08-29-2017", + "end": "12-10-2017", + }, + "time": {"start": "14:00", "end": "14:50"}, + "location": { + "campus": "Homewood", + "building": "Malone", + "room": "Ugrad", }, - 'location': { - 'campus': 'Homewood', - 'building': 'Malone', - 'room': 'Ugrad' - } + "is_short_course": False, }, { - 'days': ['W'], - 'time': { - 'start': '10:00', - 'end': '12:15' - } - } - ] - } - ] + "days": ["W"], + "dates": { + "start": "08-29-2017", + "end": "12-10-2017", + }, + "time": {"start": "10:00", "end": "12:15"}, + "is_short_course": False, + }, + ], + }, + ], } - output = StringIO.StringIO() + output = io.StringIO() digestor.digest(nested_course, diff=True, load=True, output=output) diff = [ @@ -896,14 +737,11 @@ def test_digest_nested(self): "name": "Alphabet", "num_credits": 3.0, "prerequisites": "Pre: ABC, DEF Co: A, AB, BC, B, C", - "school": "test" - } + "school": "test", + }, }, { - "$context": { - "course": "ABC: Alphabet", - "semester": "Bar 2017" - }, + "$context": {"course": "ABC: Alphabet", "semester": "Bar 2017"}, "$new": { "enrolment": 41, "instructors": "Sem LySemesterly", @@ -911,14 +749,11 @@ def test_digest_nested(self): "section_type": "L", "size": 42, "waitlist": 0, - "waitlist_size": 100 - } + "waitlist_size": 100, + }, }, { - "$context": { - "course": "ABC: Alphabet", - "semester": "Bar 2017" - }, + "$context": {"course": "ABC: Alphabet", "semester": "Bar 2017"}, "$new": { "enrolment": 36, "instructors": "Semesterly", @@ -926,8 +761,8 @@ def test_digest_nested(self): "section_type": "L", "size": 40, "waitlist": 0, - "waitlist_size": 100 - } + "waitlist_size": 100, + }, }, { "$context": { @@ -936,9 +771,12 @@ def test_digest_nested(self): "$new": { "day": "M", "location": "Malone Ugrad", + "date_start": "08-29-2017", + "date_end": "12-10-2017", "time_end": "14:50", - "time_start": "14:00" - } + "time_start": "14:00", + "is_short_course": False, + }, }, { "$context": { @@ -947,9 +785,12 @@ def test_digest_nested(self): "$new": { "day": "F", "location": "Malone Ugrad", + "date_start": "08-29-2017", + "date_end": "12-10-2017", "time_end": "14:50", - "time_start": "14:00" - } + "time_start": "14:00", + "is_short_course": False, + }, }, { "$context": { @@ -958,12 +799,15 @@ def test_digest_nested(self): "$new": { "day": "W", "location": " ", + "date_start": "08-29-2017", + "date_end": "12-10-2017", "time_end": "12:15", - "time_start": "10:00" - } - } + "time_start": "10:00", + "is_short_course": False, + }, + }, ] self.assertEqual( - json.dumps(diff, sort_keys=True, indent=2, separators=(',', ': ')), - output.getvalue() + json.dumps(diff, sort_keys=True, indent=2, separators=(",", ": ")), + output.getvalue(), ) diff --git a/postcss.config.js b/postcss.config.js index eac13b8cd5..6e96c6cdb9 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -12,8 +12,12 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. */ +const autoprefixer = require("autoprefixer"); + module.exports = { plugins: [ - require('autoprefixer')({ /* ...options */ }), + autoprefixer({ + /* ...options */ + }), ], -} +}; diff --git a/requirements.txt b/requirements.txt index 2021887616..a9d793e744 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,73 +1,60 @@ -autopep8==1.3.1 -beautifulsoup4==4.4.1 +setuptools==65.5.1 +Pygments==2.15.0 +Sphinx==4.0.2 +alabaster==0.7.10 +argparse==1.4.0 +beautifulsoup4==4.6.0 +black==24.3.0 bs4==0.0.1 -celery==3.1.25 -Cheetah==2.4.4 -colorama==0.2.5 -configobj==4.7.2 -coreapi==2.3.0 -coverage==4.3.4 -dateparser==0.6.0 -Django==1.9.2 -django-cachalot==1.4.1 -django-celery==3.1.17 -django-celery-beat==1.0.1 -django-extensions==1.6.7 -django-picklefield==0.3.2 -djangorestframework==3.6.2 -django-rest-swagger==2.1.2 -django-webpack-loader==0.4.1 -fake-useragent==0.1.8 -fuzzywuzzy==0.10.0 -google-api-python-client==1.6.1 -gunicorn==17.5 -hashids==1.1.0 -html5lib==0.999 -interruptingcow==0.6 -jsondiff==1.1.0 -jsonfield==2.0.1 -jsonpatch==1.3 -jsonpointer==1.0 -jsonschema==2.5.1 -lxml==3.6.0 -Markdown==2.6.6 +celery==5.2.2 +coverage==6.3.2 +cryptography==41.0.6 +dateparser==1.1.0 +Django==3.2.20 +django-cachalot==2.4.3 +django-ckeditor==6.2.0 +django-debug-toolbar==3.8.1 +django-extensions==3.1.5 +django-picklefield==3.0.1 +django-webpack-loader==0.7.0 +djangorestframework==3.12.2 +drf-yasg==1.20.0 +fake-useragent==1.1.1 +future==0.18.3 +futures==3.1.1 +fuzzywuzzy==0.15.1 +gunicorn==19.7.1 +hashids==1.2.0 +interruptingcow==0.7 +jsondiff==1.1.1 +jsonschema==3.2.0 +lxml==4.9.1 +markdown==3.4.1 mock==2.0.0 -nltk==3.2.1 -numpy==1.13.1 -oauth==1.0.1 -oauthlib==1.1.1 -pep8==1.7.0 -prettytable==0.7.2 -progressbar2==3.32.1 -psycopg2==2.7.1 -PyJWT==1.4.0 -pyserial==2.6 -python-amazon-simple-product-api==2.2.11 -python-dateutil==2.5.3 -python-memcached==1.58 -python-openid==2.2.5 -python-social-auth==0.2.19 -python-utils==2.0.0 -pytz==2016.4 -pywebpush==1.7.0 -PyYAML==3.10 -recommonmark==0.4.0 -redis==2.10.5 -requests==2.20.0 -requests-oauthlib==0.6.1 -rollbar==0.13.11 -scikit-learn==0.18.1 -scipy==0.19.1 -selenium==2.53.2 -simplejson==3.10.0 -six==1.10.0 -South==0.7.5 -Sphinx==1.5.1 -sphinx-autobuild==0.6.0 +nltk==3.6.6 +numpy==1.22.0 +oauth2client==4.1.2 +progressbar2==3.34.2 +psycopg2-binary==2.8.6 +pycodestyle==2.6.0 +python-dateutil==2.8.2 +social-auth-core==4.0.3 +social-auth-app-django==4.0.0 +python-memcached==1.59 +python-social-auth==0.2.21 +pytz==2017.2 +pywebpush==1.4.0 +PyJWT[crypto]==2.3.0 +PyYAML==6.0 +regex==2022.3.2 +requests==2.31.0 +rollbar==0.16.1 +scipy==1.10.0 +selenium==4.1.3 +simplejson==3.11.1 +sphinx-autobuild==2021.3.14 +sphinx-rtd-theme==0.5.2 sphinxcontrib-inlinesyntaxhighlight==0.2 -sphinx-rtd-theme==0.1.9 -ssh-import-id==3.21 -supervisor==3.3.1 -toolz==0.7.4 -urllib3==1.24.1 -virtualenv==1.11.4 +sphinxcontrib-websupport==1.2.4 +supervisor==4.2.2 +semly-webdriver-manager-fork==4.0.1 diff --git a/scripts/SimilarityEngine.py b/scripts/SimilarityEngine.py index f095a94e1b..44ee275e25 100644 --- a/scripts/SimilarityEngine.py +++ b/scripts/SimilarityEngine.py @@ -13,6 +13,7 @@ import django, os, re, sys from fuzzywuzzy import fuzz, process from nltk.corpus import stopwords + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") django.setup() from timetable.models import * @@ -20,44 +21,64 @@ class SimilarityFinder: + def __init__(self): + self.cachedStopWords = stopwords.words("english") + self.mode_type = "" + if len(sys.argv) != 2 or sys.argv[1] not in ACTIVE_SCHOOLS: + print("Please provide a valid university.") + exit() + self.school = sys.argv[1] + self.courses = Course.objects.filter(school=self.school) + self.unstop_descriptions() + + def parse_classes(self): + for course in self.courses: + if course.description not in [ + "Infomration not required for this course type", + "Not Available", + "None provided", + ]: + department_matches = ( + Course.objects.filter( + school=self.school, department=course.department + ) + .exclude(code=course.code) + .values_list("description", flat=True) + ) + matches = process.extract( + course.description, department_matches, limit=4 + ) + try: + itermatches = iter(matches) + next(itermatches) + except: + continue + for match in itermatches: + course_match = Course.objects.filter( + school=self.school, description=match[0] + ).exclude(code=course.code)[0] + try: + course.related_courses.get(code=course_match.code) + print("PREVIOUSLY related", course_match, " to ", course) + except Course.DoesNotExist: + print("ADDING", course_match, "as related to", course) + course.related_courses.add(course_match) + + def unstop_descriptions(self): + courses = self.courses.filter(unstopped_description="") + for course in courses: + print("Unstopping: " + course.name) + course.unstopped_description = " ".join( + [ + word + for word in course.description.split() + if word not in (self.cachedStopWords) + ] + ) + course.save() + print(course.unstopped_description) + - def __init__(self): - self.cachedStopWords = stopwords.words("english") - self.mode_type = "" - if len(sys.argv) != 2 or sys.argv[1] not in ACTIVE_SCHOOLS: - print "Please provide a valid university." - exit() - self.school = sys.argv[1] - self.courses = Course.objects.filter(school=self.school) - self.unstop_descriptions() - - def parse_classes(self): - for course in self.courses: - if course.description not in ["Infomration not required for this course type","Not Available","None provided"]: - department_matches = Course.objects.filter(school=self.school, department=course.department).exclude(code=course.code).values_list('description', flat=True) - matches = process.extract(course.description, department_matches, limit=4) - try: - itermatches = iter(matches) - next(itermatches) - except: - continue - for match in itermatches: - course_match = Course.objects.filter(school=self.school, description=match[0]).exclude(code=course.code)[0] - try: - course.related_courses.get(code=course_match.code) - print "PREVIOUSLY related", course_match, " to ", course - except Course.DoesNotExist: - print "ADDING", course_match, "as related to", course - course.related_courses.add(course_match) - - def unstop_descriptions(self): - courses = self.courses.filter(unstopped_description="") - for course in courses: - print "Unstopping: " + course.name - course.unstopped_description = ' '.join([word for word in course.description.split() if word not in (self.cachedStopWords)]) - course.save() - print course.unstopped_description - -if __name__ == '__main__': - cf = SimilarityFinder() - cf.parse_classes() +if __name__ == "__main__": + cf = SimilarityFinder() + cf.parse_classes() diff --git a/scripts/amazon_helpers.py b/scripts/amazon_helpers.py deleted file mode 100644 index ae42981205..0000000000 --- a/scripts/amazon_helpers.py +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -"""Helper functions for accessing Amazon API for textbooks""" -from django.db.models import Q -from django.utils.encoding import smart_str - -from amazonproduct.errors import InvalidParameterValue -from timetable.models import Section - -def get_amazon_fields(isbn, api): - try: - result = api.item_lookup(isbn.strip(), - IdType='ISBN', - SearchIndex='Books', - ResponseGroup='Large') - info = { - "DetailPageURL" : get_detail_page(result), - "ImageURL" : get_image_url(result), - "Author" : get_author(result), - "Title" : get_title(result) - } - except InvalidParameterValue: - print "\t\t\tInvalidParameterException. ISBN: " + isbn - info = None - - except: - import traceback - traceback.print_exc() - info = None - - return info - -def get_detail_page(result): - try: - return smart_str(result.Items.Item.DetailPageURL) - except: - return "Cannot Be Found" - -def get_image_url(result): - try: - return smart_str(result.Items.Item.MediumImage.URL) - except: - return "Cannot Be Found" - -def get_author(result): - try: - return smart_str(result.Items.Item.ItemAttributes.Author) - except: - return "Cannot Be Found" - -def get_title(result): - try: - return smart_str(result.Items.Item.ItemAttributes.Title) - except: - return "Cannot Be Found" - -def get_all_sections(crs, semester): - return list(Section.objects.filter((Q(semester__in=[semester, 'Y'])), course=crs).values_list('meeting_section', flat=True).distinct()) - - return sections - \ No newline at end of file diff --git a/scripts/base_parser.py b/scripts/base_parser.py index fb174395c9..e33f2740a8 100644 --- a/scripts/base_parser.py +++ b/scripts/base_parser.py @@ -16,118 +16,121 @@ import os import django + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") django.setup() from timetable.models import Course, Section, Offering -class BaseParser: - __metaclass__ = abc.ABCMeta - - def __init__(self, semester=None, num_courses=None): - self.semester = semester - self.num_courses = num_courses - self.bar = None - - def parse_courses(self): - """Update database with courses and offerings for given semester.""" - max_val = self.num_courses or progressbar.UnknownLength - self.bar = progressbar.ProgressBar(max_value=max_val) - for i, course_element in enumerate(self.get_course_elements()): - self.parse_and_save_course(course_element) - # self.bar.update(i) - - def parse_and_save_course(self, course_element): - """ - Update database with new course and its offerings corresponding to the given - bs4 element. - """ - course_code, course_data = self.parse_course_element(course_element) - if course_code: - course_obj, _ = Course.objects.update_or_create(code=course_code, - defaults=course_data) - for section_element in self.get_section_elements(course_element): - self.parse_and_save_section(section_element, course_obj) - - def parse_and_save_section(self, section_element, course_obj): - """ - Update database with new section and its offerings corresponding to the given - bs4 element and django course object. - """ - section_code, section_data = self.parse_section_element(section_element) - if section_code: - section_obj, _ = Section.objects.update_or_create(course=course_obj, - meeting_section=section_code, - semester=section_data.get('semester', self.semester), - defaults=section_data) - section_obj.offering_set.all().delete() - for meeting_element in self.get_meeting_elements(section_element): - self.parse_and_save_meeting(meeting_element, section_obj) - - def parse_and_save_meeting(self, meeting_element, section_obj): - """ - Update database with new offering corresponding to the given bs4 element - and other data. - """ - meeting_data = self.parse_meeting_element(meeting_element) - if meeting_data: - Offering.objects.create(section=section_obj, **meeting_data) - - def update_progress(self, num_parsed, num_total=None): - if num_total is not None: - self.bar = progressbar.ProgressBar(max_value=num_total) - self.bar.update(num_parsed) - - @abc.abstractmethod - def get_course_elements(self): - """ - Return a generator of bs4 elements each corresponding to a single course. - Optionally, set self.num_courses to the number of courses to be parsed - (if known before hand) to enable progress bar display. - """ - - @abc.abstractmethod - def parse_course_element(self, course_element): - """ - Take a bs4 element corresponding to a course, and return the course code - for the course, and a dictionary of any other attributes to be saved from - that course. The keys of the dictionary should match the column names in - the model for the course (e.g. name, description). If invalid data, return - None, None - """ - - @abc.abstractmethod - def get_section_elements(self, course_element): - """ - Return a generator of bs4 elements corresponding to the sections of the - given course. - """ - - @abc.abstractmethod - def parse_section_element(self, section_element): - """ - Take a bs4 element corresponding to a section, and return the section code - for the section, and a dictionary of any other attributes to be saved from - that section. The keys of the dictionary should match the column names in - the model for the section (e.g. instructors, section_type). If invalid - data, return None, None - """ - - @abc.abstractmethod - def get_meeting_elements(self, section_element): - """ - Return a generator of bs4 elements corresponding to the meetings of the - given section. - """ +class BaseParser(metaclass=abc.ABCMeta): + def __init__(self, semester=None, num_courses=None): + self.semester = semester + self.num_courses = num_courses + self.bar = None + + def parse_courses(self): + """Update database with courses and offerings for given semester.""" + max_val = self.num_courses or progressbar.UnknownLength + self.bar = progressbar.ProgressBar(max_value=max_val) + for i, course_element in enumerate(self.get_course_elements()): + self.parse_and_save_course(course_element) + # self.bar.update(i) + + def parse_and_save_course(self, course_element): + """ + Update database with new course and its offerings corresponding to the given + bs4 element. + """ + course_code, course_data = self.parse_course_element(course_element) + if course_code: + course_obj, _ = Course.objects.update_or_create( + code=course_code, defaults=course_data + ) + for section_element in self.get_section_elements(course_element): + self.parse_and_save_section(section_element, course_obj) + + def parse_and_save_section(self, section_element, course_obj): + """ + Update database with new section and its offerings corresponding to the given + bs4 element and django course object. + """ + section_code, section_data = self.parse_section_element(section_element) + if section_code: + section_obj, _ = Section.objects.update_or_create( + course=course_obj, + meeting_section=section_code, + semester=section_data.get("semester", self.semester), + defaults=section_data, + ) + section_obj.offering_set.all().delete() + for meeting_element in self.get_meeting_elements(section_element): + self.parse_and_save_meeting(meeting_element, section_obj) + + def parse_and_save_meeting(self, meeting_element, section_obj): + """ + Update database with new offering corresponding to the given bs4 element + and other data. + """ + meeting_data = self.parse_meeting_element(meeting_element) + if meeting_data: + Offering.objects.create(section=section_obj, **meeting_data) + + def update_progress(self, num_parsed, num_total=None): + if num_total is not None: + self.bar = progressbar.ProgressBar(max_value=num_total) + self.bar.update(num_parsed) + + @abc.abstractmethod + def get_course_elements(self): + """ + Return a generator of bs4 elements each corresponding to a single course. + Optionally, set self.num_courses to the number of courses to be parsed + (if known before hand) to enable progress bar display. + """ + + @abc.abstractmethod + def parse_course_element(self, course_element): + """ + Take a bs4 element corresponding to a course, and return the course code + for the course, and a dictionary of any other attributes to be saved from + that course. The keys of the dictionary should match the column names in + the model for the course (e.g. name, description). If invalid data, return + None, None + """ + + @abc.abstractmethod + def get_section_elements(self, course_element): + """ + Return a generator of bs4 elements corresponding to the sections of the + given course. + """ + + @abc.abstractmethod + def parse_section_element(self, section_element): + """ + Take a bs4 element corresponding to a section, and return the section code + for the section, and a dictionary of any other attributes to be saved from + that section. The keys of the dictionary should match the column names in + the model for the section (e.g. instructors, section_type). If invalid + data, return None, None + """ + + @abc.abstractmethod + def get_meeting_elements(self, section_element): + """ + Return a generator of bs4 elements corresponding to the meetings of the + given section. + """ + + @abc.abstractmethod + def parse_meeting_element(self, meeting_element): + """ + Take a bs4 element corresponding to a meeting, and return a dictionary + of attributes to be saved from that meeting. The keys of the dictionary + should match the column names in the model for the section (e.g. day, + time_start, time_end, location, etc.). If invalid data, return None. + """ - @abc.abstractmethod - def parse_meeting_element(self, meeting_element): - """ - Take a bs4 element corresponding to a meeting, and return a dictionary - of attributes to be saved from that meeting. The keys of the dictionary - should match the column names in the model for the section (e.g. day, - time_start, time_end, location, etc.). If invalid data, return None. - """ # TEMPLATE FOR BASEPARSER SUBCLASS: """ @@ -196,4 +199,3 @@ def parse_meeting_element(self, meeting_element): } return meeting_data """ - diff --git a/scripts/base_writer.py b/scripts/base_writer.py index bdc30844a9..5d9e54d896 100644 --- a/scripts/base_writer.py +++ b/scripts/base_writer.py @@ -14,103 +14,104 @@ import json -class BaseWriter: - __metaclass__ = abc.ABCMeta - - def __init__(self, semester=None): - self.semester = semester - - def write_courses(self, filename): - """Update database with courses and offerings for given semester.""" - f = open(filename, 'w').close() # clear current contents - with open(filename, 'a') as outfile: - for i, course_element in enumerate(self.get_course_elements()): - outfile.write(self.get_course_writable(course_element) + '\n') - - def get_course_writable(self, course_element): - """ - Update database with new course and its offerings corresponding to the given - bs4 element. - """ - course_code, course_data = self.parse_course_element(course_element) - - section_writables = map(self.get_section_writable, - self.get_section_elements(course_element)) - - course_writable = { - 'course_code': course_code, - 'course_data': course_data, - 'sections': section_writables - } - return json.dumps(course_writable) - - def get_section_writable(self, section_element): - section_code, section_data = self.parse_section_element(section_element) - section_data['semester'] = section_data.get('semester', self.semester) - - meeting_writables = map(self.get_meeting_writable, - self.get_meeting_elements(section_element)) - - section_writable = { - 'section_code': section_code, - 'section_data': section_data, - 'meetings': meeting_writables - } - return section_writable - - def get_meeting_writable(self, meeting_element): - return self.parse_meeting_element(meeting_element) - - @abc.abstractmethod - def get_course_elements(self): - """ - Return a generator of bs4 elements each corresponding to a single course. - Optionally, set self.num_courses to the number of courses to be parsed - (if known before hand) to enable progress bar display. - """ +class BaseWriter(metaclass=abc.ABCMeta): + def __init__(self, semester=None): + self.semester = semester + + def write_courses(self, filename): + """Update database with courses and offerings for given semester.""" + f = open(filename, "w").close() # clear current contents + with open(filename, "a") as outfile: + for i, course_element in enumerate(self.get_course_elements()): + outfile.write(self.get_course_writable(course_element) + "\n") + + def get_course_writable(self, course_element): + """ + Update database with new course and its offerings corresponding to the given + bs4 element. + """ + course_code, course_data = self.parse_course_element(course_element) + + section_writables = list( + map(self.get_section_writable, self.get_section_elements(course_element)) + ) + + course_writable = { + "course_code": course_code, + "course_data": course_data, + "sections": section_writables, + } + return json.dumps(course_writable) + + def get_section_writable(self, section_element): + section_code, section_data = self.parse_section_element(section_element) + section_data["semester"] = section_data.get("semester", self.semester) + + meeting_writables = list( + map(self.get_meeting_writable, self.get_meeting_elements(section_element)) + ) + + section_writable = { + "section_code": section_code, + "section_data": section_data, + "meetings": meeting_writables, + } + return section_writable + + def get_meeting_writable(self, meeting_element): + return self.parse_meeting_element(meeting_element) + + @abc.abstractmethod + def get_course_elements(self): + """ + Return a generator of bs4 elements each corresponding to a single course. + Optionally, set self.num_courses to the number of courses to be parsed + (if known before hand) to enable progress bar display. + """ + + @abc.abstractmethod + def parse_course_element(self, course_element): + """ + Take a bs4 element corresponding to a course, and return the course code + for the course, and a dictionary of any other attributes to be writed from + that course. The keys of the dictionary should match the column names in + the model for the course (e.g. name, description). If invalid data, return + None, None + """ + + @abc.abstractmethod + def get_section_elements(self, course_element): + """ + Return a generator of bs4 elements corresponding to the sections of the + given course. + """ + + @abc.abstractmethod + def parse_section_element(self, section_element): + """ + Take a bs4 element corresponding to a section, and return the section code + for the section, and a dictionary of any other attributes to be saved from + that section. The keys of the dictionary should match the column names in + the model for the section (e.g. instructors, section_type). If invalid + data, return None, None + """ + + @abc.abstractmethod + def get_meeting_elements(self, section_element): + """ + Return a generator of bs4 elements corresponding to the meetings of the + given section. + """ + + @abc.abstractmethod + def parse_meeting_element(self, meeting_element): + """ + Take a bs4 element corresponding to a meeting, and return a dictionary + of attributes to be saved from that meeting. The keys of the dictionary + should match the column names in the model for the section (e.g. day, + time_start, time_end, location, etc.). If invalid data, return None. + """ - @abc.abstractmethod - def parse_course_element(self, course_element): - """ - Take a bs4 element corresponding to a course, and return the course code - for the course, and a dictionary of any other attributes to be writed from - that course. The keys of the dictionary should match the column names in - the model for the course (e.g. name, description). If invalid data, return - None, None - """ - - @abc.abstractmethod - def get_section_elements(self, course_element): - """ - Return a generator of bs4 elements corresponding to the sections of the - given course. - """ - - @abc.abstractmethod - def parse_section_element(self, section_element): - """ - Take a bs4 element corresponding to a section, and return the section code - for the section, and a dictionary of any other attributes to be saved from - that section. The keys of the dictionary should match the column names in - the model for the section (e.g. instructors, section_type). If invalid - data, return None, None - """ - - @abc.abstractmethod - def get_meeting_elements(self, section_element): - """ - Return a generator of bs4 elements corresponding to the meetings of the - given section. - """ - - @abc.abstractmethod - def parse_meeting_element(self, meeting_element): - """ - Take a bs4 element corresponding to a meeting, and return a dictionary - of attributes to be saved from that meeting. The keys of the dictionary - should match the column names in the model for the section (e.g. day, - time_start, time_end, location, etc.). If invalid data, return None. - """ # TEMPLATE FOR BASEPARSER SUBCLASS: """ @@ -179,4 +180,3 @@ def parse_meeting_element(self, meeting_element): } return meeting_data """ - diff --git a/scripts/common.py b/scripts/common.py index 409ecea0b3..80085b5e48 100644 --- a/scripts/common.py +++ b/scripts/common.py @@ -13,61 +13,69 @@ import time from selenium.common.exceptions import TimeoutException + def parse_tz_time(time): - """1:30PM -> 13:30, 11:30AM -> 11:30""" - time_str = time[:-2] - hour, minutes = time_str.split(':') - new_hour = str(int(hour) + 12) if (time[-2:] == 'PM' and hour != '12') else hour - return new_hour + ':' + minutes + """1:30PM -> 13:30, 11:30AM -> 11:30""" + time_str = time[:-2] + hour, minutes = time_str.split(":") + new_hour = str(int(hour) + 12) if (time[-2:] == "PM" and hour != "12") else hour + return new_hour + ":" + minutes + def parse_range_time(time): - """'1-3' -> ('13:00', '15:00'), '9' -> ('9:00', '10:00')""" - if '-' in time: - start, end = map(convert_to_24, time.split('-')) - else: - start = convert_to_24(time) - end = str(int(start) + 1) - return start + ':00', end + ':00' + """'1-3' -> ('13:00', '15:00'), '9' -> ('9:00', '10:00')""" + if "-" in time: + start, end = list(map(convert_to_24, time.split("-"))) + else: + start = convert_to_24(time) + end = str(int(start) + 1) + return start + ":00", end + ":00" -def seleni_run(code): - start = time.time() - while True: - if time.time() - start > 15: - raise TimeoutException - try: - return code() - except: - continue -def repeat_until_timeout(f): - def _f(*args): - """Keep trying to get a none None result from f until success or timeout.""" +def seleni_run(code): start = time.time() while True: - if time.time() - start > 15: - raise TimeoutException - result = f(*args) - if result is not None: - return result - return _f + if time.time() - start > 15: + raise TimeoutException + try: + return code() + except: + continue + + +def repeat_until_timeout(f): + def _f(*args): + """Keep trying to get a none None result from f until success or timeout.""" + start = time.time() + while True: + if time.time() - start > 15: + raise TimeoutException + result = f(*args) + if result is not None: + return result + + return _f + def convert_to_24(time): - """ Assumes normal class hours. 1 -> 13, 9 -> 9, 10 -> 10, 7 -> 19. etc.""" - hour, minute = get_hours_minutes(time) - if 1 <= int(hour) <= 7: - return str(int(hour) + 12) + minute - else: - return hour + minute + """Assumes normal class hours. 1 -> 13, 9 -> 9, 10 -> 10, 7 -> 19. etc.""" + hour, minute = get_hours_minutes(time) + if 1 <= int(hour) <= 7: + return str(int(hour) + 12) + minute + else: + return hour + minute + def add_time(time): - """ 11 -> 12, 11:30 -> 12:30 """ - hour, minute = get_hours_minutes(time) - return convert_to_24(str(int(hour) + 1) + minute) + """11 -> 12, 11:30 -> 12:30""" + hour, minute = get_hours_minutes(time) + return convert_to_24(str(int(hour) + 1) + minute) + def get_hours_minutes(time): - """ Safely get hours minutes, even if time has no minutes, e.g. 10 """ - if ':' in time: - h, m = time.split(':') - return h, ':' + m - else: - return time, '' + """Safely get hours minutes, even if time has no minutes, e.g. 10""" + if ":" in time: + h, m = time.split(":") + return h, ":" + m + else: + return time, "" diff --git a/scripts/courses_posted_mailer.py b/scripts/courses_posted_mailer.py deleted file mode 100644 index 9193dad9ef..0000000000 --- a/scripts/courses_posted_mailer.py +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -import django, os, json -import sys -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") -django.setup() -from student.models import * -from timetable.models import Semester -from mailer import Mailer - -if len(sys.argv) < 4: - print("Please specify a school, a term (e.g. Fall), and a year (e.g. 2017).") - exit(0) -school = sys.argv[1] -term = sys.argv[2] -year = int(sys.argv[3]) - -semester = Semester.objects.filter(name=term, year=year) - -students = PersonalTimetable.objects.filter(school=school, semester=semester).values_list("student", flat=True).distinct() -client = Mailer() - -for student_id in students: - student = Student.objects.get(id=student_id) - - if not student.emails_enabled or not student.user.email or student.class_year < 2018: - continue - - client.send_mail(student, "Registration Starts Tomorrow", "email_registration_deadline.html", {'freshman': student.class_year == 2020, - 'sophomore': student.class_year == 2019, 'junior': student.class_year == 2018}) -client.cleanup() diff --git a/scripts/jhu_smtp_mailer.py b/scripts/jhu_smtp_mailer.py deleted file mode 100644 index 86da8ab396..0000000000 --- a/scripts/jhu_smtp_mailer.py +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -import django, os, json, traceback, sys, smtplib -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") -django.setup() -from email.mime.text import MIMEText -from django.template.loader import render_to_string -from student.models import * -from student.views import create_unsubscribe_link -from semesterly.settings import get_secret - -class JHUSMTPMailer(): - def __init__(self): - # Create server object with SSL option - self.server = smtplib.SMTP('smtp.johnshopkins.edu') - - # Define to - self.sender = 'contact@semester.ly' - - def cleanup(self): - self.server.quit() - - def send_mail(self, student, subject, template, params={}): - ''' - Sends email to a student - Parameters: - student: Student to send email to - subject: Subject of the email - params: Dictionary of things to go into template - template: HTML email template - ''' - if not student.emails_enabled or not student.user.email: - return - - unsub_link = "https://semester.ly" + create_unsubscribe_link(student) - student.user.first_name = student.user.first_name.encode('utf-8') - student.user.last_name = student.user.last_name.encode('utf-8') - - params.update({ - 'user': student, - 'unsub_link': unsub_link, - }) - - msg_html = render_to_string(template, params) - - # Create message - recipient = student.user.email - msg = MIMEText(msg_html.encode('utf-8'),'html') - - msg['subject'] = subject - msg['From'] = self.sender - msg['To'] = recipient - print ("Sending to: " + str(recipient)) - try: - # Perform operations via server - # TODO: Ping their email address to make sure it's fine - self.server.sendmail(self.sender, [recipient], msg.as_string()) - except: - e = sys.exc_info()[0] - print("skipped " + str(student.user.email)) - traceback.print_exc() diff --git a/scripts/json_redumper.py b/scripts/json_redumper.py index 161a075cb2..3826d71780 100644 --- a/scripts/json_redumper.py +++ b/scripts/json_redumper.py @@ -11,33 +11,40 @@ # GNU General Public License for more details. import django, os, json + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") django.setup() from timetable.models import * -COURSE_BASE_ID = Course.objects.latest('id').id -SECTION_BASE_ID = Section.objects.latest('id').id -OFFERING_BASE_ID = Offering.objects.latest('id').id +COURSE_BASE_ID = Course.objects.latest("id").id +SECTION_BASE_ID = Section.objects.latest("id").id +OFFERING_BASE_ID = Offering.objects.latest("id").id -print "BASED IDs: C {0}, S {1}, O {2}".format(COURSE_BASE_ID,SECTION_BASE_ID,OFFERING_BASE_ID) +print( + "BASED IDs: C {0}, S {1}, O {2}".format( + COURSE_BASE_ID, SECTION_BASE_ID, OFFERING_BASE_ID + ) +) -with open('everything.json') as data_file: - data = json.load(data_file) -print "{0} Fixtures Detected".format(len(data)) +with open("everything.json") as data_file: + data = json.load(data_file) +print("{0} Fixtures Detected".format(len(data))) new_json = [] for fixture in data: - if fixture['model'] == "timetable.course": - fixture['pk'] = COURSE_BASE_ID + int(fixture['pk']) - elif fixture['model'] == "timetable.section": - fixture['pk'] = SECTION_BASE_ID + int(fixture['pk']) - fixture['fields']['course'] = COURSE_BASE_ID + int(fixture['fields']['course']) - elif fixture['model'] == "timetable.offering": - fixture['pk'] = OFFERING_BASE_ID + int(fixture['pk']) - fixture['fields']['section'] = SECTION_BASE_ID + int(fixture['fields']['section']) - new_json.append(fixture) - -with open('everything_redumped.json','w') as data_file: - data_file.write(json.dumps(new_json)) - data_file.close() \ No newline at end of file + if fixture["model"] == "timetable.course": + fixture["pk"] = COURSE_BASE_ID + int(fixture["pk"]) + elif fixture["model"] == "timetable.section": + fixture["pk"] = SECTION_BASE_ID + int(fixture["pk"]) + fixture["fields"]["course"] = COURSE_BASE_ID + int(fixture["fields"]["course"]) + elif fixture["model"] == "timetable.offering": + fixture["pk"] = OFFERING_BASE_ID + int(fixture["pk"]) + fixture["fields"]["section"] = SECTION_BASE_ID + int( + fixture["fields"]["section"] + ) + new_json.append(fixture) + +with open("everything_redumped.json", "w") as data_file: + data_file.write(json.dumps(new_json)) + data_file.close() diff --git a/scripts/mailer.py b/scripts/mailer.py deleted file mode 100644 index fc2c0a6b12..0000000000 --- a/scripts/mailer.py +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -import django, os, json, traceback, sys, smtplib -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") -django.setup() -from email.mime.text import MIMEText -from django.template.loader import render_to_string -from student.models import * -from student.views import create_unsubscribe_link -from semesterly.settings import get_secret - -class Mailer(): - def __init__(self): - # Create server object with SSL option - self.server = smtplib.SMTP_SSL(get_secret('MAILER_SERVER')) - self.server.login(get_secret('MAILER_USER'), get_secret('MAILER_PASSWORD')) - - # Define to - self.sender = 'textbooks@semester.ly' - - def cleanup(self): - self.server.quit() - - def send_mail(self, student, subject, template, params={}): - ''' - Sends email to a student - Parameters: - student: Student to send email to - subject: Subject of the email - params: Dictionary of things to go into template - template: HTML email template - ''' - if not student.emails_enabled or not student.user.email: - return - - unsub_link = "https://semester.ly" + create_unsubscribe_link(student) - student.user.first_name = student.user.first_name.encode('utf-8') - student.user.last_name = student.user.last_name.encode('utf-8') - - params.update({ - 'user': student, - 'unsub_link': unsub_link, - }) - - msg_html = render_to_string(template, params) - - # Create message - recipient = student.user.email - msg = MIMEText(msg_html.encode('utf-8'),'html') - - msg['subject'] = subject - msg['From'] = self.sender - msg['To'] = recipient - print ("Sending to: " + str(recipient)) - - try: - # Perform operations via server - # TODO: Ping their email address to make sure it's fine - self.server.sendmail(self.sender, [recipient], msg.as_string()) - except: - e = sys.exc_info()[0] - print("skipped " + str(student.user.email)) - traceback.print_exc() - - self.server = smtplib.SMTP_SSL(MAILER_SERVER) - self.server.login(MAILER_USER, MAILER_PASSWORD) \ No newline at end of file diff --git a/scripts/manual_entry.py b/scripts/manual_entry.py index 44ae4b9f86..8c28223874 100644 --- a/scripts/manual_entry.py +++ b/scripts/manual_entry.py @@ -13,9 +13,12 @@ import django, os, json import traceback import sys + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") django.setup() from timetable.models import * +from parsing.library.utils import is_short_course +from timetable.school_mappers import SCHOOLS_MAP if len(sys.argv) < 3: print("Please specify a school and semester.") @@ -24,102 +27,105 @@ semester = sys.argv[2] section_type_map = { - 'LEC': 'L', - 'TUT': 'T', - 'LAB': 'P', - } -days = ['_', 'M', 'T', 'W', 'R', 'F'] + "LEC": "L", + "TUT": "T", + "LAB": "P", +} +days = ["_", "M", "T", "W", "R", "F"] -print "Manual entry starting for " + school +print("Manual entry starting for " + school) while True: - try: - cont = raw_input("ENTER COURSE? Y/N") - if cont != 'Y': - print "EXITTING" - exit(1) - - name = raw_input("Enter course name: ") - code = raw_input("Enter course code: ") - desc = raw_input("Enter description: ") - prereqs = raw_input("Enter preqreqs: ") - credits = float(raw_input("Enter credits: ")) - areas = raw_input("Enter areas: ") - dept = raw_input("Enter department: ") - level = int(raw_input("Enter level: ")) - - course, CourseCreated = Course.objects.update_or_create( - code = code, - school = school, + try: + cont = input("ENTER COURSE? Y/N") + if cont != "Y": + print("EXITTING") + exit(1) + + name = input("Enter course name: ") + code = input("Enter course code: ") + desc = input("Enter description: ") + prereqs = input("Enter preqreqs: ") + credits = float(input("Enter credits: ")) + areas = input("Enter areas: ") + dept = input("Enter department: ") + level = int(input("Enter level: ")) + + course, CourseCreated = Course.objects.update_or_create( + code=code, + school=school, defaults={ - 'name': name, - 'description': desc, - 'areas': areas, - 'prerequisites': prereqs, - 'num_credits': credits, - 'level': level, - 'department': dept - } + "name": name, + "description": desc, + "areas": areas, + "prerequisites": prereqs, + "num_credits": credits, + "level": level, + "department": dept, + }, ) - print "-----------------COURSE CREATED----------------" - - while course and True: - cont = raw_input("ENTER SECTION? Y/N") - if cont != 'Y': - break - - section_code = raw_input("Section code: ") - print section_type_map - section_type = raw_input("Section type: ") - instructors = raw_input("Instructors: ") - size = int(raw_input("Size: ")) - waitlist_size = int(raw_input("Waitlist Size: ")) - enrolment = int(raw_input("Enrollment: ")) - waitlist = int(raw_input("Waitlist: ")) - - - section, section_created = Section.objects.update_or_create( - course = course, - semester = semester.upper()[:1], - meeting_section = section_code, - section_type = section_type, - defaults = { - 'instructors': instructors, - 'size': size, - 'enrolment': enrolment, - 'waitlist': waitlist, - 'waitlist_size': waitlist_size - } - ) - - print "-----------------SECTION CREATED----------------" - - while section and True: - cont = raw_input("ENTER OFFERING? Y/N") - if cont != 'Y': - print "EXITTING" - break - - print days - day = raw_input("day: ") - start = raw_input("time_start (XX:YY) : ") - end = raw_input("time_end (XX:YY) : ") - location = raw_input("location: ") - - offering, OfferingCreated = Offering.objects.update_or_create( - section = section, - day = day, - time_start = start, - time_end = end, - defaults = { - 'location':location - } - ) - - print "-----------------OFFERING CREATED----------------" - - - - except EOFError: - print "EXITING" - exit(0) + print("-----------------COURSE CREATED----------------") + + while course and True: + cont = input("ENTER SECTION? Y/N") + if cont != "Y": + break + + section_code = input("Section code: ") + print(section_type_map) + section_type = input("Section type: ") + instructors = input("Instructors: ") + size = int(input("Size: ")) + waitlist_size = int(input("Waitlist Size: ")) + enrolment = int(input("Enrollment: ")) + waitlist = int(input("Waitlist: ")) + + section, section_created = Section.objects.update_or_create( + course=course, + semester=semester.upper()[:1], + meeting_section=section_code, + section_type=section_type, + defaults={ + "instructors": instructors, + "size": size, + "enrolment": enrolment, + "waitlist": waitlist, + "waitlist_size": waitlist_size, + }, + ) + + print("-----------------SECTION CREATED----------------") + + while section and True: + cont = input("ENTER OFFERING? Y/N") + if cont != "Y": + print("EXITTING") + break + + print(days) + + short_course_weeks_limit = SCHOOLS_MAP[school].short_course_weeks_limit + day = input("day: ") + start = input("time_start (XX:YY) : ") + end = input("time_end (XX:YY) : ") + offer_date_start = input("date_start mm-dd-yyyy : ") + offer_date_end = input("date_end mm-dd-yyyy : ") + location = input("location: ") + offering, OfferingCreated = Offering.objects.update_or_create( + section=section, + day=day, + time_start=start, + time_end=end, + date_start=offer_date_start, + date_end=offer_date_end, + is_short_course=is_short_course( + date_start, date_end, short_course_weeks_limit + ), + defaults={"location": location}, + ) + + print("-----------------OFFERING CREATED----------------") + + except EOFError: + print("EXITING") + exit(0) diff --git a/scripts/migrations/__init__.py b/scripts/migrations/__init__.py index c53afacbff..defc0f99ee 100644 --- a/scripts/migrations/__init__.py +++ b/scripts/migrations/__init__.py @@ -9,4 +9,3 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - diff --git a/scripts/notice_mailer.py b/scripts/notice_mailer.py deleted file mode 100644 index e1a417cd0b..0000000000 --- a/scripts/notice_mailer.py +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -import django, os, json -import sys -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") -django.setup() -from student.models import * -from scripts import jhu_smtp_mailer - -school = 'jhu' -client = jhu_smtp_mailer.JHUSMTPMailer() # TODO: Use AWS Mailer in prod - -# JHU EMAIL -############ -students = PersonalTimetable.objects.filter(school=school).values_list("student", flat=True).distinct() -for student_id in students: - student = Student.objects.get(id=student_id) - client.send_mail(student, "Exciting news from Semester.ly!", "email_notice.html", {'data': None}) -client.cleanup() - -# NON-JHU EMAIL -################ -students = PersonalTimetable.objects.exclude(school=school).values_list("student", flat=True).distinct() -for student_id in students: - student = Student.objects.get(id=student_id) - client.send_mail(student, "Update from Semester.ly!", "email_nonjhu_notice.html", {'data': None}) -client.cleanup() diff --git a/scripts/notification_sender.py b/scripts/notification_sender.py deleted file mode 100644 index 601cd248ef..0000000000 --- a/scripts/notification_sender.py +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -import sys, traceback, django, os, base64 -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") -django.setup() -import requests, json, argparse -from timetable.models import * -from student.models import * -from pprint import pprint -from pywebpush import WebPusher - -FCM_KEY = "AIzaSyAtyW5t0ApWhz_neMTQp48OkFphLyA8A5g" -FCM_URL = "https://fcm.googleapis.com/fcm/send" - -parser = argparse.ArgumentParser(description='Process some integers.') -parser.add_argument('--school', dest='school', default=None, help='the school to send the message to') -parser.add_argument('--message', dest='message', help='the school to send the message to') -parser.add_argument('--title', dest='title', help='the school to send the message to', default="Semester.ly") - -args = parser.parse_args() - -if not args.message: - print "Please provide a message" - exit() -else: - print "\nMessage: " + args.message - print "Title: " + args.title - -if not args.school: - print "Sending to all schools" - students = Student.objects.all() -else: - students = Student.objects.filter(personaltimetable__courses__school=args.school).distinct() | Student.objects.filter(school=args.school).distinct() - print "Sending to <" + args.school + "> student(s)" -tokens = RegistrationToken.objects.filter(student__in=students) -print "This will send to ", tokens.count(), "device(s)" - -confirmation = raw_input("Would you like to send? (Y/n)") -if confirmation.lower() != "y": - print "Quitting...\n" - exit() - -for token in tokens: - subscription_info = {"endpoint":"https://android.googleapis.com/gcm/send/fuKkKlzSEEE:APA91bFKiuJ3LEx7Ke3xOEJ…Lx-t8INikH97ewASUn6OSzRAGeGf8Eu1B5Q7Lju_7QBj5VeGjwCePUufhiSzFXqEogaJ4esAqA","keys":{"p256dh":token.p256dh,"auth":token.auth}} - data = '{"data": {"message":"' + args.message + '","title":"' + args.title + '"}}' - encoded = WebPusher(subscription_info).encode(data) - crypto_key = "dh=" + encoded["crypto_key"] - salt = "salt=" + encoded['salt'] - headers = {'Authorization': 'key=' + FCM_KEY, 'Content-Type': 'application/json', } - headers.update({'crypto-key': crypto_key, 'content-encoding': 'aesgcm', 'encryption': salt}) - fcm_data = {"raw_data": base64.b64encode(encoded.get('body')), "registration_ids": [token.endpoint[40:]]} - resp = requests.post(FCM_URL, data=json.dumps(fcm_data), headers=headers) diff --git a/scripts/pitt/__init__.py b/scripts/pitt/__init__.py index c53afacbff..defc0f99ee 100644 --- a/scripts/pitt/__init__.py +++ b/scripts/pitt/__init__.py @@ -9,4 +9,3 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - diff --git a/scripts/pitt/pittAPI.py b/scripts/pitt/pittAPI.py index 42a85742b2..682d118723 100644 --- a/scripts/pitt/pittAPI.py +++ b/scripts/pitt/pittAPI.py @@ -1,3 +1,15 @@ +# Copyright (C) 2017 Semester.ly Technologies, LLC +# +# Semester.ly is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Semester.ly is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + # The Pitt API, to access workable data of the University of Pittsburgh # Copyright (C) 2015 Ritwik Gupta # @@ -15,7 +27,7 @@ # with this program; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -import urllib2 +import urllib.request, urllib.error, urllib.parse import subprocess import re @@ -32,7 +44,7 @@ def __init__(self): @staticmethod def _retrieve_from_url(url): - page = urllib2.urlopen(url) + page = urllib.request.urlopen(url) soup = BeautifulSoup(page.read()) courses = soup.findAll("tr", {"class": "odd"}) courses_even = soup.findAll("tr", {"class": "even"}) @@ -49,25 +61,29 @@ def get_courses(self, term, subject): subject = subject.upper() - url = 'http://www.courses.as.pitt.edu/results-subja.asp?TERM={}&SUBJ={}'.format(term, subject) + url = "http://www.courses.as.pitt.edu/results-subja.asp?TERM={}&SUBJ={}".format( + term, subject + ) courses = self._retrieve_from_url(url) course_details = [] for course in courses: - details = [course_detail.string.replace(' ', '').strip() - for course_detail in course - if course_detail.string is not None - and len(course_detail.string.strip()) > 2] + details = [ + course_detail.string.replace(" ", "").strip() + for course_detail in course + if course_detail.string is not None + and len(course_detail.string.strip()) > 2 + ] course_details.append( { - 'catalog_number': details[0], - 'term': details[1].replace('\r\n\t', ''), - 'title': details[2], - 'class_number': course.find('a').contents[0], - 'instructor': details[3] if len(details[3]) > 0 else 'Not decided', - 'credits': details[4] + "catalog_number": details[0], + "term": details[1].replace("\r\n\t", ""), + "title": details[2], + "class_number": course.find("a").contents[0], + "instructor": details[3] if len(details[3]) > 0 else "Not decided", + "credits": details[4], } ) @@ -78,29 +94,28 @@ def get_courses(self, term, subject): @staticmethod def _get_course_dict(details): - course_details = [] if len(details) == 6: course_details.append( { - 'subject': details[0], - 'catalog_number': details[1], - 'term': details[2].replace('\r\n\t', ' '), - 'title': details[3], - 'instructor': details[4] if len(details[4]) > 0 else 'Not decided', - 'credits': details[5] + "subject": details[0], + "catalog_number": details[1], + "term": details[2].replace("\r\n\t", " "), + "title": details[3], + "instructor": details[4] if len(details[4]) > 0 else "Not decided", + "credits": details[5], } ) else: course_details.append( { - 'subject': 'Not available', - 'catalog_number': details[0], - 'term': details[1].replace('\r\n\t', ' '), - 'title': details[2].replace('\r\n\t', ' '), - 'instructor': details[3] if len(details[3]) > 0 else 'Not decided', - 'credits': details[4] + "subject": "Not available", + "catalog_number": details[0], + "term": details[1].replace("\r\n\t", " "), + "title": details[2].replace("\r\n\t", " "), + "instructor": details[3] if len(details[3]) > 0 else "Not decided", + "credits": details[4], } ) @@ -116,8 +131,10 @@ def get_courses_by_req(self, term, req): req = req.upper() - url = 'http://www.courses.as.pitt.edu/results-genedreqa.asp?REQ={}&TERM={}'.format(req, term) - page = urllib2.urlopen(url) + url = "http://www.courses.as.pitt.edu/results-genedreqa.asp?REQ={}&TERM={}".format( + req, term + ) + page = urllib.request.urlopen(url) soup = BeautifulSoup(page.read()) courses = soup.findAll("tr", {"class": "odd"}) courses_even = soup.findAll("tr", {"class": "even"}) @@ -135,28 +152,32 @@ def get_courses_by_req(self, term, req): pass for i in range(len(temp)): - temp[i] = temp[i].replace(' ', '') + temp[i] = temp[i].replace(" ", "") if len(temp) == 6: course_details.append( { - 'subject': temp[0].strip(), - 'catalog_number': temp[1].strip(), - 'term': temp[2].replace('\r\n\t', ' '), - 'title': temp[3].strip(), - 'instructor': 'Not decided' if len(temp[4].strip()) == 0 else temp[4].strip(), - 'credits': temp[5].strip() + "subject": temp[0].strip(), + "catalog_number": temp[1].strip(), + "term": temp[2].replace("\r\n\t", " "), + "title": temp[3].strip(), + "instructor": "Not decided" + if len(temp[4].strip()) == 0 + else temp[4].strip(), + "credits": temp[5].strip(), } ) else: course_details.append( { - 'subject': 'Not available', - 'catalog_number': temp[0].strip(), - 'term': temp[1].strip().replace('\r\n\t', ' '), - 'title': temp[2].replace('\r\n\t', ' '), - 'instructor': 'Not decided' if len(temp[3].strip()) == 0 else temp[3].strip(), - 'credits': temp[4].strip() + "subject": "Not available", + "catalog_number": temp[0].strip(), + "term": temp[1].strip().replace("\r\n\t", " "), + "title": temp[2].replace("\r\n\t", " "), + "instructor": "Not decided" + if len(temp[3].strip()) == 0 + else temp[3].strip(), + "credits": temp[4].strip(), } ) @@ -174,17 +195,22 @@ def get_class_description(class_number, term): :param: term: String, term number """ - url = 'http://www.courses.as.pitt.edu/detail.asp?CLASSNUM={}&TERM={}'.format(class_number, term) - page = urllib2.urlopen(url) + url = "http://www.courses.as.pitt.edu/detail.asp?CLASSNUM={}&TERM={}".format( + class_number, term + ) + page = urllib.request.urlopen(url) soup = BeautifulSoup(page.read()) - table = soup.findChildren('table')[0] - rows = table.findChildren('tr') + table = soup.findChildren("table")[0] + rows = table.findChildren("tr") has_description = False for row in rows: - cells = row.findChildren('td') + cells = row.findChildren("td") for cell in cells: if has_description: return cell.string.strip() - if len(cell.contents) > 0 and str(cell.contents[0]) == 'Description': - has_description = True \ No newline at end of file + if ( + len(cell.contents) > 0 + and str(cell.contents[0]) == "Description" + ): + has_description = True diff --git a/scripts/pitt/pitt_courses.py b/scripts/pitt/pitt_courses.py index 518a98607d..43a73c69ba 100644 --- a/scripts/pitt/pitt_courses.py +++ b/scripts/pitt/pitt_courses.py @@ -10,7 +10,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from urllib2 import urlopen +from urllib.request import urlopen import requests import re import datetime @@ -26,23 +26,23 @@ # django.setup() -class InvalidSemesterException(Exception): - pass +class InvalidSemesterException(Exception): + pass -if __name__ == '__main__': - semester = 'F' - if semester not in ['F', 'S']: - raise InvalidSemesterException("Semester must be either F or S") - # look up term numbers here: http://www.courses.as.pitt.edu - term = '2171' if semester == 'F' else '2164' - subjects_url = "http://www.courses.as.pitt.edu/subj-index.html" +if __name__ == "__main__": + semester = "F" + if semester not in ["F", "S"]: + raise InvalidSemesterException("Semester must be either F or S") + # look up term numbers here: http://www.courses.as.pitt.edu + term = "2171" if semester == "F" else "2164" - # find subject codes by looking for upper case sequences in page text - print "retrieving subject codes" - html = urlopen(subjects_url).read() - soup = BeautifulSoup(html) - text = soup.findAll(text=True) - subjects = re.findall(r'[A-Z]{2,}', ' '.join(text[1:])) + subjects_url = "http://www.courses.as.pitt.edu/subj-index.html" + # find subject codes by looking for upper case sequences in page text + print("retrieving subject codes") + html = urlopen(subjects_url).read() + soup = BeautifulSoup(html) + text = soup.findAll(text=True) + subjects = re.findall(r"[A-Z]{2,}", " ".join(text[1:])) diff --git a/scripts/populator.py b/scripts/populator.py index 0ffb12f659..ca131e860d 100644 --- a/scripts/populator.py +++ b/scripts/populator.py @@ -11,6 +11,7 @@ # GNU General Public License for more details. import django, os, sys, json + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") django.setup() from timetable.models import * @@ -18,49 +19,61 @@ from django.db.models import Q -def start_JSON_populator(school, sem): +def start_JSON_populator(school, sem): module_dir = os.path.dirname(__file__) # get current directory - file_path = os.path.join(module_dir, "../timetable/courses_json/" + school + "-" + sem + ".json") + file_path = os.path.join( + module_dir, "../timetable/courses_json/" + school + "-" + sem + ".json" + ) C, Co = school_to_models[school] course_objs = C.objects.all() json_data = convert_courses_to_json(course_objs, sem, school, 50000) - with open(file_path, 'w') as outfile: + with open(file_path, "w") as outfile: json.dump(json_data, outfile) + def convert_courses_to_json(courses, sem, school, limit=50): cs = [] - result_count = 0 # limiting the number of results one search query can provide to 50 + result_count = ( + 0 # limiting the number of results one search query can provide to 50 + ) for course in courses: - if result_count == limit: break + if result_count == limit: + break if has_offering(course, sem, school): cs.append(course) result_count += 1 return [get_course_serializable(course, sem, school) for course in cs] + def has_offering(course, sem, school): - SchoolCourse, SchoolCourseOffering = school_to_models[school] + SchoolCourse, SchoolCourseOffering = school_to_models[school] try: - res = SchoolCourseOffering.objects.filter(~Q(time_start__iexact='TBA'), - (Q(semester=sem) | Q(semester='Y')), - course_id=course.id) + res = SchoolCourseOffering.objects.filter( + ~Q(time_start__iexact="TBA"), + (Q(semester=sem) | Q(semester="Y")), + course_id=course.id, + ) for offering in res: day = offering.day - if day == 'S' or day == 'U': + if day == "S" or day == "U": return False return True if len(res) > 0 else False except: return False + def get_course_serializable(course, sem, school): d = model_to_dict(course) - d['sections'] = get_meeting_sections(course, sem, school) + d["sections"] = get_meeting_sections(course, sem, school) return d + def get_meeting_sections(course, semester, school): - SchoolCourse, SchoolCourseOffering = school_to_models[school] - offering_objs = SchoolCourseOffering.objects.filter((Q(semester=semester) | Q(semester='Y')), - course=course) + SchoolCourse, SchoolCourseOffering = school_to_models[school] + offering_objs = SchoolCourseOffering.objects.filter( + (Q(semester=semester) | Q(semester="Y")), course=course + ) sections = [] for o in offering_objs: if o.meeting_section not in sections: @@ -68,18 +81,18 @@ def get_meeting_sections(course, semester, school): sections.sort() return sections -if __name__ == "__main__": + +if __name__ == "__main__": if len(sys.argv) != 3: - print "Must specify school semester. e.g: python " + sys.argv[0] + " jhu F/f/S/s" + print( + "Must specify school semester. e.g: python " + sys.argv[0] + " jhu F/f/S/s" + ) exit(1) school = sys.argv[1].lower() sem = sys.argv[2].upper() if (school not in school_to_models) or (sem not in ["F", "S"]): - print "Invalid school or semester provided" + print("Invalid school or semester provided") exit(1) - print "Starting populator for " + school + " " + sem + print("Starting populator for " + school + " " + sem) start_JSON_populator(school, sem) - print "Done!" - - - + print("Done!") diff --git a/scripts/recommender/rec_analytic.py b/scripts/recommender/rec_analytic.py index c070216f6c..513d67c52d 100644 --- a/scripts/recommender/rec_analytic.py +++ b/scripts/recommender/rec_analytic.py @@ -11,6 +11,7 @@ # GNU General Public License for more details. import os, sys, django, pickle, progressbar, argparse + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") django.setup() import numpy as np @@ -25,9 +26,10 @@ import random from operator import itemgetter + def score(recommender, course_ids, similarities, num_remove): removed = list(np.random.choice(course_ids, num_remove, replace=False)) - print "removed: ", removed + print("removed: ", removed) for r in removed: course_ids.remove(r) scores = np.zeros(num_remove) @@ -39,7 +41,7 @@ def score(recommender, course_ids, similarities, num_remove): removed.remove(c) scores[i] = 1 elif recs[0] in similarities: - keys = map(lambda x: x[0], (similarities[recs[0]])) + keys = [x[0] for x in (similarities[recs[0]])] if set(removed).intersection(set(keys)): c = set(removed).intersection(set(keys)).pop() course_ids.append(c) @@ -47,23 +49,31 @@ def score(recommender, course_ids, similarities, num_remove): scores[i] = similarities[recs[0]][keys.index(c)][1] return scores + def main(args): start_time = time.time() - simfcn = 'cosine' + simfcn = "cosine" similarities = pickle.load(open("jhu.recommended.model", "rb")) recommender = Recommender(args.school, simfcn) ptts = [] if args.action == "all": - ptts = PersonalTimetable.objects.filter(school=args.school, semester=Semester.objects.filter(name=args.semester, year=args.year)) + ptts = PersonalTimetable.objects.filter( + school=args.school, + semester=Semester.objects.filter(name=args.semester, year=args.year), + ) else: - print(args.action) + print((args.action)) major_students = Student.objects.filter(major=args.action) - ptts = PersonalTimetable.objects.filter(school=args.school, semester=Semester.objects.filter(name=args.semester, year=args.year), student__in=major_students) + ptts = PersonalTimetable.objects.filter( + school=args.school, + semester=Semester.objects.filter(name=args.semester, year=args.year), + student__in=major_students, + ) scores = {} num_timetables = {} for ptt in ptts: - course_ids = map(lambda c: c.id, list(ptt.courses.all())) + course_ids = [c.id for c in list(ptt.courses.all())] length = len(course_ids) if length < args.num_remove + 1: continue @@ -74,21 +84,27 @@ def main(args): scores[length] += s num_timetables[length] += 1 print(num_timetables) - + for length in scores: scores[length] /= float(num_timetables[length]) print(scores) - pickle.dump(scores, open('recommender.' + args.school + '.scores', "wb")) + pickle.dump(scores, open("recommender." + args.school + ".scores", "wb")) + def get_args(): - parser = argparse.ArgumentParser(description='Recommender evaluation system') - parser.add_argument('--action', dest='action', required=True, type=str) - parser.add_argument('--school', dest='school', required=True, help="School is required", type=str) - parser.add_argument('--semester', dest='semester', required=True, help="", type=str) - parser.add_argument('--year', dest='year', required=True, help="", type=str) - parser.add_argument('--num_remove', dest='num_remove', required=True, help="", type=int) + parser = argparse.ArgumentParser(description="Recommender evaluation system") + parser.add_argument("--action", dest="action", required=True, type=str) + parser.add_argument( + "--school", dest="school", required=True, help="School is required", type=str + ) + parser.add_argument("--semester", dest="semester", required=True, help="", type=str) + parser.add_argument("--year", dest="year", required=True, help="", type=str) + parser.add_argument( + "--num_remove", dest="num_remove", required=True, help="", type=int + ) return parser.parse_args() + if __name__ == "__main__": args = get_args() - main(args) \ No newline at end of file + main(args) diff --git a/scripts/recommender/recommender.py b/scripts/recommender/recommender.py index 96bc05a09b..660b2473e2 100644 --- a/scripts/recommender/recommender.py +++ b/scripts/recommender/recommender.py @@ -1,3 +1,15 @@ +# Copyright (C) 2017 Semester.ly Technologies, LLC +# +# Semester.ly is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Semester.ly is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + #!/usr/bin/env python """Collaborative filtering based recommender system for Semester.ly courses""" @@ -6,6 +18,7 @@ __credits__ = ["Noah Presler, Eric Calder, Semester.ly Technologies, LLC"] import os, sys, django, pickle, progressbar, argparse + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") django.setup() import numpy as np @@ -16,14 +29,14 @@ from student.models import * from timetable.models import * -class Recommender(): - def __init__(self,school,simfcn): +class Recommender: + def __init__(self, school, simfcn): self.school = school self.simfcn = simfcn - #compute similarity with self.simfcn as the method - #to add new support, add the method here and in choices for simgcn in __main__ + # compute similarity with self.simfcn as the method + # to add new support, add the method here and in choices for simgcn in __main__ def compute_similarity(self, arr1, arr2): if self.simfcn == "cosine": return self.d_to_sim(cosine(arr1, arr2)) @@ -34,41 +47,44 @@ def compute_similarity(self, arr1, arr2): elif self.simfcn == "jaccard": return 1 - jaccard(arr1, arr2) else: - print "Similiarity Function Not Yet Supported" + print("Similiarity Function Not Yet Supported") exit() - #convert a distance to a similarity measure - #adding 1 to denominator to avoid div by 0 issues - def d_to_sim(self,dist): - return 1 / ( abs(dist) + 1 ) - + # convert a distance to a similarity measure + # adding 1 to denominator to avoid div by 0 issues + def d_to_sim(self, dist): + return 1 / (abs(dist) + 1) + def featurize(self): - #get the min,max course id for hopkins + # get the min,max course id for hopkins max_id = Course.objects.filter(school=self.school).last().id - #for each timetable + # for each timetable # create a scipy array of lenghth maxcourseid-mincourseid # set it to one corresponding to each course in timetable ptts = PersonalTimetable.objects.filter(school=self.school).all() feat_trix = lil_matrix((len(ptts), max_id), dtype=np.int8) bar = progressbar.ProgressBar() - for ptt_idx in bar(range(len(ptts))): - for ft_idx in ptts[ptt_idx].courses.all().values_list('id', flat=True): + for ptt_idx in bar(list(range(len(ptts)))): + for ft_idx in ptts[ptt_idx].courses.all().values_list("id", flat=True): feat_trix[ptt_idx, ft_idx] = 1 - #write to file + # write to file pickle.dump(feat_trix, open(self.school + ".timetable.features", "wb")) - - #saves a similarity matrix/model to the corresponding *.model file - #uses two passes to do extra post-proccesing for low data instances + # saves a similarity matrix/model to the corresponding *.model file + # uses two passes to do extra post-proccesing for low data instances def train(self): - #write to file + # write to file feat_trix = pickle.load(open(self.school + ".timetable.features", "rb")) - #prep sizes + # prep sizes num_fts = feat_trix.shape[1] num_tts = feat_trix.shape[0] - print "Training {0} on {1} features, {2} timetables".format(self.school, num_fts, num_tts) - #dictionary mapping from coursef - #to tuple: (related course, similarity) + print( + "Training {0} on {1} features, {2} timetables".format( + self.school, num_fts, num_tts + ) + ) + # dictionary mapping from coursef + # to tuple: (related course, similarity) similarities = {} # For each Course, C1 # For each Timetable TT with Course C1 @@ -76,36 +92,38 @@ def train(self): # Record that a Timetable has courses C1 and C2 # For each Course C2 # Compute the similarity between C1 and C2 - print "EXECUTING FIRST PASS" + print("EXECUTING FIRST PASS") bar = progressbar.ProgressBar() low_data_courses = {} - for c1 in bar(range(num_fts)): + for c1 in bar(list(range(num_fts))): similar = set() - c1_rows = filter(lambda ptt_idx: feat_trix[ptt_idx, c1] ,range(num_tts)) + c1_rows = [ptt_idx for ptt_idx in range(num_tts) if feat_trix[ptt_idx, c1]] for tt in c1_rows: row = feat_trix[tt].toarray()[0] similar = similar.union(set(np.where(row > 0)[0].flatten())) - #use len c1_rows < 5 OR len similar < 3 + # use len c1_rows < 5 OR len similar < 3 if len(similar) > 0 and (len(c1_rows) < 5 or len(similar) < 3): low_data_courses[c1] = [] for c2 in similar: - css = self.compute_similarity(feat_trix[:,c1].toarray(),feat_trix[:,c2].toarray()) + css = self.compute_similarity( + feat_trix[:, c1].toarray(), feat_trix[:, c2].toarray() + ) if c1 not in similarities: similarities[c1] = [] - similarities[c1].append((c2,css)) + similarities[c1].append((c2, css)) if c1 in low_data_courses: - low_data_courses[c1].append((c2,css)) - #low data pass - print "EXECUTING SECOND PASS" - bar2 = progressbar.ProgressBar() - for c1, similar_css in bar2(low_data_courses.items()): + low_data_courses[c1].append((c2, css)) + # low data pass + print("EXECUTING SECOND PASS") + bar2 = progressbar.ProgressBar() + for c1, similar_css in bar2(list(low_data_courses.items())): agg_sims = {} norm_factor = {} for c2, css in similar_css: if c2 not in agg_sims: agg_sims[c2] = css norm_factor[c2] = 1 - for c3, css3 in filter(lambda x: x[0] != c2, similarities[c2]): + for c3, css3 in [x for x in similarities[c2] if x[0] != c2]: if c3 not in agg_sims: agg_sims[c3] = css norm_factor[c3] = 1 @@ -113,76 +131,118 @@ def train(self): norm_factor[c3] += 1 similarities[c1] = [] for c in agg_sims: - similarities[c1].append((c,agg_sims[c]/norm_factor[c])) + similarities[c1].append((c, agg_sims[c] / norm_factor[c])) pickle.dump(similarities, open(self.school + ".recommended.model", "wb")) - - #predicts the top 5 courses by similarity for a given course id - #ensures there is a top 5 for fall and spring - #retains ordering + # predicts the top 5 courses by similarity for a given course id + # ensures there is a top 5 for fall and spring + # retains ordering def predict(self, cid, similarities=None, force_print=False): if not similarities: similarities = pickle.load(open(self.school + ".recommended.model", "rb")) # filter the top 5 courses by similarity score, removing the course itself from the list - ret = filter(lambda x: x[0] != cid,sorted(similarities[cid],key=lambda x: x[1], reverse=True)) - fall = filter(lambda x: Course.objects.filter(id=x[0], section__semester__in=Semester.objects.filter(name="Fall")).exists(), ret)[:5] - spring = filter(lambda x: Course.objects.filter(id=x[0], section__semester__in=Semester.objects.filter(name="Spring")).exists(), ret)[:5] - ret = sorted(fall + spring,key=lambda x: x[1], reverse=True) + ret = [ + x + for x in sorted(similarities[cid], key=lambda x: x[1], reverse=True) + if x[0] != cid + ] + fall = filter( + lambda x: Course.objects.filter( + id=x[0], section__semester__in=Semester.objects.filter(name="Fall") + ).exists(), + ret, + )[:5] + spring = filter( + lambda x: Course.objects.filter( + id=x[0], section__semester__in=Semester.objects.filter(name="Spring") + ).exists(), + ret, + )[:5] + ret = sorted(fall + spring, key=lambda x: x[1], reverse=True) if force_print: - print ret + print(ret) return ret - - #predicts for every course saving the resulting relations to the db - #deletes old relations for each course on the fly + # predicts for every course saving the resulting relations to the db + # deletes old relations for each course on the fly def predict_save_all(self): similarities = pickle.load(open(self.school + ".recommended.model", "rb")) bar2 = progressbar.ProgressBar() - for cid in bar2(similarities.keys()): + for cid in bar2(list(similarities.keys())): related = self.predict(cid, similarities) course = Course.objects.get(id=cid) - #delete old associations via the many-to-many field + # delete old associations via the many-to-many field Course.related_courses.through.objects.filter(from_course_id=cid).delete() Course.related_courses.through.objects.filter(to_course_id=cid).delete() for c in related: if not course.related_courses.filter(id=c[0]).exists(): course.related_courses.add(Course.objects.get(id=c[0])) - - #given a timetable (in the form of course_ids), recommends the top courses + # given a timetable (in the form of course_ids), recommends the top courses # that a user might add to their timetable by aggregating similarities from model - def recommend(self, course_ids, similarities = None): + def recommend(self, course_ids, similarities=None): if similarities == None: similarities = pickle.load(open(self.school + ".recommended.model", "rb")) bar = progressbar.ProgressBar() recs = {} - for cid in bar(course_ids): - #for each course, get the related courses by top similarity score + for cid in bar(course_ids): + # for each course, get the related courses by top similarity score if cid not in similarities: continue - related = filter(lambda x: x[0] != cid,sorted(similarities[cid],key=lambda x: x[1], reverse=True)[:15]) - for r in related: + related = [ + x + for x in sorted(similarities[cid], key=lambda x: x[1], reverse=True)[ + :15 + ] + if x[0] != cid + ] + for r in related: if r[0] not in recs: recs[r[0]] = 0 recs[r[0]] += r[1] # sort recs by similarity score after aggregating/summing across all courses in tt, remove courses in tt - recs = filter(lambda x: x[0] not in course_ids,sorted(recs.items(),key=lambda x: x[1], reverse=True)) - ret = map(lambda x: x[0], recs[:4]) - print "Recommending:", ret + recs = [ + x + for x in sorted(list(recs.items()), key=lambda x: x[1], reverse=True) + if x[0] not in course_ids + ] + ret = [x[0] for x in recs[:4]] + print("Recommending:", ret) return ret -#general driver, use --help for more info +# general driver, use --help for more info def main(): - parser = argparse.ArgumentParser(description='Recommender system using collaborative filtering') - parser.add_argument('--action', dest='action', required=True, choices=["train", "featurize", "predict", "save", "recommend"]) - parser.add_argument('--cids', dest='cids', default=None, type=str, help="List of course ids, comma seperated for recommending") - parser.add_argument('--school', dest='school', required=True, help="School is required") - parser.add_argument('--simfcn', dest='simfcn', default="cosine", type=str, choices=["pearson","cosine","hamming","jaccard"]) - + parser = argparse.ArgumentParser( + description="Recommender system using collaborative filtering" + ) + parser.add_argument( + "--action", + dest="action", + required=True, + choices=["train", "featurize", "predict", "save", "recommend"], + ) + parser.add_argument( + "--cids", + dest="cids", + default=None, + type=str, + help="List of course ids, comma seperated for recommending", + ) + parser.add_argument( + "--school", dest="school", required=True, help="School is required" + ) + parser.add_argument( + "--simfcn", + dest="simfcn", + default="cosine", + type=str, + choices=["pearson", "cosine", "hamming", "jaccard"], + ) + args = parser.parse_args() - cids = map(lambda x: int(x), args.cids.split(',')) if args.cids else None + cids = [int(x) for x in args.cids.split(",")] if args.cids else None recommender = Recommender(school=str(args.school), simfcn=args.simfcn) if args.action == "train": @@ -191,18 +251,17 @@ def main(): recommender.featurize() elif args.action == "predict": if not cids or len(cids) == 0: - print "MUST PROVIDE COURSE IDS" + print("MUST PROVIDE COURSE IDS") exit() - recommender.predict(cids[0],force_print=True) + recommender.predict(cids[0], force_print=True) elif args.action == "save": recommender.predict_save_all() elif args.action == "recommend": if not cids or len(cids) == 0: - print "MUST PROVIDE COURSE IDS" + print("MUST PROVIDE COURSE IDS") exit() recommender.recommend(cids) if __name__ == "__main__": main() - diff --git a/scripts/removeuoftlinks.py b/scripts/removeuoftlinks.py deleted file mode 100644 index 3d3292cdf3..0000000000 --- a/scripts/removeuoftlinks.py +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -import django, os -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") -django.setup() - -from timetable.models import * -from scripts.amazon_helpers import * - -courses = Course.objects.filter(school="uoft") -for course in courses: - for section in Section.objects.filter(course=course): - links = TextbookLink.objects.filter(section=section) - links.delete() diff --git a/scripts/rutgers/__init__.py b/scripts/rutgers/__init__.py index c53afacbff..defc0f99ee 100644 --- a/scripts/rutgers/__init__.py +++ b/scripts/rutgers/__init__.py @@ -9,4 +9,3 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - diff --git a/scripts/rutgers/rutgers_courses.py b/scripts/rutgers/rutgers_courses.py index 567dc0a50f..a70f740721 100644 --- a/scripts/rutgers/rutgers_courses.py +++ b/scripts/rutgers/rutgers_courses.py @@ -18,7 +18,7 @@ import time from itertools import product -from urllib2 import urlopen +from urllib.request import urlopen from string import capwords from selenium.common.exceptions import WebDriverException from selenium import webdriver @@ -28,185 +28,204 @@ from scripts.base_parser import BaseParser import django + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") django.setup() -time_pattern = r'[0-9]+:[0-9]+ [AP]M - [0-9]+:[0-9]+ [AP]M' -code_pattern = r'\d{2}:\d{3}:\d{3}' +time_pattern = r"[0-9]+:[0-9]+ [AP]M - [0-9]+:[0-9]+ [AP]M" +code_pattern = r"\d{2}:\d{3}:\d{3}" + def process_time(s): - """eg 7:30 PM -> 19:30""" - time, merid = s.split() - h, m = time.split(':') - if merid == 'PM' and h != '12': - h = str(int(h) + 12) - return h + ':' + m - else: - return time + """eg 7:30 PM -> 19:30""" + time, merid = s.split() + h, m = time.split(":") + if merid == "PM" and h != "12": + h = str(int(h) + 12) + return h + ":" + m + else: + return time + class RutgersParser(BaseParser): - def __init__(self, semester, campuses=['NB', 'NK', 'CM'], driver=None): - BaseParser.__init__(self, RutgersCourse, - RutgersCourseOffering, - semester) - self.semester = semester - self.campuses = campuses - self.get_element = self.driver.find_element_by_css_selector - self.entry_url = "https://sis.rutgers.edu/soc/" - self.driver = webdriver.Chrome(driver) if driver else webdriver.Chrome() - # intialize state variables for parser - self.campus = None - - def get_course_elements(self): - self.driver.get(self.entry_url) - current_year = str(datetime.datetime.now().year) - start_month = '9' if self.semester == 'F' else '1' - session = start_month + current_year - - # select semester, campuses, levels, then submit - self.select_semester(session) - for campus in self.campuses: - self.select_campus(campus) - self.campus = campus - for level in ['U', 'G']: # parse both undergraduate and graduate - self.select_level(level) - self.get_element("button[type='submit'][id='continueButton']").click() - search_url = self.driver.current_url - - # get every row for every subject - subjects = self.get_subjects() - for subject in subjects: - while True: + def __init__(self, semester, campuses=["NB", "NK", "CM"], driver=None): + BaseParser.__init__(self, RutgersCourse, RutgersCourseOffering, semester) + self.semester = semester + self.campuses = campuses + self.get_element = self.driver.find_element_by_css_selector + self.entry_url = "https://sis.rutgers.edu/soc/" + self.driver = webdriver.Chrome(driver) if driver else webdriver.Chrome() + # intialize state variables for parser + self.campus = None + + def get_course_elements(self): + self.driver.get(self.entry_url) + current_year = str(datetime.datetime.now().year) + start_month = "9" if self.semester == "F" else "1" + session = start_month + current_year + + # select semester, campuses, levels, then submit + self.select_semester(session) + for campus in self.campuses: + self.select_campus(campus) + self.campus = campus + for level in ["U", "G"]: # parse both undergraduate and graduate + self.select_level(level) + self.get_element("button[type='submit'][id='continueButton']").click() + search_url = self.driver.current_url + + # get every row for every subject + subjects = self.get_subjects() + for subject in subjects: + while True: + try: + self.select_subject(subject) + break + except: + time.sleep(3) + self.driver.get(search_url) + soup = BeautifulSoup(self.driver.page_source) + while soup.find("div", class_="subject") is None: # wait until courses load + time.sleep(1) + soup = BeautifulSoup(self.driver.page_source) + rows = soup.find_all("div", class_="subject") + for row in rows: + yield row + + def parse_course_element(self, course_element): + course_code = re.search(code_pattern, str(course_element)).group() + title_element = course_element.find("span", class_="courseTitle") + if not course_code or not title_element: + return None, None + title = title_element.span.text + synopsis_element = course_element.find("span", class_="synopsis").span + description = ( + synopsis_element["onclick"].split('"')[1] if synopsis_element else "" + ) + num_credits = course_element.find("span", class_="courseCredits").text.split()[ + 0 + ] try: - self.select_subject(subject) - break - except: - time.sleep(3) - self.driver.get(search_url) - soup = BeautifulSoup(self.driver.page_source) - while soup.find('div', class_='subject') is None: # wait until courses load - time.sleep(1) + num_credits = float(num_credits) + except ValueError: + num_credits = -1 + core_element = course_element.find("div", class_="coreCodes") + core_code = core_element.text if core_element else "" + course_data = { + "name": title, + "description": description, + "campus": self.campus, + "cores": core_code, + "num_credits": num_credits, + } + return course_code, course_data + + def get_section_elements(self, course_element): + return course_element.find("div", class_="sectionListings").children + + def parse_section_element(self, section_element): + section_code = section_element.find( + "span", class_="sectionDataNumber" + ).span.text + instructors = section_element.find("span", class_="instructors").text + exam_code = section_element.find("span", class_="examCode").text + return section_code, { + "instructors": capwords(instructors), + "exam_code": exam_code, + } + + def get_meeting_elements(self, section_element): + return section_element.find("div", class_="sectionMeetingTimesDiv").children + + def parse_meeting_element(self, meeting_element): + time_is_set = bool(meeting_element.find("span", class_="meetingTimeDay")) + if not time_is_set: + return None + day = meeting_element.find("span", class_="meetingTimeDay").text + time = meeting_element.find("span", class_="meetingTimeHours").text + campus = meeting_element.find("span", class_="meetingTimeCampus").text + location = meeting_element.find( + "span", class_="meetingTimeBuildingAndRoom" + ).text + if day in ["Saturday", "Sunday"] or not re.match(time_pattern, time): + return None + time_start, time_end = list(map(process_time, time.split(" - "))) + meeting_data = { + "day": "R" if day == "Thursday" else day[0], + "time_start": time_start, + "time_end": time_end, + "location": campus + " " + location, + } + return meeting_data + + def select_semester(self, session): + self.get_element("input[type='radio'][value='{0}']".format(session)).click() + + def select_campus(self, campus): + self.get_element("input[type='checkbox'][value='{0}']".format(campus)).click() + + def select_level(self, level): + self.get_element("input[type='checkbox'][value='{0}']".format(level)).click() + + def get_subjects(self): + self.open_subjects_menu() soup = BeautifulSoup(self.driver.page_source) - rows = soup.find_all('div', class_='subject') - for row in rows: - yield row - - def parse_course_element(self, course_element): - course_code = re.search(code_pattern, str(course_element)).group() - title_element = course_element.find('span', class_='courseTitle') - if not course_code or not title_element: - return None, None - title = title_element.span.text - synopsis_element = course_element.find('span', class_='synopsis').span - description = synopsis_element['onclick'].split('"')[1] if synopsis_element\ - else '' - num_credits = course_element.find('span', class_='courseCredits')\ - .text.split()[0] - try: - num_credits = float(num_credits) - except ValueError: - num_credits = -1 - core_element = course_element.find('div', class_='coreCodes') - core_code = core_element.text if core_element else '' - course_data = {'name': title, - 'description': description, - 'campus': self.campus, - 'cores': core_code, - 'num_credits': num_credits} - return course_code, course_data - - def get_section_elements(self, course_element): - return course_element.find('div', class_='sectionListings').children - - def parse_section_element(self, section_element): - section_code = section_element.find('span', class_='sectionDataNumber').span.text - instructors = section_element.find('span', class_='instructors').text - exam_code = section_element.find('span', class_='examCode').text - return section_code, {'instructors': capwords(instructors), 'exam_code': exam_code} - - def get_meeting_elements(self, section_element): - return section_element.find('div', class_='sectionMeetingTimesDiv').children - - def parse_meeting_element(self, meeting_element): - time_is_set = bool(meeting_element.find('span', class_='meetingTimeDay')) - if not time_is_set: - return None - day = meeting_element.find('span', class_='meetingTimeDay').text - time = meeting_element.find('span', class_='meetingTimeHours').text - campus = meeting_element.find('span', class_='meetingTimeCampus').text - location = meeting_element.find('span', class_='meetingTimeBuildingAndRoom').text - if day in ['Saturday', 'Sunday'] or not re.match(time_pattern, time): - return None - time_start, time_end = map(process_time, time.split(' - ')) - meeting_data = { - 'day': 'R' if day == 'Thursday' else day[0], - 'time_start': time_start, - 'time_end': time_end, - 'location': campus + ' ' + location - } - return meeting_data - - def select_semester(self, session): - self.get_element("input[type='radio'][value='{0}']".format(session)).click() - - def select_campus(self, campus): - self.get_element("input[type='checkbox'][value='{0}']".format(campus)).click() - - def select_level(self, level): - self.get_element("input[type='checkbox'][value='{0}']".format(level)).click() - - def get_subjects(self): - self.open_subjects_menu() - soup = BeautifulSoup(self.driver.page_source) - menu = soup.find('div', {'data-dojo-attach-point': 'containerNode', - 'class': ['dijitDialogPaneContent', 'dijitAlignCenter']}) - subject_nodes = menu.children - subjects = (node.input.get('value') for node in subject_nodes) - self.close_subjects_menu() - return subjects - - def open_subjects_menu(self): - link_div = self.get_element("div[id='multi_subject_link']") - link_div.find_element_by_tag_name("span").click() - - def close_subjects_menu(self): - self.get_element("span[data-dojo-attach-point='closeButtonNode']").click() - - def select_subject(self, subject): - time.sleep(0.5) - self.open_subjects_menu() - time.sleep(0.5) - # reset chosen sujects - self.get_element("button[id='multiSubjectReset']").click() - time.sleep(0.5) - # check subject - self.get_element("input[type='checkbox'][value='{0}']".format(subject)).click() - time.sleep(0.5) - # submit - self.get_element("button[id='multiSubjectSubmit']").click() - time.sleep(0.5) + menu = soup.find( + "div", + { + "data-dojo-attach-point": "containerNode", + "class": ["dijitDialogPaneContent", "dijitAlignCenter"], + }, + ) + subject_nodes = menu.children + subjects = (node.input.get("value") for node in subject_nodes) + self.close_subjects_menu() + return subjects + + def open_subjects_menu(self): + link_div = self.get_element("div[id='multi_subject_link']") + link_div.find_element_by_tag_name("span").click() + + def close_subjects_menu(self): + self.get_element("span[data-dojo-attach-point='closeButtonNode']").click() + + def select_subject(self, subject): + time.sleep(0.5) + self.open_subjects_menu() + time.sleep(0.5) + # reset chosen sujects + self.get_element("button[id='multiSubjectReset']").click() + time.sleep(0.5) + # check subject + self.get_element("input[type='checkbox'][value='{0}']".format(subject)).click() + time.sleep(0.5) + # submit + self.get_element("button[id='multiSubjectSubmit']").click() + time.sleep(0.5) + def try_until_success(f): - """Try to click something until success.""" - try: - while True: - success = f() - if success: - break - except WebDriverException: - time.sleep(0.5) + """Try to click something until success.""" + try: + while True: + success = f() + if success: + break + except WebDriverException: + time.sleep(0.5) -def parse_rutgers(): - print 'parsing fall:' - RutgersParser('F').parse_courses() - print 'parsing spring:' - RutgersParser('S').parse_courses() - -if __name__ == '__main__': - if len(sys.argv) < 2: - parse_rutgers() - elif sys.argv[1] not in ['F', 'S']: - print "Please provide either F or S for semester" - else: - RutgersParser(sys.argv[1]).parse_courses() +def parse_rutgers(): + print("parsing fall:") + RutgersParser("F").parse_courses() + print("parsing spring:") + RutgersParser("S").parse_courses() + + +if __name__ == "__main__": + if len(sys.argv) < 2: + parse_rutgers() + elif sys.argv[1] not in ["F", "S"]: + print("Please provide either F or S for semester") + else: + RutgersParser(sys.argv[1]).parse_courses() diff --git a/scripts/rutgers/rutgers_evals.py b/scripts/rutgers/rutgers_evals.py index c53afacbff..defc0f99ee 100644 --- a/scripts/rutgers/rutgers_evals.py +++ b/scripts/rutgers/rutgers_evals.py @@ -9,4 +9,3 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - diff --git a/scripts/rutgers/rutgers_textbooks.py b/scripts/rutgers/rutgers_textbooks.py deleted file mode 100644 index c53afacbff..0000000000 --- a/scripts/rutgers/rutgers_textbooks.py +++ /dev/null @@ -1,12 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - diff --git a/scripts/save_json.py b/scripts/save_json.py index e14f6e8e17..829176e57f 100644 --- a/scripts/save_json.py +++ b/scripts/save_json.py @@ -1,16 +1,14 @@ -""" -Copyright (C) 2017 Semester.ly Technologies, LLC - -Semester.ly is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -Semester.ly is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -""" +# Copyright (C) 2017 Semester.ly Technologies, LLC +# +# Semester.ly is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Semester.ly is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. """ A parser which reads from json outputed by a BaseWriter and saved to db. """ import json @@ -21,34 +19,35 @@ class JsonParser(BaseParser): - def __init__(self, filename): - BaseParser.__init__(self) - self.filename = filename + def __init__(self, filename): + BaseParser.__init__(self) + self.filename = filename + + def get_course_elements(self): + with open(filename, "r") as infile: + for line in infile.readlines(): + yield json.loads(line) - def get_course_elements(self): - with open(filename, 'r') as infile: - for line in infile.readlines(): - yield json.loads(line) + def parse_course_element(self, course_element): + return course_element["course_code"], course_element["course_data"] - def parse_course_element(self, course_element): - return course_element['course_code'], course_element['course_data'] + def get_section_elements(self, course_element): + return course_element["sections"] - def get_section_elements(self, course_element): - return course_element['sections'] + def parse_section_element(self, section_element): + return section_element["section_code"], section_element["section_data"] - def parse_section_element(self, section_element): - return section_element['section_code'], section_element['section_data'] + def get_meeting_elements(self, section_element): + return section_element["meetings"] - def get_meeting_elements(self, section_element): - return section_element['meetings'] + def parse_meeting_element(self, meeting_element): + return meeting_element - def parse_meeting_element(self, meeting_element): - return meeting_element -if __name__ == '__main__': - if len(sys.argv) != 2: - print "Usage: python -m scripts.save_json file.json" - sys.exit(1) - filename = sys.argv[1] - parser = JsonParser(filename) - parser.parse_courses() +if __name__ == "__main__": + if len(sys.argv) != 2: + print("Usage: python -m scripts.save_json file.json") + sys.exit(1) + filename = sys.argv[1] + parser = JsonParser(filename) + parser.parse_courses() diff --git a/scripts/textbook_mailer.py b/scripts/textbook_mailer.py deleted file mode 100644 index 947aa929ad..0000000000 --- a/scripts/textbook_mailer.py +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -import django, os, json -import sys -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") -django.setup() -from student.models import * -from timetable.models import * -from django.db.models import Q -from django.forms.models import model_to_dict -from mailer import Mailer - -if len(sys.argv) < 4: - print("Please specify a school, a term (e.g. Fall), and a year (e.g. 2017).") - exit(0) -school = sys.argv[1] -term = sys.argv[2] -year = int(sys.argv[3]) - -semester = Semester.objects.filter(name=term, year=year) -client = Mailer() - -students = PersonalTimetable.objects.filter(school=school, semester=semester).values_list("student", flat=True).distinct() - -for student_id in students: - student = Student.objects.get(id=student_id) - - if not student.emails_enabled or not student.user.email: - continue - - tt = student.personaltimetable_set.filter(semester=semester).order_by('last_updated').last() - textbook_json = map(lambda c: - { - "textbooks": map(lambda t: model_to_dict(Textbook.objects.get(isbn=t)), tt.sections.filter(~Q(textbooks=None), course=c).values_list("textbooks", flat=True).distinct()), - "course_name": c.name, - "course_code": c.code, - }, tt.courses.all()) - - # Go through textbooks. If all empty lists (no textbooks), go to next student. - have_textbooks = False - for dic in textbook_json: - if dic["textbooks"]: - have_textbooks = True - break - - if not have_textbooks: - continue - - client.send_mail(student, "Happy First Day of Classes - Textbooks from Semester.ly", "email_textbooks.html", {'textbooks_json': textbook_json}) -client.cleanup() diff --git a/scripts/uo/__init__.py b/scripts/uo/__init__.py index c53afacbff..defc0f99ee 100644 --- a/scripts/uo/__init__.py +++ b/scripts/uo/__init__.py @@ -9,4 +9,3 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - diff --git a/scripts/uo/uo_courses.py b/scripts/uo/uo_courses.py index a8fe71ca3b..fdb46f100b 100644 --- a/scripts/uo/uo_courses.py +++ b/scripts/uo/uo_courses.py @@ -12,7 +12,7 @@ import sys import requests -import cookielib +import http.cookiejar import re import os import time @@ -29,7 +29,7 @@ django.setup() from timetable.models import Course, Section, Offering -'''#==========================================FOR PRODUCTION USE====================================== +"""#==========================================FOR PRODUCTION USE====================================== chrome_options = Options() chrome_options.add_argument("--disable-extensions") @@ -39,256 +39,259 @@ # If the Chrome Webdriver is not already in your $PATH, change this to # represent its filepath WEBDRIVER_CHROME = '/root/chromedriver_executable/chromedriver' # e.g. '/home/linoah/chromedriver' -#=====================================================================================================''' +#=====================================================================================================""" -#===========================================FOR DEVELOPMENT USE======================================= +# ===========================================FOR DEVELOPMENT USE======================================= WEBDRIVER_CHROME = None -#===================================================================================================== +# ===================================================================================================== -class OttawaParser: - - def safe_print(self,to_print): - try: - print to_print - except UnicodeEncodeError: - print "Print statement omitted for UnicodeEncodeError." - - def __init__(self, semester): - self.num_parsed = 0 - self.s = requests.Session() - self.cookies = cookielib.CookieJar() - self.headers = { - 'User-Agent': 'My User Agent 1.0' - } - self.detail_base_url = "https://web30.uottawa.ca/v3/SITS/timetable/" - self.base_url = "https://web30.uottawa.ca/v3/SITS/timetable/SearchResults.aspx" - self.semester = semester - self.safe_print("Parsing Data For: " + self.semester + " Semester") - if not WEBDRIVER_CHROME: - self.driver = webdriver.Chrome() - else: - self.driver = webdriver.Chrome(WEBDRIVER_CHROME) - self.driver.get(self.base_url) - - # TODO: programmatically get year for semester - if semester == 'F': - self.sem_value = "20169" - else: - self.sem_value = "20171" - - def row_cond(self,x): - if x: - return x not in ["results-header","footer","hidden-header"] - else: - return False - - def detail_row_cond(self,x): - if x: - return x not in ["first-element","footer","hidden-header"] - else: - return False - def get_search_results_html(self): - while True: +class OttawaParser: + def safe_print(self, to_print): try: - selector = Select(self.driver.find_element_by_id("ctl00_MainContentPlaceHolder_Basic_SessionDropDown")) - selector.select_by_value(self.sem_value) - break - except Exception,e: - print str(e) - self.safe_print("Waiting for page load") - self.safe_print("Term Has Been Selected") - self.driver.find_element_by_id("ctl00_MainContentPlaceHolder_Basic_Button").click() - while True: - try: - self.driver.find_element_by_id("main-content") - break - except: - self.safe_print("Waiting for page load") - return self.driver.page_source - - def parse_page_results(self, page_html, bar): - soup = BeautifulSoup(page_html) - table = soup.find('table', class_="result-table") - if table is not None: - rows = table.findAll('tr', {'class': self.row_cond}) - for row in rows: - self.parse_course_row(row) - self.num_parsed += 1 - bar.update(self.num_parsed) - return True - else: - return False - - def to_cookielib_cookie(self,selenium_cookie): - return cookielib.Cookie( - version=0, - name=selenium_cookie['name'], - value=selenium_cookie['value'], - port='80', - port_specified=False, - domain=selenium_cookie['domain'], - domain_specified=True, - domain_initial_dot=False, - path=selenium_cookie['path'], - path_specified=True, - secure=selenium_cookie['secure'], - expires=False, - discard=False, - comment=None, - comment_url=None, - rest=None, - rfc2109=False - ) - - def put_cookies_in_jar(self, selenium_cookies, cookie_jar): - cookie_jar.clear() - for cookie in selenium_cookies: - cookie_jar.set_cookie(self.to_cookielib_cookie(cookie)) - - def parse_course_row(self,row): - # get soup of html - url = self.get_detail_link(row) - self.put_cookies_in_jar(self.driver.get_cookies(),self.cookies) - self.headers = { - 'Referer' : 'https://web30.uottawa.ca/v3/SITS/timetable/SearchResults.aspx' - } - html = self.get_html(url) - soup = BeautifulSoup(html) - - # get course information - code = self.get_course_code(row) - title = soup.find('div', {'id': 'main-content'}).h1.text.strip() - description = soup.find('div', {'id': 'main-content'}).p.text.strip() - - course_data = { - 'name': self.process_title(title), - 'description': description - } - course_obj, created = Course.objects.update_or_create(code=code, - school='uo', - defaults=course_data) - sections_tables = soup.findAll('table',class_="display") - for section_table in sections_tables: - rows = section_table.findAll('tr', {'class': self.detail_row_cond}) - section_id = rows[0].find('td', class_="Section").text - for row in rows: - date_time = row.find(class_="Day").text - meet_type = row.find(class_="Activity").text - place = row.find(class_="Place").text - prof = row.find(class_="Professor").text - - start, end, day = self.process_time(date_time) - if day in ['S', 'TBD']: # skip weekends, undefined times - continue - prof = self.process_prof(prof) - # meet_type example: Lecture 1, section_id example: BIO1001 A (random junk) - # section_type example: Lecture, section_code example: A Lecture 1 - section_type = self.process_type(meet_type) - section_code = section_id.split()[1] + ' ' + meet_type - - s_data = { - 'section_type': section_type, - 'instructors': prof + print(to_print) + except UnicodeEncodeError: + print("Print statement omitted for UnicodeEncodeError.") + + def __init__(self, semester): + self.num_parsed = 0 + self.s = requests.Session() + self.cookies = http.cookiejar.CookieJar() + self.headers = {"User-Agent": "My User Agent 1.0"} + self.detail_base_url = "https://web30.uottawa.ca/v3/SITS/timetable/" + self.base_url = "https://web30.uottawa.ca/v3/SITS/timetable/SearchResults.aspx" + self.semester = semester + self.safe_print("Parsing Data For: " + self.semester + " Semester") + if not WEBDRIVER_CHROME: + self.driver = webdriver.Chrome() + else: + self.driver = webdriver.Chrome(WEBDRIVER_CHROME) + self.driver.get(self.base_url) + + # TODO: programmatically get year for semester + if semester == "F": + self.sem_value = "20169" + else: + self.sem_value = "20171" + + def row_cond(self, x): + if x: + return x not in ["results-header", "footer", "hidden-header"] + else: + return False + + def detail_row_cond(self, x): + if x: + return x not in ["first-element", "footer", "hidden-header"] + else: + return False + + def get_search_results_html(self): + while True: + try: + selector = Select( + self.driver.find_element_by_id( + "ctl00_MainContentPlaceHolder_Basic_SessionDropDown" + ) + ) + selector.select_by_value(self.sem_value) + break + except Exception as e: + print(str(e)) + self.safe_print("Waiting for page load") + self.safe_print("Term Has Been Selected") + self.driver.find_element_by_id( + "ctl00_MainContentPlaceHolder_Basic_Button" + ).click() + while True: + try: + self.driver.find_element_by_id("main-content") + break + except: + self.safe_print("Waiting for page load") + return self.driver.page_source + + def parse_page_results(self, page_html, bar): + soup = BeautifulSoup(page_html) + table = soup.find("table", class_="result-table") + if table is not None: + rows = table.findAll("tr", {"class": self.row_cond}) + for row in rows: + self.parse_course_row(row) + self.num_parsed += 1 + bar.update(self.num_parsed) + return True + else: + return False + + def to_cookielib_cookie(self, selenium_cookie): + return http.cookiejar.Cookie( + version=0, + name=selenium_cookie["name"], + value=selenium_cookie["value"], + port="80", + port_specified=False, + domain=selenium_cookie["domain"], + domain_specified=True, + domain_initial_dot=False, + path=selenium_cookie["path"], + path_specified=True, + secure=selenium_cookie["secure"], + expires=False, + discard=False, + comment=None, + comment_url=None, + rest=None, + rfc2109=False, + ) + + def put_cookies_in_jar(self, selenium_cookies, cookie_jar): + cookie_jar.clear() + for cookie in selenium_cookies: + cookie_jar.set_cookie(self.to_cookielib_cookie(cookie)) + + def parse_course_row(self, row): + # get soup of html + url = self.get_detail_link(row) + self.put_cookies_in_jar(self.driver.get_cookies(), self.cookies) + self.headers = { + "Referer": "https://web30.uottawa.ca/v3/SITS/timetable/SearchResults.aspx" } - - s_obj, _ = Section.objects.update_or_create(course=course_obj, - meeting_section=section_code, - semester=self.semester, - defaults=s_data) - o_data = { - 'day': day, - 'time_start': start, - 'time_end': end, - 'location': '' if place == 'Not available at this time.' else place + html = self.get_html(url) + soup = BeautifulSoup(html) + + # get course information + code = self.get_course_code(row) + title = soup.find("div", {"id": "main-content"}).h1.text.strip() + description = soup.find("div", {"id": "main-content"}).p.text.strip() + + course_data = {"name": self.process_title(title), "description": description} + course_obj, created = Course.objects.update_or_create( + code=code, school="uo", defaults=course_data + ) + sections_tables = soup.findAll("table", class_="display") + for section_table in sections_tables: + rows = section_table.findAll("tr", {"class": self.detail_row_cond}) + section_id = rows[0].find("td", class_="Section").text + for row in rows: + date_time = row.find(class_="Day").text + meet_type = row.find(class_="Activity").text + place = row.find(class_="Place").text + prof = row.find(class_="Professor").text + + start, end, day = self.process_time(date_time) + if day in ["S", "TBD"]: # skip weekends, undefined times + continue + prof = self.process_prof(prof) + # meet_type example: Lecture 1, section_id example: BIO1001 A (random junk) + # section_type example: Lecture, section_code example: A Lecture 1 + section_type = self.process_type(meet_type) + section_code = section_id.split()[1] + " " + meet_type + + s_data = {"section_type": section_type, "instructors": prof} + + s_obj, _ = Section.objects.update_or_create( + course=course_obj, + meeting_section=section_code, + semester=self.semester, + defaults=s_data, + ) + o_data = { + "day": day, + "time_start": start, + "time_end": end, + "location": "" if place == "Not available at this time." else place, + } + Offering.objects.update_or_create(section=s_obj, defaults=o_data) + + def get_detail_link(self, row): + return self.detail_base_url + row.find("a")["href"] + + def get_course_code(self, row): + return row.find(class_="CourseCode").text + + def get_course_title(self, row): + return row.find(class_="CourseTitle").text + + def parse_courses(self): + html = self.get_search_results_html() + result_soup = BeautifulSoup(html) + num_results = result_soup.find("div", class_="result").text.split()[0] + bar = progressbar.ProgressBar(max_value=int(num_results) + 1) + while True: + success = self.parse_page_results(html, bar) + if not success: + break + self.driver.execute_script( + "__doPostBack('ctl00$MainContentPlaceHolder$ctl03','')" + ) + html = self.driver.page_source + + def get_html(self, url): + html = None + while html is None: + try: + r = self.s.get(url, cookies=self.cookies, headers=self.headers) + if r.status_code == 200: + html = r.text + except (requests.exceptions.Timeout, requests.exceptions.ConnectionError): + print("Unexpected error:", sys.exc_info()[0]) + + continue + return html.encode("utf-8") + + def process_time(self, date_time): + """ + Break string of the form 'Monday 08:30 - 10:00' into separate semesterly + compatible formats. + """ + # website puts dummy times without day when undetermined e.g. '0:00 0:00' + if len(date_time.split()) < 4: + return "TBD", "TBD", "TBD" + day, start, dash, end = date_time.split() + day = "R" if day == "Thursday" else day[0] + start = start[1:] if start[0] == "0" else start + end = end[1:] if end[0] == "0" else end + return start, end, day + + def process_prof(self, prof): + return "TBD" if prof == "Not available at this time." else prof + + def process_type(self, meet_type): + """ + Get the section_type from the meeting code. Meeting code follows the format + of 'sectiontype sectionnumber' e.g. Lecture 3 (return Lecture). Shortens + special cases + """ + special_cases = { + "Audioconference course": "Audioconf", + "Course entirely via Internet": "Online", + "Course has on-line/classroom activities": "Online/Classroom", + "Videoconference course": "Videoconf", } - Offering.objects.update_or_create(section=s_obj, defaults=o_data) - - def get_detail_link(self,row): - return self.detail_base_url+row.find('a')['href'] - - def get_course_code(self,row): - return row.find(class_="CourseCode").text - - def get_course_title(self,row): - return row.find(class_="CourseTitle").text - - def parse_courses(self): - html = self.get_search_results_html() - result_soup = BeautifulSoup(html) - num_results = result_soup.find('div', class_="result").text.split()[0] - bar = progressbar.ProgressBar(max_value=int(num_results) + 1) - while True: - success = self.parse_page_results(html, bar) - if not success: - break - self.driver.execute_script("__doPostBack('ctl00$MainContentPlaceHolder$ctl03','')") - html = self.driver.page_source - - def get_html(self, url): - html = None - while html is None: - try: - r = self.s.get(url,cookies=self.cookies,headers=self.headers) - if r.status_code == 200: - html = r.text - except (requests.exceptions.Timeout, - requests.exceptions.ConnectionError): - print "Unexpected error:", sys.exc_info()[0] - - continue - return html.encode('utf-8') - - def process_time(self, date_time): - """ - Break string of the form 'Monday 08:30 - 10:00' into separate semesterly - compatible formats. - """ - # website puts dummy times without day when undetermined e.g. '0:00 0:00' - if len(date_time.split()) < 4: - return 'TBD', 'TBD', 'TBD' - day, start, dash, end = date_time.split() - day = 'R' if day == 'Thursday' else day[0] - start = start[1:] if start[0] == '0' else start - end = end[1:] if end[0] == '0' else end - return start, end, day - - def process_prof(self, prof): - return 'TBD' if prof == 'Not available at this time.' else prof - - def process_type(self, meet_type): - """ - Get the section_type from the meeting code. Meeting code follows the format - of 'sectiontype sectionnumber' e.g. Lecture 3 (return Lecture). Shortens - special cases - """ - special_cases = { - 'Audioconference course': 'Audioconf', - 'Course entirely via Internet': 'Online', - 'Course has on-line/classroom activities': 'Online/Classroom', - 'Videoconference course': 'Videoconf' - } - ret = ' '.join(meet_type.split()[:-1]) - return special_cases.get(ret, ret) - - def process_title(self, title): - """ - Example: convert NSG5220 - ADV. NURS. PRAC. TERITARY CARE into - Adv. Nurs. Prac. Teritary Care. - """ - return capwords(' '.join(title.split()[2:])) + ret = " ".join(meet_type.split()[:-1]) + return special_cases.get(ret, ret) + + def process_title(self, title): + """ + Example: convert NSG5220 - ADV. NURS. PRAC. TERITARY CARE into + Adv. Nurs. Prac. Teritary Care. + """ + return capwords(" ".join(title.split()[2:])) + def parse_ottawa(): - OttawaParser('F').parse_courses() - OttawaParser('S').parse_courses() - -if __name__ == '__main__': - if len(sys.argv) < 2: - parse_ottawa() - else: - if sys.argv[1] not in ['F', 'S']: - print "Please specify either F or S for semester" + OttawaParser("F").parse_courses() + OttawaParser("S").parse_courses() + + +if __name__ == "__main__": + if len(sys.argv) < 2: + parse_ottawa() else: - ott = OttawaParser(sys.argv[1]) - ott.parse_courses() \ No newline at end of file + if sys.argv[1] not in ["F", "S"]: + print("Please specify either F or S for semester") + else: + ott = OttawaParser(sys.argv[1]) + ott.parse_courses() diff --git a/scripts/uo/uo_evals.py b/scripts/uo/uo_evals.py index c53afacbff..defc0f99ee 100644 --- a/scripts/uo/uo_evals.py +++ b/scripts/uo/uo_evals.py @@ -9,4 +9,3 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - diff --git a/scripts/uo/uo_textbooks.py b/scripts/uo/uo_textbooks.py deleted file mode 100644 index c53afacbff..0000000000 --- a/scripts/uo/uo_textbooks.py +++ /dev/null @@ -1,12 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - diff --git a/scripts/waitlist_notification.py b/scripts/waitlist_notification.py deleted file mode 100644 index 6879c0b937..0000000000 --- a/scripts/waitlist_notification.py +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -import django, os, sys -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") -django.setup() -from student.models import * -from timetable.models import * -from mailer import Mailer - -if len(sys.argv) < 3: - print("Please specify a school (e.g. jhu) and a semester (F or S).") - exit(0) -school = sys.argv[1] -semester = Semester.objects.filter(name=sys.argv[2]) - -client = Mailer() -d = {} - -sections = Section.objects.filter(course__school="jhu") -for section in sections: - if not section.was_full and (section.size <= section.enrolment): - section.was_full = True - section.save() - try: - timetables = PersonalTimetable.objects.filter(sections__id__contains=section.id, semester=semester) - except: - print("Problem with getting section with id = " + str(section.id)) - for student, timetable in zip(map(lambda t: t.student, timetables), timetables): - if timetable != student.personaltimetable_set.filter(semester=semester).order_by('last_updated').last(): - # Only applies for the student's last modified schedule. - continue - # NOTIFIY STUDENT - if student not in d: - d[student] = [] - d[student].append(section) - - elif section.was_full and section.enrolment < section.size: - section.was_full = False - section.save() - -for student, sections in d.items(): - client.send_mail(student, "Course Waitlist Notification from Semester.ly", "email_waitlist.html", {'sections': sections}) - - -client.cleanup() diff --git a/searches/__init__.py b/searches/__init__.py index fd2dc8f4d5..854844f572 100644 --- a/searches/__init__.py +++ b/searches/__init__.py @@ -10,5 +10,4 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - -default_app_config = 'searches.apps.SearchesConfig' \ No newline at end of file +default_app_config = "searches.apps.SearchesConfig" diff --git a/searches/apps.py b/searches/apps.py index 0cde2b0db9..328d7f3990 100644 --- a/searches/apps.py +++ b/searches/apps.py @@ -10,23 +10,8 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - -from __future__ import unicode_literals - from django.apps import AppConfig class SearchesConfig(AppConfig): - name = 'searches' - searcher = None - - def ready(self): - """ Constructs Searcher object to be used if it can be built using course.vector field """ - from searches.utils import Searcher - if not self.searcher: - try: - self.searcher = Searcher() - except Exception as e: - self.searcher = None - print("Unable to create Searcher object: setting searcher object to None " + - "and using baseline_search instead. \nError:%s" %e.message) + name = "searches" diff --git a/searches/dictionary.pickle b/searches/dictionary.pickle deleted file mode 100644 index 330a9b7e5d..0000000000 --- a/searches/dictionary.pickle +++ /dev/null @@ -1,58135 +0,0 @@ -ccopy_reg -_reconstructor -p1 -(csklearn.feature_extraction.text -CountVectorizer -p2 -c__builtin__ -object -p3 -NtRp4 -(dp5 -S'decode_error' -p6 -Vstrict -p7 -sS'lowercase' -p8 -I01 -sS'stop_words' -p9 -S'english' -p10 -sS'vocabulary' -p11 -NsS'tokenizer' -p12 -NsS'encoding' -p13 -Vutf-8 -p14 -sS'token_pattern' -p15 -V(?u)\u005cb\u005cw\u005cw+\u005cb -p16 -sS'input' -p17 -Vcontent -p18 -sS'analyzer' -p19 -Vword -p20 -sS'vocabulary_' -p21 -(dp22 -Vwritings -p23 -cnumpy.core.multiarray -scalar -p24 -(cnumpy -dtype -p25 -(S'i8' -I0 -I1 -tRp26 -(I3 -S'<' -NNNI-1 -I-1 -I0 -tbS'w%\x00\x00\x00\x00\x00\x00' -tRp27 -sVyellow -p28 -g24 -(g26 -S'\xa0%\x00\x00\x00\x00\x00\x00' -tRp29 -sVfactory -p30 -g24 -(g26 -S'\x8f\x0c\x00\x00\x00\x00\x00\x00' -tRp31 -sVprefix -p32 -g24 -(g26 -S'\x01\x1a\x00\x00\x00\x00\x00\x00' -tRp33 -sVwoods -p34 -g24 -(g26 -S'G%\x00\x00\x00\x00\x00\x00' -tRp35 -sVhanging -p36 -g24 -(g26 -S'V\x0f\x00\x00\x00\x00\x00\x00' -tRp37 -sVcyprus -p38 -g24 -(g26 -S'\x99\x08\x00\x00\x00\x00\x00\x00' -tRp39 -sVincrease -p40 -g24 -(g26 -S'\xd5\x10\x00\x00\x00\x00\x00\x00' -tRp41 -sVeligible -p42 -g24 -(g26 -S',\x0b\x00\x00\x00\x00\x00\x00' -tRp43 -sVelectricity -p44 -g24 -(g26 -S' \x0b\x00\x00\x00\x00\x00\x00' -tRp45 -sVlord -p46 -g24 -(g26 -S'\xfd\x13\x00\x00\x00\x00\x00\x00' -tRp47 -sVdigit -p48 -g24 -(g26 -S'\xc4\t\x00\x00\x00\x00\x00\x00' -tRp49 -sVhormone -p50 -g24 -(g26 -S'\x1b\x10\x00\x00\x00\x00\x00\x00' -tRp51 -sVsaskatchewan -p52 -g24 -(g26 -S'\xa6\x1d\x00\x00\x00\x00\x00\x00' -tRp53 -sVregional -p54 -g24 -(g26 -S'\xf2\x1b\x00\x00\x00\x00\x00\x00' -tRp55 -sVdell -p56 -g24 -(g26 -S'&\t\x00\x00\x00\x00\x00\x00' -tRp57 -sVhdtv -p58 -g24 -(g26 -S'\x87\x0f\x00\x00\x00\x00\x00\x00' -tRp59 -sVfoul -p60 -g24 -(g26 -S'\xb7\r\x00\x00\x00\x00\x00\x00' -tRp61 -sVbringing -p62 -g24 -(g26 -S'C\x04\x00\x00\x00\x00\x00\x00' -tRp63 -sVmedline -p64 -g24 -(g26 -S'\x03\x15\x00\x00\x00\x00\x00\x00' -tRp65 -sVprize -p66 -g24 -(g26 -S'M\x1a\x00\x00\x00\x00\x00\x00' -tRp67 -sVwooden -p68 -g24 -(g26 -S'F%\x00\x00\x00\x00\x00\x00' -tRp69 -sVvoyeur -p70 -g24 -(g26 -S's$\x00\x00\x00\x00\x00\x00' -tRp71 -sVwednesday -p72 -g24 -(g26 -S'\xdf$\x00\x00\x00\x00\x00\x00' -tRp73 -sVspecialties -p74 -g24 -(g26 -S'\xb0\x1f\x00\x00\x00\x00\x00\x00' -tRp75 -sVenrollment -p76 -g24 -(g26 -S'\x89\x0b\x00\x00\x00\x00\x00\x00' -tRp77 -sVhostels -p78 -g24 -(g26 -S')\x10\x00\x00\x00\x00\x00\x00' -tRp79 -sVcharter -p80 -g24 -(g26 -S'\xb5\x05\x00\x00\x00\x00\x00\x00' -tRp81 -sVspecially -p82 -g24 -(g26 -S'\xae\x1f\x00\x00\x00\x00\x00\x00' -tRp83 -sVtired -p84 -g24 -(g26 -S'C"\x00\x00\x00\x00\x00\x00' -tRp85 -sVmiller -p86 -g24 -(g26 -S'n\x15\x00\x00\x00\x00\x00\x00' -tRp87 -sVbacon -p88 -g24 -(g26 -S'\xba\x02\x00\x00\x00\x00\x00\x00' -tRp89 -sVpulse -p90 -g24 -(g26 -S'\xe4\x1a\x00\x00\x00\x00\x00\x00' -tRp91 -sVbudget -p92 -g24 -(g26 -S's\x04\x00\x00\x00\x00\x00\x00' -tRp93 -sVtires -p94 -g24 -(g26 -S'D"\x00\x00\x00\x00\x00\x00' -tRp95 -sVelegant -p96 -g24 -(g26 -S'%\x0b\x00\x00\x00\x00\x00\x00' -tRp97 -sVsecond -p98 -g24 -(g26 -S'\x11\x1e\x00\x00\x00\x00\x00\x00' -tRp99 -sVfederal -p100 -g24 -(g26 -S'\xd8\x0c\x00\x00\x00\x00\x00\x00' -tRp101 -sVerrors -p102 -g24 -(g26 -S'\xc2\x0b\x00\x00\x00\x00\x00\x00' -tRp103 -sVthunder -p104 -g24 -(g26 -S' "\x00\x00\x00\x00\x00\x00' -tRp105 -sVcooking -p106 -g24 -(g26 -S'\xd2\x07\x00\x00\x00\x00\x00\x00' -tRp107 -sVcontributed -p108 -g24 -(g26 -S'\xaf\x07\x00\x00\x00\x00\x00\x00' -tRp109 -sVfingers -p110 -g24 -(g26 -S'%\r\x00\x00\x00\x00\x00\x00' -tRp111 -sVfossil -p112 -g24 -(g26 -S'\xb2\r\x00\x00\x00\x00\x00\x00' -tRp113 -sVdesigning -p114 -g24 -(g26 -S'f\t\x00\x00\x00\x00\x00\x00' -tRp115 -sVincreasing -p116 -g24 -(g26 -S'\xd8\x10\x00\x00\x00\x00\x00\x00' -tRp117 -sVspecialist -p118 -g24 -(g26 -S'\xaa\x1f\x00\x00\x00\x00\x00\x00' -tRp119 -sVhero -p120 -g24 -(g26 -S'\xbf\x0f\x00\x00\x00\x00\x00\x00' -tRp121 -sVreporter -p122 -g24 -(g26 -S'S\x1c\x00\x00\x00\x00\x00\x00' -tRp123 -sVherb -p124 -g24 -(g26 -S'\xbb\x0f\x00\x00\x00\x00\x00\x00' -tRp125 -sVerror -p126 -g24 -(g26 -S'\xc1\x0b\x00\x00\x00\x00\x00\x00' -tRp127 -sVaffiliates -p128 -g24 -(g26 -S'\xc4\x00\x00\x00\x00\x00\x00\x00' -tRp129 -sVreported -p130 -g24 -(g26 -S'R\x1c\x00\x00\x00\x00\x00\x00' -tRp131 -sVchassis -p132 -g24 -(g26 -S'\xb8\x05\x00\x00\x00\x00\x00\x00' -tRp133 -sVchina -p134 -g24 -(g26 -S'\xe0\x05\x00\x00\x00\x00\x00\x00' -tRp135 -sVcult -p136 -g24 -(g26 -S'p\x08\x00\x00\x00\x00\x00\x00' -tRp137 -sVaffiliated -p138 -g24 -(g26 -S'\xc3\x00\x00\x00\x00\x00\x00\x00' -tRp139 -sVcalculate -p140 -g24 -(g26 -S'\xc1\x04\x00\x00\x00\x00\x00\x00' -tRp141 -sVkids -p142 -g24 -(g26 -S'\x8c\x12\x00\x00\x00\x00\x00\x00' -tRp143 -sVreports -p144 -g24 -(g26 -S'V\x1c\x00\x00\x00\x00\x00\x00' -tRp145 -sVcontroversy -p146 -g24 -(g26 -S'\xbc\x07\x00\x00\x00\x00\x00\x00' -tRp147 -sVflyer -p148 -g24 -(g26 -S'p\r\x00\x00\x00\x00\x00\x00' -tRp149 -sVmilitary -p150 -g24 -(g26 -S'k\x15\x00\x00\x00\x00\x00\x00' -tRp151 -sVcancellation -p152 -g24 -(g26 -S'\xe9\x04\x00\x00\x00\x00\x00\x00' -tRp153 -sVcriticism -p154 -g24 -(g26 -S'U\x08\x00\x00\x00\x00\x00\x00' -tRp155 -sVgolden -p156 -g24 -(g26 -S'\xae\x0e\x00\x00\x00\x00\x00\x00' -tRp157 -sVprojection -p158 -g24 -(g26 -S'\x83\x1a\x00\x00\x00\x00\x00\x00' -tRp159 -sVclassification -p160 -g24 -(g26 -S'4\x06\x00\x00\x00\x00\x00\x00' -tRp161 -sVexplained -p162 -g24 -(g26 -S'V\x0c\x00\x00\x00\x00\x00\x00' -tRp163 -sVbeastality -p164 -g24 -(g26 -S' \x03\x00\x00\x00\x00\x00\x00' -tRp165 -sVreplace -p166 -g24 -(g26 -S'H\x1c\x00\x00\x00\x00\x00\x00' -tRp167 -sVbrought -p168 -g24 -(g26 -S']\x04\x00\x00\x00\x00\x00\x00' -tRp169 -sVmarina -p170 -g24 -(g26 -S'\x97\x14\x00\x00\x00\x00\x00\x00' -tRp171 -sVunix -p172 -g24 -(g26 -S'|#\x00\x00\x00\x00\x00\x00' -tRp173 -sVclassifieds -p174 -g24 -(g26 -S'6\x06\x00\x00\x00\x00\x00\x00' -tRp175 -sVuniv -p176 -g24 -(g26 -S'w#\x00\x00\x00\x00\x00\x00' -tRp177 -sVunit -p178 -g24 -(g26 -S's#\x00\x00\x00\x00\x00\x00' -tRp179 -sVopponents -p180 -g24 -(g26 -S'\x93\x17\x00\x00\x00\x00\x00\x00' -tRp181 -sVdna -p182 -g24 -(g26 -S'4\n\x00\x00\x00\x00\x00\x00' -tRp183 -sVspoke -p184 -g24 -(g26 -S'\xd4\x1f\x00\x00\x00\x00\x00\x00' -tRp185 -sVbrowse -p186 -g24 -(g26 -S'_\x04\x00\x00\x00\x00\x00\x00' -tRp187 -sVvol -p188 -g24 -(g26 -S'b$\x00\x00\x00\x00\x00\x00' -tRp189 -sVsymphony -p190 -g24 -(g26 -S'8!\x00\x00\x00\x00\x00\x00' -tRp191 -sVmusic -p192 -g24 -(g26 -S'6\x16\x00\x00\x00\x00\x00\x00' -tRp193 -sVpassport -p194 -g24 -(g26 -S'[\x18\x00\x00\x00\x00\x00\x00' -tRp195 -sVstrike -p196 -g24 -(g26 -S'q \x00\x00\x00\x00\x00\x00' -tRp197 -sVcalculator -p198 -g24 -(g26 -S'\xc5\x04\x00\x00\x00\x00\x00\x00' -tRp199 -sVplayboy -p200 -g24 -(g26 -S'V\x19\x00\x00\x00\x00\x00\x00' -tRp201 -sVfemales -p202 -g24 -(g26 -S'\xea\x0c\x00\x00\x00\x00\x00\x00' -tRp203 -sVholy -p204 -g24 -(g26 -S'\xff\x0f\x00\x00\x00\x00\x00\x00' -tRp205 -sVpopulations -p206 -g24 -(g26 -S'\xa0\x19\x00\x00\x00\x00\x00\x00' -tRp207 -sVsuccessful -p208 -g24 -(g26 -S'\xb9 \x00\x00\x00\x00\x00\x00' -tRp209 -sVbrings -p210 -g24 -(g26 -S'D\x04\x00\x00\x00\x00\x00\x00' -tRp211 -sVyahoo -p212 -g24 -(g26 -S'\x92%\x00\x00\x00\x00\x00\x00' -tRp213 -sVhurt -p214 -g24 -(g26 -S'a\x10\x00\x00\x00\x00\x00\x00' -tRp215 -sVglass -p216 -g24 -(g26 -S'\x95\x0e\x00\x00\x00\x00\x00\x00' -tRp217 -sVthinkpad -p218 -g24 -(g26 -S'\xfc!\x00\x00\x00\x00\x00\x00' -tRp219 -sVhole -p220 -g24 -(g26 -S'\xf5\x0f\x00\x00\x00\x00\x00\x00' -tRp221 -sVhold -p222 -g24 -(g26 -S'\xee\x0f\x00\x00\x00\x00\x00\x00' -tRp223 -sVcircumstances -p224 -g24 -(g26 -S'\x13\x06\x00\x00\x00\x00\x00\x00' -tRp225 -sVintake -p226 -g24 -(g26 -S'[\x11\x00\x00\x00\x00\x00\x00' -tRp227 -sVlocked -p228 -g24 -(g26 -S'\xd9\x13\x00\x00\x00\x00\x00\x00' -tRp229 -sVpursue -p230 -g24 -(g26 -S'\xf6\x1a\x00\x00\x00\x00\x00\x00' -tRp231 -sVblade -p232 -g24 -(g26 -S'\xa4\x03\x00\x00\x00\x00\x00\x00' -tRp233 -sVtemperatures -p234 -g24 -(g26 -S'\xaa!\x00\x00\x00\x00\x00\x00' -tRp235 -sVconcepts -p236 -g24 -(g26 -S'\x1f\x07\x00\x00\x00\x00\x00\x00' -tRp237 -sVrevenues -p238 -g24 -(g26 -S'\xca\x1c\x00\x00\x00\x00\x00\x00' -tRp239 -sVexample -p240 -g24 -(g26 -S'\t\x0c\x00\x00\x00\x00\x00\x00' -tRp241 -sVwang -p242 -g24 -(g26 -S'\x97$\x00\x00\x00\x00\x00\x00' -tRp243 -sVhousehold -p244 -g24 -(g26 -S'5\x10\x00\x00\x00\x00\x00\x00' -tRp245 -sVorganized -p246 -g24 -(g26 -S'\xb9\x17\x00\x00\x00\x00\x00\x00' -tRp247 -sVcurrency -p248 -g24 -(g26 -S'~\x08\x00\x00\x00\x00\x00\x00' -tRp249 -sVcaution -p250 -g24 -(g26 -S'K\x05\x00\x00\x00\x00\x00\x00' -tRp251 -sVoclc -p252 -g24 -(g26 -S'H\x17\x00\x00\x00\x00\x00\x00' -tRp253 -sVwant -p254 -g24 -(g26 -S'\x99$\x00\x00\x00\x00\x00\x00' -tRp255 -sVcounseling -p256 -g24 -(g26 -S'\x0f\x08\x00\x00\x00\x00\x00\x00' -tRp257 -sVorganizer -p258 -g24 -(g26 -S'\xba\x17\x00\x00\x00\x00\x00\x00' -tRp259 -sVabsolute -p260 -g24 -(g26 -S'\x11\x00\x00\x00\x00\x00\x00\x00' -tRp261 -sVprovincial -p262 -g24 -(g26 -S'\xc4\x1a\x00\x00\x00\x00\x00\x00' -tRp263 -sVhon -p264 -g24 -(g26 -S'\x07\x10\x00\x00\x00\x00\x00\x00' -tRp265 -sVtravel -p266 -g24 -(g26 -S'\xd2"\x00\x00\x00\x00\x00\x00' -tRp267 -sVfeature -p268 -g24 -(g26 -S'\xd1\x0c\x00\x00\x00\x00\x00\x00' -tRp269 -sVmachine -p270 -g24 -(g26 -S'3\x14\x00\x00\x00\x00\x00\x00' -tRp271 -sVhot -p272 -g24 -(g26 -S',\x10\x00\x00\x00\x00\x00\x00' -tRp273 -sVepinions -p274 -g24 -(g26 -S'\xaa\x0b\x00\x00\x00\x00\x00\x00' -tRp275 -sVhop -p276 -g24 -(g26 -S'\x12\x10\x00\x00\x00\x00\x00\x00' -tRp277 -sVsignificance -p278 -g24 -(g26 -S'\xe5\x1e\x00\x00\x00\x00\x00\x00' -tRp279 -sVsymposium -p280 -g24 -(g26 -S'9!\x00\x00\x00\x00\x00\x00' -tRp281 -sVchase -p282 -g24 -(g26 -S'\xb7\x05\x00\x00\x00\x00\x00\x00' -tRp283 -sVvoid -p284 -g24 -(g26 -S'`$\x00\x00\x00\x00\x00\x00' -tRp285 -sVgaming -p286 -g24 -(g26 -S')\x0e\x00\x00\x00\x00\x00\x00' -tRp287 -sVbeauty -p288 -g24 -(g26 -S"'\x03\x00\x00\x00\x00\x00\x00" -tRp289 -sVfunny -p290 -g24 -(g26 -S'\x0b\x0e\x00\x00\x00\x00\x00\x00' -tRp291 -sVdiagram -p292 -g24 -(g26 -S'\x9f\t\x00\x00\x00\x00\x00\x00' -tRp293 -sVwrong -p294 -g24 -(g26 -S'y%\x00\x00\x00\x00\x00\x00' -tRp295 -sVpromotion -p296 -g24 -(g26 -S'\x91\x1a\x00\x00\x00\x00\x00\x00' -tRp297 -sVtypes -p298 -g24 -(g26 -S'E#\x00\x00\x00\x00\x00\x00' -tRp299 -sVeffective -p300 -g24 -(g26 -S'\x07\x0b\x00\x00\x00\x00\x00\x00' -tRp301 -sVwins -p302 -g24 -(g26 -S'$%\x00\x00\x00\x00\x00\x00' -tRp303 -sVheadquarters -p304 -g24 -(g26 -S'\x90\x0f\x00\x00\x00\x00\x00\x00' -tRp305 -sValias -p306 -g24 -(g26 -S'\r\x01\x00\x00\x00\x00\x00\x00' -tRp307 -sVkeeps -p308 -g24 -(g26 -S'r\x12\x00\x00\x00\x00\x00\x00' -tRp309 -sVdemocratic -p310 -g24 -(g26 -S'0\t\x00\x00\x00\x00\x00\x00' -tRp311 -sVwing -p312 -g24 -(g26 -S'\x1f%\x00\x00\x00\x00\x00\x00' -tRp313 -sVwind -p314 -g24 -(g26 -S'\x18%\x00\x00\x00\x00\x00\x00' -tRp315 -sVwine -p316 -g24 -(g26 -S'\x1d%\x00\x00\x00\x00\x00\x00' -tRp317 -sVrestriction -p318 -g24 -(g26 -S'\xa7\x1c\x00\x00\x00\x00\x00\x00' -tRp319 -sVfeedback -p320 -g24 -(g26 -S'\xdc\x0c\x00\x00\x00\x00\x00\x00' -tRp321 -sVtelecom -p322 -g24 -(g26 -S'\x9e!\x00\x00\x00\x00\x00\x00' -tRp323 -sVvary -p324 -g24 -(g26 -S'\xe5#\x00\x00\x00\x00\x00\x00' -tRp325 -sVfit -p326 -g24 -(g26 -S'=\r\x00\x00\x00\x00\x00\x00' -tRp327 -sVrankings -p328 -g24 -(g26 -S'Z\x1b\x00\x00\x00\x00\x00\x00' -tRp329 -sVfix -p330 -g24 -(g26 -S'B\r\x00\x00\x00\x00\x00\x00' -tRp331 -sVoccupations -p332 -g24 -(g26 -S'@\x17\x00\x00\x00\x00\x00\x00' -tRp333 -sVsurvivors -p334 -g24 -(g26 -S'\x14!\x00\x00\x00\x00\x00\x00' -tRp335 -sVfig -p336 -g24 -(g26 -S'\xfd\x0c\x00\x00\x00\x00\x00\x00' -tRp337 -sVwales -p338 -g24 -(g26 -S'\x87$\x00\x00\x00\x00\x00\x00' -tRp339 -sVhidden -p340 -g24 -(g26 -S'\xc5\x0f\x00\x00\x00\x00\x00\x00' -tRp341 -sVfin -p342 -g24 -(g26 -S'\x13\r\x00\x00\x00\x00\x00\x00' -tRp343 -sVeasier -p344 -g24 -(g26 -S'\xd2\n\x00\x00\x00\x00\x00\x00' -tRp345 -sVblowjobs -p346 -g24 -(g26 -S'\xc5\x03\x00\x00\x00\x00\x00\x00' -tRp347 -sVzoning -p348 -g24 -(g26 -S'\xc0%\x00\x00\x00\x00\x00\x00' -tRp349 -sVelementary -p350 -g24 -(g26 -S"'\x0b\x00\x00\x00\x00\x00\x00" -tRp351 -sVbasics -p352 -g24 -(g26 -S'\xfc\x02\x00\x00\x00\x00\x00\x00' -tRp353 -sVeffects -p354 -g24 -(g26 -S'\n\x0b\x00\x00\x00\x00\x00\x00' -tRp355 -sVschools -p356 -g24 -(g26 -S'\xdb\x1d\x00\x00\x00\x00\x00\x00' -tRp357 -sVtownship -p358 -g24 -(g26 -S'\x89"\x00\x00\x00\x00\x00\x00' -tRp359 -sVsilver -p360 -g24 -(g26 -S'\xf0\x1e\x00\x00\x00\x00\x00\x00' -tRp361 -sVstructural -p362 -g24 -(g26 -S'\x7f \x00\x00\x00\x00\x00\x00' -tRp363 -sVrepresents -p364 -g24 -(g26 -S'_\x1c\x00\x00\x00\x00\x00\x00' -tRp365 -sVdebut -p366 -g24 -(g26 -S'\xe5\x08\x00\x00\x00\x00\x00\x00' -tRp367 -sVskills -p368 -g24 -(g26 -S'\x1d\x1f\x00\x00\x00\x00\x00\x00' -tRp369 -sVarrow -p370 -g24 -(g26 -S'\x03\x02\x00\x00\x00\x00\x00\x00' -tRp371 -sVdebug -p372 -g24 -(g26 -S'\xe4\x08\x00\x00\x00\x00\x00\x00' -tRp373 -sVsimplified -p374 -g24 -(g26 -S'\xf6\x1e\x00\x00\x00\x00\x00\x00' -tRp375 -sVfinancial -p376 -g24 -(g26 -S'\x19\r\x00\x00\x00\x00\x00\x00' -tRp377 -sVtelescope -p378 -g24 -(g26 -S'\xa2!\x00\x00\x00\x00\x00\x00' -tRp379 -sVconcord -p380 -g24 -(g26 -S'+\x07\x00\x00\x00\x00\x00\x00' -tRp381 -sVseries -p382 -g24 -(g26 -S'`\x1e\x00\x00\x00\x00\x00\x00' -tRp383 -sVallah -p384 -g24 -(g26 -S'\x14\x01\x00\x00\x00\x00\x00\x00' -tRp385 -sVspider -p386 -g24 -(g26 -S'\xcb\x1f\x00\x00\x00\x00\x00\x00' -tRp387 -sVsolution -p388 -g24 -(g26 -S'm\x1f\x00\x00\x00\x00\x00\x00' -tRp389 -sVcontracting -p390 -g24 -(g26 -S'\xa8\x07\x00\x00\x00\x00\x00\x00' -tRp391 -sVcurrencies -p392 -g24 -(g26 -S'}\x08\x00\x00\x00\x00\x00\x00' -tRp393 -sVsubstantially -p394 -g24 -(g26 -S'\xb3 \x00\x00\x00\x00\x00\x00' -tRp395 -sVlaboratory -p396 -g24 -(g26 -S'\xc8\x12\x00\x00\x00\x00\x00\x00' -tRp397 -sVxp -p398 -g24 -(g26 -S'\x8d%\x00\x00\x00\x00\x00\x00' -tRp399 -sVrt -p400 -g24 -(g26 -S'V\x1d\x00\x00\x00\x00\x00\x00' -tRp401 -sVru -p402 -g24 -(g26 -S'W\x1d\x00\x00\x00\x00\x00\x00' -tRp403 -sVrv -p404 -g24 -(g26 -S'l\x1d\x00\x00\x00\x00\x00\x00' -tRp405 -sVrw -p406 -g24 -(g26 -S'm\x1d\x00\x00\x00\x00\x00\x00' -tRp407 -sVrp -p408 -g24 -(g26 -S'O\x1d\x00\x00\x00\x00\x00\x00' -tRp409 -sVrr -p410 -g24 -(g26 -S'R\x1d\x00\x00\x00\x00\x00\x00' -tRp411 -sVrs -p412 -g24 -(g26 -S'T\x1d\x00\x00\x00\x00\x00\x00' -tRp413 -sVpokemon -p414 -g24 -(g26 -S'\x81\x19\x00\x00\x00\x00\x00\x00' -tRp415 -sVha -p416 -g24 -(g26 -S'3\x0f\x00\x00\x00\x00\x00\x00' -tRp417 -sVsms -p418 -g24 -(g26 -S'J\x1f\x00\x00\x00\x00\x00\x00' -tRp419 -sVmason -p420 -g24 -(g26 -S'\xb5\x14\x00\x00\x00\x00\x00\x00' -tRp421 -sVrd -p422 -g24 -(g26 -S't\x1b\x00\x00\x00\x00\x00\x00' -tRp423 -sVdsl -p424 -g24 -(g26 -S'\xa2\n\x00\x00\x00\x00\x00\x00' -tRp425 -sVrg -p426 -g24 -(g26 -S'\xdb\x1c\x00\x00\x00\x00\x00\x00' -tRp427 -sVra -p428 -g24 -(g26 -S'/\x1b\x00\x00\x00\x00\x00\x00' -tRp429 -sVrb -p430 -g24 -(g26 -S'q\x1b\x00\x00\x00\x00\x00\x00' -tRp431 -sVrc -p432 -g24 -(g26 -S'r\x1b\x00\x00\x00\x00\x00\x00' -tRp433 -sVrl -p434 -g24 -(g26 -S'\x04\x1d\x00\x00\x00\x00\x00\x00' -tRp435 -sVrm -p436 -g24 -(g26 -S'\x05\x1d\x00\x00\x00\x00\x00\x00' -tRp437 -sVrn -p438 -g24 -(g26 -S'\x06\x1d\x00\x00\x00\x00\x00\x00' -tRp439 -sVro -p440 -g24 -(g26 -S'\x08\x1d\x00\x00\x00\x00\x00\x00' -tRp441 -sVrh -p442 -g24 -(g26 -S'\xdc\x1c\x00\x00\x00\x00\x00\x00' -tRp443 -sVri -p444 -g24 -(g26 -S'\xdf\x1c\x00\x00\x00\x00\x00\x00' -tRp445 -sVrj -p446 -g24 -(g26 -S'\x03\x1d\x00\x00\x00\x00\x00\x00' -tRp447 -sVfoundation -p448 -g24 -(g26 -S'\xb8\r\x00\x00\x00\x00\x00\x00' -tRp449 -sVassured -p450 -g24 -(g26 -S'A\x02\x00\x00\x00\x00\x00\x00' -tRp451 -sVthreatened -p452 -g24 -(g26 -S'\x0f"\x00\x00\x00\x00\x00\x00' -tRp453 -sVgiven -p454 -g24 -(g26 -S'\x8e\x0e\x00\x00\x00\x00\x00\x00' -tRp455 -sVian -p456 -g24 -(g26 -S'n\x10\x00\x00\x00\x00\x00\x00' -tRp457 -sVchecked -p458 -g24 -(g26 -S'\xc0\x05\x00\x00\x00\x00\x00\x00' -tRp459 -sVestimate -p460 -g24 -(g26 -S'\xd7\x0b\x00\x00\x00\x00\x00\x00' -tRp461 -sVknit -p462 -g24 -(g26 -S'\xab\x12\x00\x00\x00\x00\x00\x00' -tRp463 -sVmetallica -p464 -g24 -(g26 -S':\x15\x00\x00\x00\x00\x00\x00' -tRp465 -sVenormous -p466 -g24 -(g26 -S'\x85\x0b\x00\x00\x00\x00\x00\x00' -tRp467 -sVate -p468 -g24 -(g26 -S'H\x02\x00\x00\x00\x00\x00\x00' -tRp469 -sVata -p470 -g24 -(g26 -S'G\x02\x00\x00\x00\x00\x00\x00' -tRp471 -sVatm -p472 -g24 -(g26 -S'Q\x02\x00\x00\x00\x00\x00\x00' -tRp473 -sVati -p474 -g24 -(g26 -S'M\x02\x00\x00\x00\x00\x00\x00' -tRp475 -sVsilicon -p476 -g24 -(g26 -S'\xed\x1e\x00\x00\x00\x00\x00\x00' -tRp477 -sVministries -p478 -g24 -(g26 -S'\x83\x15\x00\x00\x00\x00\x00\x00' -tRp479 -sVshipped -p480 -g24 -(g26 -S'\xb1\x1e\x00\x00\x00\x00\x00\x00' -tRp481 -sVmusicians -p482 -g24 -(g26 -S'9\x16\x00\x00\x00\x00\x00\x00' -tRp483 -sVspeeds -p484 -g24 -(g26 -S'\xc1\x1f\x00\x00\x00\x00\x00\x00' -tRp485 -sVshopper -p486 -g24 -(g26 -S'\xbd\x1e\x00\x00\x00\x00\x00\x00' -tRp487 -sVchannels -p488 -g24 -(g26 -S'\x99\x05\x00\x00\x00\x00\x00\x00' -tRp489 -sVwash -p490 -g24 -(g26 -S'\xaf$\x00\x00\x00\x00\x00\x00' -tRp491 -sVniger -p492 -g24 -(g26 -S'\xbf\x16\x00\x00\x00\x00\x00\x00' -tRp493 -sVclarity -p494 -g24 -(g26 -S',\x06\x00\x00\x00\x00\x00\x00' -tRp495 -sVcumshot -p496 -g24 -(g26 -S'u\x08\x00\x00\x00\x00\x00\x00' -tRp497 -sVbasketball -p498 -g24 -(g26 -S'\x00\x03\x00\x00\x00\x00\x00\x00' -tRp499 -sVservice -p500 -g24 -(g26 -S'h\x1e\x00\x00\x00\x00\x00\x00' -tRp501 -sVsimilarly -p502 -g24 -(g26 -S'\xf3\x1e\x00\x00\x00\x00\x00\x00' -tRp503 -sVengagement -p504 -g24 -(g26 -S'r\x0b\x00\x00\x00\x00\x00\x00' -tRp505 -sVreturns -p506 -g24 -(g26 -S'\xc0\x1c\x00\x00\x00\x00\x00\x00' -tRp507 -sVneeded -p508 -g24 -(g26 -S'\x85\x16\x00\x00\x00\x00\x00\x00' -tRp509 -sVmaster -p510 -g24 -(g26 -S'\xba\x14\x00\x00\x00\x00\x00\x00' -tRp511 -sVlisted -p512 -g24 -(g26 -S'\xa7\x13\x00\x00\x00\x00\x00\x00' -tRp513 -sVhypothetical -p514 -g24 -(g26 -S'j\x10\x00\x00\x00\x00\x00\x00' -tRp515 -sVgilbert -p516 -g24 -(g26 -S'\x89\x0e\x00\x00\x00\x00\x00\x00' -tRp517 -sVlegs -p518 -g24 -(g26 -S'>\x13\x00\x00\x00\x00\x00\x00' -tRp519 -sVranging -p520 -g24 -(g26 -S'V\x1b\x00\x00\x00\x00\x00\x00' -tRp521 -sVlisten -p522 -g24 -(g26 -S'\xa8\x13\x00\x00\x00\x00\x00\x00' -tRp523 -sVdanish -p524 -g24 -(g26 -S'\xb2\x08\x00\x00\x00\x00\x00\x00' -tRp525 -sVrewards -p526 -g24 -(g26 -S'\xd7\x1c\x00\x00\x00\x00\x00\x00' -tRp527 -sVcollapse -p528 -g24 -(g26 -S'\x8c\x06\x00\x00\x00\x00\x00\x00' -tRp529 -sVgeneva -p530 -g24 -(g26 -S'e\x0e\x00\x00\x00\x00\x00\x00' -tRp531 -sVwisdom -p532 -g24 -(g26 -S'-%\x00\x00\x00\x00\x00\x00' -tRp533 -sVnirvana -p534 -g24 -(g26 -S'\xcb\x16\x00\x00\x00\x00\x00\x00' -tRp535 -sVtrek -p536 -g24 -(g26 -S'\xe8"\x00\x00\x00\x00\x00\x00' -tRp537 -sVshowed -p538 -g24 -(g26 -S'\xcc\x1e\x00\x00\x00\x00\x00\x00' -tRp539 -sVtree -p540 -g24 -(g26 -S'\xe6"\x00\x00\x00\x00\x00\x00' -tRp541 -sVnations -p542 -g24 -(g26 -S'c\x16\x00\x00\x00\x00\x00\x00' -tRp543 -sVseminars -p544 -g24 -(g26 -S'>\x1e\x00\x00\x00\x00\x00\x00' -tRp545 -sVidle -p546 -g24 -(g26 -S'\x85\x10\x00\x00\x00\x00\x00\x00' -tRp547 -sVmysimon -p548 -g24 -(g26 -S'E\x16\x00\x00\x00\x00\x00\x00' -tRp549 -sVtion -p550 -g24 -(g26 -S'>"\x00\x00\x00\x00\x00\x00' -tRp551 -sVfeeling -p552 -g24 -(g26 -S'\xe0\x0c\x00\x00\x00\x00\x00\x00' -tRp553 -sVacquisition -p554 -g24 -(g26 -S'R\x00\x00\x00\x00\x00\x00\x00' -tRp555 -sVrunner -p556 -g24 -(g26 -S'b\x1d\x00\x00\x00\x00\x00\x00' -tRp557 -sVboston -p558 -g24 -(g26 -S'\xfb\x03\x00\x00\x00\x00\x00\x00' -tRp559 -sVwealth -p560 -g24 -(g26 -S'\xc9$\x00\x00\x00\x00\x00\x00' -tRp561 -sVspectrum -p562 -g24 -(g26 -S'\xbd\x1f\x00\x00\x00\x00\x00\x00' -tRp563 -sVhentai -p564 -g24 -(g26 -S'\xb8\x0f\x00\x00\x00\x00\x00\x00' -tRp565 -sVdozen -p566 -g24 -(g26 -S'p\n\x00\x00\x00\x00\x00\x00' -tRp567 -sVaffairs -p568 -g24 -(g26 -S'\xbd\x00\x00\x00\x00\x00\x00\x00' -tRp569 -sVhub -p570 -g24 -(g26 -S'H\x10\x00\x00\x00\x00\x00\x00' -tRp571 -sVconcrete -p572 -g24 -(g26 -S',\x07\x00\x00\x00\x00\x00\x00' -tRp573 -sVresponsible -p574 -g24 -(g26 -S'\x9e\x1c\x00\x00\x00\x00\x00\x00' -tRp575 -sVmetallic -p576 -g24 -(g26 -S'9\x15\x00\x00\x00\x00\x00\x00' -tRp577 -sVrecommended -p578 -g24 -(g26 -S'\xb0\x1b\x00\x00\x00\x00\x00\x00' -tRp579 -sVcausing -p580 -g24 -(g26 -S'J\x05\x00\x00\x00\x00\x00\x00' -tRp581 -sVdoors -p582 -g24 -(g26 -S'_\n\x00\x00\x00\x00\x00\x00' -tRp583 -sVseason -p584 -g24 -(g26 -S'\t\x1e\x00\x00\x00\x00\x00\x00' -tRp585 -sVshipments -p586 -g24 -(g26 -S'\xb0\x1e\x00\x00\x00\x00\x00\x00' -tRp587 -sVshall -p588 -g24 -(g26 -S'\x8b\x1e\x00\x00\x00\x00\x00\x00' -tRp589 -sVobject -p590 -g24 -(g26 -S')\x17\x00\x00\x00\x00\x00\x00' -tRp591 -sVwells -p592 -g24 -(g26 -S'\xef$\x00\x00\x00\x00\x00\x00' -tRp593 -sVvictoria -p594 -g24 -(g26 -S'"$\x00\x00\x00\x00\x00\x00' -tRp595 -sVmouth -p596 -g24 -(g26 -S'\n\x16\x00\x00\x00\x00\x00\x00' -tRp597 -sVletter -p598 -g24 -(g26 -S'U\x13\x00\x00\x00\x00\x00\x00' -tRp599 -sVentry -p600 -g24 -(g26 -S'\xa0\x0b\x00\x00\x00\x00\x00\x00' -tRp601 -sVdealtime -p602 -g24 -(g26 -S'\xdb\x08\x00\x00\x00\x00\x00\x00' -tRp603 -sVlistprice -p604 -g24 -(g26 -S'\xac\x13\x00\x00\x00\x00\x00\x00' -tRp605 -sVbradford -p606 -g24 -(g26 -S'\x18\x04\x00\x00\x00\x00\x00\x00' -tRp607 -sVsinger -p608 -g24 -(g26 -S'\x01\x1f\x00\x00\x00\x00\x00\x00' -tRp609 -sVepisode -p610 -g24 -(g26 -S'\xab\x0b\x00\x00\x00\x00\x00\x00' -tRp611 -sVgrove -p612 -g24 -(g26 -S'\x08\x0f\x00\x00\x00\x00\x00\x00' -tRp613 -sVprofessor -p614 -g24 -(g26 -S'r\x1a\x00\x00\x00\x00\x00\x00' -tRp615 -sVcamp -p616 -g24 -(g26 -S'\xdc\x04\x00\x00\x00\x00\x00\x00' -tRp617 -sVrotary -p618 -g24 -(g26 -S':\x1d\x00\x00\x00\x00\x00\x00' -tRp619 -sVtech -p620 -g24 -(g26 -S'\x8b!\x00\x00\x00\x00\x00\x00' -tRp621 -sVmating -p622 -g24 -(g26 -S'\xcb\x14\x00\x00\x00\x00\x00\x00' -tRp623 -sVcame -p624 -g24 -(g26 -S'\xd6\x04\x00\x00\x00\x00\x00\x00' -tRp625 -sVmarvel -p626 -g24 -(g26 -S'\xb0\x14\x00\x00\x00\x00\x00\x00' -tRp627 -sVsaying -p628 -g24 -(g26 -S'\xbc\x1d\x00\x00\x00\x00\x00\x00' -tRp629 -sVsignatures -p630 -g24 -(g26 -S'\xe3\x1e\x00\x00\x00\x00\x00\x00' -tRp631 -sVbomb -p632 -g24 -(g26 -S'\xda\x03\x00\x00\x00\x00\x00\x00' -tRp633 -sVinsects -p634 -g24 -(g26 -S'1\x11\x00\x00\x00\x00\x00\x00' -tRp635 -sVmeetings -p636 -g24 -(g26 -S'\x06\x15\x00\x00\x00\x00\x00\x00' -tRp637 -sVadvisors -p638 -g24 -(g26 -S'\xb3\x00\x00\x00\x00\x00\x00\x00' -tRp639 -sVnominated -p640 -g24 -(g26 -S'\xd7\x16\x00\x00\x00\x00\x00\x00' -tRp641 -sVprix -p642 -g24 -(g26 -S'L\x1a\x00\x00\x00\x00\x00\x00' -tRp643 -sVgauge -p644 -g24 -(g26 -S'@\x0e\x00\x00\x00\x00\x00\x00' -tRp645 -sVparticipate -p646 -g24 -(g26 -S'?\x18\x00\x00\x00\x00\x00\x00' -tRp647 -sVhungary -p648 -g24 -(g26 -S'Y\x10\x00\x00\x00\x00\x00\x00' -tRp649 -sVlessons -p650 -g24 -(g26 -S'R\x13\x00\x00\x00\x00\x00\x00' -tRp651 -sVorleans -p652 -g24 -(g26 -S'\xc6\x17\x00\x00\x00\x00\x00\x00' -tRp653 -sVbusy -p654 -g24 -(g26 -S'\x9e\x04\x00\x00\x00\x00\x00\x00' -tRp655 -sVlayout -p656 -g24 -(g26 -S'\x11\x13\x00\x00\x00\x00\x00\x00' -tRp657 -sVlouise -p658 -g24 -(g26 -S'\x0b\x14\x00\x00\x00\x00\x00\x00' -tRp659 -sVment -p660 -g24 -(g26 -S'\x1a\x15\x00\x00\x00\x00\x00\x00' -tRp661 -sVmenu -p662 -g24 -(g26 -S'\x1f\x15\x00\x00\x00\x00\x00\x00' -tRp663 -sVkinase -p664 -g24 -(g26 -S'\x95\x12\x00\x00\x00\x00\x00\x00' -tRp665 -sVmens -p666 -g24 -(g26 -S'\x19\x15\x00\x00\x00\x00\x00\x00' -tRp667 -sVrico -p668 -g24 -(g26 -S'\xea\x1c\x00\x00\x00\x00\x00\x00' -tRp669 -sVbush -p670 -g24 -(g26 -S'\x9a\x04\x00\x00\x00\x00\x00\x00' -tRp671 -sVrick -p672 -g24 -(g26 -S'\xe8\x1c\x00\x00\x00\x00\x00\x00' -tRp673 -sVrich -p674 -g24 -(g26 -S'\xe3\x1c\x00\x00\x00\x00\x00\x00' -tRp675 -sVrice -p676 -g24 -(g26 -S'\xe2\x1c\x00\x00\x00\x00\x00\x00' -tRp677 -sVrica -p678 -g24 -(g26 -S'\xe1\x1c\x00\x00\x00\x00\x00\x00' -tRp679 -sVplate -p680 -g24 -(g26 -S'O\x19\x00\x00\x00\x00\x00\x00' -tRp681 -sVklein -p682 -g24 -(g26 -S'\xa4\x12\x00\x00\x00\x00\x00\x00' -tRp683 -sVhonda -p684 -g24 -(g26 -S'\x08\x10\x00\x00\x00\x00\x00\x00' -tRp685 -sVpocket -p686 -g24 -(g26 -S'r\x19\x00\x00\x00\x00\x00\x00' -tRp687 -sVlenders -p688 -g24 -(g26 -S'C\x13\x00\x00\x00\x00\x00\x00' -tRp689 -sVnew -p690 -g24 -(g26 -S'\xa0\x16\x00\x00\x00\x00\x00\x00' -tRp691 -sVnet -p692 -g24 -(g26 -S'\x97\x16\x00\x00\x00\x00\x00\x00' -tRp693 -sVsocieties -p694 -g24 -(g26 -S'W\x1f\x00\x00\x00\x00\x00\x00' -tRp695 -sVjaguar -p696 -g24 -(g26 -S'\xec\x11\x00\x00\x00\x00\x00\x00' -tRp697 -sVtextbooks -p698 -g24 -(g26 -S'\xd3!\x00\x00\x00\x00\x00\x00' -tRp699 -sVpatch -p700 -g24 -(g26 -S'c\x18\x00\x00\x00\x00\x00\x00' -tRp701 -sVgreene -p702 -g24 -(g26 -S'\xf2\x0e\x00\x00\x00\x00\x00\x00' -tRp703 -sVrelease -p704 -g24 -(g26 -S'\x13\x1c\x00\x00\x00\x00\x00\x00' -tRp705 -sVrespond -p706 -g24 -(g26 -S'\x95\x1c\x00\x00\x00\x00\x00\x00' -tRp707 -sVmandatory -p708 -g24 -(g26 -S'v\x14\x00\x00\x00\x00\x00\x00' -tRp709 -sVdisaster -p710 -g24 -(g26 -S'\xe4\t\x00\x00\x00\x00\x00\x00' -tRp711 -sVfair -p712 -g24 -(g26 -S'\x98\x0c\x00\x00\x00\x00\x00\x00' -tRp713 -sVshopzilla -p714 -g24 -(g26 -S'\xc1\x1e\x00\x00\x00\x00\x00\x00' -tRp715 -sVsensitivity -p716 -g24 -(g26 -S'L\x1e\x00\x00\x00\x00\x00\x00' -tRp717 -sVpads -p718 -g24 -(g26 -S'\xff\x17\x00\x00\x00\x00\x00\x00' -tRp719 -sVradius -p720 -g24 -(g26 -S'=\x1b\x00\x00\x00\x00\x00\x00' -tRp721 -sVresult -p722 -g24 -(g26 -S'\xaa\x1c\x00\x00\x00\x00\x00\x00' -tRp723 -sVfail -p724 -g24 -(g26 -S'\x92\x0c\x00\x00\x00\x00\x00\x00' -tRp725 -sVhammer -p726 -g24 -(g26 -S'C\x0f\x00\x00\x00\x00\x00\x00' -tRp727 -sVbest -p728 -g24 -(g26 -S'`\x03\x00\x00\x00\x00\x00\x00' -tRp729 -sVlots -p730 -g24 -(g26 -S'\x05\x14\x00\x00\x00\x00\x00\x00' -tRp731 -sVirs -p732 -g24 -(g26 -S'\xc3\x11\x00\x00\x00\x00\x00\x00' -tRp733 -sVrings -p734 -g24 -(g26 -S'\xf6\x1c\x00\x00\x00\x00\x00\x00' -tRp735 -sVstamps -p736 -g24 -(g26 -S'\x04 \x00\x00\x00\x00\x00\x00' -tRp737 -sVscore -p738 -g24 -(g26 -S'\xe4\x1d\x00\x00\x00\x00\x00\x00' -tRp739 -sVmelissa -p740 -g24 -(g26 -S'\x0c\x15\x00\x00\x00\x00\x00\x00' -tRp741 -sVconceptual -p742 -g24 -(g26 -S' \x07\x00\x00\x00\x00\x00\x00' -tRp743 -sVira -p744 -g24 -(g26 -S'\xba\x11\x00\x00\x00\x00\x00\x00' -tRp745 -sVoccupational -p746 -g24 -(g26 -S'?\x17\x00\x00\x00\x00\x00\x00' -tRp747 -sVirc -p748 -g24 -(g26 -S'\xbe\x11\x00\x00\x00\x00\x00\x00' -tRp749 -sVglasgow -p750 -g24 -(g26 -S'\x94\x0e\x00\x00\x00\x00\x00\x00' -tRp751 -sVpreserve -p752 -g24 -(g26 -S'\x1b\x1a\x00\x00\x00\x00\x00\x00' -tRp753 -sVwage -p754 -g24 -(g26 -S'~$\x00\x00\x00\x00\x00\x00' -tRp755 -sVextend -p756 -g24 -(g26 -S'k\x0c\x00\x00\x00\x00\x00\x00' -tRp757 -sVnature -p758 -g24 -(g26 -S'j\x16\x00\x00\x00\x00\x00\x00' -tRp759 -sVrolled -p760 -g24 -(g26 -S'!\x1d\x00\x00\x00\x00\x00\x00' -tRp761 -sVextent -p762 -g24 -(g26 -S'r\x0c\x00\x00\x00\x00\x00\x00' -tRp763 -sVcarbon -p764 -g24 -(g26 -S'\x03\x05\x00\x00\x00\x00\x00\x00' -tRp765 -sVdebt -p766 -g24 -(g26 -S'\xe3\x08\x00\x00\x00\x00\x00\x00' -tRp767 -sVroller -p768 -g24 -(g26 -S'"\x1d\x00\x00\x00\x00\x00\x00' -tRp769 -sVwto -p770 -g24 -(g26 -S'}%\x00\x00\x00\x00\x00\x00' -tRp771 -sVaccident -p772 -g24 -(g26 -S'+\x00\x00\x00\x00\x00\x00\x00' -tRp773 -sVcountry -p774 -g24 -(g26 -S'\x17\x08\x00\x00\x00\x00\x00\x00' -tRp775 -sVadapter -p776 -g24 -(g26 -S'p\x00\x00\x00\x00\x00\x00\x00' -tRp777 -sVreaders -p778 -g24 -(g26 -S'}\x1b\x00\x00\x00\x00\x00\x00' -tRp779 -sVheating -p780 -g24 -(g26 -S'\xa2\x0f\x00\x00\x00\x00\x00\x00' -tRp781 -sVmacedonia -p782 -g24 -(g26 -S'2\x14\x00\x00\x00\x00\x00\x00' -tRp783 -sVestates -p784 -g24 -(g26 -S'\xd6\x0b\x00\x00\x00\x00\x00\x00' -tRp785 -sVplanned -p786 -g24 -(g26 -S'E\x19\x00\x00\x00\x00\x00\x00' -tRp787 -sVlogic -p788 -g24 -(g26 -S'\xe2\x13\x00\x00\x00\x00\x00\x00' -tRp789 -sVlogin -p790 -g24 -(g26 -S'\xe4\x13\x00\x00\x00\x00\x00\x00' -tRp791 -sVargue -p792 -g24 -(g26 -S'\xe6\x01\x00\x00\x00\x00\x00\x00' -tRp793 -sVadapted -p794 -g24 -(g26 -S'o\x00\x00\x00\x00\x00\x00\x00' -tRp795 -sVasked -p796 -g24 -(g26 -S'\x19\x02\x00\x00\x00\x00\x00\x00' -tRp797 -sValternate -p798 -g24 -(g26 -S'*\x01\x00\x00\x00\x00\x00\x00' -tRp799 -sVcanyon -p800 -g24 -(g26 -S'\xf4\x04\x00\x00\x00\x00\x00\x00' -tRp801 -sVpregnancy -p802 -g24 -(g26 -S'\x02\x1a\x00\x00\x00\x00\x00\x00' -tRp803 -sVdiff -p804 -g24 -(g26 -S'\xb7\t\x00\x00\x00\x00\x00\x00' -tRp805 -sVblonde -p806 -g24 -(g26 -S'\xbd\x03\x00\x00\x00\x00\x00\x00' -tRp807 -sVsignals -p808 -g24 -(g26 -S'\xe1\x1e\x00\x00\x00\x00\x00\x00' -tRp809 -sVangel -p810 -g24 -(g26 -S'a\x01\x00\x00\x00\x00\x00\x00' -tRp811 -sVbilling -p812 -g24 -(g26 -S'\x7f\x03\x00\x00\x00\x00\x00\x00' -tRp813 -sVunion -p814 -g24 -(g26 -S'o#\x00\x00\x00\x00\x00\x00' -tRp815 -sVfri -p816 -g24 -(g26 -S'\xe2\r\x00\x00\x00\x00\x00\x00' -tRp817 -sVadvert -p818 -g24 -(g26 -S'\xa8\x00\x00\x00\x00\x00\x00\x00' -tRp819 -sVextraction -p820 -g24 -(g26 -S'w\x0c\x00\x00\x00\x00\x00\x00' -tRp821 -sVellis -p822 -g24 -(g26 -S'3\x0b\x00\x00\x00\x00\x00\x00' -tRp823 -sVstadium -p824 -g24 -(g26 -S'\xfb\x1f\x00\x00\x00\x00\x00\x00' -tRp825 -sVtutorials -p826 -g24 -(g26 -S'7#\x00\x00\x00\x00\x00\x00' -tRp827 -sVpro -p828 -g24 -(g26 -S'O\x1a\x00\x00\x00\x00\x00\x00' -tRp829 -sVlife -p830 -g24 -(g26 -S'y\x13\x00\x00\x00\x00\x00\x00' -tRp831 -sVsydney -p832 -g24 -(g26 -S'3!\x00\x00\x00\x00\x00\x00' -tRp833 -sVeastern -p834 -g24 -(g26 -S'\xd6\n\x00\x00\x00\x00\x00\x00' -tRp835 -sVmilfs -p836 -g24 -(g26 -S'j\x15\x00\x00\x00\x00\x00\x00' -tRp837 -sVworker -p838 -g24 -(g26 -S'O%\x00\x00\x00\x00\x00\x00' -tRp839 -sVdave -p840 -g24 -(g26 -S'\xc5\x08\x00\x00\x00\x00\x00\x00' -tRp841 -sVsubstance -p842 -g24 -(g26 -S'\xb0 \x00\x00\x00\x00\x00\x00' -tRp843 -sVchile -p844 -g24 -(g26 -S'\xdf\x05\x00\x00\x00\x00\x00\x00' -tRp845 -sVchild -p846 -g24 -(g26 -S'\xdb\x05\x00\x00\x00\x00\x00\x00' -tRp847 -sVworked -p848 -g24 -(g26 -S'N%\x00\x00\x00\x00\x00\x00' -tRp849 -sVspin -p850 -g24 -(g26 -S'\xcd\x1f\x00\x00\x00\x00\x00\x00' -tRp851 -sVcum -p852 -g24 -(g26 -S't\x08\x00\x00\x00\x00\x00\x00' -tRp853 -sVcunt -p854 -g24 -(g26 -S'x\x08\x00\x00\x00\x00\x00\x00' -tRp855 -sVcommerce -p856 -g24 -(g26 -S'\xc5\x06\x00\x00\x00\x00\x00\x00' -tRp857 -sVadministrative -p858 -g24 -(g26 -S'\x8e\x00\x00\x00\x00\x00\x00\x00' -tRp859 -sVemploy -p860 -g24 -(g26 -S'J\x0b\x00\x00\x00\x00\x00\x00' -tRp861 -sVcalcium -p862 -g24 -(g26 -S'\xc0\x04\x00\x00\x00\x00\x00\x00' -tRp863 -sVviii -p864 -g24 -(g26 -S'4$\x00\x00\x00\x00\x00\x00' -tRp865 -sVskirts -p866 -g24 -(g26 -S'"\x1f\x00\x00\x00\x00\x00\x00' -tRp867 -sVeconomics -p868 -g24 -(g26 -S'\xe7\n\x00\x00\x00\x00\x00\x00' -tRp869 -sVplayed -p870 -g24 -(g26 -S'W\x19\x00\x00\x00\x00\x00\x00' -tRp871 -sVtoolkit -p872 -g24 -(g26 -S'n"\x00\x00\x00\x00\x00\x00' -tRp873 -sVplayer -p874 -g24 -(g26 -S'X\x19\x00\x00\x00\x00\x00\x00' -tRp875 -sVmadonna -p876 -g24 -(g26 -S'=\x14\x00\x00\x00\x00\x00\x00' -tRp877 -sVtrusted -p878 -g24 -(g26 -S'\x13#\x00\x00\x00\x00\x00\x00' -tRp879 -sVtrustee -p880 -g24 -(g26 -S'\x14#\x00\x00\x00\x00\x00\x00' -tRp881 -sVhong -p882 -g24 -(g26 -S'\x0c\x10\x00\x00\x00\x00\x00\x00' -tRp883 -sVfotos -p884 -g24 -(g26 -S'\xb5\r\x00\x00\x00\x00\x00\x00' -tRp885 -sVthings -p886 -g24 -(g26 -S'\xf9!\x00\x00\x00\x00\x00\x00' -tRp887 -sVdemands -p888 -g24 -(g26 -S',\t\x00\x00\x00\x00\x00\x00' -tRp889 -sVsplit -p890 -g24 -(g26 -S'\xd3\x1f\x00\x00\x00\x00\x00\x00' -tRp891 -sVbabies -p892 -g24 -(g26 -S'\xb2\x02\x00\x00\x00\x00\x00\x00' -tRp893 -sVelliott -p894 -g24 -(g26 -S'2\x0b\x00\x00\x00\x00\x00\x00' -tRp895 -sVelectro -p896 -g24 -(g26 -S'!\x0b\x00\x00\x00\x00\x00\x00' -tRp897 -sVbid -p898 -g24 -(g26 -S'u\x03\x00\x00\x00\x00\x00\x00' -tRp899 -sVeuropean -p900 -g24 -(g26 -S'\xe8\x0b\x00\x00\x00\x00\x00\x00' -tRp901 -sVtemplates -p902 -g24 -(g26 -S'\xac!\x00\x00\x00\x00\x00\x00' -tRp903 -sVfairly -p904 -g24 -(g26 -S'\x9a\x0c\x00\x00\x00\x00\x00\x00' -tRp905 -sVpontiac -p906 -g24 -(g26 -S'\x97\x19\x00\x00\x00\x00\x00\x00' -tRp907 -sVtops -p908 -g24 -(g26 -S't"\x00\x00\x00\x00\x00\x00' -tRp909 -sVworkforce -p910 -g24 -(g26 -S'R%\x00\x00\x00\x00\x00\x00' -tRp911 -sVslovenia -p912 -g24 -(g26 -S'8\x1f\x00\x00\x00\x00\x00\x00' -tRp913 -sVownership -p914 -g24 -(g26 -S'\xe9\x17\x00\x00\x00\x00\x00\x00' -tRp915 -sVlycos -p916 -g24 -(g26 -S'+\x14\x00\x00\x00\x00\x00\x00' -tRp917 -sVtune -p918 -g24 -(g26 -S"'#\x00\x00\x00\x00\x00\x00" -tRp919 -sVlucas -p920 -g24 -(g26 -S'\x1e\x14\x00\x00\x00\x00\x00\x00' -tRp921 -sVblowjob -p922 -g24 -(g26 -S'\xc4\x03\x00\x00\x00\x00\x00\x00' -tRp923 -sVacademic -p924 -g24 -(g26 -S'\x19\x00\x00\x00\x00\x00\x00\x00' -tRp925 -sVgzip -p926 -g24 -(g26 -S'2\x0f\x00\x00\x00\x00\x00\x00' -tRp927 -sVquantitative -p928 -g24 -(g26 -S'\x0f\x1b\x00\x00\x00\x00\x00\x00' -tRp929 -sVcorporate -p930 -g24 -(g26 -S'\xf3\x07\x00\x00\x00\x00\x00\x00' -tRp931 -sVopinions -p932 -g24 -(g26 -S'\x91\x17\x00\x00\x00\x00\x00\x00' -tRp933 -sVcapitol -p934 -g24 -(g26 -S'\xfc\x04\x00\x00\x00\x00\x00\x00' -tRp935 -sVsleeps -p936 -g24 -(g26 -S'*\x1f\x00\x00\x00\x00\x00\x00' -tRp937 -sVdistribute -p938 -g24 -(g26 -S'\x19\n\x00\x00\x00\x00\x00\x00' -tRp939 -sVbirmingham -p940 -g24 -(g26 -S'\x93\x03\x00\x00\x00\x00\x00\x00' -tRp941 -sVprevious -p942 -g24 -(g26 -S'*\x1a\x00\x00\x00\x00\x00\x00' -tRp943 -sVcollectibles -p944 -g24 -(g26 -S'\x94\x06\x00\x00\x00\x00\x00\x00' -tRp945 -sVenters -p946 -g24 -(g26 -S'\x94\x0b\x00\x00\x00\x00\x00\x00' -tRp947 -sVham -p948 -g24 -(g26 -S'@\x0f\x00\x00\x00\x00\x00\x00' -tRp949 -sVphillips -p950 -g24 -(g26 -S'\xf1\x18\x00\x00\x00\x00\x00\x00' -tRp951 -sVease -p952 -g24 -(g26 -S'\xd1\n\x00\x00\x00\x00\x00\x00' -tRp953 -sVadvancement -p954 -g24 -(g26 -S'\xa1\x00\x00\x00\x00\x00\x00\x00' -tRp955 -sVhay -p956 -g24 -(g26 -S'\x7f\x0f\x00\x00\x00\x00\x00\x00' -tRp957 -sVcollections -p958 -g24 -(g26 -S'\x97\x06\x00\x00\x00\x00\x00\x00' -tRp959 -sVeasy -p960 -g24 -(g26 -S'\xd7\n\x00\x00\x00\x00\x00\x00' -tRp961 -sVprison -p962 -g24 -(g26 -S'E\x1a\x00\x00\x00\x00\x00\x00' -tRp963 -sVeast -p964 -g24 -(g26 -S'\xd4\n\x00\x00\x00\x00\x00\x00' -tRp965 -sVhat -p966 -g24 -(g26 -S'w\x0f\x00\x00\x00\x00\x00\x00' -tRp967 -sVelevation -p968 -g24 -(g26 -S'*\x0b\x00\x00\x00\x00\x00\x00' -tRp969 -sVmunicipal -p970 -g24 -(g26 -S'-\x16\x00\x00\x00\x00\x00\x00' -tRp971 -sVsurvival -p972 -g24 -(g26 -S'\x11!\x00\x00\x00\x00\x00\x00' -tRp973 -sVpossible -p974 -g24 -(g26 -S'\xc0\x19\x00\x00\x00\x00\x00\x00' -tRp975 -sVtwinks -p976 -g24 -(g26 -S'=#\x00\x00\x00\x00\x00\x00' -tRp977 -sVpossibly -p978 -g24 -(g26 -S'\xc1\x19\x00\x00\x00\x00\x00\x00' -tRp979 -sVbirth -p980 -g24 -(g26 -S'\x94\x03\x00\x00\x00\x00\x00\x00' -tRp981 -sVshadow -p982 -g24 -(g26 -S'\x85\x1e\x00\x00\x00\x00\x00\x00' -tRp983 -sVunique -p984 -g24 -(g26 -S'r#\x00\x00\x00\x00\x00\x00' -tRp985 -sVoccurring -p986 -g24 -(g26 -S'E\x17\x00\x00\x00\x00\x00\x00' -tRp987 -sVdesire -p988 -g24 -(g26 -S'i\t\x00\x00\x00\x00\x00\x00' -tRp989 -sVpsychological -p990 -g24 -(g26 -S'\xce\x1a\x00\x00\x00\x00\x00\x00' -tRp991 -sVbobby -p992 -g24 -(g26 -S'\xd3\x03\x00\x00\x00\x00\x00\x00' -tRp993 -sValice -p994 -g24 -(g26 -S'\x0e\x01\x00\x00\x00\x00\x00\x00' -tRp995 -sVremind -p996 -g24 -(g26 -S'/\x1c\x00\x00\x00\x00\x00\x00' -tRp997 -sVbaskets -p998 -g24 -(g26 -S'\x01\x03\x00\x00\x00\x00\x00\x00' -tRp999 -sVsteps -p1000 -g24 -(g26 -S': \x00\x00\x00\x00\x00\x00' -tRp1001 -sVgroundwater -p1002 -g24 -(g26 -S'\x05\x0f\x00\x00\x00\x00\x00\x00' -tRp1003 -sVbattlefield -p1004 -g24 -(g26 -S'\r\x03\x00\x00\x00\x00\x00\x00' -tRp1005 -sVattorney -p1006 -g24 -(g26 -S'h\x02\x00\x00\x00\x00\x00\x00' -tRp1007 -sVright -p1008 -g24 -(g26 -S'\xf2\x1c\x00\x00\x00\x00\x00\x00' -tRp1009 -sVold -p1010 -g24 -(g26 -S'j\x17\x00\x00\x00\x00\x00\x00' -tRp1011 -sVcreek -p1012 -g24 -(g26 -S'J\x08\x00\x00\x00\x00\x00\x00' -tRp1013 -sVcrowd -p1014 -g24 -(g26 -S'^\x08\x00\x00\x00\x00\x00\x00' -tRp1015 -sVpeople -p1016 -g24 -(g26 -S'\xa4\x18\x00\x00\x00\x00\x00\x00' -tRp1017 -sVczech -p1018 -g24 -(g26 -S'\x9b\x08\x00\x00\x00\x00\x00\x00' -tRp1019 -sVcrown -p1020 -g24 -(g26 -S'_\x08\x00\x00\x00\x00\x00\x00' -tRp1021 -sVconsultants -p1022 -g24 -(g26 -S'\x86\x07\x00\x00\x00\x00\x00\x00' -tRp1023 -sVsure -p1024 -g24 -(g26 -S'\xfa \x00\x00\x00\x00\x00\x00' -tRp1025 -sVharassment -p1026 -g24 -(g26 -S'_\x0f\x00\x00\x00\x00\x00\x00' -tRp1027 -sVenemies -p1028 -g24 -(g26 -S'k\x0b\x00\x00\x00\x00\x00\x00' -tRp1029 -sVconsensus -p1030 -g24 -(g26 -S']\x07\x00\x00\x00\x00\x00\x00' -tRp1031 -sVsociology -p1032 -g24 -(g26 -S'Y\x1f\x00\x00\x00\x00\x00\x00' -tRp1033 -sVres -p1034 -g24 -(g26 -S't\x1c\x00\x00\x00\x00\x00\x00' -tRp1035 -sVfox -p1036 -g24 -(g26 -S'\xbe\r\x00\x00\x00\x00\x00\x00' -tRp1037 -sVcreative -p1038 -g24 -(g26 -S'C\x08\x00\x00\x00\x00\x00\x00' -tRp1039 -sVcontributing -p1040 -g24 -(g26 -S'\xb0\x07\x00\x00\x00\x00\x00\x00' -tRp1041 -sVindividuals -p1042 -g24 -(g26 -S'\xf5\x10\x00\x00\x00\x00\x00\x00' -tRp1043 -sVfoo -p1044 -g24 -(g26 -S'\x87\r\x00\x00\x00\x00\x00\x00' -tRp1045 -sVrep -p1046 -g24 -(g26 -S'C\x1c\x00\x00\x00\x00\x00\x00' -tRp1047 -sVdental -p1048 -g24 -(g26 -S'>\t\x00\x00\x00\x00\x00\x00' -tRp1049 -sVstarring -p1050 -g24 -(g26 -S'\x0f \x00\x00\x00\x00\x00\x00' -tRp1051 -sVstylish -p1052 -g24 -(g26 -S'\x95 \x00\x00\x00\x00\x00\x00' -tRp1053 -sVlosing -p1054 -g24 -(g26 -S'\x00\x14\x00\x00\x00\x00\x00\x00' -tRp1055 -sVmanufacturing -p1056 -g24 -(g26 -S'\x83\x14\x00\x00\x00\x00\x00\x00' -tRp1057 -sVvalium -p1058 -g24 -(g26 -S'\xcd#\x00\x00\x00\x00\x00\x00' -tRp1059 -sVdollars -p1060 -g24 -(g26 -S'J\n\x00\x00\x00\x00\x00\x00' -tRp1061 -sVcitizens -p1062 -g24 -(g26 -S'\x1c\x06\x00\x00\x00\x00\x00\x00' -tRp1063 -sVslightly -p1064 -g24 -(g26 -S'0\x1f\x00\x00\x00\x00\x00\x00' -tRp1065 -sVsoa -p1066 -g24 -(g26 -S'R\x1f\x00\x00\x00\x00\x00\x00' -tRp1067 -sVconsulting -p1068 -g24 -(g26 -S'\x88\x07\x00\x00\x00\x00\x00\x00' -tRp1069 -sVstatements -p1070 -g24 -(g26 -S'\x1c \x00\x00\x00\x00\x00\x00' -tRp1071 -sVfacility -p1072 -g24 -(g26 -S'\x8a\x0c\x00\x00\x00\x00\x00\x00' -tRp1073 -sVmarshall -p1074 -g24 -(g26 -S'\xab\x14\x00\x00\x00\x00\x00\x00' -tRp1075 -sVmba -p1076 -g24 -(g26 -S'\xdd\x14\x00\x00\x00\x00\x00\x00' -tRp1077 -sVson -p1078 -g24 -(g26 -S'w\x1f\x00\x00\x00\x00\x00\x00' -tRp1079 -sVbeings -p1080 -g24 -(g26 -S'=\x03\x00\x00\x00\x00\x00\x00' -tRp1081 -sVmagazines -p1082 -g24 -(g26 -S'B\x14\x00\x00\x00\x00\x00\x00' -tRp1083 -sVraises -p1084 -g24 -(g26 -S'G\x1b\x00\x00\x00\x00\x00\x00' -tRp1085 -sVmambo -p1086 -g24 -(g26 -S'l\x14\x00\x00\x00\x00\x00\x00' -tRp1087 -sVwrap -p1088 -g24 -(g26 -S'l%\x00\x00\x00\x00\x00\x00' -tRp1089 -sVsox -p1090 -g24 -(g26 -S'\x93\x1f\x00\x00\x00\x00\x00\x00' -tRp1091 -sVreducing -p1092 -g24 -(g26 -S'\xc8\x1b\x00\x00\x00\x00\x00\x00' -tRp1093 -sVfabric -p1094 -g24 -(g26 -S'\x81\x0c\x00\x00\x00\x00\x00\x00' -tRp1095 -sVsupport -p1096 -g24 -(g26 -S'\xf1 \x00\x00\x00\x00\x00\x00' -tRp1097 -sVconstantly -p1098 -g24 -(g26 -S'y\x07\x00\x00\x00\x00\x00\x00' -tRp1099 -sVnova -p1100 -g24 -(g26 -S'\xfa\x16\x00\x00\x00\x00\x00\x00' -tRp1101 -sVwidth -p1102 -g24 -(g26 -S'\t%\x00\x00\x00\x00\x00\x00' -tRp1103 -sVjoseph -p1104 -g24 -(g26 -S'5\x12\x00\x00\x00\x00\x00\x00' -tRp1105 -sVwordpress -p1106 -g24 -(g26 -S'K%\x00\x00\x00\x00\x00\x00' -tRp1107 -sVauthorized -p1108 -g24 -(g26 -S'\x89\x02\x00\x00\x00\x00\x00\x00' -tRp1109 -sVjane -p1110 -g24 -(g26 -S'\xf4\x11\x00\x00\x00\x00\x00\x00' -tRp1111 -sVleading -p1112 -g24 -(g26 -S'\x1d\x13\x00\x00\x00\x00\x00\x00' -tRp1113 -sVhappy -p1114 -g24 -(g26 -S'^\x0f\x00\x00\x00\x00\x00\x00' -tRp1115 -sVdns -p1116 -g24 -(g26 -S'5\n\x00\x00\x00\x00\x00\x00' -tRp1117 -sVoffer -p1118 -g24 -(g26 -S'R\x17\x00\x00\x00\x00\x00\x00' -tRp1119 -sVforming -p1120 -g24 -(g26 -S'\xa8\r\x00\x00\x00\x00\x00\x00' -tRp1121 -sVtigers -p1122 -g24 -(g26 -S'-"\x00\x00\x00\x00\x00\x00' -tRp1123 -sVpaypal -p1124 -g24 -(g26 -S'{\x18\x00\x00\x00\x00\x00\x00' -tRp1125 -sVthesaurus -p1126 -g24 -(g26 -S'\xf4!\x00\x00\x00\x00\x00\x00' -tRp1127 -sVnotifications -p1128 -g24 -(g26 -S'\xf3\x16\x00\x00\x00\x00\x00\x00' -tRp1129 -sVverde -p1130 -g24 -(g26 -S'\x04$\x00\x00\x00\x00\x00\x00' -tRp1131 -sVsurvive -p1132 -g24 -(g26 -S'\x12!\x00\x00\x00\x00\x00\x00' -tRp1133 -sVcongratulations -p1134 -g24 -(g26 -S'L\x07\x00\x00\x00\x00\x00\x00' -tRp1135 -sVgenealogy -p1136 -g24 -(g26 -S'T\x0e\x00\x00\x00\x00\x00\x00' -tRp1137 -sVinside -p1138 -g24 -(g26 -S'5\x11\x00\x00\x00\x00\x00\x00' -tRp1139 -sVdevices -p1140 -g24 -(g26 -S'\x94\t\x00\x00\x00\x00\x00\x00' -tRp1141 -sVcomplications -p1142 -g24 -(g26 -S'\x05\x07\x00\x00\x00\x00\x00\x00' -tRp1143 -sVpalm -p1144 -g24 -(g26 -S'\x12\x18\x00\x00\x00\x00\x00\x00' -tRp1145 -sVpanels -p1146 -g24 -(g26 -S'\x1a\x18\x00\x00\x00\x00\x00\x00' -tRp1147 -sVexamples -p1148 -g24 -(g26 -S'\n\x0c\x00\x00\x00\x00\x00\x00' -tRp1149 -sVpassenger -p1150 -g24 -(g26 -S'U\x18\x00\x00\x00\x00\x00\x00' -tRp1151 -sVjuvenile -p1152 -g24 -(g26 -S'_\x12\x00\x00\x00\x00\x00\x00' -tRp1153 -sVadopt -p1154 -g24 -(g26 -S'\x97\x00\x00\x00\x00\x00\x00\x00' -tRp1155 -sVliberal -p1156 -g24 -(g26 -S'h\x13\x00\x00\x00\x00\x00\x00' -tRp1157 -sVimplications -p1158 -g24 -(g26 -S'\xaa\x10\x00\x00\x00\x00\x00\x00' -tRp1159 -sVtournament -p1160 -g24 -(g26 -S'\x82"\x00\x00\x00\x00\x00\x00' -tRp1161 -sVproven -p1162 -g24 -(g26 -S'\xba\x1a\x00\x00\x00\x00\x00\x00' -tRp1163 -sVsomebody -p1164 -g24 -(g26 -S't\x1f\x00\x00\x00\x00\x00\x00' -tRp1165 -sVexist -p1166 -g24 -(g26 -S'1\x0c\x00\x00\x00\x00\x00\x00' -tRp1167 -sVaccounting -p1168 -g24 -(g26 -S'9\x00\x00\x00\x00\x00\x00\x00' -tRp1169 -sVmrs -p1170 -g24 -(g26 -S'\x1c\x16\x00\x00\x00\x00\x00\x00' -tRp1171 -sVericsson -p1172 -g24 -(g26 -S'\xbc\x0b\x00\x00\x00\x00\x00\x00' -tRp1173 -sVdealer -p1174 -g24 -(g26 -S'\xd6\x08\x00\x00\x00\x00\x00\x00' -tRp1175 -sVnegotiations -p1176 -g24 -(g26 -S'\x8a\x16\x00\x00\x00\x00\x00\x00' -tRp1177 -sVposting -p1178 -g24 -(g26 -S'\xca\x19\x00\x00\x00\x00\x00\x00' -tRp1179 -sVrelay -p1180 -g24 -(g26 -S'\x12\x1c\x00\x00\x00\x00\x00\x00' -tRp1181 -sVfloor -p1182 -g24 -(g26 -S'\\\r\x00\x00\x00\x00\x00\x00' -tRp1183 -sVrelax -p1184 -g24 -(g26 -S'\x10\x1c\x00\x00\x00\x00\x00\x00' -tRp1185 -sVactor -p1186 -g24 -(g26 -S'c\x00\x00\x00\x00\x00\x00\x00' -tRp1187 -sVrally -p1188 -g24 -(g26 -S'J\x1b\x00\x00\x00\x00\x00\x00' -tRp1189 -sVflood -p1190 -g24 -(g26 -S'[\r\x00\x00\x00\x00\x00\x00' -tRp1191 -sVrepublic -p1192 -g24 -(g26 -S'f\x1c\x00\x00\x00\x00\x00\x00' -tRp1193 -sVsunset -p1194 -g24 -(g26 -S'\xe0 \x00\x00\x00\x00\x00\x00' -tRp1195 -sVdevelopers -p1196 -g24 -(g26 -S'\x8b\t\x00\x00\x00\x00\x00\x00' -tRp1197 -sVsmell -p1198 -g24 -(g26 -S'B\x1f\x00\x00\x00\x00\x00\x00' -tRp1199 -sVroll -p1200 -g24 -(g26 -S' \x1d\x00\x00\x00\x00\x00\x00' -tRp1201 -sVworldsex -p1202 -g24 -(g26 -S']%\x00\x00\x00\x00\x00\x00' -tRp1203 -sVreggae -p1204 -g24 -(g26 -S'\xef\x1b\x00\x00\x00\x00\x00\x00' -tRp1205 -sVintend -p1206 -g24 -(g26 -S'g\x11\x00\x00\x00\x00\x00\x00' -tRp1207 -sVmodels -p1208 -g24 -(g26 -S'\xb6\x15\x00\x00\x00\x00\x00\x00' -tRp1209 -sVmuslims -p1210 -g24 -(g26 -S';\x16\x00\x00\x00\x00\x00\x00' -tRp1211 -sVintent -p1212 -g24 -(g26 -S'l\x11\x00\x00\x00\x00\x00\x00' -tRp1213 -sVvariable -p1214 -g24 -(g26 -S'\xdb#\x00\x00\x00\x00\x00\x00' -tRp1215 -sVpackets -p1216 -g24 -(g26 -S'\xfb\x17\x00\x00\x00\x00\x00\x00' -tRp1217 -sVottawa -p1218 -g24 -(g26 -S'\xca\x17\x00\x00\x00\x00\x00\x00' -tRp1219 -sVtime -p1220 -g24 -(g26 -S'5"\x00\x00\x00\x00\x00\x00' -tRp1221 -sVpush -p1222 -g24 -(g26 -S'\xf8\x1a\x00\x00\x00\x00\x00\x00' -tRp1223 -sVbanners -p1224 -g24 -(g26 -S'\xe1\x02\x00\x00\x00\x00\x00\x00' -tRp1225 -sVquantity -p1226 -g24 -(g26 -S'\x11\x1b\x00\x00\x00\x00\x00\x00' -tRp1227 -sVslope -p1228 -g24 -(g26 -S'3\x1f\x00\x00\x00\x00\x00\x00' -tRp1229 -sVirrigation -p1230 -g24 -(g26 -S'\xc2\x11\x00\x00\x00\x00\x00\x00' -tRp1231 -sVmeasurements -p1232 -g24 -(g26 -S'\xeb\x14\x00\x00\x00\x00\x00\x00' -tRp1233 -sVcincinnati -p1234 -g24 -(g26 -S'\x07\x06\x00\x00\x00\x00\x00\x00' -tRp1235 -sVchain -p1236 -g24 -(g26 -S'\x7f\x05\x00\x00\x00\x00\x00\x00' -tRp1237 -sVactivated -p1238 -g24 -(g26 -S'\\\x00\x00\x00\x00\x00\x00\x00' -tRp1239 -sVtheaters -p1240 -g24 -(g26 -S'\xe3!\x00\x00\x00\x00\x00\x00' -tRp1241 -sVtampa -p1242 -g24 -(g26 -S'd!\x00\x00\x00\x00\x00\x00' -tRp1243 -sVskiing -p1244 -g24 -(g26 -S'\x1a\x1f\x00\x00\x00\x00\x00\x00' -tRp1245 -sVchair -p1246 -g24 -(g26 -S'\x81\x05\x00\x00\x00\x00\x00\x00' -tRp1247 -sVvenice -p1248 -g24 -(g26 -S'\xfd#\x00\x00\x00\x00\x00\x00' -tRp1249 -sVver -p1250 -g24 -(g26 -S'\x02$\x00\x00\x00\x00\x00\x00' -tRp1251 -sVfreelance -p1252 -g24 -(g26 -S'\xd7\r\x00\x00\x00\x00\x00\x00' -tRp1253 -sVburlington -p1254 -g24 -(g26 -S'\x91\x04\x00\x00\x00\x00\x00\x00' -tRp1255 -sVemirates -p1256 -g24 -(g26 -S'@\x0b\x00\x00\x00\x00\x00\x00' -tRp1257 -sVveterans -p1258 -g24 -(g26 -S'\x15$\x00\x00\x00\x00\x00\x00' -tRp1259 -sVrecipient -p1260 -g24 -(g26 -S'\xa8\x1b\x00\x00\x00\x00\x00\x00' -tRp1261 -sVdownloading -p1262 -g24 -(g26 -S'm\n\x00\x00\x00\x00\x00\x00' -tRp1263 -sVprepaid -p1264 -g24 -(g26 -S'\n\x1a\x00\x00\x00\x00\x00\x00' -tRp1265 -sVpursuant -p1266 -g24 -(g26 -S'\xf5\x1a\x00\x00\x00\x00\x00\x00' -tRp1267 -sVrefinance -p1268 -g24 -(g26 -S'\xd8\x1b\x00\x00\x00\x00\x00\x00' -tRp1269 -sVconsolidation -p1270 -g24 -(g26 -S't\x07\x00\x00\x00\x00\x00\x00' -tRp1271 -sVolympus -p1272 -g24 -(g26 -S'q\x17\x00\x00\x00\x00\x00\x00' -tRp1273 -sVchoice -p1274 -g24 -(g26 -S'\xe6\x05\x00\x00\x00\x00\x00\x00' -tRp1275 -sVstays -p1276 -g24 -(g26 -S'. \x00\x00\x00\x00\x00\x00' -tRp1277 -sVexact -p1278 -g24 -(g26 -S'\x00\x0c\x00\x00\x00\x00\x00\x00' -tRp1279 -sVminute -p1280 -g24 -(g26 -S'\x8d\x15\x00\x00\x00\x00\x00\x00' -tRp1281 -sVtear -p1282 -g24 -(g26 -S'\x89!\x00\x00\x00\x00\x00\x00' -tRp1283 -sVleave -p1284 -g24 -(g26 -S')\x13\x00\x00\x00\x00\x00\x00' -tRp1285 -sVsolved -p1286 -g24 -(g26 -S'p\x1f\x00\x00\x00\x00\x00\x00' -tRp1287 -sVsettle -p1288 -g24 -(g26 -S'q\x1e\x00\x00\x00\x00\x00\x00' -tRp1289 -sVteam -p1290 -g24 -(g26 -S'\x87!\x00\x00\x00\x00\x00\x00' -tRp1291 -sVloads -p1292 -g24 -(g26 -S'\xcb\x13\x00\x00\x00\x00\x00\x00' -tRp1293 -sVprevent -p1294 -g24 -(g26 -S'%\x1a\x00\x00\x00\x00\x00\x00' -tRp1295 -sVspiritual -p1296 -g24 -(g26 -S'\xd1\x1f\x00\x00\x00\x00\x00\x00' -tRp1297 -sVoccurrence -p1298 -g24 -(g26 -S'D\x17\x00\x00\x00\x00\x00\x00' -tRp1299 -sVfindings -p1300 -g24 -(g26 -S'\x1e\r\x00\x00\x00\x00\x00\x00' -tRp1301 -sVtrails -p1302 -g24 -(g26 -S'\xa9"\x00\x00\x00\x00\x00\x00' -tRp1303 -sVprediction -p1304 -g24 -(g26 -S'\xfa\x19\x00\x00\x00\x00\x00\x00' -tRp1305 -sVsign -p1306 -g24 -(g26 -S'\xdf\x1e\x00\x00\x00\x00\x00\x00' -tRp1307 -sVerotic -p1308 -g24 -(g26 -S'\xbe\x0b\x00\x00\x00\x00\x00\x00' -tRp1309 -sVshirts -p1310 -g24 -(g26 -S'\xb5\x1e\x00\x00\x00\x00\x00\x00' -tRp1311 -sVheadset -p1312 -g24 -(g26 -S'\x92\x0f\x00\x00\x00\x00\x00\x00' -tRp1313 -sVcurrent -p1314 -g24 -(g26 -S'\x7f\x08\x00\x00\x00\x00\x00\x00' -tRp1315 -sVfalling -p1316 -g24 -(g26 -S'\xa0\x0c\x00\x00\x00\x00\x00\x00' -tRp1317 -sVgeography -p1318 -g24 -(g26 -S'q\x0e\x00\x00\x00\x00\x00\x00' -tRp1319 -sVboost -p1320 -g24 -(g26 -S'\xee\x03\x00\x00\x00\x00\x00\x00' -tRp1321 -sVjury -p1322 -g24 -(g26 -S'Z\x12\x00\x00\x00\x00\x00\x00' -tRp1323 -sVfuneral -p1324 -g24 -(g26 -S'\x08\x0e\x00\x00\x00\x00\x00\x00' -tRp1325 -sVunderstanding -p1326 -g24 -(g26 -S'b#\x00\x00\x00\x00\x00\x00' -tRp1327 -sVegypt -p1328 -g24 -(g26 -S'\x12\x0b\x00\x00\x00\x00\x00\x00' -tRp1329 -sVyards -p1330 -g24 -(g26 -S'\x97%\x00\x00\x00\x00\x00\x00' -tRp1331 -sVaddress -p1332 -g24 -(g26 -S'|\x00\x00\x00\x00\x00\x00\x00' -tRp1333 -sVpassengers -p1334 -g24 -(g26 -S'V\x18\x00\x00\x00\x00\x00\x00' -tRp1335 -sVbrilliant -p1336 -g24 -(g26 -S'A\x04\x00\x00\x00\x00\x00\x00' -tRp1337 -sVstudied -p1338 -g24 -(g26 -S'\x89 \x00\x00\x00\x00\x00\x00' -tRp1339 -sVfunded -p1340 -g24 -(g26 -S'\x04\x0e\x00\x00\x00\x00\x00\x00' -tRp1341 -sVcommonly -p1342 -g24 -(g26 -S'\xd4\x06\x00\x00\x00\x00\x00\x00' -tRp1343 -sVqueue -p1344 -g24 -(g26 -S'!\x1b\x00\x00\x00\x00\x00\x00' -tRp1345 -sVaccomplished -p1346 -g24 -(g26 -S'3\x00\x00\x00\x00\x00\x00\x00' -tRp1347 -sVmyers -p1348 -g24 -(g26 -S'C\x16\x00\x00\x00\x00\x00\x00' -tRp1349 -sVstudies -p1350 -g24 -(g26 -S'\x8a \x00\x00\x00\x00\x00\x00' -tRp1351 -sVengineer -p1352 -g24 -(g26 -S'u\x0b\x00\x00\x00\x00\x00\x00' -tRp1353 -sVtasks -p1354 -g24 -(g26 -S'r!\x00\x00\x00\x00\x00\x00' -tRp1355 -sVlove -p1356 -g24 -(g26 -S'\x0f\x14\x00\x00\x00\x00\x00\x00' -tRp1357 -sVbr -p1358 -g24 -(g26 -S'\x12\x04\x00\x00\x00\x00\x00\x00' -tRp1359 -sVpentium -p1360 -g24 -(g26 -S'\xa3\x18\x00\x00\x00\x00\x00\x00' -tRp1361 -sVprefer -p1362 -g24 -(g26 -S'\xfc\x19\x00\x00\x00\x00\x00\x00' -tRp1363 -sVlogical -p1364 -g24 -(g26 -S'\xe3\x13\x00\x00\x00\x00\x00\x00' -tRp1365 -sVbloody -p1366 -g24 -(g26 -S'\xbf\x03\x00\x00\x00\x00\x00\x00' -tRp1367 -sVips -p1368 -g24 -(g26 -S'\xb8\x11\x00\x00\x00\x00\x00\x00' -tRp1369 -sVfake -p1370 -g24 -(g26 -S'\x9d\x0c\x00\x00\x00\x00\x00\x00' -tRp1371 -sVbookmarks -p1372 -g24 -(g26 -S'\xe8\x03\x00\x00\x00\x00\x00\x00' -tRp1373 -sVcarol -p1374 -g24 -(g26 -S'\x17\x05\x00\x00\x00\x00\x00\x00' -tRp1375 -sVsky -p1376 -g24 -(g26 -S'$\x1f\x00\x00\x00\x00\x00\x00' -tRp1377 -sVworking -p1378 -g24 -(g26 -S'S%\x00\x00\x00\x00\x00\x00' -tRp1379 -sVpositive -p1380 -g24 -(g26 -S'\xbb\x19\x00\x00\x00\x00\x00\x00' -tRp1381 -sVangry -p1382 -g24 -(g26 -S'h\x01\x00\x00\x00\x00\x00\x00' -tRp1383 -sVpredictions -p1384 -g24 -(g26 -S'\xfb\x19\x00\x00\x00\x00\x00\x00' -tRp1385 -sVfilme -p1386 -g24 -(g26 -S'\x0e\r\x00\x00\x00\x00\x00\x00' -tRp1387 -sVwood -p1388 -g24 -(g26 -S'E%\x00\x00\x00\x00\x00\x00' -tRp1389 -sVopposed -p1390 -g24 -(g26 -S'\x96\x17\x00\x00\x00\x00\x00\x00' -tRp1391 -sVwondering -p1392 -g24 -(g26 -S'D%\x00\x00\x00\x00\x00\x00' -tRp1393 -sVfilms -p1394 -g24 -(g26 -S'\x0f\r\x00\x00\x00\x00\x00\x00' -tRp1395 -sVscope -p1396 -g24 -(g26 -S'\xe3\x1d\x00\x00\x00\x00\x00\x00' -tRp1397 -sVtheoretical -p1398 -g24 -(g26 -S'\xec!\x00\x00\x00\x00\x00\x00' -tRp1399 -sVloving -p1400 -g24 -(g26 -S'\x15\x14\x00\x00\x00\x00\x00\x00' -tRp1401 -sVintroducing -p1402 -g24 -(g26 -S'\x93\x11\x00\x00\x00\x00\x00\x00' -tRp1403 -sVafford -p1404 -g24 -(g26 -S'\xc6\x00\x00\x00\x00\x00\x00\x00' -tRp1405 -sVsmtp -p1406 -g24 -(g26 -S'K\x1f\x00\x00\x00\x00\x00\x00' -tRp1407 -sVapparent -p1408 -g24 -(g26 -S'\xa1\x01\x00\x00\x00\x00\x00\x00' -tRp1409 -sVoregon -p1410 -g24 -(g26 -S'\xae\x17\x00\x00\x00\x00\x00\x00' -tRp1411 -sVsierra -p1412 -g24 -(g26 -S'\xdb\x1e\x00\x00\x00\x00\x00\x00' -tRp1413 -sVvisual -p1414 -g24 -(g26 -S'V$\x00\x00\x00\x00\x00\x00' -tRp1415 -sVappendix -p1416 -g24 -(g26 -S'\xaa\x01\x00\x00\x00\x00\x00\x00' -tRp1417 -sVvirtue -p1418 -g24 -(g26 -S'H$\x00\x00\x00\x00\x00\x00' -tRp1419 -sVriders -p1420 -g24 -(g26 -S'\xee\x1c\x00\x00\x00\x00\x00\x00' -tRp1421 -sVbehalf -p1422 -g24 -(g26 -S'9\x03\x00\x00\x00\x00\x00\x00' -tRp1423 -sVlogos -p1424 -g24 -(g26 -S'\xe8\x13\x00\x00\x00\x00\x00\x00' -tRp1425 -sVvalued -p1426 -g24 -(g26 -S'\xd2#\x00\x00\x00\x00\x00\x00' -tRp1427 -sVtitanium -p1428 -g24 -(g26 -S'G"\x00\x00\x00\x00\x00\x00' -tRp1429 -sVoriginally -p1430 -g24 -(g26 -S'\xc3\x17\x00\x00\x00\x00\x00\x00' -tRp1431 -sVabortion -p1432 -g24 -(g26 -S'\x0b\x00\x00\x00\x00\x00\x00\x00' -tRp1433 -sVbelieves -p1434 -g24 -(g26 -S'E\x03\x00\x00\x00\x00\x00\x00' -tRp1435 -sVinterracial -p1436 -g24 -(g26 -S'\x83\x11\x00\x00\x00\x00\x00\x00' -tRp1437 -sVprinting -p1438 -g24 -(g26 -S'@\x1a\x00\x00\x00\x00\x00\x00' -tRp1439 -sVvalues -p1440 -g24 -(g26 -S'\xd3#\x00\x00\x00\x00\x00\x00' -tRp1441 -sVbelieved -p1442 -g24 -(g26 -S'D\x03\x00\x00\x00\x00\x00\x00' -tRp1443 -sVwebster -p1444 -g24 -(g26 -S'\xdb$\x00\x00\x00\x00\x00\x00' -tRp1445 -sVreviewing -p1446 -g24 -(g26 -S'\xcf\x1c\x00\x00\x00\x00\x00\x00' -tRp1447 -sVmirrors -p1448 -g24 -(g26 -S'\x91\x15\x00\x00\x00\x00\x00\x00' -tRp1449 -sVawesome -p1450 -g24 -(g26 -S'\xa9\x02\x00\x00\x00\x00\x00\x00' -tRp1451 -sVnascar -p1452 -g24 -(g26 -S'Z\x16\x00\x00\x00\x00\x00\x00' -tRp1453 -sVlocks -p1454 -g24 -(g26 -S'\xdb\x13\x00\x00\x00\x00\x00\x00' -tRp1455 -sVallowed -p1456 -g24 -(g26 -S'\x1f\x01\x00\x00\x00\x00\x00\x00' -tRp1457 -sVoffense -p1458 -g24 -(g26 -S'P\x17\x00\x00\x00\x00\x00\x00' -tRp1459 -sVfeof -p1460 -g24 -(g26 -S'\xec\x0c\x00\x00\x00\x00\x00\x00' -tRp1461 -sVmonitoring -p1462 -g24 -(g26 -S'\xd9\x15\x00\x00\x00\x00\x00\x00' -tRp1463 -sVwinter -p1464 -g24 -(g26 -S'&%\x00\x00\x00\x00\x00\x00' -tRp1465 -sVdivided -p1466 -g24 -(g26 -S"'\n\x00\x00\x00\x00\x00\x00" -tRp1467 -sVimmune -p1468 -g24 -(g26 -S'\xa0\x10\x00\x00\x00\x00\x00\x00' -tRp1469 -sVvancouver -p1470 -g24 -(g26 -S'\xd8#\x00\x00\x00\x00\x00\x00' -tRp1471 -sVelephant -p1472 -g24 -(g26 -S')\x0b\x00\x00\x00\x00\x00\x00' -tRp1473 -sVoptimal -p1474 -g24 -(g26 -S'\x9c\x17\x00\x00\x00\x00\x00\x00' -tRp1475 -sVcoleman -p1476 -g24 -(g26 -S'\x88\x06\x00\x00\x00\x00\x00\x00' -tRp1477 -sVparameter -p1478 -g24 -(g26 -S',\x18\x00\x00\x00\x00\x00\x00' -tRp1479 -sVedinburgh -p1480 -g24 -(g26 -S'\xf1\n\x00\x00\x00\x00\x00\x00' -tRp1481 -sVlaundry -p1482 -g24 -(g26 -S'\x04\x13\x00\x00\x00\x00\x00\x00' -tRp1483 -sVexplorer -p1484 -g24 -(g26 -S'^\x0c\x00\x00\x00\x00\x00\x00' -tRp1485 -sVspot -p1486 -g24 -(g26 -S'\xde\x1f\x00\x00\x00\x00\x00\x00' -tRp1487 -sVapplications -p1488 -g24 -(g26 -S'\xb2\x01\x00\x00\x00\x00\x00\x00' -tRp1489 -sVdate -p1490 -g24 -(g26 -S'\xbf\x08\x00\x00\x00\x00\x00\x00' -tRp1491 -sVsuck -p1492 -g24 -(g26 -S'\xbb \x00\x00\x00\x00\x00\x00' -tRp1493 -sVdata -p1494 -g24 -(g26 -S'\xbc\x08\x00\x00\x00\x00\x00\x00' -tRp1495 -sVstress -p1496 -g24 -(g26 -S'm \x00\x00\x00\x00\x00\x00' -tRp1497 -sVsurfing -p1498 -g24 -(g26 -S'\xff \x00\x00\x00\x00\x00\x00' -tRp1499 -sVnatural -p1500 -g24 -(g26 -S'g\x16\x00\x00\x00\x00\x00\x00' -tRp1501 -sVvarieties -p1502 -g24 -(g26 -S'\xe2#\x00\x00\x00\x00\x00\x00' -tRp1503 -sVsectors -p1504 -g24 -(g26 -S'\x1b\x1e\x00\x00\x00\x00\x00\x00' -tRp1505 -sVconscious -p1506 -g24 -(g26 -S'Z\x07\x00\x00\x00\x00\x00\x00' -tRp1507 -sVss -p1508 -g24 -(g26 -S'\xf5\x1f\x00\x00\x00\x00\x00\x00' -tRp1509 -sVsr -p1510 -g24 -(g26 -S'\xf2\x1f\x00\x00\x00\x00\x00\x00' -tRp1511 -sVsq -p1512 -g24 -(g26 -S'\xec\x1f\x00\x00\x00\x00\x00\x00' -tRp1513 -sVsp -p1514 -g24 -(g26 -S'\x94\x1f\x00\x00\x00\x00\x00\x00' -tRp1515 -sVsw -p1516 -g24 -(g26 -S'!!\x00\x00\x00\x00\x00\x00' -tRp1517 -sVsv -p1518 -g24 -(g26 -S' !\x00\x00\x00\x00\x00\x00' -tRp1519 -sVsu -p1520 -g24 -(g26 -S'\x97 \x00\x00\x00\x00\x00\x00' -tRp1521 -sVst -p1522 -g24 -(g26 -S'\xf7\x1f\x00\x00\x00\x00\x00\x00' -tRp1523 -sVsk -p1524 -g24 -(g26 -S'\x17\x1f\x00\x00\x00\x00\x00\x00' -tRp1525 -sVsi -p1526 -g24 -(g26 -S'\xd5\x1e\x00\x00\x00\x00\x00\x00' -tRp1527 -sVsh -p1528 -g24 -(g26 -S'\x82\x1e\x00\x00\x00\x00\x00\x00' -tRp1529 -sVtruck -p1530 -g24 -(g26 -S'\r#\x00\x00\x00\x00\x00\x00' -tRp1531 -sVsn -p1532 -g24 -(g26 -S'L\x1f\x00\x00\x00\x00\x00\x00' -tRp1533 -sVsm -p1534 -g24 -(g26 -S'=\x1f\x00\x00\x00\x00\x00\x00' -tRp1535 -sVsl -p1536 -g24 -(g26 -S'&\x1f\x00\x00\x00\x00\x00\x00' -tRp1537 -sVsc -p1538 -g24 -(g26 -S'\xc0\x1d\x00\x00\x00\x00\x00\x00' -tRp1539 -sVsb -p1540 -g24 -(g26 -S'\xbe\x1d\x00\x00\x00\x00\x00\x00' -tRp1541 -sVsa -p1542 -g24 -(g26 -S'q\x1d\x00\x00\x00\x00\x00\x00' -tRp1543 -sVpulled -p1544 -g24 -(g26 -S'\xe2\x1a\x00\x00\x00\x00\x00\x00' -tRp1545 -sVsf -p1546 -g24 -(g26 -S'\x80\x1e\x00\x00\x00\x00\x00\x00' -tRp1547 -sVse -p1548 -g24 -(g26 -S'\xfe\x1d\x00\x00\x00\x00\x00\x00' -tRp1549 -sVsd -p1550 -g24 -(g26 -S'\xfd\x1d\x00\x00\x00\x00\x00\x00' -tRp1551 -sVwebpage -p1552 -g24 -(g26 -S'\xd7$\x00\x00\x00\x00\x00\x00' -tRp1553 -sVyears -p1554 -g24 -(g26 -S'\x9e%\x00\x00\x00\x00\x00\x00' -tRp1555 -sVcourse -p1556 -g24 -(g26 -S'!\x08\x00\x00\x00\x00\x00\x00' -tRp1557 -sVepisodes -p1558 -g24 -(g26 -S'\xac\x0b\x00\x00\x00\x00\x00\x00' -tRp1559 -sVexperiments -p1560 -g24 -(g26 -S'N\x0c\x00\x00\x00\x00\x00\x00' -tRp1561 -sVthumb -p1562 -g24 -(g26 -S'\x1b"\x00\x00\x00\x00\x00\x00' -tRp1563 -sVinternationally -p1564 -g24 -(g26 -S'~\x11\x00\x00\x00\x00\x00\x00' -tRp1565 -sVjim -p1566 -g24 -(g26 -S'\x1a\x12\x00\x00\x00\x00\x00\x00' -tRp1567 -sVmethodology -p1568 -g24 -(g26 -S'?\x15\x00\x00\x00\x00\x00\x00' -tRp1569 -sVattraction -p1570 -g24 -(g26 -S'k\x02\x00\x00\x00\x00\x00\x00' -tRp1571 -sVplayback -p1572 -g24 -(g26 -S'U\x19\x00\x00\x00\x00\x00\x00' -tRp1573 -sVconstitutes -p1574 -g24 -(g26 -S'{\x07\x00\x00\x00\x00\x00\x00' -tRp1575 -sVhometown -p1576 -g24 -(g26 -S'\x05\x10\x00\x00\x00\x00\x00\x00' -tRp1577 -sVsuspension -p1578 -g24 -(g26 -S'\x1a!\x00\x00\x00\x00\x00\x00' -tRp1579 -sVdecades -p1580 -g24 -(g26 -S'\xe8\x08\x00\x00\x00\x00\x00\x00' -tRp1581 -sVpetition -p1582 -g24 -(g26 -S'\xd9\x18\x00\x00\x00\x00\x00\x00' -tRp1583 -sVinstantly -p1584 -g24 -(g26 -S'F\x11\x00\x00\x00\x00\x00\x00' -tRp1585 -sVrecipients -p1586 -g24 -(g26 -S'\xa9\x1b\x00\x00\x00\x00\x00\x00' -tRp1587 -sVcivilian -p1588 -g24 -(g26 -S'"\x06\x00\x00\x00\x00\x00\x00' -tRp1589 -sVmatches -p1590 -g24 -(g26 -S'\xc2\x14\x00\x00\x00\x00\x00\x00' -tRp1591 -sVnation -p1592 -g24 -(g26 -S'`\x16\x00\x00\x00\x00\x00\x00' -tRp1593 -sVrecords -p1594 -g24 -(g26 -S'\xb9\x1b\x00\x00\x00\x00\x00\x00' -tRp1595 -sVdrilling -p1596 -g24 -(g26 -S'\x8b\n\x00\x00\x00\x00\x00\x00' -tRp1597 -sVsubscribers -p1598 -g24 -(g26 -S'\xa8 \x00\x00\x00\x00\x00\x00' -tRp1599 -sVkijiji -p1600 -g24 -(g26 -S'\x8d\x12\x00\x00\x00\x00\x00\x00' -tRp1601 -sVsorted -p1602 -g24 -(g26 -S'\x82\x1f\x00\x00\x00\x00\x00\x00' -tRp1603 -sVmaintaining -p1604 -g24 -(g26 -S'X\x14\x00\x00\x00\x00\x00\x00' -tRp1605 -sVmatched -p1606 -g24 -(g26 -S'\xc1\x14\x00\x00\x00\x00\x00\x00' -tRp1607 -sVfrank -p1608 -g24 -(g26 -S'\xcd\r\x00\x00\x00\x00\x00\x00' -tRp1609 -sVestablishing -p1610 -g24 -(g26 -S'\xd3\x0b\x00\x00\x00\x00\x00\x00' -tRp1611 -sVbowling -p1612 -g24 -(g26 -S'\n\x04\x00\x00\x00\x00\x00\x00' -tRp1613 -sVquarter -p1614 -g24 -(g26 -S'\x13\x1b\x00\x00\x00\x00\x00\x00' -tRp1615 -sVturtle -p1616 -g24 -(g26 -S'5#\x00\x00\x00\x00\x00\x00' -tRp1617 -sVsquare -p1618 -g24 -(g26 -S'\xef\x1f\x00\x00\x00\x00\x00\x00' -tRp1619 -sVhonduras -p1620 -g24 -(g26 -S'\t\x10\x00\x00\x00\x00\x00\x00' -tRp1621 -sVrevised -p1622 -g24 -(g26 -S'\xd1\x1c\x00\x00\x00\x00\x00\x00' -tRp1623 -sVsponsor -p1624 -g24 -(g26 -S'\xd7\x1f\x00\x00\x00\x00\x00\x00' -tRp1625 -sVentering -p1626 -g24 -(g26 -S'\x91\x0b\x00\x00\x00\x00\x00\x00' -tRp1627 -sVsexually -p1628 -g24 -(g26 -S'~\x1e\x00\x00\x00\x00\x00\x00' -tRp1629 -sVcanvas -p1630 -g24 -(g26 -S'\xf3\x04\x00\x00\x00\x00\x00\x00' -tRp1631 -sVcontainer -p1632 -g24 -(g26 -S'\x92\x07\x00\x00\x00\x00\x00\x00' -tRp1633 -sVworldcat -p1634 -g24 -(g26 -S'[%\x00\x00\x00\x00\x00\x00' -tRp1635 -sVseriously -p1636 -g24 -(g26 -S'a\x1e\x00\x00\x00\x00\x00\x00' -tRp1637 -sVinvestigation -p1638 -g24 -(g26 -S'\x9d\x11\x00\x00\x00\x00\x00\x00' -tRp1639 -sVtrauma -p1640 -g24 -(g26 -S'\xd1"\x00\x00\x00\x00\x00\x00' -tRp1641 -sVinternet -p1642 -g24 -(g26 -S'\x7f\x11\x00\x00\x00\x00\x00\x00' -tRp1643 -sVsuggesting -p1644 -g24 -(g26 -S'\xca \x00\x00\x00\x00\x00\x00' -tRp1645 -sVformula -p1646 -g24 -(g26 -S'\xaa\r\x00\x00\x00\x00\x00\x00' -tRp1647 -sVbankruptcy -p1648 -g24 -(g26 -S'\xdd\x02\x00\x00\x00\x00\x00\x00' -tRp1649 -sVsheffield -p1650 -g24 -(g26 -S'\xa2\x1e\x00\x00\x00\x00\x00\x00' -tRp1651 -sVmillion -p1652 -g24 -(g26 -S'o\x15\x00\x00\x00\x00\x00\x00' -tRp1653 -sVincentives -p1654 -g24 -(g26 -S'\xc1\x10\x00\x00\x00\x00\x00\x00' -tRp1655 -sVpossibility -p1656 -g24 -(g26 -S'\xbf\x19\x00\x00\x00\x00\x00\x00' -tRp1657 -sVquite -p1658 -g24 -(g26 -S'(\x1b\x00\x00\x00\x00\x00\x00' -tRp1659 -sVrecordings -p1660 -g24 -(g26 -S'\xb8\x1b\x00\x00\x00\x00\x00\x00' -tRp1661 -sVcomplicated -p1662 -g24 -(g26 -S'\x04\x07\x00\x00\x00\x00\x00\x00' -tRp1663 -sVpoems -p1664 -g24 -(g26 -S'x\x19\x00\x00\x00\x00\x00\x00' -tRp1665 -sVbyte -p1666 -g24 -(g26 -S'\xae\x04\x00\x00\x00\x00\x00\x00' -tRp1667 -sVremainder -p1668 -g24 -(g26 -S'$\x1c\x00\x00\x00\x00\x00\x00' -tRp1669 -sVtraining -p1670 -g24 -(g26 -S'\xae"\x00\x00\x00\x00\x00\x00' -tRp1671 -sVpunk -p1672 -g24 -(g26 -S'\xe9\x1a\x00\x00\x00\x00\x00\x00' -tRp1673 -sVchevy -p1674 -g24 -(g26 -S'\xd4\x05\x00\x00\x00\x00\x00\x00' -tRp1675 -sVmassive -p1676 -g24 -(g26 -S'\xb9\x14\x00\x00\x00\x00\x00\x00' -tRp1677 -sVroutes -p1678 -g24 -(g26 -S'E\x1d\x00\x00\x00\x00\x00\x00' -tRp1679 -sVrouter -p1680 -g24 -(g26 -S'C\x1d\x00\x00\x00\x00\x00\x00' -tRp1681 -sVsaving -p1682 -g24 -(g26 -S'\xb8\x1d\x00\x00\x00\x00\x00\x00' -tRp1683 -sVignored -p1684 -g24 -(g26 -S'\x8a\x10\x00\x00\x00\x00\x00\x00' -tRp1685 -sVspoken -p1686 -g24 -(g26 -S'\xd5\x1f\x00\x00\x00\x00\x00\x00' -tRp1687 -sVclause -p1688 -g24 -(g26 -S'8\x06\x00\x00\x00\x00\x00\x00' -tRp1689 -sVpotter -p1690 -g24 -(g26 -S'\xd3\x19\x00\x00\x00\x00\x00\x00' -tRp1691 -sVnested -p1692 -g24 -(g26 -S'\x96\x16\x00\x00\x00\x00\x00\x00' -tRp1693 -sVsubmit -p1694 -g24 -(g26 -S'\xa3 \x00\x00\x00\x00\x00\x00' -tRp1695 -sVspanish -p1696 -g24 -(g26 -S'\x9b\x1f\x00\x00\x00\x00\x00\x00' -tRp1697 -sVvote -p1698 -g24 -(g26 -S'n$\x00\x00\x00\x00\x00\x00' -tRp1699 -sVons -p1700 -g24 -(g26 -S'{\x17\x00\x00\x00\x00\x00\x00' -tRp1701 -sVopen -p1702 -g24 -(g26 -S'\x81\x17\x00\x00\x00\x00\x00\x00' -tRp1703 -sVcity -p1704 -g24 -(g26 -S'\x1e\x06\x00\x00\x00\x00\x00\x00' -tRp1705 -sVboulevard -p1706 -g24 -(g26 -S'\x02\x04\x00\x00\x00\x00\x00\x00' -tRp1707 -sVbite -p1708 -g24 -(g26 -S'\x99\x03\x00\x00\x00\x00\x00\x00' -tRp1709 -sVstructured -p1710 -g24 -(g26 -S'\x81 \x00\x00\x00\x00\x00\x00' -tRp1711 -sVindicate -p1712 -g24 -(g26 -S'\xe8\x10\x00\x00\x00\x00\x00\x00' -tRp1713 -sVdraft -p1714 -g24 -(g26 -S'u\n\x00\x00\x00\x00\x00\x00' -tRp1715 -sVstuffed -p1716 -g24 -(g26 -S'\x90 \x00\x00\x00\x00\x00\x00' -tRp1717 -sVtyping -p1718 -g24 -(g26 -S'H#\x00\x00\x00\x00\x00\x00' -tRp1719 -sVshoppers -p1720 -g24 -(g26 -S'\xbe\x1e\x00\x00\x00\x00\x00\x00' -tRp1721 -sVhandbook -p1722 -g24 -(g26 -S'H\x0f\x00\x00\x00\x00\x00\x00' -tRp1723 -sVbits -p1724 -g24 -(g26 -S'\x9a\x03\x00\x00\x00\x00\x00\x00' -tRp1725 -sVcite -p1726 -g24 -(g26 -S'\x18\x06\x00\x00\x00\x00\x00\x00' -tRp1727 -sVwilliams -p1728 -g24 -(g26 -S'\x13%\x00\x00\x00\x00\x00\x00' -tRp1729 -sVfloppy -p1730 -g24 -(g26 -S'_\r\x00\x00\x00\x00\x00\x00' -tRp1731 -sVspecialists -p1732 -g24 -(g26 -S'\xab\x1f\x00\x00\x00\x00\x00\x00' -tRp1733 -sVrepresenting -p1734 -g24 -(g26 -S'^\x1c\x00\x00\x00\x00\x00\x00' -tRp1735 -sVtranslate -p1736 -g24 -(g26 -S'\xc2"\x00\x00\x00\x00\x00\x00' -tRp1737 -sVfavors -p1738 -g24 -(g26 -S'\xc6\x0c\x00\x00\x00\x00\x00\x00' -tRp1739 -sVrehab -p1740 -g24 -(g26 -S'\x00\x1c\x00\x00\x00\x00\x00\x00' -tRp1741 -sVfuture -p1742 -g24 -(g26 -S'\x12\x0e\x00\x00\x00\x00\x00\x00' -tRp1743 -sVrussia -p1744 -g24 -(g26 -S'i\x1d\x00\x00\x00\x00\x00\x00' -tRp1745 -sVprospect -p1746 -g24 -(g26 -S'\xa5\x1a\x00\x00\x00\x00\x00\x00' -tRp1747 -sVaddressing -p1748 -g24 -(g26 -S'\x7f\x00\x00\x00\x00\x00\x00\x00' -tRp1749 -sVillness -p1750 -g24 -(g26 -S'\x91\x10\x00\x00\x00\x00\x00\x00' -tRp1751 -sVsao -p1752 -g24 -(g26 -S'\xa0\x1d\x00\x00\x00\x00\x00\x00' -tRp1753 -sVsan -p1754 -g24 -(g26 -S'\x98\x1d\x00\x00\x00\x00\x00\x00' -tRp1755 -sVsam -p1756 -g24 -(g26 -S'\x90\x1d\x00\x00\x00\x00\x00\x00' -tRp1757 -sVturned -p1758 -g24 -(g26 -S'1#\x00\x00\x00\x00\x00\x00' -tRp1759 -sVargument -p1760 -g24 -(g26 -S'\xe8\x01\x00\x00\x00\x00\x00\x00' -tRp1761 -sVsad -p1762 -g24 -(g26 -S'u\x1d\x00\x00\x00\x00\x00\x00' -tRp1763 -sVsay -p1764 -g24 -(g26 -S'\xbb\x1d\x00\x00\x00\x00\x00\x00' -tRp1765 -sVpubmed -p1766 -g24 -(g26 -S'\xde\x1a\x00\x00\x00\x00\x00\x00' -tRp1767 -sVburied -p1768 -g24 -(g26 -S'\x8f\x04\x00\x00\x00\x00\x00\x00' -tRp1769 -sVsas -p1770 -g24 -(g26 -S'\xa5\x1d\x00\x00\x00\x00\x00\x00' -tRp1771 -sVallen -p1772 -g24 -(g26 -S'\x17\x01\x00\x00\x00\x00\x00\x00' -tRp1773 -sVturner -p1774 -g24 -(g26 -S'2#\x00\x00\x00\x00\x00\x00' -tRp1775 -sVsap -p1776 -g24 -(g26 -S'\xa1\x1d\x00\x00\x00\x00\x00\x00' -tRp1777 -sVsaw -p1778 -g24 -(g26 -S'\xba\x1d\x00\x00\x00\x00\x00\x00' -tRp1779 -sVsat -p1780 -g24 -(g26 -S'\xa7\x1d\x00\x00\x00\x00\x00\x00' -tRp1781 -sVinches -p1782 -g24 -(g26 -S'\xc4\x10\x00\x00\x00\x00\x00\x00' -tRp1783 -sVcigarettes -p1784 -g24 -(g26 -S'\x06\x06\x00\x00\x00\x00\x00\x00' -tRp1785 -sVwarriors -p1786 -g24 -(g26 -S'\xad$\x00\x00\x00\x00\x00\x00' -tRp1787 -sVaside -p1788 -g24 -(g26 -S'\x16\x02\x00\x00\x00\x00\x00\x00' -tRp1789 -sVzoo -p1790 -g24 -(g26 -S'\xc1%\x00\x00\x00\x00\x00\x00' -tRp1791 -sVnote -p1792 -g24 -(g26 -S'\xea\x16\x00\x00\x00\x00\x00\x00' -tRp1793 -sVjefferson -p1794 -g24 -(g26 -S'\x06\x12\x00\x00\x00\x00\x00\x00' -tRp1795 -sVdestroy -p1796 -g24 -(g26 -S's\t\x00\x00\x00\x00\x00\x00' -tRp1797 -sVbutterfly -p1798 -g24 -(g26 -S'\xa2\x04\x00\x00\x00\x00\x00\x00' -tRp1799 -sVprinter -p1800 -g24 -(g26 -S'>\x1a\x00\x00\x00\x00\x00\x00' -tRp1801 -sValtered -p1802 -g24 -(g26 -S')\x01\x00\x00\x00\x00\x00\x00' -tRp1803 -sVopposite -p1804 -g24 -(g26 -S'\x97\x17\x00\x00\x00\x00\x00\x00' -tRp1805 -sVbuffer -p1806 -g24 -(g26 -S'w\x04\x00\x00\x00\x00\x00\x00' -tRp1807 -sVknew -p1808 -g24 -(g26 -S'\xa7\x12\x00\x00\x00\x00\x00\x00' -tRp1809 -sVfails -p1810 -g24 -(g26 -S'\x95\x0c\x00\x00\x00\x00\x00\x00' -tRp1811 -sVprinted -p1812 -g24 -(g26 -S'=\x1a\x00\x00\x00\x00\x00\x00' -tRp1813 -sVremarks -p1814 -g24 -(g26 -S'*\x1c\x00\x00\x00\x00\x00\x00' -tRp1815 -sVknee -p1816 -g24 -(g26 -S'\xa6\x12\x00\x00\x00\x00\x00\x00' -tRp1817 -sVinserted -p1818 -g24 -(g26 -S'3\x11\x00\x00\x00\x00\x00\x00' -tRp1819 -sVpages -p1820 -g24 -(g26 -S'\x01\x18\x00\x00\x00\x00\x00\x00' -tRp1821 -sVlawn -p1822 -g24 -(g26 -S'\x08\x13\x00\x00\x00\x00\x00\x00' -tRp1823 -sVaverage -p1824 -g24 -(g26 -S'\x9b\x02\x00\x00\x00\x00\x00\x00' -tRp1825 -sVphil -p1826 -g24 -(g26 -S'\xec\x18\x00\x00\x00\x00\x00\x00' -tRp1827 -sVinfections -p1828 -g24 -(g26 -S'\x04\x11\x00\x00\x00\x00\x00\x00' -tRp1829 -sVdrive -p1830 -g24 -(g26 -S'\x8f\n\x00\x00\x00\x00\x00\x00' -tRp1831 -sVmanaging -p1832 -g24 -(g26 -S's\x14\x00\x00\x00\x00\x00\x00' -tRp1833 -sVlink -p1834 -g24 -(g26 -S'\x9b\x13\x00\x00\x00\x00\x00\x00' -tRp1835 -sVsalt -p1836 -g24 -(g26 -S'\x8d\x1d\x00\x00\x00\x00\x00\x00' -tRp1837 -sVlaws -p1838 -g24 -(g26 -S'\n\x13\x00\x00\x00\x00\x00\x00' -tRp1839 -sVwalking -p1840 -g24 -(g26 -S'\x8b$\x00\x00\x00\x00\x00\x00' -tRp1841 -sVsurplus -p1842 -g24 -(g26 -S'\x06!\x00\x00\x00\x00\x00\x00' -tRp1843 -sVsenators -p1844 -g24 -(g26 -S'B\x1e\x00\x00\x00\x00\x00\x00' -tRp1845 -sVlotus -p1846 -g24 -(g26 -S'\x07\x14\x00\x00\x00\x00\x00\x00' -tRp1847 -sVmerit -p1848 -g24 -(g26 -S'+\x15\x00\x00\x00\x00\x00\x00' -tRp1849 -sVoutsourcing -p1850 -g24 -(g26 -S'\xdb\x17\x00\x00\x00\x00\x00\x00' -tRp1851 -sVbright -p1852 -g24 -(g26 -S'?\x04\x00\x00\x00\x00\x00\x00' -tRp1853 -sVaggressive -p1854 -g24 -(g26 -S'\xd7\x00\x00\x00\x00\x00\x00\x00' -tRp1855 -sVxml -p1856 -g24 -(g26 -S'\x8b%\x00\x00\x00\x00\x00\x00' -tRp1857 -sVfibre -p1858 -g24 -(g26 -S'\xf8\x0c\x00\x00\x00\x00\x00\x00' -tRp1859 -sVslow -p1860 -g24 -(g26 -S'9\x1f\x00\x00\x00\x00\x00\x00' -tRp1861 -sVtears -p1862 -g24 -(g26 -S'\x8a!\x00\x00\x00\x00\x00\x00' -tRp1863 -sVgoing -p1864 -g24 -(g26 -S'\xac\x0e\x00\x00\x00\x00\x00\x00' -tRp1865 -sVhockey -p1866 -g24 -(g26 -S'\xed\x0f\x00\x00\x00\x00\x00\x00' -tRp1867 -sVequipped -p1868 -g24 -(g26 -S'\xb6\x0b\x00\x00\x00\x00\x00\x00' -tRp1869 -sVcaroline -p1870 -g24 -(g26 -S'\x19\x05\x00\x00\x00\x00\x00\x00' -tRp1871 -sVcongressional -p1872 -g24 -(g26 -S'N\x07\x00\x00\x00\x00\x00\x00' -tRp1873 -sVdispute -p1874 -g24 -(g26 -S'\x10\n\x00\x00\x00\x00\x00\x00' -tRp1875 -sVbeatles -p1876 -g24 -(g26 -S'#\x03\x00\x00\x00\x00\x00\x00' -tRp1877 -sVnovels -p1878 -g24 -(g26 -S'\xfc\x16\x00\x00\x00\x00\x00\x00' -tRp1879 -sVassistant -p1880 -g24 -(g26 -S'1\x02\x00\x00\x00\x00\x00\x00' -tRp1881 -sVoutlet -p1882 -g24 -(g26 -S'\xd2\x17\x00\x00\x00\x00\x00\x00' -tRp1883 -sVprime -p1884 -g24 -(g26 -S'4\x1a\x00\x00\x00\x00\x00\x00' -tRp1885 -sVresource -p1886 -g24 -(g26 -S'\x8e\x1c\x00\x00\x00\x00\x00\x00' -tRp1887 -sVsettings -p1888 -g24 -(g26 -S'p\x1e\x00\x00\x00\x00\x00\x00' -tRp1889 -sVworried -p1890 -g24 -(g26 -S'a%\x00\x00\x00\x00\x00\x00' -tRp1891 -sVpriest -p1892 -g24 -(g26 -S'1\x1a\x00\x00\x00\x00\x00\x00' -tRp1893 -sVroger -p1894 -g24 -(g26 -S'\x1b\x1d\x00\x00\x00\x00\x00\x00' -tRp1895 -sVliable -p1896 -g24 -(g26 -S'f\x13\x00\x00\x00\x00\x00\x00' -tRp1897 -sVvision -p1898 -g24 -(g26 -S'N$\x00\x00\x00\x00\x00\x00' -tRp1899 -sVespn -p1900 -g24 -(g26 -S'\xc8\x0b\x00\x00\x00\x00\x00\x00' -tRp1901 -sVsurgery -p1902 -g24 -(g26 -S'\x03!\x00\x00\x00\x00\x00\x00' -tRp1903 -sVplanet -p1904 -g24 -(g26 -S'C\x19\x00\x00\x00\x00\x00\x00' -tRp1905 -sVmorocco -p1906 -g24 -(g26 -S'\xed\x15\x00\x00\x00\x00\x00\x00' -tRp1907 -sVharvey -p1908 -g24 -(g26 -S'u\x0f\x00\x00\x00\x00\x00\x00' -tRp1909 -sVrepresentatives -p1910 -g24 -(g26 -S'\\\x1c\x00\x00\x00\x00\x00\x00' -tRp1911 -sVsponsorship -p1912 -g24 -(g26 -S'\xda\x1f\x00\x00\x00\x00\x00\x00' -tRp1913 -sVbureau -p1914 -g24 -(g26 -S'\x8e\x04\x00\x00\x00\x00\x00\x00' -tRp1915 -sVtestimonials -p1916 -g24 -(g26 -S'\xcb!\x00\x00\x00\x00\x00\x00' -tRp1917 -sVteens -p1918 -g24 -(g26 -S'\x9a!\x00\x00\x00\x00\x00\x00' -tRp1919 -sVverification -p1920 -g24 -(g26 -S'\x05$\x00\x00\x00\x00\x00\x00' -tRp1921 -sVjobs -p1922 -g24 -(g26 -S'!\x12\x00\x00\x00\x00\x00\x00' -tRp1923 -sVuk -p1924 -g24 -(g26 -S'N#\x00\x00\x00\x00\x00\x00' -tRp1925 -sVvertical -p1926 -g24 -(g26 -S'\x10$\x00\x00\x00\x00\x00\x00' -tRp1927 -sVscreen -p1928 -g24 -(g26 -S'\xee\x1d\x00\x00\x00\x00\x00\x00' -tRp1929 -sVdome -p1930 -g24 -(g26 -S'O\n\x00\x00\x00\x00\x00\x00' -tRp1931 -sVsparc -p1932 -g24 -(g26 -S'\x9e\x1f\x00\x00\x00\x00\x00\x00' -tRp1933 -sVconcentrate -p1934 -g24 -(g26 -S'\x1b\x07\x00\x00\x00\x00\x00\x00' -tRp1935 -sVawards -p1936 -g24 -(g26 -S'\xa5\x02\x00\x00\x00\x00\x00\x00' -tRp1937 -sVjets -p1938 -g24 -(g26 -S'\x13\x12\x00\x00\x00\x00\x00\x00' -tRp1939 -sVresidence -p1940 -g24 -(g26 -S'\x81\x1c\x00\x00\x00\x00\x00\x00' -tRp1941 -sVworkplace -p1942 -g24 -(g26 -S'U%\x00\x00\x00\x00\x00\x00' -tRp1943 -sVexpression -p1944 -g24 -(g26 -S'h\x0c\x00\x00\x00\x00\x00\x00' -tRp1945 -sVallowance -p1946 -g24 -(g26 -S'\x1e\x01\x00\x00\x00\x00\x00\x00' -tRp1947 -sVyearly -p1948 -g24 -(g26 -S'\x9d%\x00\x00\x00\x00\x00\x00' -tRp1949 -sVvoip -p1950 -g24 -(g26 -S'a$\x00\x00\x00\x00\x00\x00' -tRp1951 -sVtwin -p1952 -g24 -(g26 -S'<#\x00\x00\x00\x00\x00\x00' -tRp1953 -sVanti -p1954 -g24 -(g26 -S'\x88\x01\x00\x00\x00\x00\x00\x00' -tRp1955 -sVsupervisor -p1956 -g24 -(g26 -S'\xe7 \x00\x00\x00\x00\x00\x00' -tRp1957 -sVconsiders -p1958 -g24 -(g26 -S'j\x07\x00\x00\x00\x00\x00\x00' -tRp1959 -sVboat -p1960 -g24 -(g26 -S'\xcf\x03\x00\x00\x00\x00\x00\x00' -tRp1961 -sVcaring -p1962 -g24 -(g26 -S'\x11\x05\x00\x00\x00\x00\x00\x00' -tRp1963 -sVcombines -p1964 -g24 -(g26 -S'\xb2\x06\x00\x00\x00\x00\x00\x00' -tRp1965 -sVwebshots -p1966 -g24 -(g26 -S'\xd8$\x00\x00\x00\x00\x00\x00' -tRp1967 -sVteddy -p1968 -g24 -(g26 -S'\x96!\x00\x00\x00\x00\x00\x00' -tRp1969 -sVstretch -p1970 -g24 -(g26 -S'n \x00\x00\x00\x00\x00\x00' -tRp1971 -sVwest -p1972 -g24 -(g26 -S'\xf4$\x00\x00\x00\x00\x00\x00' -tRp1973 -sVlocally -p1974 -g24 -(g26 -S'\xd2\x13\x00\x00\x00\x00\x00\x00' -tRp1975 -sVairlines -p1976 -g24 -(g26 -S'\xed\x00\x00\x00\x00\x00\x00\x00' -tRp1977 -sVbreath -p1978 -g24 -(g26 -S'0\x04\x00\x00\x00\x00\x00\x00' -tRp1979 -sVcombined -p1980 -g24 -(g26 -S'\xb1\x06\x00\x00\x00\x00\x00\x00' -tRp1981 -sVprototype -p1982 -g24 -(g26 -S'\xb5\x1a\x00\x00\x00\x00\x00\x00' -tRp1983 -sVcrawford -p1984 -g24 -(g26 -S':\x08\x00\x00\x00\x00\x00\x00' -tRp1985 -sVwants -p1986 -g24 -(g26 -S'\x9c$\x00\x00\x00\x00\x00\x00' -tRp1987 -sVenable -p1988 -g24 -(g26 -S'R\x0b\x00\x00\x00\x00\x00\x00' -tRp1989 -sVlanes -p1990 -g24 -(g26 -S'\xe1\x12\x00\x00\x00\x00\x00\x00' -tRp1991 -sVinfluence -p1992 -g24 -(g26 -S'\x08\x11\x00\x00\x00\x00\x00\x00' -tRp1993 -sVthousand -p1994 -g24 -(g26 -S'\t"\x00\x00\x00\x00\x00\x00' -tRp1995 -sVformed -p1996 -g24 -(g26 -S'\xa7\r\x00\x00\x00\x00\x00\x00' -tRp1997 -sVantivirus -p1998 -g24 -(g26 -S'\x8f\x01\x00\x00\x00\x00\x00\x00' -tRp1999 -sVreadings -p2000 -g24 -(g26 -S'\x80\x1b\x00\x00\x00\x00\x00\x00' -tRp2001 -sVphotos -p2002 -g24 -(g26 -S'\xfd\x18\x00\x00\x00\x00\x00\x00' -tRp2003 -sVobserve -p2004 -g24 -(g26 -S'1\x17\x00\x00\x00\x00\x00\x00' -tRp2005 -sVconsultant -p2006 -g24 -(g26 -S'\x85\x07\x00\x00\x00\x00\x00\x00' -tRp2007 -sVtribal -p2008 -g24 -(g26 -S'\xf2"\x00\x00\x00\x00\x00\x00' -tRp2009 -sVpolls -p2010 -g24 -(g26 -S'\x8f\x19\x00\x00\x00\x00\x00\x00' -tRp2011 -sVengineering -p2012 -g24 -(g26 -S'v\x0b\x00\x00\x00\x00\x00\x00' -tRp2013 -sVhayes -p2014 -g24 -(g26 -S'\x80\x0f\x00\x00\x00\x00\x00\x00' -tRp2015 -sVpolicies -p2016 -g24 -(g26 -S'\x87\x19\x00\x00\x00\x00\x00\x00' -tRp2017 -sVnewspaper -p2018 -g24 -(g26 -S'\xad\x16\x00\x00\x00\x00\x00\x00' -tRp2019 -sVsituation -p2020 -g24 -(g26 -S'\x11\x1f\x00\x00\x00\x00\x00\x00' -tRp2021 -sVspotlight -p2022 -g24 -(g26 -S'\xdf\x1f\x00\x00\x00\x00\x00\x00' -tRp2023 -sValuminium -p2024 -g24 -(g26 -S'/\x01\x00\x00\x00\x00\x00\x00' -tRp2025 -sVctrl -p2026 -g24 -(g26 -S'j\x08\x00\x00\x00\x00\x00\x00' -tRp2027 -sVcanon -p2028 -g24 -(g26 -S'\xf2\x04\x00\x00\x00\x00\x00\x00' -tRp2029 -sVblah -p2030 -g24 -(g26 -S'\xa6\x03\x00\x00\x00\x00\x00\x00' -tRp2031 -sVambient -p2032 -g24 -(g26 -S'9\x01\x00\x00\x00\x00\x00\x00' -tRp2033 -sVtechnology -p2034 -g24 -(g26 -S'\x93!\x00\x00\x00\x00\x00\x00' -tRp2035 -sVfame -p2036 -g24 -(g26 -S'\xa3\x0c\x00\x00\x00\x00\x00\x00' -tRp2037 -sVbinary -p2038 -g24 -(g26 -S'\x84\x03\x00\x00\x00\x00\x00\x00' -tRp2039 -sVexpenditures -p2040 -g24 -(g26 -S'D\x0c\x00\x00\x00\x00\x00\x00' -tRp2041 -sVverified -p2042 -g24 -(g26 -S'\x06$\x00\x00\x00\x00\x00\x00' -tRp2043 -sVwiring -p2044 -g24 -(g26 -S'+%\x00\x00\x00\x00\x00\x00' -tRp2045 -sVsurveillance -p2046 -g24 -(g26 -S'\x0e!\x00\x00\x00\x00\x00\x00' -tRp2047 -sVlovers -p2048 -g24 -(g26 -S'\x13\x14\x00\x00\x00\x00\x00\x00' -tRp2049 -sVsterling -p2050 -g24 -(g26 -S'< \x00\x00\x00\x00\x00\x00' -tRp2051 -sVwires -p2052 -g24 -(g26 -S'*%\x00\x00\x00\x00\x00\x00' -tRp2053 -sVsingapore -p2054 -g24 -(g26 -S'\x00\x1f\x00\x00\x00\x00\x00\x00' -tRp2055 -sVallocation -p2056 -g24 -(g26 -S'\x1c\x01\x00\x00\x00\x00\x00\x00' -tRp2057 -sVharris -p2058 -g24 -(g26 -S'n\x0f\x00\x00\x00\x00\x00\x00' -tRp2059 -sVwired -p2060 -g24 -(g26 -S'(%\x00\x00\x00\x00\x00\x00' -tRp2061 -sVadvertisement -p2062 -g24 -(g26 -S'\xaa\x00\x00\x00\x00\x00\x00\x00' -tRp2063 -sVrenewable -p2064 -g24 -(g26 -S'=\x1c\x00\x00\x00\x00\x00\x00' -tRp2065 -sVcosta -p2066 -g24 -(g26 -S'\x05\x08\x00\x00\x00\x00\x00\x00' -tRp2067 -sVtracking -p2068 -g24 -(g26 -S'\x96"\x00\x00\x00\x00\x00\x00' -tRp2069 -sVescorts -p2070 -g24 -(g26 -S'\xc6\x0b\x00\x00\x00\x00\x00\x00' -tRp2071 -sVundefined -p2072 -g24 -(g26 -S']#\x00\x00\x00\x00\x00\x00' -tRp2073 -sVcustomized -p2074 -g24 -(g26 -S'\x8b\x08\x00\x00\x00\x00\x00\x00' -tRp2075 -sVcosts -p2076 -g24 -(g26 -S'\x06\x08\x00\x00\x00\x00\x00\x00' -tRp2077 -sVtrains -p2078 -g24 -(g26 -S'\xaf"\x00\x00\x00\x00\x00\x00' -tRp2079 -sVdimension -p2080 -g24 -(g26 -S'\xc9\t\x00\x00\x00\x00\x00\x00' -tRp2081 -sVscholarship -p2082 -g24 -(g26 -S'\xd8\x1d\x00\x00\x00\x00\x00\x00' -tRp2083 -sVgdp -p2084 -g24 -(g26 -S'K\x0e\x00\x00\x00\x00\x00\x00' -tRp2085 -sVsummer -p2086 -g24 -(g26 -S'\xd9 \x00\x00\x00\x00\x00\x00' -tRp2087 -sVrest -p2088 -g24 -(g26 -S'\x9f\x1c\x00\x00\x00\x00\x00\x00' -tRp2089 -sVpersonals -p2090 -g24 -(g26 -S'\xcb\x18\x00\x00\x00\x00\x00\x00' -tRp2091 -sVomissions -p2092 -g24 -(g26 -S'v\x17\x00\x00\x00\x00\x00\x00' -tRp2093 -sVweekly -p2094 -g24 -(g26 -S'\xe4$\x00\x00\x00\x00\x00\x00' -tRp2095 -sVrover -p2096 -g24 -(g26 -S'I\x1d\x00\x00\x00\x00\x00\x00' -tRp2097 -sVgenerator -p2098 -g24 -(g26 -S']\x0e\x00\x00\x00\x00\x00\x00' -tRp2099 -sVdicke -p2100 -g24 -(g26 -S'\xab\t\x00\x00\x00\x00\x00\x00' -tRp2101 -sVgeological -p2102 -g24 -(g26 -S'r\x0e\x00\x00\x00\x00\x00\x00' -tRp2103 -sVinstrument -p2104 -g24 -(g26 -S'R\x11\x00\x00\x00\x00\x00\x00' -tRp2105 -sVdicks -p2106 -g24 -(g26 -S'\xac\t\x00\x00\x00\x00\x00\x00' -tRp2107 -sVaspects -p2108 -g24 -(g26 -S'\x1f\x02\x00\x00\x00\x00\x00\x00' -tRp2109 -sVpor -p2110 -g24 -(g26 -S'\xa1\x19\x00\x00\x00\x00\x00\x00' -tRp2111 -sVperiod -p2112 -g24 -(g26 -S'\xb5\x18\x00\x00\x00\x00\x00\x00' -tRp2113 -sVdark -p2114 -g24 -(g26 -S'\xb6\x08\x00\x00\x00\x00\x00\x00' -tRp2115 -sVtraffic -p2116 -g24 -(g26 -S'\xa4"\x00\x00\x00\x00\x00\x00' -tRp2117 -sVpreference -p2118 -g24 -(g26 -S'\xfd\x19\x00\x00\x00\x00\x00\x00' -tRp2119 -sVvacuum -p2120 -g24 -(g26 -S'\xc6#\x00\x00\x00\x00\x00\x00' -tRp2121 -sVlibs -p2122 -g24 -(g26 -S'n\x13\x00\x00\x00\x00\x00\x00' -tRp2123 -sVworld -p2124 -g24 -(g26 -S'Z%\x00\x00\x00\x00\x00\x00' -tRp2125 -sVpostal -p2126 -g24 -(g26 -S'\xc4\x19\x00\x00\x00\x00\x00\x00' -tRp2127 -sVdare -p2128 -g24 -(g26 -S'\xb5\x08\x00\x00\x00\x00\x00\x00' -tRp2129 -sVclan -p2130 -g24 -(g26 -S'*\x06\x00\x00\x00\x00\x00\x00' -tRp2131 -sVintel -p2132 -g24 -(g26 -S'c\x11\x00\x00\x00\x00\x00\x00' -tRp2133 -sVstranger -p2134 -g24 -(g26 -S'_ \x00\x00\x00\x00\x00\x00' -tRp2135 -sVtsunami -p2136 -g24 -(g26 -S'\x1b#\x00\x00\x00\x00\x00\x00' -tRp2137 -sVclay -p2138 -g24 -(g26 -S'9\x06\x00\x00\x00\x00\x00\x00' -tRp2139 -sVbeverly -p2140 -g24 -(g26 -S'k\x03\x00\x00\x00\x00\x00\x00' -tRp2141 -sVinter -p2142 -g24 -(g26 -S'n\x11\x00\x00\x00\x00\x00\x00' -tRp2143 -sVseating -p2144 -g24 -(g26 -S'\r\x1e\x00\x00\x00\x00\x00\x00' -tRp2145 -sVsuperintendent -p2146 -g24 -(g26 -S'\xe4 \x00\x00\x00\x00\x00\x00' -tRp2147 -sVconditional -p2148 -g24 -(g26 -S'.\x07\x00\x00\x00\x00\x00\x00' -tRp2149 -sVlebanon -p2150 -g24 -(g26 -S',\x13\x00\x00\x00\x00\x00\x00' -tRp2151 -sVtvs -p2152 -g24 -(g26 -S'9#\x00\x00\x00\x00\x00\x00' -tRp2153 -sVdiving -p2154 -g24 -(g26 -S'*\n\x00\x00\x00\x00\x00\x00' -tRp2155 -sVracial -p2156 -g24 -(g26 -S'4\x1b\x00\x00\x00\x00\x00\x00' -tRp2157 -sVdivine -p2158 -g24 -(g26 -S')\n\x00\x00\x00\x00\x00\x00' -tRp2159 -sVthinks -p2160 -g24 -(g26 -S'\xfd!\x00\x00\x00\x00\x00\x00' -tRp2161 -sVscholarships -p2162 -g24 -(g26 -S'\xd9\x1d\x00\x00\x00\x00\x00\x00' -tRp2163 -sVdimensions -p2164 -g24 -(g26 -S'\xcb\t\x00\x00\x00\x00\x00\x00' -tRp2165 -sVmemories -p2166 -g24 -(g26 -S'\x15\x15\x00\x00\x00\x00\x00\x00' -tRp2167 -sVtube -p2168 -g24 -(g26 -S'\x1f#\x00\x00\x00\x00\x00\x00' -tRp2169 -sVtobago -p2170 -g24 -(g26 -S'R"\x00\x00\x00\x00\x00\x00' -tRp2171 -sVexit -p2172 -g24 -(g26 -S'6\x0c\x00\x00\x00\x00\x00\x00' -tRp2173 -sVrefer -p2174 -g24 -(g26 -S'\xcf\x1b\x00\x00\x00\x00\x00\x00' -tRp2175 -sVaccessing -p2176 -g24 -(g26 -S'(\x00\x00\x00\x00\x00\x00\x00' -tRp2177 -sVscientific -p2178 -g24 -(g26 -S'\xdf\x1d\x00\x00\x00\x00\x00\x00' -tRp2179 -sVpower -p2180 -g24 -(g26 -S'\xdc\x19\x00\x00\x00\x00\x00\x00' -tRp2181 -sVupskirt -p2182 -g24 -(g26 -S'\x98#\x00\x00\x00\x00\x00\x00' -tRp2183 -sVinternship -p2184 -g24 -(g26 -S'\x80\x11\x00\x00\x00\x00\x00\x00' -tRp2185 -sVleadership -p2186 -g24 -(g26 -S'\x1c\x13\x00\x00\x00\x00\x00\x00' -tRp2187 -sVratios -p2188 -g24 -(g26 -S'k\x1b\x00\x00\x00\x00\x00\x00' -tRp2189 -sVthailand -p2190 -g24 -(g26 -S'\xdd!\x00\x00\x00\x00\x00\x00' -tRp2191 -sVacc -p2192 -g24 -(g26 -S'\x1c\x00\x00\x00\x00\x00\x00\x00' -tRp2193 -sVstone -p2194 -g24 -(g26 -S'L \x00\x00\x00\x00\x00\x00' -tRp2195 -sVace -p2196 -g24 -(g26 -S'B\x00\x00\x00\x00\x00\x00\x00' -tRp2197 -sVpackage -p2198 -g24 -(g26 -S'\xf5\x17\x00\x00\x00\x00\x00\x00' -tRp2199 -sVindustry -p2200 -g24 -(g26 -S'\xfd\x10\x00\x00\x00\x00\x00\x00' -tRp2201 -sVfavorite -p2202 -g24 -(g26 -S'\xc4\x0c\x00\x00\x00\x00\x00\x00' -tRp2203 -sVacm -p2204 -g24 -(g26 -S'M\x00\x00\x00\x00\x00\x00\x00' -tRp2205 -sVtumor -p2206 -g24 -(g26 -S'&#\x00\x00\x00\x00\x00\x00' -tRp2207 -sVneighbor -p2208 -g24 -(g26 -S'\x8b\x16\x00\x00\x00\x00\x00\x00' -tRp2209 -sVact -p2210 -g24 -(g26 -S'X\x00\x00\x00\x00\x00\x00\x00' -tRp2211 -sVjohnston -p2212 -g24 -(g26 -S'(\x12\x00\x00\x00\x00\x00\x00' -tRp2213 -sVluck -p2214 -g24 -(g26 -S' \x14\x00\x00\x00\x00\x00\x00' -tRp2215 -sVfundraising -p2216 -g24 -(g26 -S'\x06\x0e\x00\x00\x00\x00\x00\x00' -tRp2217 -sVburning -p2218 -g24 -(g26 -S'\x94\x04\x00\x00\x00\x00\x00\x00' -tRp2219 -sVimage -p2220 -g24 -(g26 -S'\x96\x10\x00\x00\x00\x00\x00\x00' -tRp2221 -sVessex -p2222 -g24 -(g26 -S'\xcf\x0b\x00\x00\x00\x00\x00\x00' -tRp2223 -sVhomeless -p2224 -g24 -(g26 -S'\x02\x10\x00\x00\x00\x00\x00\x00' -tRp2225 -sVparties -p2226 -g24 -(g26 -S'G\x18\x00\x00\x00\x00\x00\x00' -tRp2227 -sVangola -p2228 -g24 -(g26 -S'g\x01\x00\x00\x00\x00\x00\x00' -tRp2229 -sVlegacy -p2230 -g24 -(g26 -S'4\x13\x00\x00\x00\x00\x00\x00' -tRp2231 -sVtransexual -p2232 -g24 -(g26 -S'\xb9"\x00\x00\x00\x00\x00\x00' -tRp2233 -sVphiladelphia -p2234 -g24 -(g26 -S'\xed\x18\x00\x00\x00\x00\x00\x00' -tRp2235 -sVmeals -p2236 -g24 -(g26 -S'\xe2\x14\x00\x00\x00\x00\x00\x00' -tRp2237 -sVemacs -p2238 -g24 -(g26 -S'6\x0b\x00\x00\x00\x00\x00\x00' -tRp2239 -sVsealed -p2240 -g24 -(g26 -S'\x02\x1e\x00\x00\x00\x00\x00\x00' -tRp2241 -sVbrazilian -p2242 -g24 -(g26 -S'&\x04\x00\x00\x00\x00\x00\x00' -tRp2243 -sVbubble -p2244 -g24 -(g26 -S'n\x04\x00\x00\x00\x00\x00\x00' -tRp2245 -sVago -p2246 -g24 -(g26 -S'\xd9\x00\x00\x00\x00\x00\x00\x00' -tRp2247 -sVrecommends -p2248 -g24 -(g26 -S'\xb1\x1b\x00\x00\x00\x00\x00\x00' -tRp2249 -sVcomplete -p2250 -g24 -(g26 -S'\xfb\x06\x00\x00\x00\x00\x00\x00' -tRp2251 -sVpeaceful -p2252 -g24 -(g26 -S'\x8a\x18\x00\x00\x00\x00\x00\x00' -tRp2253 -sVallan -p2254 -g24 -(g26 -S'\x15\x01\x00\x00\x00\x00\x00\x00' -tRp2255 -sVbeginners -p2256 -g24 -(g26 -S'5\x03\x00\x00\x00\x00\x00\x00' -tRp2257 -sVbrain -p2258 -g24 -(g26 -S'\x1a\x04\x00\x00\x00\x00\x00\x00' -tRp2259 -sVelimination -p2260 -g24 -(g26 -S'.\x0b\x00\x00\x00\x00\x00\x00' -tRp2261 -sVmice -p2262 -g24 -(g26 -S'P\x15\x00\x00\x00\x00\x00\x00' -tRp2263 -sVhousewives -p2264 -g24 -(g26 -S'9\x10\x00\x00\x00\x00\x00\x00' -tRp2265 -sVbuying -p2266 -g24 -(g26 -S'\xa9\x04\x00\x00\x00\x00\x00\x00' -tRp2267 -sVpull -p2268 -g24 -(g26 -S'\xe1\x1a\x00\x00\x00\x00\x00\x00' -tRp2269 -sVrush -p2270 -g24 -(g26 -S'g\x1d\x00\x00\x00\x00\x00\x00' -tRp2271 -sVoctober -p2272 -g24 -(g26 -S'J\x17\x00\x00\x00\x00\x00\x00' -tRp2273 -sVrage -p2274 -g24 -(g26 -S'>\x1b\x00\x00\x00\x00\x00\x00' -tRp2275 -sVnearest -p2276 -g24 -(g26 -S'{\x16\x00\x00\x00\x00\x00\x00' -tRp2277 -sVdirty -p2278 -g24 -(g26 -S'\xdc\t\x00\x00\x00\x00\x00\x00' -tRp2279 -sVagree -p2280 -g24 -(g26 -S'\xda\x00\x00\x00\x00\x00\x00\x00' -tRp2281 -sVdetailed -p2282 -g24 -(g26 -S'v\t\x00\x00\x00\x00\x00\x00' -tRp2283 -sVgone -p2284 -g24 -(g26 -S'\xb0\x0e\x00\x00\x00\x00\x00\x00' -tRp2285 -sVac -p2286 -g24 -(g26 -S'\x18\x00\x00\x00\x00\x00\x00\x00' -tRp2287 -sVab -p2288 -g24 -(g26 -S'\x03\x00\x00\x00\x00\x00\x00\x00' -tRp2289 -sVae -p2290 -g24 -(g26 -S'\xb8\x00\x00\x00\x00\x00\x00\x00' -tRp2291 -sVad -p2292 -g24 -(g26 -S'j\x00\x00\x00\x00\x00\x00\x00' -tRp2293 -sVjohnny -p2294 -g24 -(g26 -S'%\x12\x00\x00\x00\x00\x00\x00' -tRp2295 -sVaf -p2296 -g24 -(g26 -S'\xbb\x00\x00\x00\x00\x00\x00\x00' -tRp2297 -sVai -p2298 -g24 -(g26 -S'\xe3\x00\x00\x00\x00\x00\x00\x00' -tRp2299 -sVcertain -p2300 -g24 -(g26 -S'r\x05\x00\x00\x00\x00\x00\x00' -tRp2301 -sVak -p2302 -g24 -(g26 -S'\xf2\x00\x00\x00\x00\x00\x00\x00' -tRp2303 -sVforgot -p2304 -g24 -(g26 -S'\x9e\r\x00\x00\x00\x00\x00\x00' -tRp2305 -sVal -p2306 -g24 -(g26 -S'\xf4\x00\x00\x00\x00\x00\x00\x00' -tRp2307 -sVwatches -p2308 -g24 -(g26 -S'\xb6$\x00\x00\x00\x00\x00\x00' -tRp2309 -sVap -p2310 -g24 -(g26 -S'\x96\x01\x00\x00\x00\x00\x00\x00' -tRp2311 -sVar -p2312 -g24 -(g26 -S'\xcf\x01\x00\x00\x00\x00\x00\x00' -tRp2313 -sVau -p2314 -g24 -(g26 -S'p\x02\x00\x00\x00\x00\x00\x00' -tRp2315 -sVaw -p2316 -g24 -(g26 -S'\xa2\x02\x00\x00\x00\x00\x00\x00' -tRp2317 -sVav -p2318 -g24 -(g26 -S'\x95\x02\x00\x00\x00\x00\x00\x00' -tRp2319 -sVwatched -p2320 -g24 -(g26 -S'\xb5$\x00\x00\x00\x00\x00\x00' -tRp2321 -sVaz -p2322 -g24 -(g26 -S'\xad\x02\x00\x00\x00\x00\x00\x00' -tRp2323 -sVcream -p2324 -g24 -(g26 -S'<\x08\x00\x00\x00\x00\x00\x00' -tRp2325 -sVyoga -p2326 -g24 -(g26 -S'\xa9%\x00\x00\x00\x00\x00\x00' -tRp2327 -sVextract -p2328 -g24 -(g26 -S'v\x0c\x00\x00\x00\x00\x00\x00' -tRp2329 -sVvocational -p2330 -g24 -(g26 -S']$\x00\x00\x00\x00\x00\x00' -tRp2331 -sVgraduate -p2332 -g24 -(g26 -S'\xd0\x0e\x00\x00\x00\x00\x00\x00' -tRp2333 -sVtight -p2334 -g24 -(g26 -S'."\x00\x00\x00\x00\x00\x00' -tRp2335 -sVsummit -p2336 -g24 -(g26 -S'\xda \x00\x00\x00\x00\x00\x00' -tRp2337 -sVspatial -p2338 -g24 -(g26 -S'\xa1\x1f\x00\x00\x00\x00\x00\x00' -tRp2339 -sVpuppy -p2340 -g24 -(g26 -S'\xeb\x1a\x00\x00\x00\x00\x00\x00' -tRp2341 -sVcongress -p2342 -g24 -(g26 -S'M\x07\x00\x00\x00\x00\x00\x00' -tRp2343 -sVannex -p2344 -g24 -(g26 -S'q\x01\x00\x00\x00\x00\x00\x00' -tRp2345 -sVgifts -p2346 -g24 -(g26 -S'\x87\x0e\x00\x00\x00\x00\x00\x00' -tRp2347 -sVwalker -p2348 -g24 -(g26 -S'\x8a$\x00\x00\x00\x00\x00\x00' -tRp2349 -sVterry -p2350 -g24 -(g26 -S'\xc7!\x00\x00\x00\x00\x00\x00' -tRp2351 -sVtricks -p2352 -g24 -(g26 -S'\xf9"\x00\x00\x00\x00\x00\x00' -tRp2353 -sVacids -p2354 -g24 -(g26 -S'J\x00\x00\x00\x00\x00\x00\x00' -tRp2355 -sVmask -p2356 -g24 -(g26 -S'\xb4\x14\x00\x00\x00\x00\x00\x00' -tRp2357 -sVhello -p2358 -g24 -(g26 -S'\xaf\x0f\x00\x00\x00\x00\x00\x00' -tRp2359 -sVmass -p2360 -g24 -(g26 -S'\xb6\x14\x00\x00\x00\x00\x00\x00' -tRp2361 -sVadam -p2362 -g24 -(g26 -S'l\x00\x00\x00\x00\x00\x00\x00' -tRp2363 -sVbehavioral -p2364 -g24 -(g26 -S';\x03\x00\x00\x00\x00\x00\x00' -tRp2365 -sVoriginal -p2366 -g24 -(g26 -S'\xc2\x17\x00\x00\x00\x00\x00\x00' -tRp2367 -sVwaiver -p2368 -g24 -(g26 -S'\x84$\x00\x00\x00\x00\x00\x00' -tRp2369 -sVexternal -p2370 -g24 -(g26 -S't\x0c\x00\x00\x00\x00\x00\x00' -tRp2371 -sVsci -p2372 -g24 -(g26 -S'\xdc\x1d\x00\x00\x00\x00\x00\x00' -tRp2373 -sVconsider -p2374 -g24 -(g26 -S'd\x07\x00\x00\x00\x00\x00\x00' -tRp2375 -sVcaused -p2376 -g24 -(g26 -S'H\x05\x00\x00\x00\x00\x00\x00' -tRp2377 -sVceramic -p2378 -g24 -(g26 -S'p\x05\x00\x00\x00\x00\x00\x00' -tRp2379 -sVtours -p2380 -g24 -(g26 -S'\x84"\x00\x00\x00\x00\x00\x00' -tRp2381 -sVwelfare -p2382 -g24 -(g26 -S'\xec$\x00\x00\x00\x00\x00\x00' -tRp2383 -sVreasoning -p2384 -g24 -(g26 -S'\x91\x1b\x00\x00\x00\x00\x00\x00' -tRp2385 -sVcauses -p2386 -g24 -(g26 -S'I\x05\x00\x00\x00\x00\x00\x00' -tRp2387 -sVcontent -p2388 -g24 -(g26 -S'\x98\x07\x00\x00\x00\x00\x00\x00' -tRp2389 -sVcareful -p2390 -g24 -(g26 -S'\x0c\x05\x00\x00\x00\x00\x00\x00' -tRp2391 -sVhunting -p2392 -g24 -(g26 -S'^\x10\x00\x00\x00\x00\x00\x00' -tRp2393 -sVty -p2394 -g24 -(g26 -S'B#\x00\x00\x00\x00\x00\x00' -tRp2395 -sVtv -p2396 -g24 -(g26 -S'8#\x00\x00\x00\x00\x00\x00' -tRp2397 -sVtt -p2398 -g24 -(g26 -S'\x1c#\x00\x00\x00\x00\x00\x00' -tRp2399 -sVtu -p2400 -g24 -(g26 -S'\x1d#\x00\x00\x00\x00\x00\x00' -tRp2401 -sVtr -p2402 -g24 -(g26 -S'\x8f"\x00\x00\x00\x00\x00\x00' -tRp2403 -sVts -p2404 -g24 -(g26 -S'\x1a#\x00\x00\x00\x00\x00\x00' -tRp2405 -sVtp -p2406 -g24 -(g26 -S'\x8e"\x00\x00\x00\x00\x00\x00' -tRp2407 -sVspirit -p2408 -g24 -(g26 -S'\xcf\x1f\x00\x00\x00\x00\x00\x00' -tRp2409 -sVtn -p2410 -g24 -(g26 -S'P"\x00\x00\x00\x00\x00\x00' -tRp2411 -sVtail -p2412 -g24 -(g26 -S'U!\x00\x00\x00\x00\x00\x00' -tRp2413 -sVtm -p2414 -g24 -(g26 -S'N"\x00\x00\x00\x00\x00\x00' -tRp2415 -sVth -p2416 -g24 -(g26 -S'\xdb!\x00\x00\x00\x00\x00\x00' -tRp2417 -sVti -p2418 -g24 -(g26 -S'#"\x00\x00\x00\x00\x00\x00' -tRp2419 -sVtf -p2420 -g24 -(g26 -S'\xd8!\x00\x00\x00\x00\x00\x00' -tRp2421 -sVsmile -p2422 -g24 -(g26 -S'C\x1f\x00\x00\x00\x00\x00\x00' -tRp2423 -sVtd -p2424 -g24 -(g26 -S'\x7f!\x00\x00\x00\x00\x00\x00' -tRp2425 -sVte -p2426 -g24 -(g26 -S'\x80!\x00\x00\x00\x00\x00\x00' -tRp2427 -sVhomepage -p2428 -g24 -(g26 -S'\x03\x10\x00\x00\x00\x00\x00\x00' -tRp2429 -sVtc -p2430 -g24 -(g26 -S'}!\x00\x00\x00\x00\x00\x00' -tRp2431 -sVnorm -p2432 -g24 -(g26 -S'\xde\x16\x00\x00\x00\x00\x00\x00' -tRp2433 -sVta -p2434 -g24 -(g26 -S'H!\x00\x00\x00\x00\x00\x00' -tRp2435 -sVghana -p2436 -g24 -(g26 -S'}\x0e\x00\x00\x00\x00\x00\x00' -tRp2437 -sVcase -p2438 -g24 -(g26 -S'+\x05\x00\x00\x00\x00\x00\x00' -tRp2439 -sVappointment -p2440 -g24 -(g26 -S'\xb8\x01\x00\x00\x00\x00\x00\x00' -tRp2441 -sVreturned -p2442 -g24 -(g26 -S'\xbe\x1c\x00\x00\x00\x00\x00\x00' -tRp2443 -sVpuzzles -p2444 -g24 -(g26 -S'\xff\x1a\x00\x00\x00\x00\x00\x00' -tRp2445 -sVdiary -p2446 -g24 -(g26 -S'\xa8\t\x00\x00\x00\x00\x00\x00' -tRp2447 -sVcondition -p2448 -g24 -(g26 -S'-\x07\x00\x00\x00\x00\x00\x00' -tRp2449 -sVillustrated -p2450 -g24 -(g26 -S'\x92\x10\x00\x00\x00\x00\x00\x00' -tRp2451 -sVsans -p2452 -g24 -(g26 -S'\x9d\x1d\x00\x00\x00\x00\x00\x00' -tRp2453 -sVcable -p2454 -g24 -(g26 -S'\xb5\x04\x00\x00\x00\x00\x00\x00' -tRp2455 -sVaccompanying -p2456 -g24 -(g26 -S'1\x00\x00\x00\x00\x00\x00\x00' -tRp2457 -sVjoined -p2458 -g24 -(g26 -S'*\x12\x00\x00\x00\x00\x00\x00' -tRp2459 -sVdsc -p2460 -g24 -(g26 -S'\xa1\n\x00\x00\x00\x00\x00\x00' -tRp2461 -sVlarge -p2462 -g24 -(g26 -S'\xea\x12\x00\x00\x00\x00\x00\x00' -tRp2463 -sVsand -p2464 -g24 -(g26 -S'\x99\x1d\x00\x00\x00\x00\x00\x00' -tRp2465 -sVadjust -p2466 -g24 -(g26 -S'\x86\x00\x00\x00\x00\x00\x00\x00' -tRp2467 -sVharry -p2468 -g24 -(g26 -S'p\x0f\x00\x00\x00\x00\x00\x00' -tRp2469 -sVsmall -p2470 -g24 -(g26 -S'>\x1f\x00\x00\x00\x00\x00\x00' -tRp2471 -sVpopulation -p2472 -g24 -(g26 -S'\x9f\x19\x00\x00\x00\x00\x00\x00' -tRp2473 -sVsamoa -p2474 -g24 -(g26 -S'\x92\x1d\x00\x00\x00\x00\x00\x00' -tRp2475 -sVwebmasters -p2476 -g24 -(g26 -S'\xd6$\x00\x00\x00\x00\x00\x00' -tRp2477 -sVpenalties -p2478 -g24 -(g26 -S'\x94\x18\x00\x00\x00\x00\x00\x00' -tRp2479 -sVpaso -p2480 -g24 -(g26 -S'Q\x18\x00\x00\x00\x00\x00\x00' -tRp2481 -sVsync -p2482 -g24 -(g26 -S';!\x00\x00\x00\x00\x00\x00' -tRp2483 -sVpast -p2484 -g24 -(g26 -S'^\x18\x00\x00\x00\x00\x00\x00' -tRp2485 -sVdisplays -p2486 -g24 -(g26 -S'\r\n\x00\x00\x00\x00\x00\x00' -tRp2487 -sVpass -p2488 -g24 -(g26 -S'R\x18\x00\x00\x00\x00\x00\x00' -tRp2489 -sVinvestment -p2490 -g24 -(g26 -S'\xa2\x11\x00\x00\x00\x00\x00\x00' -tRp2491 -sVrichard -p2492 -g24 -(g26 -S'\xe4\x1c\x00\x00\x00\x00\x00\x00' -tRp2493 -sVclock -p2494 -g24 -(g26 -S'U\x06\x00\x00\x00\x00\x00\x00' -tRp2495 -sVfavor -p2496 -g24 -(g26 -S'\xc3\x0c\x00\x00\x00\x00\x00\x00' -tRp2497 -sVsection -p2498 -g24 -(g26 -S'\x18\x1e\x00\x00\x00\x00\x00\x00' -tRp2499 -sVscientists -p2500 -g24 -(g26 -S'\xe1\x1d\x00\x00\x00\x00\x00\x00' -tRp2501 -sVnurse -p2502 -g24 -(g26 -S'\x11\x17\x00\x00\x00\x00\x00\x00' -tRp2503 -sVmethod -p2504 -g24 -(g26 -S'>\x15\x00\x00\x00\x00\x00\x00' -tRp2505 -sVcontrast -p2506 -g24 -(g26 -S'\xad\x07\x00\x00\x00\x00\x00\x00' -tRp2507 -sVhash -p2508 -g24 -(g26 -S'v\x0f\x00\x00\x00\x00\x00\x00' -tRp2509 -sVinstallations -p2510 -g24 -(g26 -S'@\x11\x00\x00\x00\x00\x00\x00' -tRp2511 -sVgregory -p2512 -g24 -(g26 -S'\xf8\x0e\x00\x00\x00\x00\x00\x00' -tRp2513 -sVhours -p2514 -g24 -(g26 -S'3\x10\x00\x00\x00\x00\x00\x00' -tRp2515 -sVbloggers -p2516 -g24 -(g26 -S'\xb9\x03\x00\x00\x00\x00\x00\x00' -tRp2517 -sVvacations -p2518 -g24 -(g26 -S'\xc4#\x00\x00\x00\x00\x00\x00' -tRp2519 -sVignore -p2520 -g24 -(g26 -S'\x89\x10\x00\x00\x00\x00\x00\x00' -tRp2521 -sVnovember -p2522 -g24 -(g26 -S'\xfe\x16\x00\x00\x00\x00\x00\x00' -tRp2523 -sVlegend -p2524 -g24 -(g26 -S'7\x13\x00\x00\x00\x00\x00\x00' -tRp2525 -sVsender -p2526 -g24 -(g26 -S'D\x1e\x00\x00\x00\x00\x00\x00' -tRp2527 -sVintroductory -p2528 -g24 -(g26 -S'\x95\x11\x00\x00\x00\x00\x00\x00' -tRp2529 -sVcompliance -p2530 -g24 -(g26 -S'\x02\x07\x00\x00\x00\x00\x00\x00' -tRp2531 -sVexperience -p2532 -g24 -(g26 -S'H\x0c\x00\x00\x00\x00\x00\x00' -tRp2533 -sVpics -p2534 -g24 -(g26 -S'\x14\x19\x00\x00\x00\x00\x00\x00' -tRp2535 -sVprior -p2536 -g24 -(g26 -S'B\x1a\x00\x00\x00\x00\x00\x00' -tRp2537 -sVperiodic -p2538 -g24 -(g26 -S'\xb6\x18\x00\x00\x00\x00\x00\x00' -tRp2539 -sVpick -p2540 -g24 -(g26 -S'\x0e\x19\x00\x00\x00\x00\x00\x00' -tRp2541 -sVaction -p2542 -g24 -(g26 -S'Z\x00\x00\x00\x00\x00\x00\x00' -tRp2543 -sVcorps -p2544 -g24 -(g26 -S'\xf6\x07\x00\x00\x00\x00\x00\x00' -tRp2545 -sVvic -p2546 -g24 -(g26 -S'\x1d$\x00\x00\x00\x00\x00\x00' -tRp2547 -sVfollowed -p2548 -g24 -(g26 -S'\x82\r\x00\x00\x00\x00\x00\x00' -tRp2549 -sVvid -p2550 -g24 -(g26 -S'%$\x00\x00\x00\x00\x00\x00' -tRp2551 -sVvii -p2552 -g24 -(g26 -S'3$\x00\x00\x00\x00\x00\x00' -tRp2553 -sVvip -p2554 -g24 -(g26 -S'B$\x00\x00\x00\x00\x00\x00' -tRp2555 -sVgratuit -p2556 -g24 -(g26 -S'\xe7\x0e\x00\x00\x00\x00\x00\x00' -tRp2557 -sVsensors -p2558 -g24 -(g26 -S'N\x1e\x00\x00\x00\x00\x00\x00' -tRp2559 -sVselect -p2560 -g24 -(g26 -S'.\x1e\x00\x00\x00\x00\x00\x00' -tRp2561 -sVliterary -p2562 -g24 -(g26 -S'\xb2\x13\x00\x00\x00\x00\x00\x00' -tRp2563 -sVarchived -p2564 -g24 -(g26 -S'\xde\x01\x00\x00\x00\x00\x00\x00' -tRp2565 -sVattendance -p2566 -g24 -(g26 -S'b\x02\x00\x00\x00\x00\x00\x00' -tRp2567 -sVobjectives -p2568 -g24 -(g26 -S'+\x17\x00\x00\x00\x00\x00\x00' -tRp2569 -sVpetroleum -p2570 -g24 -(g26 -S'\xda\x18\x00\x00\x00\x00\x00\x00' -tRp2571 -sVpearl -p2572 -g24 -(g26 -S'\x8c\x18\x00\x00\x00\x00\x00\x00' -tRp2573 -sVarchives -p2574 -g24 -(g26 -S'\xdf\x01\x00\x00\x00\x00\x00\x00' -tRp2575 -sVfragrance -p2576 -g24 -(g26 -S'\xc2\r\x00\x00\x00\x00\x00\x00' -tRp2577 -sVgorgeous -p2578 -g24 -(g26 -S'\xb7\x0e\x00\x00\x00\x00\x00\x00' -tRp2579 -sVutils -p2580 -g24 -(g26 -S'\xbd#\x00\x00\x00\x00\x00\x00' -tRp2581 -sVteen -p2582 -g24 -(g26 -S'\x98!\x00\x00\x00\x00\x00\x00' -tRp2583 -sVdoor -p2584 -g24 -(g26 -S'^\n\x00\x00\x00\x00\x00\x00' -tRp2585 -sVinitiated -p2586 -g24 -(g26 -S'\x1a\x11\x00\x00\x00\x00\x00\x00' -tRp2587 -sVsubstances -p2588 -g24 -(g26 -S'\xb1 \x00\x00\x00\x00\x00\x00' -tRp2589 -sVcompany -p2590 -g24 -(g26 -S'\xe1\x06\x00\x00\x00\x00\x00\x00' -tRp2591 -sVcorrected -p2592 -g24 -(g26 -S'\xf9\x07\x00\x00\x00\x00\x00\x00' -tRp2593 -sVemission -p2594 -g24 -(g26 -S'A\x0b\x00\x00\x00\x00\x00\x00' -tRp2595 -sVtested -p2596 -g24 -(g26 -S'\xca!\x00\x00\x00\x00\x00\x00' -tRp2597 -sVfoundations -p2598 -g24 -(g26 -S'\xb9\r\x00\x00\x00\x00\x00\x00' -tRp2599 -sVdoom -p2600 -g24 -(g26 -S']\n\x00\x00\x00\x00\x00\x00' -tRp2601 -sVbedford -p2602 -g24 -(g26 -S'+\x03\x00\x00\x00\x00\x00\x00' -tRp2603 -sVkeeping -p2604 -g24 -(g26 -S'q\x12\x00\x00\x00\x00\x00\x00' -tRp2605 -sVscience -p2606 -g24 -(g26 -S'\xdd\x1d\x00\x00\x00\x00\x00\x00' -tRp2607 -sVinstalling -p2608 -g24 -(g26 -S'B\x11\x00\x00\x00\x00\x00\x00' -tRp2609 -sVmall -p2610 -g24 -(g26 -S'i\x14\x00\x00\x00\x00\x00\x00' -tRp2611 -sVsent -p2612 -g24 -(g26 -S'O\x1e\x00\x00\x00\x00\x00\x00' -tRp2613 -sVmorgan -p2614 -g24 -(g26 -S'\xeb\x15\x00\x00\x00\x00\x00\x00' -tRp2615 -sVlearn -p2616 -g24 -(g26 -S'"\x13\x00\x00\x00\x00\x00\x00' -tRp2617 -sVmale -p2618 -g24 -(g26 -S'f\x14\x00\x00\x00\x00\x00\x00' -tRp2619 -sVbeautiful -p2620 -g24 -(g26 -S'%\x03\x00\x00\x00\x00\x00\x00' -tRp2621 -sVprompt -p2622 -g24 -(g26 -S'\x94\x1a\x00\x00\x00\x00\x00\x00' -tRp2623 -sVimpacts -p2624 -g24 -(g26 -S'\xa3\x10\x00\x00\x00\x00\x00\x00' -tRp2625 -sVscan -p2626 -g24 -(g26 -S'\xc3\x1d\x00\x00\x00\x00\x00\x00' -tRp2627 -sVsuggestions -p2628 -g24 -(g26 -S'\xcc \x00\x00\x00\x00\x00\x00' -tRp2629 -sVaccept -p2630 -g24 -(g26 -S'\x1e\x00\x00\x00\x00\x00\x00\x00' -tRp2631 -sVstates -p2632 -g24 -(g26 -S'\x1d \x00\x00\x00\x00\x00\x00' -tRp2633 -sVsense -p2634 -g24 -(g26 -S'J\x1e\x00\x00\x00\x00\x00\x00' -tRp2635 -sVdress -p2636 -g24 -(g26 -S'\x84\n\x00\x00\x00\x00\x00\x00' -tRp2637 -sVaxis -p2638 -g24 -(g26 -S'\xab\x02\x00\x00\x00\x00\x00\x00' -tRp2639 -sVhuge -p2640 -g24 -(g26 -S'J\x10\x00\x00\x00\x00\x00\x00' -tRp2641 -sVrespective -p2642 -g24 -(g26 -S'\x92\x1c\x00\x00\x00\x00\x00\x00' -tRp2643 -sVtorture -p2644 -g24 -(g26 -S'v"\x00\x00\x00\x00\x00\x00' -tRp2645 -sVhugo -p2646 -g24 -(g26 -S'M\x10\x00\x00\x00\x00\x00\x00' -tRp2647 -sVhugh -p2648 -g24 -(g26 -S'K\x10\x00\x00\x00\x00\x00\x00' -tRp2649 -sVenlarge -p2650 -g24 -(g26 -S'\x83\x0b\x00\x00\x00\x00\x00\x00' -tRp2651 -sVdisturbed -p2652 -g24 -(g26 -S'!\n\x00\x00\x00\x00\x00\x00' -tRp2653 -sVearnings -p2654 -g24 -(g26 -S'\xcc\n\x00\x00\x00\x00\x00\x00' -tRp2655 -sVbufing -p2656 -g24 -(g26 -S'x\x04\x00\x00\x00\x00\x00\x00' -tRp2657 -sVcreature -p2658 -g24 -(g26 -S'F\x08\x00\x00\x00\x00\x00\x00' -tRp2659 -sVplant -p2660 -g24 -(g26 -S'J\x19\x00\x00\x00\x00\x00\x00' -tRp2661 -sVintended -p2662 -g24 -(g26 -S'h\x11\x00\x00\x00\x00\x00\x00' -tRp2663 -sVnotre -p2664 -g24 -(g26 -S'\xf7\x16\x00\x00\x00\x00\x00\x00' -tRp2665 -sVwiley -p2666 -g24 -(g26 -S'\x11%\x00\x00\x00\x00\x00\x00' -tRp2667 -sVmapping -p2668 -g24 -(g26 -S'\x86\x14\x00\x00\x00\x00\x00\x00' -tRp2669 -sVsoundtrack -p2670 -g24 -(g26 -S'\x89\x1f\x00\x00\x00\x00\x00\x00' -tRp2671 -sVplane -p2672 -g24 -(g26 -S'A\x19\x00\x00\x00\x00\x00\x00' -tRp2673 -sVwaves -p2674 -g24 -(g26 -S'\xc1$\x00\x00\x00\x00\x00\x00' -tRp2675 -sVethics -p2676 -g24 -(g26 -S'\xe0\x0b\x00\x00\x00\x00\x00\x00' -tRp2677 -sVlanka -p2678 -g24 -(g26 -S'\xe5\x12\x00\x00\x00\x00\x00\x00' -tRp2679 -sVacquisitions -p2680 -g24 -(g26 -S'S\x00\x00\x00\x00\x00\x00\x00' -tRp2681 -sVrefuse -p2682 -g24 -(g26 -S'\xe7\x1b\x00\x00\x00\x00\x00\x00' -tRp2683 -sVregister -p2684 -g24 -(g26 -S'\xf4\x1b\x00\x00\x00\x00\x00\x00' -tRp2685 -sVvolleyball -p2686 -g24 -(g26 -S'd$\x00\x00\x00\x00\x00\x00' -tRp2687 -sVbroadcasting -p2688 -g24 -(g26 -S'N\x04\x00\x00\x00\x00\x00\x00' -tRp2689 -sVfundamental -p2690 -g24 -(g26 -S'\x02\x0e\x00\x00\x00\x00\x00\x00' -tRp2691 -sVnvidia -p2692 -g24 -(g26 -S'\x1b\x17\x00\x00\x00\x00\x00\x00' -tRp2693 -sVgeographic -p2694 -g24 -(g26 -S'o\x0e\x00\x00\x00\x00\x00\x00' -tRp2695 -sVpatio -p2696 -g24 -(g26 -S'l\x18\x00\x00\x00\x00\x00\x00' -tRp2697 -sVreplied -p2698 -g24 -(g26 -S'N\x1c\x00\x00\x00\x00\x00\x00' -tRp2699 -sVmexican -p2700 -g24 -(g26 -S'E\x15\x00\x00\x00\x00\x00\x00' -tRp2701 -sVradios -p2702 -g24 -(g26 -S'<\x1b\x00\x00\x00\x00\x00\x00' -tRp2703 -sVbowl -p2704 -g24 -(g26 -S'\t\x04\x00\x00\x00\x00\x00\x00' -tRp2705 -sVfraser -p2706 -g24 -(g26 -S'\xd0\r\x00\x00\x00\x00\x00\x00' -tRp2707 -sVtramadol -p2708 -g24 -(g26 -S'\xb0"\x00\x00\x00\x00\x00\x00' -tRp2709 -sVinstalled -p2710 -g24 -(g26 -S'A\x11\x00\x00\x00\x00\x00\x00' -tRp2711 -sVstylus -p2712 -g24 -(g26 -S'\x96 \x00\x00\x00\x00\x00\x00' -tRp2713 -sVresorts -p2714 -g24 -(g26 -S'\x8d\x1c\x00\x00\x00\x00\x00\x00' -tRp2715 -sVattitude -p2716 -g24 -(g26 -S'f\x02\x00\x00\x00\x00\x00\x00' -tRp2717 -sVpaper -p2718 -g24 -(g26 -S'\x1f\x18\x00\x00\x00\x00\x00\x00' -tRp2719 -sVscott -p2720 -g24 -(g26 -S'\xea\x1d\x00\x00\x00\x00\x00\x00' -tRp2721 -sVsigns -p2722 -g24 -(g26 -S'\xe9\x1e\x00\x00\x00\x00\x00\x00' -tRp2723 -sVbroadway -p2724 -g24 -(g26 -S'P\x04\x00\x00\x00\x00\x00\x00' -tRp2725 -sVroots -p2726 -g24 -(g26 -S'3\x1d\x00\x00\x00\x00\x00\x00' -tRp2727 -sVastrology -p2728 -g24 -(g26 -S'C\x02\x00\x00\x00\x00\x00\x00' -tRp2729 -sVrapidly -p2730 -g24 -(g26 -S'_\x1b\x00\x00\x00\x00\x00\x00' -tRp2731 -sVgerald -p2732 -g24 -(g26 -S'w\x0e\x00\x00\x00\x00\x00\x00' -tRp2733 -sVsymptoms -p2734 -g24 -(g26 -S':!\x00\x00\x00\x00\x00\x00' -tRp2735 -sVhtml -p2736 -g24 -(g26 -S'E\x10\x00\x00\x00\x00\x00\x00' -tRp2737 -sVisaac -p2738 -g24 -(g26 -S'\xc5\x11\x00\x00\x00\x00\x00\x00' -tRp2739 -sVtravelling -p2740 -g24 -(g26 -S'\xd7"\x00\x00\x00\x00\x00\x00' -tRp2741 -sVsauce -p2742 -g24 -(g26 -S'\xb0\x1d\x00\x00\x00\x00\x00\x00' -tRp2743 -sVcolleague -p2744 -g24 -(g26 -S'\x8e\x06\x00\x00\x00\x00\x00\x00' -tRp2745 -sVtri -p2746 -g24 -(g26 -S'\xee"\x00\x00\x00\x00\x00\x00' -tRp2747 -sVpropose -p2748 -g24 -(g26 -S'\xa0\x1a\x00\x00\x00\x00\x00\x00' -tRp2749 -sVdesignation -p2750 -g24 -(g26 -S'b\t\x00\x00\x00\x00\x00\x00' -tRp2751 -sVevents -p2752 -g24 -(g26 -S'\xf7\x0b\x00\x00\x00\x00\x00\x00' -tRp2753 -sVcourses -p2754 -g24 -(g26 -S'"\x08\x00\x00\x00\x00\x00\x00' -tRp2755 -sVeva -p2756 -g24 -(g26 -S'\xeb\x0b\x00\x00\x00\x00\x00\x00' -tRp2757 -sVinvestigators -p2758 -g24 -(g26 -S'\xa0\x11\x00\x00\x00\x00\x00\x00' -tRp2759 -sVweek -p2760 -g24 -(g26 -S'\xe1$\x00\x00\x00\x00\x00\x00' -tRp2761 -sVbrunette -p2762 -g24 -(g26 -S'e\x04\x00\x00\x00\x00\x00\x00' -tRp2763 -sVengland -p2764 -g24 -(g26 -S'y\x0b\x00\x00\x00\x00\x00\x00' -tRp2765 -sVreduce -p2766 -g24 -(g26 -S'\xc5\x1b\x00\x00\x00\x00\x00\x00' -tRp2767 -sVnumeric -p2768 -g24 -(g26 -S'\x0e\x17\x00\x00\x00\x00\x00\x00' -tRp2769 -sVfinish -p2770 -g24 -(g26 -S'&\r\x00\x00\x00\x00\x00\x00' -tRp2771 -sVmeasurement -p2772 -g24 -(g26 -S'\xea\x14\x00\x00\x00\x00\x00\x00' -tRp2773 -sVadvertisers -p2774 -g24 -(g26 -S'\xad\x00\x00\x00\x00\x00\x00\x00' -tRp2775 -sVblues -p2776 -g24 -(g26 -S'\xc7\x03\x00\x00\x00\x00\x00\x00' -tRp2777 -sVreally -p2778 -g24 -(g26 -S'\x88\x1b\x00\x00\x00\x00\x00\x00' -tRp2779 -sVftp -p2780 -g24 -(g26 -S'\xf2\r\x00\x00\x00\x00\x00\x00' -tRp2781 -sVmissed -p2782 -g24 -(g26 -S'\x95\x15\x00\x00\x00\x00\x00\x00' -tRp2783 -sVblacks -p2784 -g24 -(g26 -S'\xa3\x03\x00\x00\x00\x00\x00\x00' -tRp2785 -sVresearch -p2786 -g24 -(g26 -S'v\x1c\x00\x00\x00\x00\x00\x00' -tRp2787 -sVoffline -p2788 -g24 -(g26 -S'^\x17\x00\x00\x00\x00\x00\x00' -tRp2789 -sVoccurs -p2790 -g24 -(g26 -S'F\x17\x00\x00\x00\x00\x00\x00' -tRp2791 -sVhighway -p2792 -g24 -(g26 -S'\xd1\x0f\x00\x00\x00\x00\x00\x00' -tRp2793 -sVbelief -p2794 -g24 -(g26 -S'A\x03\x00\x00\x00\x00\x00\x00' -tRp2795 -sVporcelain -p2796 -g24 -(g26 -S'\xa2\x19\x00\x00\x00\x00\x00\x00' -tRp2797 -sVqualify -p2798 -g24 -(g26 -S'\x0b\x1b\x00\x00\x00\x00\x00\x00' -tRp2799 -sVconditioning -p2800 -g24 -(g26 -S'/\x07\x00\x00\x00\x00\x00\x00' -tRp2801 -sVimagine -p2802 -g24 -(g26 -S'\x99\x10\x00\x00\x00\x00\x00\x00' -tRp2803 -sVdriven -p2804 -g24 -(g26 -S'\x90\n\x00\x00\x00\x00\x00\x00' -tRp2805 -sVowners -p2806 -g24 -(g26 -S'\xe8\x17\x00\x00\x00\x00\x00\x00' -tRp2807 -sVretained -p2808 -g24 -(g26 -S'\xb4\x1c\x00\x00\x00\x00\x00\x00' -tRp2809 -sVpositioning -p2810 -g24 -(g26 -S'\xb9\x19\x00\x00\x00\x00\x00\x00' -tRp2811 -sVbumper -p2812 -g24 -(g26 -S'\x89\x04\x00\x00\x00\x00\x00\x00' -tRp2813 -sVtestament -p2814 -g24 -(g26 -S'\xc9!\x00\x00\x00\x00\x00\x00' -tRp2815 -sVcastle -p2816 -g24 -(g26 -S'6\x05\x00\x00\x00\x00\x00\x00' -tRp2817 -sVmajor -p2818 -g24 -(g26 -S'[\x14\x00\x00\x00\x00\x00\x00' -tRp2819 -sVgirls -p2820 -g24 -(g26 -S'\x8c\x0e\x00\x00\x00\x00\x00\x00' -tRp2821 -sVguam -p2822 -g24 -(g26 -S'\x13\x0f\x00\x00\x00\x00\x00\x00' -tRp2823 -sVnumber -p2824 -g24 -(g26 -S'\x0c\x17\x00\x00\x00\x00\x00\x00' -tRp2825 -sVpreservation -p2826 -g24 -(g26 -S'\x1a\x1a\x00\x00\x00\x00\x00\x00' -tRp2827 -sVhousewares -p2828 -g24 -(g26 -S'8\x10\x00\x00\x00\x00\x00\x00' -tRp2829 -sVguess -p2830 -g24 -(g26 -S'\x1b\x0f\x00\x00\x00\x00\x00\x00' -tRp2831 -sVheads -p2832 -g24 -(g26 -S'\x91\x0f\x00\x00\x00\x00\x00\x00' -tRp2833 -sVguest -p2834 -g24 -(g26 -S'\x1c\x0f\x00\x00\x00\x00\x00\x00' -tRp2835 -sVjet -p2836 -g24 -(g26 -S'\x12\x12\x00\x00\x00\x00\x00\x00' -tRp2837 -sVintroduction -p2838 -g24 -(g26 -S'\x94\x11\x00\x00\x00\x00\x00\x00' -tRp2839 -sVarlington -p2840 -g24 -(g26 -S'\xee\x01\x00\x00\x00\x00\x00\x00' -tRp2841 -sVthreatening -p2842 -g24 -(g26 -S'\x10"\x00\x00\x00\x00\x00\x00' -tRp2843 -sVsaint -p2844 -g24 -(g26 -S'\x81\x1d\x00\x00\x00\x00\x00\x00' -tRp2845 -sVessays -p2846 -g24 -(g26 -S'\xca\x0b\x00\x00\x00\x00\x00\x00' -tRp2847 -sVmolecular -p2848 -g24 -(g26 -S'\xc9\x15\x00\x00\x00\x00\x00\x00' -tRp2849 -sVrelationship -p2850 -g24 -(g26 -S'\x0b\x1c\x00\x00\x00\x00\x00\x00' -tRp2851 -sVimmediate -p2852 -g24 -(g26 -S'\x9c\x10\x00\x00\x00\x00\x00\x00' -tRp2853 -sVappreciation -p2854 -g24 -(g26 -S'\xbd\x01\x00\x00\x00\x00\x00\x00' -tRp2855 -sVconsult -p2856 -g24 -(g26 -S'\x83\x07\x00\x00\x00\x00\x00\x00' -tRp2857 -sVfocusing -p2858 -g24 -(g26 -S'y\r\x00\x00\x00\x00\x00\x00' -tRp2859 -sVgrace -p2860 -g24 -(g26 -S'\xcb\x0e\x00\x00\x00\x00\x00\x00' -tRp2861 -sVaaa -p2862 -g24 -(g26 -S'\x01\x00\x00\x00\x00\x00\x00\x00' -tRp2863 -sVvocal -p2864 -g24 -(g26 -S'[$\x00\x00\x00\x00\x00\x00' -tRp2865 -sVgenesis -p2866 -g24 -(g26 -S'b\x0e\x00\x00\x00\x00\x00\x00' -tRp2867 -sVpennsylvania -p2868 -g24 -(g26 -S'\x9e\x18\x00\x00\x00\x00\x00\x00' -tRp2869 -sVdetermined -p2870 -g24 -(g26 -S'\x7f\t\x00\x00\x00\x00\x00\x00' -tRp2871 -sVmarriage -p2872 -g24 -(g26 -S'\xa6\x14\x00\x00\x00\x00\x00\x00' -tRp2873 -sVorganisations -p2874 -g24 -(g26 -S'\xb3\x17\x00\x00\x00\x00\x00\x00' -tRp2875 -sVantarctica -p2876 -g24 -(g26 -S'\x84\x01\x00\x00\x00\x00\x00\x00' -tRp2877 -sVblond -p2878 -g24 -(g26 -S'\xbc\x03\x00\x00\x00\x00\x00\x00' -tRp2879 -sVsell -p2880 -g24 -(g26 -S'5\x1e\x00\x00\x00\x00\x00\x00' -tRp2881 -sVself -p2882 -g24 -(g26 -S'4\x1e\x00\x00\x00\x00\x00\x00' -tRp2883 -sVreliance -p2884 -g24 -(g26 -S'\x1a\x1c\x00\x00\x00\x00\x00\x00' -tRp2885 -sVinternal -p2886 -g24 -(g26 -S'|\x11\x00\x00\x00\x00\x00\x00' -tRp2887 -sVplay -p2888 -g24 -(g26 -S'T\x19\x00\x00\x00\x00\x00\x00' -tRp2889 -sVdepartmental -p2890 -g24 -(g26 -S'C\t\x00\x00\x00\x00\x00\x00' -tRp2891 -sVsingles -p2892 -g24 -(g26 -S'\x05\x1f\x00\x00\x00\x00\x00\x00' -tRp2893 -sVperipherals -p2894 -g24 -(g26 -S'\xba\x18\x00\x00\x00\x00\x00\x00' -tRp2895 -sVvirus -p2896 -g24 -(g26 -S'I$\x00\x00\x00\x00\x00\x00' -tRp2897 -sVplan -p2898 -g24 -(g26 -S'@\x19\x00\x00\x00\x00\x00\x00' -tRp2899 -sVcialis -p2900 -g24 -(g26 -S'\x03\x06\x00\x00\x00\x00\x00\x00' -tRp2901 -sVaccepting -p2902 -g24 -(g26 -S'"\x00\x00\x00\x00\x00\x00\x00' -tRp2903 -sVmodem -p2904 -g24 -(g26 -S'\xb7\x15\x00\x00\x00\x00\x00\x00' -tRp2905 -sVomaha -p2906 -g24 -(g26 -S's\x17\x00\x00\x00\x00\x00\x00' -tRp2907 -sVcover -p2908 -g24 -(g26 -S"'\x08\x00\x00\x00\x00\x00\x00" -tRp2909 -sVext -p2910 -g24 -(g26 -S'j\x0c\x00\x00\x00\x00\x00\x00' -tRp2911 -sVartistic -p2912 -g24 -(g26 -S'\x0b\x02\x00\x00\x00\x00\x00\x00' -tRp2913 -sVexp -p2914 -g24 -(g26 -S'8\x0c\x00\x00\x00\x00\x00\x00' -tRp2915 -sVasus -p2916 -g24 -(g26 -S'E\x02\x00\x00\x00\x00\x00\x00' -tRp2917 -sVbarrel -p2918 -g24 -(g26 -S'\xee\x02\x00\x00\x00\x00\x00\x00' -tRp2919 -sVbulletin -p2920 -g24 -(g26 -S'\x88\x04\x00\x00\x00\x00\x00\x00' -tRp2921 -sVgolf -p2922 -g24 -(g26 -S'\xaf\x0e\x00\x00\x00\x00\x00\x00' -tRp2923 -sVgold -p2924 -g24 -(g26 -S'\xad\x0e\x00\x00\x00\x00\x00\x00' -tRp2925 -sVcruises -p2926 -g24 -(g26 -S'c\x08\x00\x00\x00\x00\x00\x00' -tRp2927 -sVaccommodations -p2928 -g24 -(g26 -S'/\x00\x00\x00\x00\x00\x00\x00' -tRp2929 -sVbookings -p2930 -g24 -(g26 -S'\xe6\x03\x00\x00\x00\x00\x00\x00' -tRp2931 -sVnasdaq -p2932 -g24 -(g26 -S'[\x16\x00\x00\x00\x00\x00\x00' -tRp2933 -sVsession -p2934 -g24 -(g26 -S'k\x1e\x00\x00\x00\x00\x00\x00' -tRp2935 -sVfreight -p2936 -g24 -(g26 -S'\xdb\r\x00\x00\x00\x00\x00\x00' -tRp2937 -sVoccupation -p2938 -g24 -(g26 -S'>\x17\x00\x00\x00\x00\x00\x00' -tRp2939 -sVimpact -p2940 -g24 -(g26 -S'\xa2\x10\x00\x00\x00\x00\x00\x00' -tRp2941 -sVindicator -p2942 -g24 -(g26 -S'\xed\x10\x00\x00\x00\x00\x00\x00' -tRp2943 -sVcondos -p2944 -g24 -(g26 -S'2\x07\x00\x00\x00\x00\x00\x00' -tRp2945 -sVwrites -p2946 -g24 -(g26 -S'u%\x00\x00\x00\x00\x00\x00' -tRp2947 -sVwriter -p2948 -g24 -(g26 -S's%\x00\x00\x00\x00\x00\x00' -tRp2949 -sVstevens -p2950 -g24 -(g26 -S'? \x00\x00\x00\x00\x00\x00' -tRp2951 -sVfailed -p2952 -g24 -(g26 -S'\x93\x0c\x00\x00\x00\x00\x00\x00' -tRp2953 -sVenzyme -p2954 -g24 -(g26 -S'\xa5\x0b\x00\x00\x00\x00\x00\x00' -tRp2955 -sVwayne -p2956 -g24 -(g26 -S'\xc4$\x00\x00\x00\x00\x00\x00' -tRp2957 -sVcassette -p2958 -g24 -(g26 -S'3\x05\x00\x00\x00\x00\x00\x00' -tRp2959 -sVremovable -p2960 -g24 -(g26 -S'3\x1c\x00\x00\x00\x00\x00\x00' -tRp2961 -sVfactor -p2962 -g24 -(g26 -S'\x8d\x0c\x00\x00\x00\x00\x00\x00' -tRp2963 -sVcolumns -p2964 -g24 -(g26 -S'\xab\x06\x00\x00\x00\x00\x00\x00' -tRp2965 -sVgiants -p2966 -g24 -(g26 -S'\x82\x0e\x00\x00\x00\x00\x00\x00' -tRp2967 -sVgratis -p2968 -g24 -(g26 -S'\xe6\x0e\x00\x00\x00\x00\x00\x00' -tRp2969 -sVquizzes -p2970 -g24 -(g26 -S'*\x1b\x00\x00\x00\x00\x00\x00' -tRp2971 -sVbanned -p2972 -g24 -(g26 -S'\xdf\x02\x00\x00\x00\x00\x00\x00' -tRp2973 -sVsunny -p2974 -g24 -(g26 -S'\xde \x00\x00\x00\x00\x00\x00' -tRp2975 -sVremedy -p2976 -g24 -(g26 -S',\x1c\x00\x00\x00\x00\x00\x00' -tRp2977 -sVpreparing -p2978 -g24 -(g26 -S'\x0e\x1a\x00\x00\x00\x00\x00\x00' -tRp2979 -sVclosely -p2980 -g24 -(g26 -S'Z\x06\x00\x00\x00\x00\x00\x00' -tRp2981 -sVreporters -p2982 -g24 -(g26 -S'T\x1c\x00\x00\x00\x00\x00\x00' -tRp2983 -sVbanner -p2984 -g24 -(g26 -S'\xe0\x02\x00\x00\x00\x00\x00\x00' -tRp2985 -sVenemy -p2986 -g24 -(g26 -S'l\x0b\x00\x00\x00\x00\x00\x00' -tRp2987 -sVtreo -p2988 -g24 -(g26 -S'\xed"\x00\x00\x00\x00\x00\x00' -tRp2989 -sVprogressive -p2990 -g24 -(g26 -S'\x7f\x1a\x00\x00\x00\x00\x00\x00' -tRp2991 -sVbytes -p2992 -g24 -(g26 -S'\xaf\x04\x00\x00\x00\x00\x00\x00' -tRp2993 -sVrfc -p2994 -g24 -(g26 -S'\xda\x1c\x00\x00\x00\x00\x00\x00' -tRp2995 -sVbanking -p2996 -g24 -(g26 -S'\xdc\x02\x00\x00\x00\x00\x00\x00' -tRp2997 -sVcroatia -p2998 -g24 -(g26 -S'X\x08\x00\x00\x00\x00\x00\x00' -tRp2999 -sVriver -p3000 -g24 -(g26 -S'\x00\x1d\x00\x00\x00\x00\x00\x00' -tRp3001 -sVcrm -p3002 -g24 -(g26 -S'W\x08\x00\x00\x00\x00\x00\x00' -tRp3003 -sVset -p3004 -g24 -(g26 -S'm\x1e\x00\x00\x00\x00\x00\x00' -tRp3005 -sVser -p3006 -g24 -(g26 -S']\x1e\x00\x00\x00\x00\x00\x00' -tRp3007 -sVseq -p3008 -g24 -(g26 -S'Z\x1e\x00\x00\x00\x00\x00\x00' -tRp3009 -sVsep -p3010 -g24 -(g26 -S'S\x1e\x00\x00\x00\x00\x00\x00' -tRp3011 -sVjade -p3012 -g24 -(g26 -S'\xeb\x11\x00\x00\x00\x00\x00\x00' -tRp3013 -sVactivists -p3014 -g24 -(g26 -S'`\x00\x00\x00\x00\x00\x00\x00' -tRp3015 -sVstartup -p3016 -g24 -(g26 -S'\x17 \x00\x00\x00\x00\x00\x00' -tRp3017 -sVsex -p3018 -g24 -(g26 -S'y\x1e\x00\x00\x00\x00\x00\x00' -tRp3019 -sVsec -p3020 -g24 -(g26 -S'\x10\x1e\x00\x00\x00\x00\x00\x00' -tRp3021 -sVmigration -p3022 -g24 -(g26 -S'`\x15\x00\x00\x00\x00\x00\x00' -tRp3023 -sVsea -p3024 -g24 -(g26 -S'\xff\x1d\x00\x00\x00\x00\x00\x00' -tRp3025 -sVseo -p3026 -g24 -(g26 -S'R\x1e\x00\x00\x00\x00\x00\x00' -tRp3027 -sVsen -p3028 -g24 -(g26 -S'?\x1e\x00\x00\x00\x00\x00\x00' -tRp3029 -sVinstitutes -p3030 -g24 -(g26 -S'I\x11\x00\x00\x00\x00\x00\x00' -tRp3031 -sVaberdeen -p3032 -g24 -(g26 -S'\x06\x00\x00\x00\x00\x00\x00\x00' -tRp3033 -sVanalog -p3034 -g24 -(g26 -S'N\x01\x00\x00\x00\x00\x00\x00' -tRp3035 -sVproject -p3036 -g24 -(g26 -S'\x81\x1a\x00\x00\x00\x00\x00\x00' -tRp3037 -sVworkers -p3038 -g24 -(g26 -S'P%\x00\x00\x00\x00\x00\x00' -tRp3039 -sVvitamins -p3040 -g24 -(g26 -S'Y$\x00\x00\x00\x00\x00\x00' -tRp3041 -sVguinea -p3042 -g24 -(g26 -S"'\x0f\x00\x00\x00\x00\x00\x00" -tRp3043 -sVcurrently -p3044 -g24 -(g26 -S'\x80\x08\x00\x00\x00\x00\x00\x00' -tRp3045 -sVcrossword -p3046 -g24 -(g26 -S']\x08\x00\x00\x00\x00\x00\x00' -tRp3047 -sVpickup -p3048 -g24 -(g26 -S'\x12\x19\x00\x00\x00\x00\x00\x00' -tRp3049 -sVmonsters -p3050 -g24 -(g26 -S'\xdf\x15\x00\x00\x00\x00\x00\x00' -tRp3051 -sVavailable -p3052 -g24 -(g26 -S'\x97\x02\x00\x00\x00\x00\x00\x00' -tRp3053 -sVtargeted -p3054 -g24 -(g26 -S'n!\x00\x00\x00\x00\x00\x00' -tRp3055 -sVjavascript -p3056 -g24 -(g26 -S'\xfc\x11\x00\x00\x00\x00\x00\x00' -tRp3057 -sVincident -p3058 -g24 -(g26 -S'\xc6\x10\x00\x00\x00\x00\x00\x00' -tRp3059 -sVinterface -p3060 -g24 -(g26 -S'v\x11\x00\x00\x00\x00\x00\x00' -tRp3061 -sVdividend -p3062 -g24 -(g26 -S'(\n\x00\x00\x00\x00\x00\x00' -tRp3063 -sVdelivering -p3064 -g24 -(g26 -S'#\t\x00\x00\x00\x00\x00\x00' -tRp3065 -sVshoe -p3066 -g24 -(g26 -S'\xb8\x1e\x00\x00\x00\x00\x00\x00' -tRp3067 -sVlegislature -p3068 -g24 -(g26 -S'<\x13\x00\x00\x00\x00\x00\x00' -tRp3069 -sVprospects -p3070 -g24 -(g26 -S'\xa7\x1a\x00\x00\x00\x00\x00\x00' -tRp3071 -sVimproved -p3072 -g24 -(g26 -S'\xba\x10\x00\x00\x00\x00\x00\x00' -tRp3073 -sVthou -p3074 -g24 -(g26 -S'\x06"\x00\x00\x00\x00\x00\x00' -tRp3075 -sVpdt -p3076 -g24 -(g26 -S'\x87\x18\x00\x00\x00\x00\x00\x00' -tRp3077 -sVbachelor -p3078 -g24 -(g26 -S'\xb4\x02\x00\x00\x00\x00\x00\x00' -tRp3079 -sVconnection -p3080 -g24 -(g26 -S'T\x07\x00\x00\x00\x00\x00\x00' -tRp3081 -sVpdf -p3082 -g24 -(g26 -S'\x86\x18\x00\x00\x00\x00\x00\x00' -tRp3083 -sVapprove -p3084 -g24 -(g26 -S'\xc3\x01\x00\x00\x00\x00\x00\x00' -tRp3085 -sVpda -p3086 -g24 -(g26 -S'\x84\x18\x00\x00\x00\x00\x00\x00' -tRp3087 -sVhealing -p3088 -g24 -(g26 -S'\x93\x0f\x00\x00\x00\x00\x00\x00' -tRp3089 -sVload -p3090 -g24 -(g26 -S'\xc8\x13\x00\x00\x00\x00\x00\x00' -tRp3091 -sVbell -p3092 -g24 -(g26 -S'H\x03\x00\x00\x00\x00\x00\x00' -tRp3093 -sVloan -p3094 -g24 -(g26 -S'\xcc\x13\x00\x00\x00\x00\x00\x00' -tRp3095 -sVcommunity -p3096 -g24 -(g26 -S'\xdc\x06\x00\x00\x00\x00\x00\x00' -tRp3097 -sVhollow -p3098 -g24 -(g26 -S'\xfa\x0f\x00\x00\x00\x00\x00\x00' -tRp3099 -sVdimensional -p3100 -g24 -(g26 -S'\xca\t\x00\x00\x00\x00\x00\x00' -tRp3101 -sVagents -p3102 -g24 -(g26 -S'\xd4\x00\x00\x00\x00\x00\x00\x00' -tRp3103 -sVadaptation -p3104 -g24 -(g26 -S'n\x00\x00\x00\x00\x00\x00\x00' -tRp3105 -sVscottish -p3106 -g24 -(g26 -S'\xeb\x1d\x00\x00\x00\x00\x00\x00' -tRp3107 -sVdesktop -p3108 -g24 -(g26 -S'l\t\x00\x00\x00\x00\x00\x00' -tRp3109 -sVbelt -p3110 -g24 -(g26 -S'M\x03\x00\x00\x00\x00\x00\x00' -tRp3111 -sVdevil -p3112 -g24 -(g26 -S'\x95\t\x00\x00\x00\x00\x00\x00' -tRp3113 -sVpublishing -p3114 -g24 -(g26 -S'\xdd\x1a\x00\x00\x00\x00\x00\x00' -tRp3115 -sVmonthly -p3116 -g24 -(g26 -S'\xe4\x15\x00\x00\x00\x00\x00\x00' -tRp3117 -sVacceptance -p3118 -g24 -(g26 -S' \x00\x00\x00\x00\x00\x00\x00' -tRp3119 -sVhitting -p3120 -g24 -(g26 -S'\xe6\x0f\x00\x00\x00\x00\x00\x00' -tRp3121 -sVcitations -p3122 -g24 -(g26 -S'\x17\x06\x00\x00\x00\x00\x00\x00' -tRp3123 -sVfirm -p3124 -g24 -(g26 -S'3\r\x00\x00\x00\x00\x00\x00' -tRp3125 -sVchampion -p3126 -g24 -(g26 -S'\x8b\x05\x00\x00\x00\x00\x00\x00' -tRp3127 -sVja -p3128 -g24 -(g26 -S'\xe3\x11\x00\x00\x00\x00\x00\x00' -tRp3129 -sVfund -p3130 -g24 -(g26 -S'\x01\x0e\x00\x00\x00\x00\x00\x00' -tRp3131 -sVraces -p3132 -g24 -(g26 -S'2\x1b\x00\x00\x00\x00\x00\x00' -tRp3133 -sVrepresentative -p3134 -g24 -(g26 -S'[\x1c\x00\x00\x00\x00\x00\x00' -tRp3135 -sVsystematic -p3136 -g24 -(g26 -S'F!\x00\x00\x00\x00\x00\x00' -tRp3137 -sVreceive -p3138 -g24 -(g26 -S'\x9b\x1b\x00\x00\x00\x00\x00\x00' -tRp3139 -sVtowns -p3140 -g24 -(g26 -S'\x88"\x00\x00\x00\x00\x00\x00' -tRp3141 -sVfunk -p3142 -g24 -(g26 -S'\t\x0e\x00\x00\x00\x00\x00\x00' -tRp3143 -sVmlb -p3144 -g24 -(g26 -S'\xa9\x15\x00\x00\x00\x00\x00\x00' -tRp3145 -sVhandling -p3146 -g24 -(g26 -S'Q\x0f\x00\x00\x00\x00\x00\x00' -tRp3147 -sVjudicial -p3148 -g24 -(g26 -S'I\x12\x00\x00\x00\x00\x00\x00' -tRp3149 -sVstraight -p3150 -g24 -(g26 -S'[ \x00\x00\x00\x00\x00\x00' -tRp3151 -sVexpanded -p3152 -g24 -(g26 -S':\x0c\x00\x00\x00\x00\x00\x00' -tRp3153 -sVempirical -p3154 -g24 -(g26 -S'I\x0b\x00\x00\x00\x00\x00\x00' -tRp3155 -sVmls -p3156 -g24 -(g26 -S'\xaa\x15\x00\x00\x00\x00\x00\x00' -tRp3157 -sVoptimization -p3158 -g24 -(g26 -S'\x9d\x17\x00\x00\x00\x00\x00\x00' -tRp3159 -sVpressed -p3160 -g24 -(g26 -S'\x1f\x1a\x00\x00\x00\x00\x00\x00' -tRp3161 -sVevaluating -p3162 -g24 -(g26 -S'\xef\x0b\x00\x00\x00\x00\x00\x00' -tRp3163 -sVformats -p3164 -g24 -(g26 -S'\xa5\r\x00\x00\x00\x00\x00\x00' -tRp3165 -sVkissing -p3166 -g24 -(g26 -S'\x9f\x12\x00\x00\x00\x00\x00\x00' -tRp3167 -sVrobin -p3168 -g24 -(g26 -S'\x10\x1d\x00\x00\x00\x00\x00\x00' -tRp3169 -sVscheduled -p3170 -g24 -(g26 -S'\xd0\x1d\x00\x00\x00\x00\x00\x00' -tRp3171 -sVpound -p3172 -g24 -(g26 -S'\xd6\x19\x00\x00\x00\x00\x00\x00' -tRp3173 -sVhoping -p3174 -g24 -(g26 -S'\x17\x10\x00\x00\x00\x00\x00\x00' -tRp3175 -sVbacking -p3176 -g24 -(g26 -S'\xb8\x02\x00\x00\x00\x00\x00\x00' -tRp3177 -sVvon -p3178 -g24 -(g26 -S'm$\x00\x00\x00\x00\x00\x00' -tRp3179 -sVowen -p3180 -g24 -(g26 -S'\xe5\x17\x00\x00\x00\x00\x00\x00' -tRp3181 -sVbinding -p3182 -g24 -(g26 -S'\x86\x03\x00\x00\x00\x00\x00\x00' -tRp3183 -sVhydrocodone -p3184 -g24 -(g26 -S'f\x10\x00\x00\x00\x00\x00\x00' -tRp3185 -sVtriple -p3186 -g24 -(g26 -S'\x03#\x00\x00\x00\x00\x00\x00' -tRp3187 -sVbeautifully -p3188 -g24 -(g26 -S'&\x03\x00\x00\x00\x00\x00\x00' -tRp3189 -sVaudi -p3190 -g24 -(g26 -S'v\x02\x00\x00\x00\x00\x00\x00' -tRp3191 -sVcuisine -p3192 -g24 -(g26 -S'o\x08\x00\x00\x00\x00\x00\x00' -tRp3193 -sVdecor -p3194 -g24 -(g26 -S'\xf6\x08\x00\x00\x00\x00\x00\x00' -tRp3195 -sVmins -p3196 -g24 -(g26 -S'\x8a\x15\x00\x00\x00\x00\x00\x00' -tRp3197 -sVseek -p3198 -g24 -(g26 -S'$\x1e\x00\x00\x00\x00\x00\x00' -tRp3199 -sVshorter -p3200 -g24 -(g26 -S'\xc5\x1e\x00\x00\x00\x00\x00\x00' -tRp3201 -sVrules -p3202 -g24 -(g26 -S'_\x1d\x00\x00\x00\x00\x00\x00' -tRp3203 -sVvirtually -p3204 -g24 -(g26 -S'G$\x00\x00\x00\x00\x00\x00' -tRp3205 -sVresulting -p3206 -g24 -(g26 -S'\xac\x1c\x00\x00\x00\x00\x00\x00' -tRp3207 -sVknitting -p3208 -g24 -(g26 -S'\xac\x12\x00\x00\x00\x00\x00\x00' -tRp3209 -sVcomprehensive -p3210 -g24 -(g26 -S'\x10\x07\x00\x00\x00\x00\x00\x00' -tRp3211 -sVdefeat -p3212 -g24 -(g26 -S'\x04\t\x00\x00\x00\x00\x00\x00' -tRp3213 -sValert -p3214 -g24 -(g26 -S'\x02\x01\x00\x00\x00\x00\x00\x00' -tRp3215 -sVviewing -p3216 -g24 -(g26 -S'0$\x00\x00\x00\x00\x00\x00' -tRp3217 -sVlevels -p3218 -g24 -(g26 -S'Z\x13\x00\x00\x00\x00\x00\x00' -tRp3219 -sVmedicaid -p3220 -g24 -(g26 -S'\xf8\x14\x00\x00\x00\x00\x00\x00' -tRp3221 -sVnecessity -p3222 -g24 -(g26 -S'\x81\x16\x00\x00\x00\x00\x00\x00' -tRp3223 -sVnickname -p3224 -g24 -(g26 -S'\xbd\x16\x00\x00\x00\x00\x00\x00' -tRp3225 -sVstack -p3226 -g24 -(g26 -S'\xfa\x1f\x00\x00\x00\x00\x00\x00' -tRp3227 -sVfocal -p3228 -g24 -(g26 -S'u\r\x00\x00\x00\x00\x00\x00' -tRp3229 -sVrecent -p3230 -g24 -(g26 -S'\xa1\x1b\x00\x00\x00\x00\x00\x00' -tRp3231 -sVearly -p3232 -g24 -(g26 -S'\xc8\n\x00\x00\x00\x00\x00\x00' -tRp3233 -sVmakes -p3234 -g24 -(g26 -S'`\x14\x00\x00\x00\x00\x00\x00' -tRp3235 -sVpicks -p3236 -g24 -(g26 -S'\x11\x19\x00\x00\x00\x00\x00\x00' -tRp3237 -sVperson -p3238 -g24 -(g26 -S'\xc6\x18\x00\x00\x00\x00\x00\x00' -tRp3239 -sVkelly -p3240 -g24 -(g26 -S'u\x12\x00\x00\x00\x00\x00\x00' -tRp3241 -sVclearance -p3242 -g24 -(g26 -S'@\x06\x00\x00\x00\x00\x00\x00' -tRp3243 -sVleone -p3244 -g24 -(g26 -S'K\x13\x00\x00\x00\x00\x00\x00' -tRp3245 -sVsims -p3246 -g24 -(g26 -S'\xfa\x1e\x00\x00\x00\x00\x00\x00' -tRp3247 -sVtim -p3248 -g24 -(g26 -S'3"\x00\x00\x00\x00\x00\x00' -tRp3249 -sVmysql -p3250 -g24 -(g26 -S'G\x16\x00\x00\x00\x00\x00\x00' -tRp3251 -sVunto -p3252 -g24 -(g26 -S'\x87#\x00\x00\x00\x00\x00\x00' -tRp3253 -sVtin -p3254 -g24 -(g26 -S'<"\x00\x00\x00\x00\x00\x00' -tRp3255 -sVconclusions -p3256 -g24 -(g26 -S'*\x07\x00\x00\x00\x00\x00\x00' -tRp3257 -sVrebecca -p3258 -g24 -(g26 -S'\x95\x1b\x00\x00\x00\x00\x00\x00' -tRp3259 -sVadmission -p3260 -g24 -(g26 -S'\x91\x00\x00\x00\x00\x00\x00\x00' -tRp3261 -sVadvertisements -p3262 -g24 -(g26 -S'\xab\x00\x00\x00\x00\x00\x00\x00' -tRp3263 -sVchest -p3264 -g24 -(g26 -S'\xd1\x05\x00\x00\x00\x00\x00\x00' -tRp3265 -sVandorra -p3266 -g24 -(g26 -S'[\x01\x00\x00\x00\x00\x00\x00' -tRp3267 -sVrangers -p3268 -g24 -(g26 -S'T\x1b\x00\x00\x00\x00\x00\x00' -tRp3269 -sVparents -p3270 -g24 -(g26 -S'2\x18\x00\x00\x00\x00\x00\x00' -tRp3271 -sVlocation -p3272 -g24 -(g26 -S'\xd5\x13\x00\x00\x00\x00\x00\x00' -tRp3273 -sVhomeland -p3274 -g24 -(g26 -S'\x01\x10\x00\x00\x00\x00\x00\x00' -tRp3275 -sVrelevance -p3276 -g24 -(g26 -S'\x16\x1c\x00\x00\x00\x00\x00\x00' -tRp3277 -sVinput -p3278 -g24 -(g26 -S'+\x11\x00\x00\x00\x00\x00\x00' -tRp3279 -sVsubmissions -p3280 -g24 -(g26 -S'\xa2 \x00\x00\x00\x00\x00\x00' -tRp3281 -sVsurprised -p3282 -g24 -(g26 -S'\x08!\x00\x00\x00\x00\x00\x00' -tRp3283 -sVindonesian -p3284 -g24 -(g26 -S'\xf7\x10\x00\x00\x00\x00\x00\x00' -tRp3285 -sVaustralia -p3286 -g24 -(g26 -S'\x80\x02\x00\x00\x00\x00\x00\x00' -tRp3287 -sVvictims -p3288 -g24 -(g26 -S' $\x00\x00\x00\x00\x00\x00' -tRp3289 -sVemergency -p3290 -g24 -(g26 -S'<\x0b\x00\x00\x00\x00\x00\x00' -tRp3291 -sVformat -p3292 -g24 -(g26 -S'\xa3\r\x00\x00\x00\x00\x00\x00' -tRp3293 -sVcouple -p3294 -g24 -(g26 -S'\x1a\x08\x00\x00\x00\x00\x00\x00' -tRp3295 -sVinstructors -p3296 -g24 -(g26 -S'Q\x11\x00\x00\x00\x00\x00\x00' -tRp3297 -sVwives -p3298 -g24 -(g26 -S'8%\x00\x00\x00\x00\x00\x00' -tRp3299 -sVsuffering -p3300 -g24 -(g26 -S'\xc4 \x00\x00\x00\x00\x00\x00' -tRp3301 -sVquest -p3302 -g24 -(g26 -S'\x1d\x1b\x00\x00\x00\x00\x00\x00' -tRp3303 -sVblackjack -p3304 -g24 -(g26 -S'\xa2\x03\x00\x00\x00\x00\x00\x00' -tRp3305 -sVaerospace -p3306 -g24 -(g26 -S'\xba\x00\x00\x00\x00\x00\x00\x00' -tRp3307 -sVprojects -p3308 -g24 -(g26 -S'\x86\x1a\x00\x00\x00\x00\x00\x00' -tRp3309 -sVformal -p3310 -g24 -(g26 -S'\xa2\r\x00\x00\x00\x00\x00\x00' -tRp3311 -sVimposed -p3312 -g24 -(g26 -S'\xb4\x10\x00\x00\x00\x00\x00\x00' -tRp3313 -sVspine -p3314 -g24 -(g26 -S'\xce\x1f\x00\x00\x00\x00\x00\x00' -tRp3315 -sVchorus -p3316 -g24 -(g26 -S'\xec\x05\x00\x00\x00\x00\x00\x00' -tRp3317 -sVcommunications -p3318 -g24 -(g26 -S'\xd9\x06\x00\x00\x00\x00\x00\x00' -tRp3319 -sVcontinue -p3320 -g24 -(g26 -S'\xa0\x07\x00\x00\x00\x00\x00\x00' -tRp3321 -sVyields -p3322 -g24 -(g26 -S'\xa6%\x00\x00\x00\x00\x00\x00' -tRp3323 -sVtribes -p3324 -g24 -(g26 -S'\xf4"\x00\x00\x00\x00\x00\x00' -tRp3325 -sVdisorder -p3326 -g24 -(g26 -S'\x06\n\x00\x00\x00\x00\x00\x00' -tRp3327 -sVsuppliers -p3328 -g24 -(g26 -S'\xee \x00\x00\x00\x00\x00\x00' -tRp3329 -sVmethods -p3330 -g24 -(g26 -S'@\x15\x00\x00\x00\x00\x00\x00' -tRp3331 -sVsenate -p3332 -g24 -(g26 -S'@\x1e\x00\x00\x00\x00\x00\x00' -tRp3333 -sVspring -p3334 -g24 -(g26 -S'\xe5\x1f\x00\x00\x00\x00\x00\x00' -tRp3335 -sVmighty -p3336 -g24 -(g26 -S'_\x15\x00\x00\x00\x00\x00\x00' -tRp3337 -sVsight -p3338 -g24 -(g26 -S'\xdd\x1e\x00\x00\x00\x00\x00\x00' -tRp3339 -sVcurious -p3340 -g24 -(g26 -S'|\x08\x00\x00\x00\x00\x00\x00' -tRp3341 -sVsprint -p3342 -g24 -(g26 -S'\xe9\x1f\x00\x00\x00\x00\x00\x00' -tRp3343 -sVpale -p3344 -g24 -(g26 -S'\x0f\x18\x00\x00\x00\x00\x00\x00' -tRp3345 -sVfestivals -p3346 -g24 -(g26 -S'\xf0\x0c\x00\x00\x00\x00\x00\x00' -tRp3347 -sVbroadband -p3348 -g24 -(g26 -S'L\x04\x00\x00\x00\x00\x00\x00' -tRp3349 -sVveterinary -p3350 -g24 -(g26 -S'\x16$\x00\x00\x00\x00\x00\x00' -tRp3351 -sVnovelty -p3352 -g24 -(g26 -S'\xfd\x16\x00\x00\x00\x00\x00\x00' -tRp3353 -sVreligion -p3354 -g24 -(g26 -S'\x1c\x1c\x00\x00\x00\x00\x00\x00' -tRp3355 -sVassisted -p3356 -g24 -(g26 -S'2\x02\x00\x00\x00\x00\x00\x00' -tRp3357 -sVdating -p3358 -g24 -(g26 -S'\xc2\x08\x00\x00\x00\x00\x00\x00' -tRp3359 -sVtemple -p3360 -g24 -(g26 -S'\xad!\x00\x00\x00\x00\x00\x00' -tRp3361 -sVbd -p3362 -g24 -(g26 -S'\x14\x03\x00\x00\x00\x00\x00\x00' -tRp3363 -sVvarying -p3364 -g24 -(g26 -S'\xe6#\x00\x00\x00\x00\x00\x00' -tRp3365 -sVbg -p3366 -g24 -(g26 -S'l\x03\x00\x00\x00\x00\x00\x00' -tRp3367 -sVba -p3368 -g24 -(g26 -S'\xaf\x02\x00\x00\x00\x00\x00\x00' -tRp3369 -sVbb -p3370 -g24 -(g26 -S'\x0f\x03\x00\x00\x00\x00\x00\x00' -tRp3371 -sVbc -p3372 -g24 -(g26 -S'\x13\x03\x00\x00\x00\x00\x00\x00' -tRp3373 -sVbl -p3374 -g24 -(g26 -S'\x9f\x03\x00\x00\x00\x00\x00\x00' -tRp3375 -sVbm -p3376 -g24 -(g26 -S'\xca\x03\x00\x00\x00\x00\x00\x00' -tRp3377 -sVbo -p3378 -g24 -(g26 -S'\xcc\x03\x00\x00\x00\x00\x00\x00' -tRp3379 -sVagreement -p3380 -g24 -(g26 -S'\xdc\x00\x00\x00\x00\x00\x00\x00' -tRp3381 -sVbk -p3382 -g24 -(g26 -S'\x9e\x03\x00\x00\x00\x00\x00\x00' -tRp3383 -sVbt -p3384 -g24 -(g26 -S'm\x04\x00\x00\x00\x00\x00\x00' -tRp3385 -sVbw -p3386 -g24 -(g26 -S'\xac\x04\x00\x00\x00\x00\x00\x00' -tRp3387 -sVbp -p3388 -g24 -(g26 -S'\x11\x04\x00\x00\x00\x00\x00\x00' -tRp3389 -sVsanta -p3390 -g24 -(g26 -S'\x9e\x1d\x00\x00\x00\x00\x00\x00' -tRp3391 -sVbs -p3392 -g24 -(g26 -S'l\x04\x00\x00\x00\x00\x00\x00' -tRp3393 -sVrelating -p3394 -g24 -(g26 -S'\x08\x1c\x00\x00\x00\x00\x00\x00' -tRp3395 -sVluis -p3396 -g24 -(g26 -S'$\x14\x00\x00\x00\x00\x00\x00' -tRp3397 -sVwildlife -p3398 -g24 -(g26 -S'\x10%\x00\x00\x00\x00\x00\x00' -tRp3399 -sVcertificate -p3400 -g24 -(g26 -S't\x05\x00\x00\x00\x00\x00\x00' -tRp3401 -sVmelbourne -p3402 -g24 -(g26 -S'\x0b\x15\x00\x00\x00\x00\x00\x00' -tRp3403 -sVstuart -p3404 -g24 -(g26 -S'\x84 \x00\x00\x00\x00\x00\x00' -tRp3405 -sVflying -p3406 -g24 -(g26 -S'q\r\x00\x00\x00\x00\x00\x00' -tRp3407 -sVrepair -p3408 -g24 -(g26 -S'D\x1c\x00\x00\x00\x00\x00\x00' -tRp3409 -sVcomputational -p3410 -g24 -(g26 -S'\x15\x07\x00\x00\x00\x00\x00\x00' -tRp3411 -sVclinton -p3412 -g24 -(g26 -S'R\x06\x00\x00\x00\x00\x00\x00' -tRp3413 -sVcolorado -p3414 -g24 -(g26 -S'\xa4\x06\x00\x00\x00\x00\x00\x00' -tRp3415 -sVgarbage -p3416 -g24 -(g26 -S'0\x0e\x00\x00\x00\x00\x00\x00' -tRp3417 -sVterrorists -p3418 -g24 -(g26 -S'\xc6!\x00\x00\x00\x00\x00\x00' -tRp3419 -sVintl -p3420 -g24 -(g26 -S'\x8d\x11\x00\x00\x00\x00\x00\x00' -tRp3421 -sVintegral -p3422 -g24 -(g26 -S']\x11\x00\x00\x00\x00\x00\x00' -tRp3423 -sVservers -p3424 -g24 -(g26 -S'f\x1e\x00\x00\x00\x00\x00\x00' -tRp3425 -sVappropriate -p3426 -g24 -(g26 -S'\xc0\x01\x00\x00\x00\x00\x00\x00' -tRp3427 -sVtroubleshooting -p3428 -g24 -(g26 -S'\n#\x00\x00\x00\x00\x00\x00' -tRp3429 -sVprimarily -p3430 -g24 -(g26 -S'2\x1a\x00\x00\x00\x00\x00\x00' -tRp3431 -sVcontributor -p3432 -g24 -(g26 -S'\xb3\x07\x00\x00\x00\x00\x00\x00' -tRp3433 -sVcontrollers -p3434 -g24 -(g26 -S'\xb8\x07\x00\x00\x00\x00\x00\x00' -tRp3435 -sVkatie -p3436 -g24 -(g26 -S'j\x12\x00\x00\x00\x00\x00\x00' -tRp3437 -sVspan -p3438 -g24 -(g26 -S'\x9a\x1f\x00\x00\x00\x00\x00\x00' -tRp3439 -sVarcade -p3440 -g24 -(g26 -S'\xd7\x01\x00\x00\x00\x00\x00\x00' -tRp3441 -sVspam -p3442 -g24 -(g26 -S'\x99\x1f\x00\x00\x00\x00\x00\x00' -tRp3443 -sVspending -p3444 -g24 -(g26 -S'\xc6\x1f\x00\x00\x00\x00\x00\x00' -tRp3445 -sVapartments -p3446 -g24 -(g26 -S'\x9a\x01\x00\x00\x00\x00\x00\x00' -tRp3447 -sVspecifically -p3448 -g24 -(g26 -S'\xb4\x1f\x00\x00\x00\x00\x00\x00' -tRp3449 -sVcustom -p3450 -g24 -(g26 -S'\x87\x08\x00\x00\x00\x00\x00\x00' -tRp3451 -sVbios -p3452 -g24 -(g26 -S'\x8f\x03\x00\x00\x00\x00\x00\x00' -tRp3453 -sVdownloadable -p3454 -g24 -(g26 -S'k\n\x00\x00\x00\x00\x00\x00' -tRp3455 -sVthriller -p3456 -g24 -(g26 -S'\x14"\x00\x00\x00\x00\x00\x00' -tRp3457 -sVsuit -p3458 -g24 -(g26 -S'\xcf \x00\x00\x00\x00\x00\x00' -tRp3459 -sVspas -p3460 -g24 -(g26 -S'\xa0\x1f\x00\x00\x00\x00\x00\x00' -tRp3461 -sVopens -p3462 -g24 -(g26 -S'\x85\x17\x00\x00\x00\x00\x00\x00' -tRp3463 -sVhawaiian -p3464 -g24 -(g26 -S'}\x0f\x00\x00\x00\x00\x00\x00' -tRp3465 -sVjewish -p3466 -g24 -(g26 -S'\x17\x12\x00\x00\x00\x00\x00\x00' -tRp3467 -sVposter -p3468 -g24 -(g26 -S'\xc8\x19\x00\x00\x00\x00\x00\x00' -tRp3469 -sVpastor -p3470 -g24 -(g26 -S'a\x18\x00\x00\x00\x00\x00\x00' -tRp3471 -sVatlantic -p3472 -g24 -(g26 -S'O\x02\x00\x00\x00\x00\x00\x00' -tRp3473 -sVcompetition -p3474 -g24 -(g26 -S'\xf0\x06\x00\x00\x00\x00\x00\x00' -tRp3475 -sVatom -p3476 -g24 -(g26 -S'T\x02\x00\x00\x00\x00\x00\x00' -tRp3477 -sVline -p3478 -g24 -(g26 -S'\x96\x13\x00\x00\x00\x00\x00\x00' -tRp3479 -sVconsiderable -p3480 -g24 -(g26 -S'e\x07\x00\x00\x00\x00\x00\x00' -tRp3481 -sVposted -p3482 -g24 -(g26 -S'\xc7\x19\x00\x00\x00\x00\x00\x00' -tRp3483 -sVcia -p3484 -g24 -(g26 -S'\x02\x06\x00\x00\x00\x00\x00\x00' -tRp3485 -sVut -p3486 -g24 -(g26 -S'\xb6#\x00\x00\x00\x00\x00\x00' -tRp3487 -sVuw -p3488 -g24 -(g26 -S'\xbf#\x00\x00\x00\x00\x00\x00' -tRp3489 -sVuv -p3490 -g24 -(g26 -S'\xbe#\x00\x00\x00\x00\x00\x00' -tRp3491 -sVcio -p3492 -g24 -(g26 -S'\x0b\x06\x00\x00\x00\x00\x00\x00' -tRp3493 -sVur -p3494 -g24 -(g26 -S'\x9a#\x00\x00\x00\x00\x00\x00' -tRp3495 -sVum -p3496 -g24 -(g26 -S'U#\x00\x00\x00\x00\x00\x00' -tRp3497 -sVul -p3498 -g24 -(g26 -S'P#\x00\x00\x00\x00\x00\x00' -tRp3499 -sVui -p3500 -g24 -(g26 -S'M#\x00\x00\x00\x00\x00\x00' -tRp3501 -sVuh -p3502 -g24 -(g26 -S'L#\x00\x00\x00\x00\x00\x00' -tRp3503 -sVmature -p3504 -g24 -(g26 -S'\xd3\x14\x00\x00\x00\x00\x00\x00' -tRp3505 -sVcontinuously -p3506 -g24 -(g26 -S'\xa6\x07\x00\x00\x00\x00\x00\x00' -tRp3507 -sVmedical -p3508 -g24 -(g26 -S'\xf9\x14\x00\x00\x00\x00\x00\x00' -tRp3509 -sVuc -p3510 -g24 -(g26 -S'I#\x00\x00\x00\x00\x00\x00' -tRp3511 -sVaerial -p3512 -g24 -(g26 -S'\xb9\x00\x00\x00\x00\x00\x00\x00' -tRp3513 -sVchad -p3514 -g24 -(g26 -S'~\x05\x00\x00\x00\x00\x00\x00' -tRp3515 -sVinkjet -p3516 -g24 -(g26 -S'"\x11\x00\x00\x00\x00\x00\x00' -tRp3517 -sVdefined -p3518 -g24 -(g26 -S'\x0e\t\x00\x00\x00\x00\x00\x00' -tRp3519 -sVlikewise -p3520 -g24 -(g26 -S'\x89\x13\x00\x00\x00\x00\x00\x00' -tRp3521 -sVchan -p3522 -g24 -(g26 -S'\x8f\x05\x00\x00\x00\x00\x00\x00' -tRp3523 -sVchar -p3524 -g24 -(g26 -S'\x9e\x05\x00\x00\x00\x00\x00\x00' -tRp3525 -sVdiverse -p3526 -g24 -(g26 -S'$\n\x00\x00\x00\x00\x00\x00' -tRp3527 -sVchat -p3528 -g24 -(g26 -S'\xb9\x05\x00\x00\x00\x00\x00\x00' -tRp3529 -sVdefines -p3530 -g24 -(g26 -S'\x0f\t\x00\x00\x00\x00\x00\x00' -tRp3531 -sVphantom -p3532 -g24 -(g26 -S'\xe0\x18\x00\x00\x00\x00\x00\x00' -tRp3533 -sVcodes -p3534 -g24 -(g26 -S'~\x06\x00\x00\x00\x00\x00\x00' -tRp3535 -sVedwards -p3536 -g24 -(g26 -S'\x03\x0b\x00\x00\x00\x00\x00\x00' -tRp3537 -sVinvalid -p3538 -g24 -(g26 -S'\x96\x11\x00\x00\x00\x00\x00\x00' -tRp3539 -sVpreventing -p3540 -g24 -(g26 -S'&\x1a\x00\x00\x00\x00\x00\x00' -tRp3541 -sVpoints -p3542 -g24 -(g26 -S'\x7f\x19\x00\x00\x00\x00\x00\x00' -tRp3543 -sVactors -p3544 -g24 -(g26 -S'd\x00\x00\x00\x00\x00\x00\x00' -tRp3545 -sVrevision -p3546 -g24 -(g26 -S'\xd2\x1c\x00\x00\x00\x00\x00\x00' -tRp3547 -sVelements -p3548 -g24 -(g26 -S'(\x0b\x00\x00\x00\x00\x00\x00' -tRp3549 -sVprovided -p3550 -g24 -(g26 -S'\xbc\x1a\x00\x00\x00\x00\x00\x00' -tRp3551 -sVrobots -p3552 -g24 -(g26 -S'\x13\x1d\x00\x00\x00\x00\x00\x00' -tRp3553 -sVlucia -p3554 -g24 -(g26 -S'\x1f\x14\x00\x00\x00\x00\x00\x00' -tRp3555 -sVsides -p3556 -g24 -(g26 -S'\xd8\x1e\x00\x00\x00\x00\x00\x00' -tRp3557 -sVlang -p3558 -g24 -(g26 -S'\xe2\x12\x00\x00\x00\x00\x00\x00' -tRp3559 -sVlane -p3560 -g24 -(g26 -S'\xe0\x12\x00\x00\x00\x00\x00\x00' -tRp3561 -sVland -p3562 -g24 -(g26 -S'\xdb\x12\x00\x00\x00\x00\x00\x00' -tRp3563 -sVfighter -p3564 -g24 -(g26 -S'\xff\x0c\x00\x00\x00\x00\x00\x00' -tRp3565 -sValgorithm -p3566 -g24 -(g26 -S'\n\x01\x00\x00\x00\x00\x00\x00' -tRp3567 -sVmailing -p3568 -g24 -(g26 -S'M\x14\x00\x00\x00\x00\x00\x00' -tRp3569 -sVage -p3570 -g24 -(g26 -S'\xce\x00\x00\x00\x00\x00\x00\x00' -tRp3571 -sVholes -p3572 -g24 -(g26 -S'\xf6\x0f\x00\x00\x00\x00\x00\x00' -tRp3573 -sVwalked -p3574 -g24 -(g26 -S'\x89$\x00\x00\x00\x00\x00\x00' -tRp3575 -sVbeverage -p3576 -g24 -(g26 -S'i\x03\x00\x00\x00\x00\x00\x00' -tRp3577 -sVincomplete -p3578 -g24 -(g26 -S'\xd1\x10\x00\x00\x00\x00\x00\x00' -tRp3579 -sVenrolled -p3580 -g24 -(g26 -S'\x88\x0b\x00\x00\x00\x00\x00\x00' -tRp3581 -sVoracle -p3582 -g24 -(g26 -S'\xa3\x17\x00\x00\x00\x00\x00\x00' -tRp3583 -sVfresh -p3584 -g24 -(g26 -S'\xe1\r\x00\x00\x00\x00\x00\x00' -tRp3585 -sVhaving -p3586 -g24 -(g26 -S'{\x0f\x00\x00\x00\x00\x00\x00' -tRp3587 -sVessay -p3588 -g24 -(g26 -S'\xc9\x0b\x00\x00\x00\x00\x00\x00' -tRp3589 -sVhampton -p3590 -g24 -(g26 -S'E\x0f\x00\x00\x00\x00\x00\x00' -tRp3591 -sVcode -p3592 -g24 -(g26 -S'}\x06\x00\x00\x00\x00\x00\x00' -tRp3593 -sVpartial -p3594 -g24 -(g26 -S';\x18\x00\x00\x00\x00\x00\x00' -tRp3595 -sVadvisory -p3596 -g24 -(g26 -S'\xb4\x00\x00\x00\x00\x00\x00\x00' -tRp3597 -sVscratch -p3598 -g24 -(g26 -S'\xed\x1d\x00\x00\x00\x00\x00\x00' -tRp3599 -sVresults -p3600 -g24 -(g26 -S'\xad\x1c\x00\x00\x00\x00\x00\x00' -tRp3601 -sVexisting -p3602 -g24 -(g26 -S'4\x0c\x00\x00\x00\x00\x00\x00' -tRp3603 -sVhighways -p3604 -g24 -(g26 -S'\xd2\x0f\x00\x00\x00\x00\x00\x00' -tRp3605 -sVstops -p3606 -g24 -(g26 -S'R \x00\x00\x00\x00\x00\x00' -tRp3607 -sVbroader -p3608 -g24 -(g26 -S'O\x04\x00\x00\x00\x00\x00\x00' -tRp3609 -sVgossip -p3610 -g24 -(g26 -S'\xb9\x0e\x00\x00\x00\x00\x00\x00' -tRp3611 -sVcenters -p3612 -g24 -(g26 -S'h\x05\x00\x00\x00\x00\x00\x00' -tRp3613 -sVbiol -p3614 -g24 -(g26 -S'\x8c\x03\x00\x00\x00\x00\x00\x00' -tRp3615 -sVturkish -p3616 -g24 -(g26 -S'/#\x00\x00\x00\x00\x00\x00' -tRp3617 -sViii -p3618 -g24 -(g26 -S'\x8c\x10\x00\x00\x00\x00\x00\x00' -tRp3619 -sVconcerned -p3620 -g24 -(g26 -S'"\x07\x00\x00\x00\x00\x00\x00' -tRp3621 -sVyoung -p3622 -g24 -(g26 -S'\xac%\x00\x00\x00\x00\x00\x00' -tRp3623 -sVsend -p3624 -g24 -(g26 -S'C\x1e\x00\x00\x00\x00\x00\x00' -tRp3625 -sVsubscription -p3626 -g24 -(g26 -S'\xa9 \x00\x00\x00\x00\x00\x00' -tRp3627 -sVpostings -p3628 -g24 -(g26 -S'\xcb\x19\x00\x00\x00\x00\x00\x00' -tRp3629 -sVresources -p3630 -g24 -(g26 -S'\x8f\x1c\x00\x00\x00\x00\x00\x00' -tRp3631 -sVuploaded -p3632 -g24 -(g26 -S'\x94#\x00\x00\x00\x00\x00\x00' -tRp3633 -sVjurisdiction -p3634 -g24 -(g26 -S'Y\x12\x00\x00\x00\x00\x00\x00' -tRp3635 -sVgarden -p3636 -g24 -(g26 -S'2\x0e\x00\x00\x00\x00\x00\x00' -tRp3637 -sVtulsa -p3638 -g24 -(g26 -S'%#\x00\x00\x00\x00\x00\x00' -tRp3639 -sVcontinues -p3640 -g24 -(g26 -S'\xa2\x07\x00\x00\x00\x00\x00\x00' -tRp3641 -sVmixing -p3642 -g24 -(g26 -S'\xa5\x15\x00\x00\x00\x00\x00\x00' -tRp3643 -sVdecorating -p3644 -g24 -(g26 -S'\xf7\x08\x00\x00\x00\x00\x00\x00' -tRp3645 -sVending -p3646 -g24 -(g26 -S'f\x0b\x00\x00\x00\x00\x00\x00' -tRp3647 -sVcontinued -p3648 -g24 -(g26 -S'\xa1\x07\x00\x00\x00\x00\x00\x00' -tRp3649 -sVminerals -p3650 -g24 -(g26 -S'y\x15\x00\x00\x00\x00\x00\x00' -tRp3651 -sVcategories -p3652 -g24 -(g26 -S'>\x05\x00\x00\x00\x00\x00\x00' -tRp3653 -sVtimely -p3654 -g24 -(g26 -S'7"\x00\x00\x00\x00\x00\x00' -tRp3655 -sVmagic -p3656 -g24 -(g26 -S'C\x14\x00\x00\x00\x00\x00\x00' -tRp3657 -sVharbor -p3658 -g24 -(g26 -S'`\x0f\x00\x00\x00\x00\x00\x00' -tRp3659 -sVexperiencing -p3660 -g24 -(g26 -S'K\x0c\x00\x00\x00\x00\x00\x00' -tRp3661 -sVeve -p3662 -g24 -(g26 -S'\xf4\x0b\x00\x00\x00\x00\x00\x00' -tRp3663 -sVfewer -p3664 -g24 -(g26 -S'\xf3\x0c\x00\x00\x00\x00\x00\x00' -tRp3665 -sVtry -p3666 -g24 -(g26 -S'\x18#\x00\x00\x00\x00\x00\x00' -tRp3667 -sVrace -p3668 -g24 -(g26 -S'1\x1b\x00\x00\x00\x00\x00\x00' -tRp3669 -sVobesity -p3670 -g24 -(g26 -S'&\x17\x00\x00\x00\x00\x00\x00' -tRp3671 -sVrack -p3672 -g24 -(g26 -S'6\x1b\x00\x00\x00\x00\x00\x00' -tRp3673 -sVlogistics -p3674 -g24 -(g26 -S'\xe5\x13\x00\x00\x00\x00\x00\x00' -tRp3675 -sVpledge -p3676 -g24 -(g26 -S'c\x19\x00\x00\x00\x00\x00\x00' -tRp3677 -sVmediterranean -p3678 -g24 -(g26 -S'\x01\x15\x00\x00\x00\x00\x00\x00' -tRp3679 -sVlicensed -p3680 -g24 -(g26 -S'q\x13\x00\x00\x00\x00\x00\x00' -tRp3681 -sVrecruitment -p3682 -g24 -(g26 -S'\xc0\x1b\x00\x00\x00\x00\x00\x00' -tRp3683 -sVvideo -p3684 -g24 -(g26 -S'&$\x00\x00\x00\x00\x00\x00' -tRp3685 -sVenclosed -p3686 -g24 -(g26 -S'W\x0b\x00\x00\x00\x00\x00\x00' -tRp3687 -sVequal -p3688 -g24 -(g26 -S'\xaf\x0b\x00\x00\x00\x00\x00\x00' -tRp3689 -sVlicenses -p3690 -g24 -(g26 -S'r\x13\x00\x00\x00\x00\x00\x00' -tRp3691 -sVassembly -p3692 -g24 -(g26 -S'#\x02\x00\x00\x00\x00\x00\x00' -tRp3693 -sVdynamics -p3694 -g24 -(g26 -S'\xc0\n\x00\x00\x00\x00\x00\x00' -tRp3695 -sVodd -p3696 -g24 -(g26 -S'K\x17\x00\x00\x00\x00\x00\x00' -tRp3697 -sVvictor -p3698 -g24 -(g26 -S'!$\x00\x00\x00\x00\x00\x00' -tRp3699 -sVindex -p3700 -g24 -(g26 -S'\xe0\x10\x00\x00\x00\x00\x00\x00' -tRp3701 -sVdirective -p3702 -g24 -(g26 -S'\xd5\t\x00\x00\x00\x00\x00\x00' -tRp3703 -sVmultimedia -p3704 -g24 -(g26 -S')\x16\x00\x00\x00\x00\x00\x00' -tRp3705 -sVexpressed -p3706 -g24 -(g26 -S'g\x0c\x00\x00\x00\x00\x00\x00' -tRp3707 -sVrichmond -p3708 -g24 -(g26 -S'\xe7\x1c\x00\x00\x00\x00\x00\x00' -tRp3709 -sVconsistently -p3710 -g24 -(g26 -S'n\x07\x00\x00\x00\x00\x00\x00' -tRp3711 -sVindian -p3712 -g24 -(g26 -S'\xe4\x10\x00\x00\x00\x00\x00\x00' -tRp3713 -sVtwins -p3714 -g24 -(g26 -S'>#\x00\x00\x00\x00\x00\x00' -tRp3715 -sVfirms -p3716 -g24 -(g26 -S'4\r\x00\x00\x00\x00\x00\x00' -tRp3717 -sVbird -p3718 -g24 -(g26 -S'\x91\x03\x00\x00\x00\x00\x00\x00' -tRp3719 -sVled -p3720 -g24 -(g26 -S'/\x13\x00\x00\x00\x00\x00\x00' -tRp3721 -sVlee -p3722 -g24 -(g26 -S'0\x13\x00\x00\x00\x00\x00\x00' -tRp3723 -sVleg -p3724 -g24 -(g26 -S'3\x13\x00\x00\x00\x00\x00\x00' -tRp3725 -sVrespectively -p3726 -g24 -(g26 -S'\x93\x1c\x00\x00\x00\x00\x00\x00' -tRp3727 -sVgathered -p3728 -g24 -(g26 -S'>\x0e\x00\x00\x00\x00\x00\x00' -tRp3729 -sVpunch -p3730 -g24 -(g26 -S'\xe7\x1a\x00\x00\x00\x00\x00\x00' -tRp3731 -sVlen -p3732 -g24 -(g26 -S'A\x13\x00\x00\x00\x00\x00\x00' -tRp3733 -sVleo -p3734 -g24 -(g26 -S'H\x13\x00\x00\x00\x00\x00\x00' -tRp3735 -sVles -p3736 -g24 -(g26 -S'L\x13\x00\x00\x00\x00\x00\x00' -tRp3737 -sVpoverty -p3738 -g24 -(g26 -S'\xd9\x19\x00\x00\x00\x00\x00\x00' -tRp3739 -sVleu -p3740 -g24 -(g26 -S'X\x13\x00\x00\x00\x00\x00\x00' -tRp3741 -sVlicence -p3742 -g24 -(g26 -S'o\x13\x00\x00\x00\x00\x00\x00' -tRp3743 -sVconsideration -p3744 -g24 -(g26 -S'f\x07\x00\x00\x00\x00\x00\x00' -tRp3745 -sVtuition -p3746 -g24 -(g26 -S'$#\x00\x00\x00\x00\x00\x00' -tRp3747 -sVphysiology -p3748 -g24 -(g26 -S'\t\x19\x00\x00\x00\x00\x00\x00' -tRp3749 -sVgreat -p3750 -g24 -(g26 -S'\xeb\x0e\x00\x00\x00\x00\x00\x00' -tRp3751 -sVengage -p3752 -g24 -(g26 -S'p\x0b\x00\x00\x00\x00\x00\x00' -tRp3753 -sVtechnical -p3754 -g24 -(g26 -S'\x8c!\x00\x00\x00\x00\x00\x00' -tRp3755 -sVinvolved -p3756 -g24 -(g26 -S'\xae\x11\x00\x00\x00\x00\x00\x00' -tRp3757 -sVcasino -p3758 -g24 -(g26 -S'0\x05\x00\x00\x00\x00\x00\x00' -tRp3759 -sVrehabilitation -p3760 -g24 -(g26 -S'\x01\x1c\x00\x00\x00\x00\x00\x00' -tRp3761 -sVheadline -p3762 -g24 -(g26 -S'\x8d\x0f\x00\x00\x00\x00\x00\x00' -tRp3763 -sVsurvey -p3764 -g24 -(g26 -S'\x0f!\x00\x00\x00\x00\x00\x00' -tRp3765 -sVinsulin -p3766 -g24 -(g26 -S'W\x11\x00\x00\x00\x00\x00\x00' -tRp3767 -sVderby -p3768 -g24 -(g26 -S'T\t\x00\x00\x00\x00\x00\x00' -tRp3769 -sVopinion -p3770 -g24 -(g26 -S'\x90\x17\x00\x00\x00\x00\x00\x00' -tRp3771 -sVresidents -p3772 -g24 -(g26 -S'\x84\x1c\x00\x00\x00\x00\x00\x00' -tRp3773 -sVstephanie -p3774 -g24 -(g26 -S'8 \x00\x00\x00\x00\x00\x00' -tRp3775 -sVmaker -p3776 -g24 -(g26 -S'^\x14\x00\x00\x00\x00\x00\x00' -tRp3777 -sVinvolves -p3778 -g24 -(g26 -S'\xb0\x11\x00\x00\x00\x00\x00\x00' -tRp3779 -sVthats -p3780 -g24 -(g26 -S'\xe1!\x00\x00\x00\x00\x00\x00' -tRp3781 -sVholmes -p3782 -g24 -(g26 -S'\xfd\x0f\x00\x00\x00\x00\x00\x00' -tRp3783 -sVfirefox -p3784 -g24 -(g26 -S'.\r\x00\x00\x00\x00\x00\x00' -tRp3785 -sVoutcomes -p3786 -g24 -(g26 -S'\xce\x17\x00\x00\x00\x00\x00\x00' -tRp3787 -sVtools -p3788 -g24 -(g26 -S'o"\x00\x00\x00\x00\x00\x00' -tRp3789 -sVstanding -p3790 -g24 -(g26 -S'\t \x00\x00\x00\x00\x00\x00' -tRp3791 -sVconfidence -p3792 -g24 -(g26 -S':\x07\x00\x00\x00\x00\x00\x00' -tRp3793 -sVandreas -p3794 -g24 -(g26 -S']\x01\x00\x00\x00\x00\x00\x00' -tRp3795 -sVzip -p3796 -g24 -(g26 -S'\xbc%\x00\x00\x00\x00\x00\x00' -tRp3797 -sVillegal -p3798 -g24 -(g26 -S'\x8f\x10\x00\x00\x00\x00\x00\x00' -tRp3799 -sVtheme -p3800 -g24 -(g26 -S'\xe8!\x00\x00\x00\x00\x00\x00' -tRp3801 -sVduplicate -p3802 -g24 -(g26 -S'\xb1\n\x00\x00\x00\x00\x00\x00' -tRp3803 -sVdoubt -p3804 -g24 -(g26 -S'e\n\x00\x00\x00\x00\x00\x00' -tRp3805 -sVtahoe -p3806 -g24 -(g26 -S'T!\x00\x00\x00\x00\x00\x00' -tRp3807 -sVtouched -p3808 -g24 -(g26 -S'|"\x00\x00\x00\x00\x00\x00' -tRp3809 -sVpencil -p3810 -g24 -(g26 -S'\x96\x18\x00\x00\x00\x00\x00\x00' -tRp3811 -sVslim -p3812 -g24 -(g26 -S'1\x1f\x00\x00\x00\x00\x00\x00' -tRp3813 -sVbabe -p3814 -g24 -(g26 -S'\xb0\x02\x00\x00\x00\x00\x00\x00' -tRp3815 -sVsrc -p3816 -g24 -(g26 -S'\xf3\x1f\x00\x00\x00\x00\x00\x00' -tRp3817 -sVoccurred -p3818 -g24 -(g26 -S'C\x17\x00\x00\x00\x00\x00\x00' -tRp3819 -sVfolks -p3820 -g24 -(g26 -S'\x80\r\x00\x00\x00\x00\x00\x00' -tRp3821 -sVcarrying -p3822 -g24 -(g26 -S'!\x05\x00\x00\x00\x00\x00\x00' -tRp3823 -sVbaby -p3824 -g24 -(g26 -S'\xb3\x02\x00\x00\x00\x00\x00\x00' -tRp3825 -sVpromotional -p3826 -g24 -(g26 -S'\x92\x1a\x00\x00\x00\x00\x00\x00' -tRp3827 -sVnetscape -p3828 -g24 -(g26 -S'\x99\x16\x00\x00\x00\x00\x00\x00' -tRp3829 -sVcharity -p3830 -g24 -(g26 -S'\xac\x05\x00\x00\x00\x00\x00\x00' -tRp3831 -sVcustomer -p3832 -g24 -(g26 -S'\x88\x08\x00\x00\x00\x00\x00\x00' -tRp3833 -sVballs -p3834 -g24 -(g26 -S'\xd0\x02\x00\x00\x00\x00\x00\x00' -tRp3835 -sVanimals -p3836 -g24 -(g26 -S'j\x01\x00\x00\x00\x00\x00\x00' -tRp3837 -sVintegrating -p3838 -g24 -(g26 -S'`\x11\x00\x00\x00\x00\x00\x00' -tRp3839 -sVchallenge -p3840 -g24 -(g26 -S'\x84\x05\x00\x00\x00\x00\x00\x00' -tRp3841 -sVclients -p3842 -g24 -(g26 -S'J\x06\x00\x00\x00\x00\x00\x00' -tRp3843 -sVpour -p3844 -g24 -(g26 -S'\xd8\x19\x00\x00\x00\x00\x00\x00' -tRp3845 -sVreproduce -p3846 -g24 -(g26 -S'b\x1c\x00\x00\x00\x00\x00\x00' -tRp3847 -sVjeep -p3848 -g24 -(g26 -S'\x04\x12\x00\x00\x00\x00\x00\x00' -tRp3849 -sVpublications -p3850 -g24 -(g26 -S'\xd6\x1a\x00\x00\x00\x00\x00\x00' -tRp3851 -sVdrill -p3852 -g24 -(g26 -S'\x8a\n\x00\x00\x00\x00\x00\x00' -tRp3853 -sVwearing -p3854 -g24 -(g26 -S'\xcd$\x00\x00\x00\x00\x00\x00' -tRp3855 -sVbent -p3856 -g24 -(g26 -S'Y\x03\x00\x00\x00\x00\x00\x00' -tRp3857 -sVprocess -p3858 -g24 -(g26 -S'\\\x1a\x00\x00\x00\x00\x00\x00' -tRp3859 -sVlock -p3860 -g24 -(g26 -S'\xd8\x13\x00\x00\x00\x00\x00\x00' -tRp3861 -sVbenz -p3862 -g24 -(g26 -S'Z\x03\x00\x00\x00\x00\x00\x00' -tRp3863 -sVpurposes -p3864 -g24 -(g26 -S'\xf3\x1a\x00\x00\x00\x00\x00\x00' -tRp3865 -sVpieces -p3866 -g24 -(g26 -S'\x19\x19\x00\x00\x00\x00\x00\x00' -tRp3867 -sVhigh -p3868 -g24 -(g26 -S'\xc8\x0f\x00\x00\x00\x00\x00\x00' -tRp3869 -sVbend -p3870 -g24 -(g26 -S'R\x03\x00\x00\x00\x00\x00\x00' -tRp3871 -sVslip -p3872 -g24 -(g26 -S'2\x1f\x00\x00\x00\x00\x00\x00' -tRp3873 -sVblvd -p3874 -g24 -(g26 -S'\xc9\x03\x00\x00\x00\x00\x00\x00' -tRp3875 -sVreynolds -p3876 -g24 -(g26 -S'\xd8\x1c\x00\x00\x00\x00\x00\x00' -tRp3877 -sVeducational -p3878 -g24 -(g26 -S'\x00\x0b\x00\x00\x00\x00\x00\x00' -tRp3879 -sVnamespace -p3880 -g24 -(g26 -S'R\x16\x00\x00\x00\x00\x00\x00' -tRp3881 -sVdelay -p3882 -g24 -(g26 -S'\x18\t\x00\x00\x00\x00\x00\x00' -tRp3883 -sVanimal -p3884 -g24 -(g26 -S'i\x01\x00\x00\x00\x00\x00\x00' -tRp3885 -sVcomedy -p3886 -g24 -(g26 -S'\xb6\x06\x00\x00\x00\x00\x00\x00' -tRp3887 -sVestablishment -p3888 -g24 -(g26 -S'\xd4\x0b\x00\x00\x00\x00\x00\x00' -tRp3889 -sVoz -p3890 -g24 -(g26 -S'\xee\x17\x00\x00\x00\x00\x00\x00' -tRp3891 -sVmpegs -p3892 -g24 -(g26 -S'\x17\x16\x00\x00\x00\x00\x00\x00' -tRp3893 -sVblocks -p3894 -g24 -(g26 -S'\xb6\x03\x00\x00\x00\x00\x00\x00' -tRp3895 -sVwallpaper -p3896 -g24 -(g26 -S'\x90$\x00\x00\x00\x00\x00\x00' -tRp3897 -sVtied -p3898 -g24 -(g26 -S'("\x00\x00\x00\x00\x00\x00' -tRp3899 -sVpaintball -p3900 -g24 -(g26 -S'\x06\x18\x00\x00\x00\x00\x00\x00' -tRp3901 -sVnotebook -p3902 -g24 -(g26 -S'\xeb\x16\x00\x00\x00\x00\x00\x00' -tRp3903 -sVfits -p3904 -g24 -(g26 -S'?\r\x00\x00\x00\x00\x00\x00' -tRp3905 -sVties -p3906 -g24 -(g26 -S'*"\x00\x00\x00\x00\x00\x00' -tRp3907 -sVhawk -p3908 -g24 -(g26 -S'~\x0f\x00\x00\x00\x00\x00\x00' -tRp3909 -sVracks -p3910 -g24 -(g26 -S'7\x1b\x00\x00\x00\x00\x00\x00' -tRp3911 -sVefficiently -p3912 -g24 -(g26 -S'\r\x0b\x00\x00\x00\x00\x00\x00' -tRp3913 -sVtomato -p3914 -g24 -(g26 -S'^"\x00\x00\x00\x00\x00\x00' -tRp3915 -sVrealized -p3916 -g24 -(g26 -S'\x87\x1b\x00\x00\x00\x00\x00\x00' -tRp3917 -sVot -p3918 -g24 -(g26 -S'\xc9\x17\x00\x00\x00\x00\x00\x00' -tRp3919 -sVbackup -p3920 -g24 -(g26 -S'\xb9\x02\x00\x00\x00\x00\x00\x00' -tRp3921 -sVcounter -p3922 -g24 -(g26 -S'\x12\x08\x00\x00\x00\x00\x00\x00' -tRp3923 -sVrobot -p3924 -g24 -(g26 -S'\x12\x1d\x00\x00\x00\x00\x00\x00' -tRp3925 -sVelement -p3926 -g24 -(g26 -S'&\x0b\x00\x00\x00\x00\x00\x00' -tRp3927 -sVcommodities -p3928 -g24 -(g26 -S'\xd1\x06\x00\x00\x00\x00\x00\x00' -tRp3929 -sVnancy -p3930 -g24 -(g26 -S'T\x16\x00\x00\x00\x00\x00\x00' -tRp3931 -sValloy -p3932 -g24 -(g26 -S'"\x01\x00\x00\x00\x00\x00\x00' -tRp3933 -sVvolunteers -p3934 -g24 -(g26 -S'k$\x00\x00\x00\x00\x00\x00' -tRp3935 -sVcounted -p3936 -g24 -(g26 -S'\x11\x08\x00\x00\x00\x00\x00\x00' -tRp3937 -sVhouston -p3938 -g24 -(g26 -S';\x10\x00\x00\x00\x00\x00\x00' -tRp3939 -sVholds -p3940 -g24 -(g26 -S'\xf4\x0f\x00\x00\x00\x00\x00\x00' -tRp3941 -sVproducer -p3942 -g24 -(g26 -S'e\x1a\x00\x00\x00\x00\x00\x00' -tRp3943 -sVproduces -p3944 -g24 -(g26 -S'g\x1a\x00\x00\x00\x00\x00\x00' -tRp3945 -sVinsight -p3946 -g24 -(g26 -S'7\x11\x00\x00\x00\x00\x00\x00' -tRp3947 -sVproduced -p3948 -g24 -(g26 -S'd\x1a\x00\x00\x00\x00\x00\x00' -tRp3949 -sVmotorcycle -p3950 -g24 -(g26 -S'\xff\x15\x00\x00\x00\x00\x00\x00' -tRp3951 -sVwarren -p3952 -g24 -(g26 -S'\xab$\x00\x00\x00\x00\x00\x00' -tRp3953 -sVperfect -p3954 -g24 -(g26 -S'\xab\x18\x00\x00\x00\x00\x00\x00' -tRp3955 -sVchosen -p3956 -g24 -(g26 -S'\xee\x05\x00\x00\x00\x00\x00\x00' -tRp3957 -sVsurgeons -p3958 -g24 -(g26 -S'\x02!\x00\x00\x00\x00\x00\x00' -tRp3959 -sVvaries -p3960 -g24 -(g26 -S'\xe1#\x00\x00\x00\x00\x00\x00' -tRp3961 -sVdegrees -p3962 -g24 -(g26 -S'\x15\t\x00\x00\x00\x00\x00\x00' -tRp3963 -sVcommunication -p3964 -g24 -(g26 -S'\xd8\x06\x00\x00\x00\x00\x00\x00' -tRp3965 -sVpuerto -p3966 -g24 -(g26 -S'\xe0\x1a\x00\x00\x00\x00\x00\x00' -tRp3967 -sVattachment -p3968 -g24 -(g26 -S'X\x02\x00\x00\x00\x00\x00\x00' -tRp3969 -sVphysicians -p3970 -g24 -(g26 -S'\x07\x19\x00\x00\x00\x00\x00\x00' -tRp3971 -sVdesigns -p3972 -g24 -(g26 -S'g\t\x00\x00\x00\x00\x00\x00' -tRp3973 -sVpython -p3974 -g24 -(g26 -S'\x01\x1b\x00\x00\x00\x00\x00\x00' -tRp3975 -sVdocs -p3976 -g24 -(g26 -S'8\n\x00\x00\x00\x00\x00\x00' -tRp3977 -sVoutlined -p3978 -g24 -(g26 -S'\xd5\x17\x00\x00\x00\x00\x00\x00' -tRp3979 -sVearn -p3980 -g24 -(g26 -S'\xc9\n\x00\x00\x00\x00\x00\x00' -tRp3981 -sVmassachusetts -p3982 -g24 -(g26 -S'\xb7\x14\x00\x00\x00\x00\x00\x00' -tRp3983 -sVnewman -p3984 -g24 -(g26 -S'\xa8\x16\x00\x00\x00\x00\x00\x00' -tRp3985 -sVdock -p3986 -g24 -(g26 -S'7\n\x00\x00\x00\x00\x00\x00' -tRp3987 -sVsnake -p3988 -g24 -(g26 -S'M\x1f\x00\x00\x00\x00\x00\x00' -tRp3989 -sVkiss -p3990 -g24 -(g26 -S'\x9e\x12\x00\x00\x00\x00\x00\x00' -tRp3991 -sVrotation -p3992 -g24 -(g26 -S';\x1d\x00\x00\x00\x00\x00\x00' -tRp3993 -sVcage -p3994 -g24 -(g26 -S'\xbc\x04\x00\x00\x00\x00\x00\x00' -tRp3995 -sVrealize -p3996 -g24 -(g26 -S'\x86\x1b\x00\x00\x00\x00\x00\x00' -tRp3997 -sVpresidential -p3998 -g24 -(g26 -S'\x1d\x1a\x00\x00\x00\x00\x00\x00' -tRp3999 -sVliberia -p4000 -g24 -(g26 -S'i\x13\x00\x00\x00\x00\x00\x00' -tRp4001 -sVintelligent -p4002 -g24 -(g26 -S'f\x11\x00\x00\x00\x00\x00\x00' -tRp4003 -sVmerge -p4004 -g24 -(g26 -S')\x15\x00\x00\x00\x00\x00\x00' -tRp4005 -sVbetty -p4006 -g24 -(g26 -S'h\x03\x00\x00\x00\x00\x00\x00' -tRp4007 -sVtruth -p4008 -g24 -(g26 -S'\x17#\x00\x00\x00\x00\x00\x00' -tRp4009 -sVaccompanied -p4010 -g24 -(g26 -S'0\x00\x00\x00\x00\x00\x00\x00' -tRp4011 -sVbeneath -p4012 -g24 -(g26 -S'S\x03\x00\x00\x00\x00\x00\x00' -tRp4013 -sVglasses -p4014 -g24 -(g26 -S'\x96\x0e\x00\x00\x00\x00\x00\x00' -tRp4015 -sVbeginner -p4016 -g24 -(g26 -S'4\x03\x00\x00\x00\x00\x00\x00' -tRp4017 -sVdoing -p4018 -g24 -(g26 -S'G\n\x00\x00\x00\x00\x00\x00' -tRp4019 -sVgary -p4020 -g24 -(g26 -S'7\x0e\x00\x00\x00\x00\x00\x00' -tRp4021 -sVsociety -p4022 -g24 -(g26 -S'X\x1f\x00\x00\x00\x00\x00\x00' -tRp4023 -sVmeta -p4024 -g24 -(g26 -S'5\x15\x00\x00\x00\x00\x00\x00' -tRp4025 -sVstatic -p4026 -g24 -(g26 -S'\x1f \x00\x00\x00\x00\x00\x00' -tRp4027 -sVbay -p4028 -g24 -(g26 -S'\x0e\x03\x00\x00\x00\x00\x00\x00' -tRp4029 -sVagriculture -p4030 -g24 -(g26 -S'\xe0\x00\x00\x00\x00\x00\x00\x00' -tRp4031 -sVwitness -p4032 -g24 -(g26 -S'6%\x00\x00\x00\x00\x00\x00' -tRp4033 -sVmatrix -p4034 -g24 -(g26 -S'\xcc\x14\x00\x00\x00\x00\x00\x00' -tRp4035 -sVlimousines -p4036 -g24 -(g26 -S'\x92\x13\x00\x00\x00\x00\x00\x00' -tRp4037 -sVbag -p4038 -g24 -(g26 -S'\xc0\x02\x00\x00\x00\x00\x00\x00' -tRp4039 -sVboutique -p4040 -g24 -(g26 -S'\x07\x04\x00\x00\x00\x00\x00\x00' -tRp4041 -sVvalve -p4042 -g24 -(g26 -S'\xd4#\x00\x00\x00\x00\x00\x00' -tRp4043 -sVadaptive -p4044 -g24 -(g26 -S'r\x00\x00\x00\x00\x00\x00\x00' -tRp4045 -sVwaters -p4046 -g24 -(g26 -S'\xba$\x00\x00\x00\x00\x00\x00' -tRp4047 -sVburke -p4048 -g24 -(g26 -S'\x90\x04\x00\x00\x00\x00\x00\x00' -tRp4049 -sVshut -p4050 -g24 -(g26 -S'\xd3\x1e\x00\x00\x00\x00\x00\x00' -tRp4051 -sVinteractions -p4052 -g24 -(g26 -S'q\x11\x00\x00\x00\x00\x00\x00' -tRp4053 -sVhyundai -p4054 -g24 -(g26 -S'k\x10\x00\x00\x00\x00\x00\x00' -tRp4055 -sVsurely -p4056 -g24 -(g26 -S'\xfb \x00\x00\x00\x00\x00\x00' -tRp4057 -sVregulatory -p4058 -g24 -(g26 -S'\xff\x1b\x00\x00\x00\x00\x00\x00' -tRp4059 -sVsteering -p4060 -g24 -(g26 -S'5 \x00\x00\x00\x00\x00\x00' -tRp4061 -sVbizrate -p4062 -g24 -(g26 -S'\x9d\x03\x00\x00\x00\x00\x00\x00' -tRp4063 -sVscary -p4064 -g24 -(g26 -S'\xc9\x1d\x00\x00\x00\x00\x00\x00' -tRp4065 -sVmainland -p4066 -g24 -(g26 -S'S\x14\x00\x00\x00\x00\x00\x00' -tRp4067 -sVdavid -p4068 -g24 -(g26 -S'\xc6\x08\x00\x00\x00\x00\x00\x00' -tRp4069 -sVlength -p4070 -g24 -(g26 -S'E\x13\x00\x00\x00\x00\x00\x00' -tRp4071 -sVassumed -p4072 -g24 -(g26 -S':\x02\x00\x00\x00\x00\x00\x00' -tRp4073 -sVdavis -p4074 -g24 -(g26 -S'\xc8\x08\x00\x00\x00\x00\x00\x00' -tRp4075 -sVplaystation -p4076 -g24 -(g26 -S']\x19\x00\x00\x00\x00\x00\x00' -tRp4077 -sVrelocation -p4078 -g24 -(g26 -S' \x1c\x00\x00\x00\x00\x00\x00' -tRp4079 -sVscene -p4080 -g24 -(g26 -S'\xcc\x1d\x00\x00\x00\x00\x00\x00' -tRp4081 -sVowned -p4082 -g24 -(g26 -S'\xe6\x17\x00\x00\x00\x00\x00\x00' -tRp4083 -sVjesus -p4084 -g24 -(g26 -S'\x11\x12\x00\x00\x00\x00\x00\x00' -tRp4085 -sVtier -p4086 -g24 -(g26 -S')"\x00\x00\x00\x00\x00\x00' -tRp4087 -sVowner -p4088 -g24 -(g26 -S'\xe7\x17\x00\x00\x00\x00\x00\x00' -tRp4089 -sVleasing -p4090 -g24 -(g26 -S"'\x13\x00\x00\x00\x00\x00\x00" -tRp4091 -sVlolita -p4092 -g24 -(g26 -S'\xeb\x13\x00\x00\x00\x00\x00\x00' -tRp4093 -sVlegislative -p4094 -g24 -(g26 -S';\x13\x00\x00\x00\x00\x00\x00' -tRp4095 -sVsharon -p4096 -g24 -(g26 -S'\x99\x1e\x00\x00\x00\x00\x00\x00' -tRp4097 -sVreference -p4098 -g24 -(g26 -S'\xd0\x1b\x00\x00\x00\x00\x00\x00' -tRp4099 -sVlos -p4100 -g24 -(g26 -S'\xfe\x13\x00\x00\x00\x00\x00\x00' -tRp4101 -sVordering -p4102 -g24 -(g26 -S'\xaa\x17\x00\x00\x00\x00\x00\x00' -tRp4103 -sVtraveller -p4104 -g24 -(g26 -S'\xd6"\x00\x00\x00\x00\x00\x00' -tRp4105 -sVnorton -p4106 -g24 -(g26 -S'\xe6\x16\x00\x00\x00\x00\x00\x00' -tRp4107 -sVperipheral -p4108 -g24 -(g26 -S'\xb9\x18\x00\x00\x00\x00\x00\x00' -tRp4109 -sVpainful -p4110 -g24 -(g26 -S'\x04\x18\x00\x00\x00\x00\x00\x00' -tRp4111 -sVinterests -p4112 -g24 -(g26 -S'u\x11\x00\x00\x00\x00\x00\x00' -tRp4113 -sVenforcement -p4114 -g24 -(g26 -S'n\x0b\x00\x00\x00\x00\x00\x00' -tRp4115 -sVstomach -p4116 -g24 -(g26 -S'K \x00\x00\x00\x00\x00\x00' -tRp4117 -sVstars -p4118 -g24 -(g26 -S'\x10 \x00\x00\x00\x00\x00\x00' -tRp4119 -sVshorts -p4120 -g24 -(g26 -S'\xc7\x1e\x00\x00\x00\x00\x00\x00' -tRp4121 -sVadaptor -p4122 -g24 -(g26 -S's\x00\x00\x00\x00\x00\x00\x00' -tRp4123 -sVunsubscribe -p4124 -g24 -(g26 -S'\x85#\x00\x00\x00\x00\x00\x00' -tRp4125 -sVelite -p4126 -g24 -(g26 -S'/\x0b\x00\x00\x00\x00\x00\x00' -tRp4127 -sVhaven -p4128 -g24 -(g26 -S'z\x0f\x00\x00\x00\x00\x00\x00' -tRp4129 -sVsteel -p4130 -g24 -(g26 -S'4 \x00\x00\x00\x00\x00\x00' -tRp4131 -sVcolleagues -p4132 -g24 -(g26 -S'\x8f\x06\x00\x00\x00\x00\x00\x00' -tRp4133 -sVroulette -p4134 -g24 -(g26 -S'?\x1d\x00\x00\x00\x00\x00\x00' -tRp4135 -sVbother -p4136 -g24 -(g26 -S'\xfc\x03\x00\x00\x00\x00\x00\x00' -tRp4137 -sVroberts -p4138 -g24 -(g26 -S'\x0e\x1d\x00\x00\x00\x00\x00\x00' -tRp4139 -sVreproduction -p4140 -g24 -(g26 -S'd\x1c\x00\x00\x00\x00\x00\x00' -tRp4141 -sVbriefing -p4142 -g24 -(g26 -S'<\x04\x00\x00\x00\x00\x00\x00' -tRp4143 -sVcollecting -p4144 -g24 -(g26 -S'\x95\x06\x00\x00\x00\x00\x00\x00' -tRp4145 -sVissn -p4146 -g24 -(g26 -S'\xd2\x11\x00\x00\x00\x00\x00\x00' -tRp4147 -sVfalse -p4148 -g24 -(g26 -S'\xa2\x0c\x00\x00\x00\x00\x00\x00' -tRp4149 -sVviewer -p4150 -g24 -(g26 -S'.$\x00\x00\x00\x00\x00\x00' -tRp4151 -sVpartnership -p4152 -g24 -(g26 -S'L\x18\x00\x00\x00\x00\x00\x00' -tRp4153 -sVgently -p4154 -g24 -(g26 -S'l\x0e\x00\x00\x00\x00\x00\x00' -tRp4155 -sVtonight -p4156 -g24 -(g26 -S'g"\x00\x00\x00\x00\x00\x00' -tRp4157 -sVgentle -p4158 -g24 -(g26 -S'j\x0e\x00\x00\x00\x00\x00\x00' -tRp4159 -sVclearly -p4160 -g24 -(g26 -S'C\x06\x00\x00\x00\x00\x00\x00' -tRp4161 -sVviewed -p4162 -g24 -(g26 -S'-$\x00\x00\x00\x00\x00\x00' -tRp4163 -sVdocuments -p4164 -g24 -(g26 -S'@\n\x00\x00\x00\x00\x00\x00' -tRp4165 -sVdishes -p4166 -g24 -(g26 -S'\x02\n\x00\x00\x00\x00\x00\x00' -tRp4167 -sVstudying -p4168 -g24 -(g26 -S'\x8e \x00\x00\x00\x00\x00\x00' -tRp4169 -sVmills -p4170 -g24 -(g26 -S'q\x15\x00\x00\x00\x00\x00\x00' -tRp4171 -sVmechanism -p4172 -g24 -(g26 -S'\xf1\x14\x00\x00\x00\x00\x00\x00' -tRp4173 -sVlatina -p4174 -g24 -(g26 -S'\xf9\x12\x00\x00\x00\x00\x00\x00' -tRp4175 -sVbabes -p4176 -g24 -(g26 -S'\xb1\x02\x00\x00\x00\x00\x00\x00' -tRp4177 -sVlinda -p4178 -g24 -(g26 -S'\x94\x13\x00\x00\x00\x00\x00\x00' -tRp4179 -sVkorean -p4180 -g24 -(g26 -S'\xb9\x12\x00\x00\x00\x00\x00\x00' -tRp4181 -sVlatino -p4182 -g24 -(g26 -S'\xfb\x12\x00\x00\x00\x00\x00\x00' -tRp4183 -sVsoap -p4184 -g24 -(g26 -S'S\x1f\x00\x00\x00\x00\x00\x00' -tRp4185 -sVaccuracy -p4186 -g24 -(g26 -S'=\x00\x00\x00\x00\x00\x00\x00' -tRp4187 -sVworldwide -p4188 -g24 -(g26 -S'^%\x00\x00\x00\x00\x00\x00' -tRp4189 -sVbrazil -p4190 -g24 -(g26 -S'%\x04\x00\x00\x00\x00\x00\x00' -tRp4191 -sVallow -p4192 -g24 -(g26 -S'\x1d\x01\x00\x00\x00\x00\x00\x00' -tRp4193 -sVmanor -p4194 -g24 -(g26 -S'{\x14\x00\x00\x00\x00\x00\x00' -tRp4195 -sVcourtesy -p4196 -g24 -(g26 -S'$\x08\x00\x00\x00\x00\x00\x00' -tRp4197 -sVvisa -p4198 -g24 -(g26 -S'K$\x00\x00\x00\x00\x00\x00' -tRp4199 -sVpsychiatry -p4200 -g24 -(g26 -S'\xcd\x1a\x00\x00\x00\x00\x00\x00' -tRp4201 -sVdevice -p4202 -g24 -(g26 -S'\x93\t\x00\x00\x00\x00\x00\x00' -tRp4203 -sVsegment -p4204 -g24 -(g26 -S',\x1e\x00\x00\x00\x00\x00\x00' -tRp4205 -sVaddiction -p4206 -g24 -(g26 -S'v\x00\x00\x00\x00\x00\x00\x00' -tRp4207 -sVplacement -p4208 -g24 -(g26 -S':\x19\x00\x00\x00\x00\x00\x00' -tRp4209 -sVstronger -p4210 -g24 -(g26 -S'{ \x00\x00\x00\x00\x00\x00' -tRp4211 -sVthanksgiving -p4212 -g24 -(g26 -S'\xe0!\x00\x00\x00\x00\x00\x00' -tRp4213 -sVface -p4214 -g24 -(g26 -S'\x84\x0c\x00\x00\x00\x00\x00\x00' -tRp4215 -sVmechanical -p4216 -g24 -(g26 -S'\xef\x14\x00\x00\x00\x00\x00\x00' -tRp4217 -sVpainting -p4218 -g24 -(g26 -S'\x08\x18\x00\x00\x00\x00\x00\x00' -tRp4219 -sVfact -p4220 -g24 -(g26 -S'\x8c\x0c\x00\x00\x00\x00\x00\x00' -tRp4221 -sVatmosphere -p4222 -g24 -(g26 -S'R\x02\x00\x00\x00\x00\x00\x00' -tRp4223 -sVwikipedia -p4224 -g24 -(g26 -S'\r%\x00\x00\x00\x00\x00\x00' -tRp4225 -sVbring -p4226 -g24 -(g26 -S'B\x04\x00\x00\x00\x00\x00\x00' -tRp4227 -sVnaturals -p4228 -g24 -(g26 -S'i\x16\x00\x00\x00\x00\x00\x00' -tRp4229 -sVbikes -p4230 -g24 -(g26 -S'}\x03\x00\x00\x00\x00\x00\x00' -tRp4231 -sVmanchester -p4232 -g24 -(g26 -S't\x14\x00\x00\x00\x00\x00\x00' -tRp4233 -sVlloyd -p4234 -g24 -(g26 -S'\xc3\x13\x00\x00\x00\x00\x00\x00' -tRp4235 -sVbedroom -p4236 -g24 -(g26 -S',\x03\x00\x00\x00\x00\x00\x00' -tRp4237 -sVrough -p4238 -g24 -(g26 -S'=\x1d\x00\x00\x00\x00\x00\x00' -tRp4239 -sVasylum -p4240 -g24 -(g26 -S'F\x02\x00\x00\x00\x00\x00\x00' -tRp4241 -sVdecade -p4242 -g24 -(g26 -S'\xe7\x08\x00\x00\x00\x00\x00\x00' -tRp4243 -sVprincipal -p4244 -g24 -(g26 -S'8\x1a\x00\x00\x00\x00\x00\x00' -tRp4245 -sVtrying -p4246 -g24 -(g26 -S'\x19#\x00\x00\x00\x00\x00\x00' -tRp4247 -sVjay -p4248 -g24 -(g26 -S'\xfd\x11\x00\x00\x00\x00\x00\x00' -tRp4249 -sVjar -p4250 -g24 -(g26 -S'\xf9\x11\x00\x00\x00\x00\x00\x00' -tRp4251 -sVterminal -p4252 -g24 -(g26 -S'\xb9!\x00\x00\x00\x00\x00\x00' -tRp4253 -sVentities -p4254 -g24 -(g26 -S'\x99\x0b\x00\x00\x00\x00\x00\x00' -tRp4255 -sVjam -p4256 -g24 -(g26 -S'\xef\x11\x00\x00\x00\x00\x00\x00' -tRp4257 -sVtape -p4258 -g24 -(g26 -S'j!\x00\x00\x00\x00\x00\x00' -tRp4259 -sVmolecules -p4260 -g24 -(g26 -S'\xca\x15\x00\x00\x00\x00\x00\x00' -tRp4261 -sVprinters -p4262 -g24 -(g26 -S'?\x1a\x00\x00\x00\x00\x00\x00' -tRp4263 -sVriding -p4264 -g24 -(g26 -S'\xf1\x1c\x00\x00\x00\x00\x00\x00' -tRp4265 -sVhope -p4266 -g24 -(g26 -S'\x13\x10\x00\x00\x00\x00\x00\x00' -tRp4267 -sVmeant -p4268 -g24 -(g26 -S'\xe7\x14\x00\x00\x00\x00\x00\x00' -tRp4269 -sVhandle -p4270 -g24 -(g26 -S'N\x0f\x00\x00\x00\x00\x00\x00' -tRp4271 -sVbonds -p4272 -g24 -(g26 -S'\xde\x03\x00\x00\x00\x00\x00\x00' -tRp4273 -sVfamiliar -p4274 -g24 -(g26 -S'\xa4\x0c\x00\x00\x00\x00\x00\x00' -tRp4275 -sVlucky -p4276 -g24 -(g26 -S'!\x14\x00\x00\x00\x00\x00\x00' -tRp4277 -sVautos -p4278 -g24 -(g26 -S'\x93\x02\x00\x00\x00\x00\x00\x00' -tRp4279 -sVnodes -p4280 -g24 -(g26 -S'\xd4\x16\x00\x00\x00\x00\x00\x00' -tRp4281 -sVexchanges -p4282 -g24 -(g26 -S'\x17\x0c\x00\x00\x00\x00\x00\x00' -tRp4283 -sVwebcast -p4284 -g24 -(g26 -S'\xd2$\x00\x00\x00\x00\x00\x00' -tRp4285 -sVcommittees -p4286 -g24 -(g26 -S'\xd0\x06\x00\x00\x00\x00\x00\x00' -tRp4287 -sVembedded -p4288 -g24 -(g26 -S':\x0b\x00\x00\x00\x00\x00\x00' -tRp4289 -sVgba -p4290 -g24 -(g26 -S'F\x0e\x00\x00\x00\x00\x00\x00' -tRp4291 -sVdenmark -p4292 -g24 -(g26 -S':\t\x00\x00\x00\x00\x00\x00' -tRp4293 -sVtaxes -p4294 -g24 -(g26 -S'x!\x00\x00\x00\x00\x00\x00' -tRp4295 -sVreid -p4296 -g24 -(g26 -S'\x02\x1c\x00\x00\x00\x00\x00\x00' -tRp4297 -sVdefault -p4298 -g24 -(g26 -S'\x03\t\x00\x00\x00\x00\x00\x00' -tRp4299 -sVstuff -p4300 -g24 -(g26 -S'\x8f \x00\x00\x00\x00\x00\x00' -tRp4301 -sVgbp -p4302 -g24 -(g26 -S'G\x0e\x00\x00\x00\x00\x00\x00' -tRp4303 -sVohio -p4304 -g24 -(g26 -S'c\x17\x00\x00\x00\x00\x00\x00' -tRp4305 -sVtemporarily -p4306 -g24 -(g26 -S'\xaf!\x00\x00\x00\x00\x00\x00' -tRp4307 -sVframe -p4308 -g24 -(g26 -S'\xc4\r\x00\x00\x00\x00\x00\x00' -tRp4309 -sVpacket -p4310 -g24 -(g26 -S'\xfa\x17\x00\x00\x00\x00\x00\x00' -tRp4311 -sVqty -p4312 -g24 -(g26 -S'\x06\x1b\x00\x00\x00\x00\x00\x00' -tRp4313 -sVedition -p4314 -g24 -(g26 -S'\xf5\n\x00\x00\x00\x00\x00\x00' -tRp4315 -sVsubcommittee -p4316 -g24 -(g26 -S'\x9a \x00\x00\x00\x00\x00\x00' -tRp4317 -sVpacked -p4318 -g24 -(g26 -S'\xf9\x17\x00\x00\x00\x00\x00\x00' -tRp4319 -sVwire -p4320 -g24 -(g26 -S"'%\x00\x00\x00\x00\x00\x00" -tRp4321 -sVnationwide -p4322 -g24 -(g26 -S'd\x16\x00\x00\x00\x00\x00\x00' -tRp4323 -sVnuclear -p4324 -g24 -(g26 -S'\x06\x17\x00\x00\x00\x00\x00\x00' -tRp4325 -sVmembrane -p4326 -g24 -(g26 -S'\x11\x15\x00\x00\x00\x00\x00\x00' -tRp4327 -sVemail -p4328 -g24 -(g26 -S'7\x0b\x00\x00\x00\x00\x00\x00' -tRp4329 -sVindustries -p4330 -g24 -(g26 -S'\xfc\x10\x00\x00\x00\x00\x00\x00' -tRp4331 -sVends -p4332 -g24 -(g26 -S'j\x0b\x00\x00\x00\x00\x00\x00' -tRp4333 -sVlg -p4334 -g24 -(g26 -S'b\x13\x00\x00\x00\x00\x00\x00' -tRp4335 -sVbutts -p4336 -g24 -(g26 -S'\xa5\x04\x00\x00\x00\x00\x00\x00' -tRp4337 -sVconfiguration -p4338 -g24 -(g26 -S'?\x07\x00\x00\x00\x00\x00\x00' -tRp4339 -sVlawsuit -p4340 -g24 -(g26 -S'\x0b\x13\x00\x00\x00\x00\x00\x00' -tRp4341 -sVthumbzilla -p4342 -g24 -(g26 -S'\x1f"\x00\x00\x00\x00\x00\x00' -tRp4343 -sVrestrictions -p4344 -g24 -(g26 -S'\xa8\x1c\x00\x00\x00\x00\x00\x00' -tRp4345 -sVfigured -p4346 -g24 -(g26 -S'\x03\r\x00\x00\x00\x00\x00\x00' -tRp4347 -sVdrum -p4348 -g24 -(g26 -S'\x9b\n\x00\x00\x00\x00\x00\x00' -tRp4349 -sVinvited -p4350 -g24 -(g26 -S'\xab\x11\x00\x00\x00\x00\x00\x00' -tRp4351 -sVrecorders -p4352 -g24 -(g26 -S'\xb6\x1b\x00\x00\x00\x00\x00\x00' -tRp4353 -sVdrug -p4354 -g24 -(g26 -S'\x99\n\x00\x00\x00\x00\x00\x00' -tRp4355 -sVinvolve -p4356 -g24 -(g26 -S'\xad\x11\x00\x00\x00\x00\x00\x00' -tRp4357 -sVfigures -p4358 -g24 -(g26 -S'\x04\r\x00\x00\x00\x00\x00\x00' -tRp4359 -sVbristol -p4360 -g24 -(g26 -S'F\x04\x00\x00\x00\x00\x00\x00' -tRp4361 -sVcj -p4362 -g24 -(g26 -S'$\x06\x00\x00\x00\x00\x00\x00' -tRp4363 -sVadjusted -p4364 -g24 -(g26 -S'\x88\x00\x00\x00\x00\x00\x00\x00' -tRp4365 -sVch -p4366 -g24 -(g26 -S'}\x05\x00\x00\x00\x00\x00\x00' -tRp4367 -sVcn -p4368 -g24 -(g26 -S'l\x06\x00\x00\x00\x00\x00\x00' -tRp4369 -sVcm -p4370 -g24 -(g26 -S'j\x06\x00\x00\x00\x00\x00\x00' -tRp4371 -sVcl -p4372 -g24 -(g26 -S'%\x06\x00\x00\x00\x00\x00\x00' -tRp4373 -sVcc -p4374 -g24 -(g26 -S'P\x05\x00\x00\x00\x00\x00\x00' -tRp4375 -sVcb -p4376 -g24 -(g26 -S'N\x05\x00\x00\x00\x00\x00\x00' -tRp4377 -sVca -p4378 -g24 -(g26 -S'\xb0\x04\x00\x00\x00\x00\x00\x00' -tRp4379 -sVcg -p4380 -g24 -(g26 -S'{\x05\x00\x00\x00\x00\x00\x00' -tRp4381 -sVcf -p4382 -g24 -(g26 -S'y\x05\x00\x00\x00\x00\x00\x00' -tRp4383 -sVce -p4384 -g24 -(g26 -S'V\x05\x00\x00\x00\x00\x00\x00' -tRp4385 -sVcd -p4386 -g24 -(g26 -S'R\x05\x00\x00\x00\x00\x00\x00' -tRp4387 -sVcz -p4388 -g24 -(g26 -S'\x9a\x08\x00\x00\x00\x00\x00\x00' -tRp4389 -sVincest -p4390 -g24 -(g26 -S'\xc2\x10\x00\x00\x00\x00\x00\x00' -tRp4391 -sVcs -p4392 -g24 -(g26 -S'f\x08\x00\x00\x00\x00\x00\x00' -tRp4393 -sVcr -p4394 -g24 -(g26 -S'1\x08\x00\x00\x00\x00\x00\x00' -tRp4395 -sVallocated -p4396 -g24 -(g26 -S'\x1b\x01\x00\x00\x00\x00\x00\x00' -tRp4397 -sVoakland -p4398 -g24 -(g26 -S'"\x17\x00\x00\x00\x00\x00\x00' -tRp4399 -sVundergraduate -p4400 -g24 -(g26 -S'^#\x00\x00\x00\x00\x00\x00' -tRp4401 -sVcv -p4402 -g24 -(g26 -S'\x91\x08\x00\x00\x00\x00\x00\x00' -tRp4403 -sVcu -p4404 -g24 -(g26 -S'k\x08\x00\x00\x00\x00\x00\x00' -tRp4405 -sVct -p4406 -g24 -(g26 -S'i\x08\x00\x00\x00\x00\x00\x00' -tRp4407 -sVmailto -p4408 -g24 -(g26 -S'P\x14\x00\x00\x00\x00\x00\x00' -tRp4409 -sVmailman -p4410 -g24 -(g26 -S'N\x14\x00\x00\x00\x00\x00\x00' -tRp4411 -sVpowered -p4412 -g24 -(g26 -S'\xdd\x19\x00\x00\x00\x00\x00\x00' -tRp4413 -sVunderlying -p4414 -g24 -(g26 -S'`#\x00\x00\x00\x00\x00\x00' -tRp4415 -sVrhode -p4416 -g24 -(g26 -S'\xdd\x1c\x00\x00\x00\x00\x00\x00' -tRp4417 -sVgenetic -p4418 -g24 -(g26 -S'c\x0e\x00\x00\x00\x00\x00\x00' -tRp4419 -sVwilling -p4420 -g24 -(g26 -S'\x14%\x00\x00\x00\x00\x00\x00' -tRp4421 -sVpmid -p4422 -g24 -(g26 -S'o\x19\x00\x00\x00\x00\x00\x00' -tRp4423 -sVwaste -p4424 -g24 -(g26 -S'\xb3$\x00\x00\x00\x00\x00\x00' -tRp4425 -sVlouisiana -p4426 -g24 -(g26 -S'\x0c\x14\x00\x00\x00\x00\x00\x00' -tRp4427 -sVtrinity -p4428 -g24 -(g26 -S'\xff"\x00\x00\x00\x00\x00\x00' -tRp4429 -sVplanner -p4430 -g24 -(g26 -S'F\x19\x00\x00\x00\x00\x00\x00' -tRp4431 -sVgraphics -p4432 -g24 -(g26 -S'\xe1\x0e\x00\x00\x00\x00\x00\x00' -tRp4433 -sVatlanta -p4434 -g24 -(g26 -S'N\x02\x00\x00\x00\x00\x00\x00' -tRp4435 -sVspain -p4436 -g24 -(g26 -S'\x98\x1f\x00\x00\x00\x00\x00\x00' -tRp4437 -sVlaser -p4438 -g24 -(g26 -S'\xf0\x12\x00\x00\x00\x00\x00\x00' -tRp4439 -sVcvs -p4440 -g24 -(g26 -S'\x92\x08\x00\x00\x00\x00\x00\x00' -tRp4441 -sVpodcasts -p4442 -g24 -(g26 -S'v\x19\x00\x00\x00\x00\x00\x00' -tRp4443 -sVreliability -p4444 -g24 -(g26 -S'\x18\x1c\x00\x00\x00\x00\x00\x00' -tRp4445 -sVexpiration -p4446 -g24 -(g26 -S'R\x0c\x00\x00\x00\x00\x00\x00' -tRp4447 -sVmaui -p4448 -g24 -(g26 -S'\xd4\x14\x00\x00\x00\x00\x00\x00' -tRp4449 -sVintranet -p4450 -g24 -(g26 -S'\x8e\x11\x00\x00\x00\x00\x00\x00' -tRp4451 -sVultra -p4452 -g24 -(g26 -S'S#\x00\x00\x00\x00\x00\x00' -tRp4453 -sVva -p4454 -g24 -(g26 -S'\xc1#\x00\x00\x00\x00\x00\x00' -tRp4455 -sVvb -p4456 -g24 -(g26 -S'\xeb#\x00\x00\x00\x00\x00\x00' -tRp4457 -sVvc -p4458 -g24 -(g26 -S'\xed#\x00\x00\x00\x00\x00\x00' -tRp4459 -sVve -p4460 -g24 -(g26 -S'\xef#\x00\x00\x00\x00\x00\x00' -tRp4461 -sVripe -p4462 -g24 -(g26 -S'\xfb\x1c\x00\x00\x00\x00\x00\x00' -tRp4463 -sVvg -p4464 -g24 -(g26 -S'\x17$\x00\x00\x00\x00\x00\x00' -tRp4465 -sVvi -p4466 -g24 -(g26 -S'\x19$\x00\x00\x00\x00\x00\x00' -tRp4467 -sVsite -p4468 -g24 -(g26 -S'\x0c\x1f\x00\x00\x00\x00\x00\x00' -tRp4469 -sVadventures -p4470 -g24 -(g26 -S'\xa6\x00\x00\x00\x00\x00\x00\x00' -tRp4471 -sVhardware -p4472 -g24 -(g26 -S'f\x0f\x00\x00\x00\x00\x00\x00' -tRp4473 -sVvs -p4474 -g24 -(g26 -S'x$\x00\x00\x00\x00\x00\x00' -tRp4475 -sVvt -p4476 -g24 -(g26 -S'z$\x00\x00\x00\x00\x00\x00' -tRp4477 -sVedgar -p4478 -g24 -(g26 -S'\xee\n\x00\x00\x00\x00\x00\x00' -tRp4479 -sVacer -p4480 -g24 -(g26 -S'C\x00\x00\x00\x00\x00\x00\x00' -tRp4481 -sVtattoo -p4482 -g24 -(g26 -S't!\x00\x00\x00\x00\x00\x00' -tRp4483 -sVterrorist -p4484 -g24 -(g26 -S'\xc5!\x00\x00\x00\x00\x00\x00' -tRp4485 -sVjuan -p4486 -g24 -(g26 -S'E\x12\x00\x00\x00\x00\x00\x00' -tRp4487 -sVromance -p4488 -g24 -(g26 -S"'\x1d\x00\x00\x00\x00\x00\x00" -tRp4489 -sVmatthew -p4490 -g24 -(g26 -S'\xd1\x14\x00\x00\x00\x00\x00\x00' -tRp4491 -sVterrorism -p4492 -g24 -(g26 -S'\xc4!\x00\x00\x00\x00\x00\x00' -tRp4493 -sVphi -p4494 -g24 -(g26 -S'\xeb\x18\x00\x00\x00\x00\x00\x00' -tRp4495 -sVball -p4496 -g24 -(g26 -S'\xcc\x02\x00\x00\x00\x00\x00\x00' -tRp4497 -sVcolumbia -p4498 -g24 -(g26 -S'\xa7\x06\x00\x00\x00\x00\x00\x00' -tRp4499 -sVraymond -p4500 -g24 -(g26 -S'o\x1b\x00\x00\x00\x00\x00\x00' -tRp4501 -sVbali -p4502 -g24 -(g26 -S'\xcb\x02\x00\x00\x00\x00\x00\x00' -tRp4503 -sVbald -p4504 -g24 -(g26 -S'\xca\x02\x00\x00\x00\x00\x00\x00' -tRp4505 -sVnationally -p4506 -g24 -(g26 -S'b\x16\x00\x00\x00\x00\x00\x00' -tRp4507 -sVforecasts -p4508 -g24 -(g26 -S'\x96\r\x00\x00\x00\x00\x00\x00' -tRp4509 -sVdistinction -p4510 -g24 -(g26 -S'\x17\n\x00\x00\x00\x00\x00\x00' -tRp4511 -sVdust -p4512 -g24 -(g26 -S'\xb5\n\x00\x00\x00\x00\x00\x00' -tRp4513 -sVphp -p4514 -g24 -(g26 -S'\xff\x18\x00\x00\x00\x00\x00\x00' -tRp4515 -sVidentity -p4516 -g24 -(g26 -S'\x84\x10\x00\x00\x00\x00\x00\x00' -tRp4517 -sVdiabetes -p4518 -g24 -(g26 -S'\x9c\t\x00\x00\x00\x00\x00\x00' -tRp4519 -sVaudit -p4520 -g24 -(g26 -S'y\x02\x00\x00\x00\x00\x00\x00' -tRp4521 -sVdiscounted -p4522 -g24 -(g26 -S'\xf0\t\x00\x00\x00\x00\x00\x00' -tRp4523 -sVindonesia -p4524 -g24 -(g26 -S'\xf6\x10\x00\x00\x00\x00\x00\x00' -tRp4525 -sVpatterns -p4526 -g24 -(g26 -S'q\x18\x00\x00\x00\x00\x00\x00' -tRp4527 -sVcommand -p4528 -g24 -(g26 -S'\xbe\x06\x00\x00\x00\x00\x00\x00' -tRp4529 -sVaudio -p4530 -g24 -(g26 -S'x\x02\x00\x00\x00\x00\x00\x00' -tRp4531 -sVdrawing -p4532 -g24 -(g26 -S'~\n\x00\x00\x00\x00\x00\x00' -tRp4533 -sVnewest -p4534 -g24 -(g26 -S'\xa5\x16\x00\x00\x00\x00\x00\x00' -tRp4535 -sVlegendary -p4536 -g24 -(g26 -S'8\x13\x00\x00\x00\x00\x00\x00' -tRp4537 -sVflesh -p4538 -g24 -(g26 -S'Q\r\x00\x00\x00\x00\x00\x00' -tRp4539 -sVmoments -p4540 -g24 -(g26 -S'\xcd\x15\x00\x00\x00\x00\x00\x00' -tRp4541 -sVdas -p4542 -g24 -(g26 -S'\xb9\x08\x00\x00\x00\x00\x00\x00' -tRp4543 -sVclocks -p4544 -g24 -(g26 -S'V\x06\x00\x00\x00\x00\x00\x00' -tRp4545 -sVrooms -p4546 -g24 -(g26 -S'1\x1d\x00\x00\x00\x00\x00\x00' -tRp4547 -sVpaul -p4548 -g24 -(g26 -S'r\x18\x00\x00\x00\x00\x00\x00' -tRp4549 -sVweb -p4550 -g24 -(g26 -S'\xcf$\x00\x00\x00\x00\x00\x00' -tRp4551 -sVgenerous -p4552 -g24 -(g26 -S'`\x0e\x00\x00\x00\x00\x00\x00' -tRp4553 -sVbibliography -p4554 -g24 -(g26 -S's\x03\x00\x00\x00\x00\x00\x00' -tRp4555 -sVwed -p4556 -g24 -(g26 -S'\xdc$\x00\x00\x00\x00\x00\x00' -tRp4557 -sVresidential -p4558 -g24 -(g26 -S'\x83\x1c\x00\x00\x00\x00\x00\x00' -tRp4559 -sVtransparent -p4560 -g24 -(g26 -S'\xcb"\x00\x00\x00\x00\x00\x00' -tRp4561 -sVarrest -p4562 -g24 -(g26 -S'\xfc\x01\x00\x00\x00\x00\x00\x00' -tRp4563 -sVcombine -p4564 -g24 -(g26 -S'\xb0\x06\x00\x00\x00\x00\x00\x00' -tRp4565 -sVcosmetics -p4566 -g24 -(g26 -S'\x03\x08\x00\x00\x00\x00\x00\x00' -tRp4567 -sVcrack -p4568 -g24 -(g26 -S'2\x08\x00\x00\x00\x00\x00\x00' -tRp4569 -sVincreased -p4570 -g24 -(g26 -S'\xd6\x10\x00\x00\x00\x00\x00\x00' -tRp4571 -sVgovernment -p4572 -g24 -(g26 -S'\xc2\x0e\x00\x00\x00\x00\x00\x00' -tRp4573 -sVchecking -p4574 -g24 -(g26 -S'\xc1\x05\x00\x00\x00\x00\x00\x00' -tRp4575 -sVchancellor -p4576 -g24 -(g26 -S'\x91\x05\x00\x00\x00\x00\x00\x00' -tRp4577 -sVsmithsonian -p4578 -g24 -(g26 -S'F\x1f\x00\x00\x00\x00\x00\x00' -tRp4579 -sVfuji -p4580 -g24 -(g26 -S'\xf8\r\x00\x00\x00\x00\x00\x00' -tRp4581 -sVincreases -p4582 -g24 -(g26 -S'\xd7\x10\x00\x00\x00\x00\x00\x00' -tRp4583 -sVzimbabwe -p4584 -g24 -(g26 -S'\xba%\x00\x00\x00\x00\x00\x00' -tRp4585 -sVcedar -p4586 -g24 -(g26 -S'W\x05\x00\x00\x00\x00\x00\x00' -tRp4587 -sVmathematics -p4588 -g24 -(g26 -S'\xca\x14\x00\x00\x00\x00\x00\x00' -tRp4589 -sVbelgium -p4590 -g24 -(g26 -S'@\x03\x00\x00\x00\x00\x00\x00' -tRp4591 -sVpassword -p4592 -g24 -(g26 -S'\\\x18\x00\x00\x00\x00\x00\x00' -tRp4593 -sVemma -p4594 -g24 -(g26 -S'C\x0b\x00\x00\x00\x00\x00\x00' -tRp4595 -sVfinnish -p4596 -g24 -(g26 -S'+\r\x00\x00\x00\x00\x00\x00' -tRp4597 -sVchairs -p4598 -g24 -(g26 -S'\x83\x05\x00\x00\x00\x00\x00\x00' -tRp4599 -sVgarage -p4600 -g24 -(g26 -S'/\x0e\x00\x00\x00\x00\x00\x00' -tRp4601 -sVmhz -p4602 -g24 -(g26 -S'K\x15\x00\x00\x00\x00\x00\x00' -tRp4603 -sVscenic -p4604 -g24 -(g26 -S'\xce\x1d\x00\x00\x00\x00\x00\x00' -tRp4605 -sVreplacement -p4606 -g24 -(g26 -S'J\x1c\x00\x00\x00\x00\x00\x00' -tRp4607 -sVamendment -p4608 -g24 -(g26 -S'=\x01\x00\x00\x00\x00\x00\x00' -tRp4609 -sVhabitat -p4610 -g24 -(g26 -S'4\x0f\x00\x00\x00\x00\x00\x00' -tRp4611 -sVsuites -p4612 -g24 -(g26 -S'\xd3 \x00\x00\x00\x00\x00\x00' -tRp4613 -sVfootage -p4614 -g24 -(g26 -S'\x8c\r\x00\x00\x00\x00\x00\x00' -tRp4615 -sVmacromedia -p4616 -g24 -(g26 -S'8\x14\x00\x00\x00\x00\x00\x00' -tRp4617 -sVmozambique -p4618 -g24 -(g26 -S'\x13\x16\x00\x00\x00\x00\x00\x00' -tRp4619 -sVchoosing -p4620 -g24 -(g26 -S'\xeb\x05\x00\x00\x00\x00\x00\x00' -tRp4621 -sVflush -p4622 -g24 -(g26 -S'm\r\x00\x00\x00\x00\x00\x00' -tRp4623 -sVballot -p4624 -g24 -(g26 -S'\xcf\x02\x00\x00\x00\x00\x00\x00' -tRp4625 -sVrecognition -p4626 -g24 -(g26 -S'\xaa\x1b\x00\x00\x00\x00\x00\x00' -tRp4627 -sVsufficiently -p4628 -g24 -(g26 -S'\xc6 \x00\x00\x00\x00\x00\x00' -tRp4629 -sVweblogs -p4630 -g24 -(g26 -S'\xd4$\x00\x00\x00\x00\x00\x00' -tRp4631 -sVliterally -p4632 -g24 -(g26 -S'\xb1\x13\x00\x00\x00\x00\x00\x00' -tRp4633 -sVavoid -p4634 -g24 -(g26 -S'\x9f\x02\x00\x00\x00\x00\x00\x00' -tRp4635 -sVsalaries -p4636 -g24 -(g26 -S'\x85\x1d\x00\x00\x00\x00\x00\x00' -tRp4637 -sVdoes -p4638 -g24 -(g26 -S'D\n\x00\x00\x00\x00\x00\x00' -tRp4639 -sVpassion -p4640 -g24 -(g26 -S'Y\x18\x00\x00\x00\x00\x00\x00' -tRp4641 -sVbiology -p4642 -g24 -(g26 -S'\x8e\x03\x00\x00\x00\x00\x00\x00' -tRp4643 -sVblowing -p4644 -g24 -(g26 -S'\xc3\x03\x00\x00\x00\x00\x00\x00' -tRp4645 -sVschedule -p4646 -g24 -(g26 -S'\xcf\x1d\x00\x00\x00\x00\x00\x00' -tRp4647 -sVselecting -p4648 -g24 -(g26 -S'0\x1e\x00\x00\x00\x00\x00\x00' -tRp4649 -sVpressure -p4650 -g24 -(g26 -S'!\x1a\x00\x00\x00\x00\x00\x00' -tRp4651 -sVincludes -p4652 -g24 -(g26 -S'\xcb\x10\x00\x00\x00\x00\x00\x00' -tRp4653 -sVloans -p4654 -g24 -(g26 -S'\xcd\x13\x00\x00\x00\x00\x00\x00' -tRp4655 -sVcounties -p4656 -g24 -(g26 -S'\x14\x08\x00\x00\x00\x00\x00\x00' -tRp4657 -sVstage -p4658 -g24 -(g26 -S'\xfe\x1f\x00\x00\x00\x00\x00\x00' -tRp4659 -sVgained -p4660 -g24 -(g26 -S'\x1e\x0e\x00\x00\x00\x00\x00\x00' -tRp4661 -sVsister -p4662 -g24 -(g26 -S'\t\x1f\x00\x00\x00\x00\x00\x00' -tRp4663 -sVlifestyle -p4664 -g24 -(g26 -S'z\x13\x00\x00\x00\x00\x00\x00' -tRp4665 -sVputs -p4666 -g24 -(g26 -S'\xfc\x1a\x00\x00\x00\x00\x00\x00' -tRp4667 -sVangeles -p4668 -g24 -(g26 -S'c\x01\x00\x00\x00\x00\x00\x00' -tRp4669 -sVchrome -p4670 -g24 -(g26 -S'\xf8\x05\x00\x00\x00\x00\x00\x00' -tRp4671 -sVseeds -p4672 -g24 -(g26 -S'"\x1e\x00\x00\x00\x00\x00\x00' -tRp4673 -sVwarner -p4674 -g24 -(g26 -S'\xa5$\x00\x00\x00\x00\x00\x00' -tRp4675 -sVdocumentary -p4676 -g24 -(g26 -S'=\n\x00\x00\x00\x00\x00\x00' -tRp4677 -sVexecutives -p4678 -g24 -(g26 -S"'\x0c\x00\x00\x00\x00\x00\x00" -tRp4679 -sVpriorities -p4680 -g24 -(g26 -S'C\x1a\x00\x00\x00\x00\x00\x00' -tRp4681 -sValliance -p4682 -g24 -(g26 -S'\x19\x01\x00\x00\x00\x00\x00\x00' -tRp4683 -sVletters -p4684 -g24 -(g26 -S'V\x13\x00\x00\x00\x00\x00\x00' -tRp4685 -sVcoverage -p4686 -g24 -(g26 -S'(\x08\x00\x00\x00\x00\x00\x00' -tRp4687 -sVpussy -p4688 -g24 -(g26 -S'\xfb\x1a\x00\x00\x00\x00\x00\x00' -tRp4689 -sVcatherine -p4690 -g24 -(g26 -S'B\x05\x00\x00\x00\x00\x00\x00' -tRp4691 -sVcommitment -p4692 -g24 -(g26 -S'\xcc\x06\x00\x00\x00\x00\x00\x00' -tRp4693 -sVassess -p4694 -g24 -(g26 -S'$\x02\x00\x00\x00\x00\x00\x00' -tRp4695 -sVlung -p4696 -g24 -(g26 -S"'\x14\x00\x00\x00\x00\x00\x00" -tRp4697 -sVjoyce -p4698 -g24 -(g26 -S'?\x12\x00\x00\x00\x00\x00\x00' -tRp4699 -sVroads -p4700 -g24 -(g26 -S'\n\x1d\x00\x00\x00\x00\x00\x00' -tRp4701 -sVmere -p4702 -g24 -(g26 -S"'\x15\x00\x00\x00\x00\x00\x00" -tRp4703 -sVstocks -p4704 -g24 -(g26 -S'I \x00\x00\x00\x00\x00\x00' -tRp4705 -sVhousing -p4706 -g24 -(g26 -S':\x10\x00\x00\x00\x00\x00\x00' -tRp4707 -sVspots -p4708 -g24 -(g26 -S'\xe0\x1f\x00\x00\x00\x00\x00\x00' -tRp4709 -sVslovakia -p4710 -g24 -(g26 -S'7\x1f\x00\x00\x00\x00\x00\x00' -tRp4711 -sVyrs -p4712 -g24 -(g26 -S'\xb0%\x00\x00\x00\x00\x00\x00' -tRp4713 -sVnaturally -p4714 -g24 -(g26 -S'h\x16\x00\x00\x00\x00\x00\x00' -tRp4715 -sVfunction -p4716 -g24 -(g26 -S'\xfc\r\x00\x00\x00\x00\x00\x00' -tRp4717 -sVbuilding -p4718 -g24 -(g26 -S'~\x04\x00\x00\x00\x00\x00\x00' -tRp4719 -sVfindlaw -p4720 -g24 -(g26 -S'\x1f\r\x00\x00\x00\x00\x00\x00' -tRp4721 -sVdelivery -p4722 -g24 -(g26 -S'%\t\x00\x00\x00\x00\x00\x00' -tRp4723 -sVprivilege -p4724 -g24 -(g26 -S'J\x1a\x00\x00\x00\x00\x00\x00' -tRp4725 -sVconstruction -p4726 -g24 -(g26 -S'\x82\x07\x00\x00\x00\x00\x00\x00' -tRp4727 -sVconvergence -p4728 -g24 -(g26 -S'\xc2\x07\x00\x00\x00\x00\x00\x00' -tRp4729 -sVdelivers -p4730 -g24 -(g26 -S'$\t\x00\x00\x00\x00\x00\x00' -tRp4731 -sVapollo -p4732 -g24 -(g26 -S'\x9d\x01\x00\x00\x00\x00\x00\x00' -tRp4733 -sVvaluation -p4734 -g24 -(g26 -S'\xd0#\x00\x00\x00\x00\x00\x00' -tRp4735 -sVentered -p4736 -g24 -(g26 -S'\x90\x0b\x00\x00\x00\x00\x00\x00' -tRp4737 -sVcount -p4738 -g24 -(g26 -S'\x10\x08\x00\x00\x00\x00\x00\x00' -tRp4739 -sVbaptist -p4740 -g24 -(g26 -S'\xe2\x02\x00\x00\x00\x00\x00\x00' -tRp4741 -sVcompute -p4742 -g24 -(g26 -S'\x16\x07\x00\x00\x00\x00\x00\x00' -tRp4743 -sVpackard -p4744 -g24 -(g26 -S'\xf8\x17\x00\x00\x00\x00\x00\x00' -tRp4745 -sVplaces -p4746 -g24 -(g26 -S';\x19\x00\x00\x00\x00\x00\x00' -tRp4747 -sVofficial -p4748 -g24 -(g26 -S'[\x17\x00\x00\x00\x00\x00\x00' -tRp4749 -sVsmooth -p4750 -g24 -(g26 -S'I\x1f\x00\x00\x00\x00\x00\x00' -tRp4751 -sVvolvo -p4752 -g24 -(g26 -S'l$\x00\x00\x00\x00\x00\x00' -tRp4753 -sVexcitement -p4754 -g24 -(g26 -S'\x19\x0c\x00\x00\x00\x00\x00\x00' -tRp4755 -sVplaced -p4756 -g24 -(g26 -S'9\x19\x00\x00\x00\x00\x00\x00' -tRp4757 -sVbooks -p4758 -g24 -(g26 -S'\xe9\x03\x00\x00\x00\x00\x00\x00' -tRp4759 -sVproblem -p4760 -g24 -(g26 -S'S\x1a\x00\x00\x00\x00\x00\x00' -tRp4761 -sVinformational -p4762 -g24 -(g26 -S'\x0f\x11\x00\x00\x00\x00\x00\x00' -tRp4763 -sVbearing -p4764 -g24 -(g26 -S'\x1d\x03\x00\x00\x00\x00\x00\x00' -tRp4765 -sVirish -p4766 -g24 -(g26 -S'\xc0\x11\x00\x00\x00\x00\x00\x00' -tRp4767 -sVint -p4768 -g24 -(g26 -S'Z\x11\x00\x00\x00\x00\x00\x00' -tRp4769 -sVrecognize -p4770 -g24 -(g26 -S'\xab\x1b\x00\x00\x00\x00\x00\x00' -tRp4771 -sVcontribute -p4772 -g24 -(g26 -S'\xae\x07\x00\x00\x00\x00\x00\x00' -tRp4773 -sVgraphical -p4774 -g24 -(g26 -S'\xe0\x0e\x00\x00\x00\x00\x00\x00' -tRp4775 -sVins -p4776 -g24 -(g26 -S'0\x11\x00\x00\x00\x00\x00\x00' -tRp4777 -sVinn -p4778 -g24 -(g26 -S'$\x11\x00\x00\x00\x00\x00\x00' -tRp4779 -sVreplica -p4780 -g24 -(g26 -S'L\x1c\x00\x00\x00\x00\x00\x00' -tRp4781 -sVwebsites -p4782 -g24 -(g26 -S'\xda$\x00\x00\x00\x00\x00\x00' -tRp4783 -sVink -p4784 -g24 -(g26 -S'!\x11\x00\x00\x00\x00\x00\x00' -tRp4785 -sVind -p4786 -g24 -(g26 -S'\xdc\x10\x00\x00\x00\x00\x00\x00' -tRp4787 -sVinf -p4788 -g24 -(g26 -S'\xff\x10\x00\x00\x00\x00\x00\x00' -tRp4789 -sVing -p4790 -g24 -(g26 -S'\x15\x11\x00\x00\x00\x00\x00\x00' -tRp4791 -sVprogrammer -p4792 -g24 -(g26 -S'y\x1a\x00\x00\x00\x00\x00\x00' -tRp4793 -sVjesse -p4794 -g24 -(g26 -S'\x0f\x12\x00\x00\x00\x00\x00\x00' -tRp4795 -sVcompared -p4796 -g24 -(g26 -S'\xe6\x06\x00\x00\x00\x00\x00\x00' -tRp4797 -sVvariety -p4798 -g24 -(g26 -S'\xe3#\x00\x00\x00\x00\x00\x00' -tRp4799 -sVdeadly -p4800 -g24 -(g26 -S'\xd3\x08\x00\x00\x00\x00\x00\x00' -tRp4801 -sVforests -p4802 -g24 -(g26 -S'\x9a\r\x00\x00\x00\x00\x00\x00' -tRp4803 -sVlately -p4804 -g24 -(g26 -S'\xf4\x12\x00\x00\x00\x00\x00\x00' -tRp4805 -sVlookup -p4806 -g24 -(g26 -S'\xf8\x13\x00\x00\x00\x00\x00\x00' -tRp4807 -sVdetails -p4808 -g24 -(g26 -S'w\t\x00\x00\x00\x00\x00\x00' -tRp4809 -sVrepeat -p4810 -g24 -(g26 -S'F\x1c\x00\x00\x00\x00\x00\x00' -tRp4811 -sVmonday -p4812 -g24 -(g26 -S'\xd2\x15\x00\x00\x00\x00\x00\x00' -tRp4813 -sVoutlets -p4814 -g24 -(g26 -S'\xd3\x17\x00\x00\x00\x00\x00\x00' -tRp4815 -sVdirectory -p4816 -g24 -(g26 -S'\xda\t\x00\x00\x00\x00\x00\x00' -tRp4817 -sVchance -p4818 -g24 -(g26 -S'\x90\x05\x00\x00\x00\x00\x00\x00' -tRp4819 -sVexposure -p4820 -g24 -(g26 -S'e\x0c\x00\x00\x00\x00\x00\x00' -tRp4821 -sVghost -p4822 -g24 -(g26 -S'~\x0e\x00\x00\x00\x00\x00\x00' -tRp4823 -sVrule -p4824 -g24 -(g26 -S']\x1d\x00\x00\x00\x00\x00\x00' -tRp4825 -sVeos -p4826 -g24 -(g26 -S'\xa6\x0b\x00\x00\x00\x00\x00\x00' -tRp4827 -sVlift -p4828 -g24 -(g26 -S'|\x13\x00\x00\x00\x00\x00\x00' -tRp4829 -sVcompete -p4830 -g24 -(g26 -S'\xed\x06\x00\x00\x00\x00\x00\x00' -tRp4831 -sVpension -p4832 -g24 -(g26 -S'\xa1\x18\x00\x00\x00\x00\x00\x00' -tRp4833 -sVsearched -p4834 -g24 -(g26 -S'\x05\x1e\x00\x00\x00\x00\x00\x00' -tRp4835 -sVrural -p4836 -g24 -(g26 -S'f\x1d\x00\x00\x00\x00\x00\x00' -tRp4837 -sVgardens -p4838 -g24 -(g26 -S'4\x0e\x00\x00\x00\x00\x00\x00' -tRp4839 -sVciao -p4840 -g24 -(g26 -S'\x04\x06\x00\x00\x00\x00\x00\x00' -tRp4841 -sVconsolidated -p4842 -g24 -(g26 -S's\x07\x00\x00\x00\x00\x00\x00' -tRp4843 -sVmagnetic -p4844 -g24 -(g26 -S'F\x14\x00\x00\x00\x00\x00\x00' -tRp4845 -sVsaves -p4846 -g24 -(g26 -S'\xb7\x1d\x00\x00\x00\x00\x00\x00' -tRp4847 -sVdesirable -p4848 -g24 -(g26 -S'h\t\x00\x00\x00\x00\x00\x00' -tRp4849 -sVnursery -p4850 -g24 -(g26 -S'\x12\x17\x00\x00\x00\x00\x00\x00' -tRp4851 -sVcontroversial -p4852 -g24 -(g26 -S'\xbb\x07\x00\x00\x00\x00\x00\x00' -tRp4853 -sVoldest -p4854 -g24 -(g26 -S'l\x17\x00\x00\x00\x00\x00\x00' -tRp4855 -sVsaved -p4856 -g24 -(g26 -S'\xb5\x1d\x00\x00\x00\x00\x00\x00' -tRp4857 -sVrelationships -p4858 -g24 -(g26 -S'\x0c\x1c\x00\x00\x00\x00\x00\x00' -tRp4859 -sVvotes -p4860 -g24 -(g26 -S'q$\x00\x00\x00\x00\x00\x00' -tRp4861 -sVporno -p4862 -g24 -(g26 -S'\xa5\x19\x00\x00\x00\x00\x00\x00' -tRp4863 -sVconst -p4864 -g24 -(g26 -S'w\x07\x00\x00\x00\x00\x00\x00' -tRp4865 -sVbike -p4866 -g24 -(g26 -S'|\x03\x00\x00\x00\x00\x00\x00' -tRp4867 -sVvoted -p4868 -g24 -(g26 -S'o$\x00\x00\x00\x00\x00\x00' -tRp4869 -sVmessenger -p4870 -g24 -(g26 -S'3\x15\x00\x00\x00\x00\x00\x00' -tRp4871 -sVworth -p4872 -g24 -(g26 -S'f%\x00\x00\x00\x00\x00\x00' -tRp4873 -sVlack -p4874 -g24 -(g26 -S'\xcb\x12\x00\x00\x00\x00\x00\x00' -tRp4875 -sVgeology -p4876 -g24 -(g26 -S's\x0e\x00\x00\x00\x00\x00\x00' -tRp4877 -sVaurora -p4878 -g24 -(g26 -S'}\x02\x00\x00\x00\x00\x00\x00' -tRp4879 -sVsellers -p4880 -g24 -(g26 -S'7\x1e\x00\x00\x00\x00\x00\x00' -tRp4881 -sVreplication -p4882 -g24 -(g26 -S'M\x1c\x00\x00\x00\x00\x00\x00' -tRp4883 -sVlecture -p4884 -g24 -(g26 -S'-\x13\x00\x00\x00\x00\x00\x00' -tRp4885 -sVjacob -p4886 -g24 -(g26 -S'\xea\x11\x00\x00\x00\x00\x00\x00' -tRp4887 -sVchapel -p4888 -g24 -(g26 -S'\x9b\x05\x00\x00\x00\x00\x00\x00' -tRp4889 -sVtickets -p4890 -g24 -(g26 -S'%"\x00\x00\x00\x00\x00\x00' -tRp4891 -sVpropecia -p4892 -g24 -(g26 -S'\x97\x1a\x00\x00\x00\x00\x00\x00' -tRp4893 -sVinvestigator -p4894 -g24 -(g26 -S'\x9f\x11\x00\x00\x00\x00\x00\x00' -tRp4895 -sVupload -p4896 -g24 -(g26 -S'\x93#\x00\x00\x00\x00\x00\x00' -tRp4897 -sVhumidity -p4898 -g24 -(g26 -S'T\x10\x00\x00\x00\x00\x00\x00' -tRp4899 -sVcasinos -p4900 -g24 -(g26 -S'1\x05\x00\x00\x00\x00\x00\x00' -tRp4901 -sVmath -p4902 -g24 -(g26 -S'\xc8\x14\x00\x00\x00\x00\x00\x00' -tRp4903 -sVindices -p4904 -g24 -(g26 -S'\xef\x10\x00\x00\x00\x00\x00\x00' -tRp4905 -sVcms -p4906 -g24 -(g26 -S'k\x06\x00\x00\x00\x00\x00\x00' -tRp4907 -sVtriumph -p4908 -g24 -(g26 -S'\x05#\x00\x00\x00\x00\x00\x00' -tRp4909 -sVjamaica -p4910 -g24 -(g26 -S'\xf0\x11\x00\x00\x00\x00\x00\x00' -tRp4911 -sVpaperback -p4912 -g24 -(g26 -S' \x18\x00\x00\x00\x00\x00\x00' -tRp4913 -sVdeutsch -p4914 -g24 -(g26 -S'\x83\t\x00\x00\x00\x00\x00\x00' -tRp4915 -sVphones -p4916 -g24 -(g26 -S'\xf5\x18\x00\x00\x00\x00\x00\x00' -tRp4917 -sVhorn -p4918 -g24 -(g26 -S'\x1c\x10\x00\x00\x00\x00\x00\x00' -tRp4919 -sVchef -p4920 -g24 -(g26 -S'\xc7\x05\x00\x00\x00\x00\x00\x00' -tRp4921 -sVebony -p4922 -g24 -(g26 -S'\xdc\n\x00\x00\x00\x00\x00\x00' -tRp4923 -sVchen -p4924 -g24 -(g26 -S'\xcd\x05\x00\x00\x00\x00\x00\x00' -tRp4925 -sVchem -p4926 -g24 -(g26 -S'\xc9\x05\x00\x00\x00\x00\x00\x00' -tRp4927 -sVspecs -p4928 -g24 -(g26 -S'\xbb\x1f\x00\x00\x00\x00\x00\x00' -tRp4929 -sVmachines -p4930 -g24 -(g26 -S'5\x14\x00\x00\x00\x00\x00\x00' -tRp4931 -sVestablished -p4932 -g24 -(g26 -S'\xd2\x0b\x00\x00\x00\x00\x00\x00' -tRp4933 -sVmpeg -p4934 -g24 -(g26 -S'\x16\x16\x00\x00\x00\x00\x00\x00' -tRp4935 -sVdecisions -p4936 -g24 -(g26 -S'\xef\x08\x00\x00\x00\x00\x00\x00' -tRp4937 -sVfindarticles -p4938 -g24 -(g26 -S'\x1b\r\x00\x00\x00\x00\x00\x00' -tRp4939 -sVreconstruction -p4940 -g24 -(g26 -S'\xb2\x1b\x00\x00\x00\x00\x00\x00' -tRp4941 -sVtoll -p4942 -g24 -(g26 -S'\\"\x00\x00\x00\x00\x00\x00' -tRp4943 -sVchurches -p4944 -g24 -(g26 -S'\x00\x06\x00\x00\x00\x00\x00\x00' -tRp4945 -sVofficially -p4946 -g24 -(g26 -S'\\\x17\x00\x00\x00\x00\x00\x00' -tRp4947 -sVconsisting -p4948 -g24 -(g26 -S'o\x07\x00\x00\x00\x00\x00\x00' -tRp4949 -sVtold -p4950 -g24 -(g26 -S'Z"\x00\x00\x00\x00\x00\x00' -tRp4951 -sVbi -p4952 -g24 -(g26 -S'n\x03\x00\x00\x00\x00\x00\x00' -tRp4953 -sVsimultaneously -p4954 -g24 -(g26 -S'\xfd\x1e\x00\x00\x00\x00\x00\x00' -tRp4955 -sVwrapping -p4956 -g24 -(g26 -S'n%\x00\x00\x00\x00\x00\x00' -tRp4957 -sVbangkok -p4958 -g24 -(g26 -S'\xd9\x02\x00\x00\x00\x00\x00\x00' -tRp4959 -sVprotection -p4960 -g24 -(g26 -S'\xae\x1a\x00\x00\x00\x00\x00\x00' -tRp4961 -sVpursuit -p4962 -g24 -(g26 -S'\xf7\x1a\x00\x00\x00\x00\x00\x00' -tRp4963 -sVcelebration -p4964 -g24 -(g26 -S'Z\x05\x00\x00\x00\x00\x00\x00' -tRp4965 -sVobtained -p4966 -g24 -(g26 -S'5\x17\x00\x00\x00\x00\x00\x00' -tRp4967 -sVdaughter -p4968 -g24 -(g26 -S'\xc3\x08\x00\x00\x00\x00\x00\x00' -tRp4969 -sVitems -p4970 -g24 -(g26 -S'\xde\x11\x00\x00\x00\x00\x00\x00' -tRp4971 -sVemployees -p4972 -g24 -(g26 -S'M\x0b\x00\x00\x00\x00\x00\x00' -tRp4973 -sVicons -p4974 -g24 -(g26 -S't\x10\x00\x00\x00\x00\x00\x00' -tRp4975 -sVitunes -p4976 -g24 -(g26 -S'\xdf\x11\x00\x00\x00\x00\x00\x00' -tRp4977 -sVsmoke -p4978 -g24 -(g26 -S'G\x1f\x00\x00\x00\x00\x00\x00' -tRp4979 -sVencourage -p4980 -g24 -(g26 -S'\\\x0b\x00\x00\x00\x00\x00\x00' -tRp4981 -sVcalculators -p4982 -g24 -(g26 -S'\xc6\x04\x00\x00\x00\x00\x00\x00' -tRp4983 -sVaka -p4984 -g24 -(g26 -S'\xf3\x00\x00\x00\x00\x00\x00\x00' -tRp4985 -sVdiameter -p4986 -g24 -(g26 -S'\xa3\t\x00\x00\x00\x00\x00\x00' -tRp4987 -sVsecure -p4988 -g24 -(g26 -S'\x1c\x1e\x00\x00\x00\x00\x00\x00' -tRp4989 -sVhighly -p4990 -g24 -(g26 -S'\xcf\x0f\x00\x00\x00\x00\x00\x00' -tRp4991 -sVcheats -p4992 -g24 -(g26 -S'\xbe\x05\x00\x00\x00\x00\x00\x00' -tRp4993 -sVthursday -p4994 -g24 -(g26 -S'!"\x00\x00\x00\x00\x00\x00' -tRp4995 -sVglance -p4996 -g24 -(g26 -S'\x93\x0e\x00\x00\x00\x00\x00\x00' -tRp4997 -sVtotal -p4998 -g24 -(g26 -S'x"\x00\x00\x00\x00\x00\x00' -tRp4999 -sVbra -p5000 -g24 -(g26 -S'\x13\x04\x00\x00\x00\x00\x00\x00' -tRp5001 -sVsarah -p5002 -g24 -(g26 -S'\xa4\x1d\x00\x00\x00\x00\x00\x00' -tRp5003 -sVplot -p5004 -g24 -(g26 -S'e\x19\x00\x00\x00\x00\x00\x00' -tRp5005 -sVpalestinian -p5006 -g24 -(g26 -S'\x11\x18\x00\x00\x00\x00\x00\x00' -tRp5007 -sVcoins -p5008 -g24 -(g26 -S'\x84\x06\x00\x00\x00\x00\x00\x00' -tRp5009 -sVnegative -p5010 -g24 -(g26 -S'\x88\x16\x00\x00\x00\x00\x00\x00' -tRp5011 -sVminolta -p5012 -g24 -(g26 -S'\x87\x15\x00\x00\x00\x00\x00\x00' -tRp5013 -sVindiana -p5014 -g24 -(g26 -S'\xe5\x10\x00\x00\x00\x00\x00\x00' -tRp5015 -sVseparated -p5016 -g24 -(g26 -S'U\x1e\x00\x00\x00\x00\x00\x00' -tRp5017 -sVaward -p5018 -g24 -(g26 -S'\xa3\x02\x00\x00\x00\x00\x00\x00' -tRp5019 -sVaware -p5020 -g24 -(g26 -S'\xa6\x02\x00\x00\x00\x00\x00\x00' -tRp5021 -sVchampionships -p5022 -g24 -(g26 -S'\x8e\x05\x00\x00\x00\x00\x00\x00' -tRp5023 -sVtariff -p5024 -g24 -(g26 -S'p!\x00\x00\x00\x00\x00\x00' -tRp5025 -sVblocking -p5026 -g24 -(g26 -S'\xb5\x03\x00\x00\x00\x00\x00\x00' -tRp5027 -sVii -p5028 -g24 -(g26 -S'\x8b\x10\x00\x00\x00\x00\x00\x00' -tRp5029 -sVspringer -p5030 -g24 -(g26 -S'\xe6\x1f\x00\x00\x00\x00\x00\x00' -tRp5031 -sVkelkoo -p5032 -g24 -(g26 -S't\x12\x00\x00\x00\x00\x00\x00' -tRp5033 -sVword -p5034 -g24 -(g26 -S'J%\x00\x00\x00\x00\x00\x00' -tRp5035 -sVpermits -p5036 -g24 -(g26 -S'\xc1\x18\x00\x00\x00\x00\x00\x00' -tRp5037 -sVpresentation -p5038 -g24 -(g26 -S'\x14\x1a\x00\x00\x00\x00\x00\x00' -tRp5039 -sVwork -p5040 -g24 -(g26 -S'M%\x00\x00\x00\x00\x00\x00' -tRp5041 -sVeclipse -p5042 -g24 -(g26 -S'\xe1\n\x00\x00\x00\x00\x00\x00' -tRp5043 -sVworm -p5044 -g24 -(g26 -S'_%\x00\x00\x00\x00\x00\x00' -tRp5045 -sVworn -p5046 -g24 -(g26 -S'`%\x00\x00\x00\x00\x00\x00' -tRp5047 -sVtheories -p5048 -g24 -(g26 -S'\xed!\x00\x00\x00\x00\x00\x00' -tRp5049 -sVoxide -p5050 -g24 -(g26 -S'\xec\x17\x00\x00\x00\x00\x00\x00' -tRp5051 -sVera -p5052 -g24 -(g26 -S'\xba\x0b\x00\x00\x00\x00\x00\x00' -tRp5053 -sVtransparency -p5054 -g24 -(g26 -S'\xca"\x00\x00\x00\x00\x00\x00' -tRp5055 -sVscripting -p5056 -g24 -(g26 -S'\xf7\x1d\x00\x00\x00\x00\x00\x00' -tRp5057 -sVinitial -p5058 -g24 -(g26 -S'\x18\x11\x00\x00\x00\x00\x00\x00' -tRp5059 -sVindicated -p5060 -g24 -(g26 -S'\xe9\x10\x00\x00\x00\x00\x00\x00' -tRp5061 -sVindie -p5062 -g24 -(g26 -S'\xf0\x10\x00\x00\x00\x00\x00\x00' -tRp5063 -sVcited -p5064 -g24 -(g26 -S'\x19\x06\x00\x00\x00\x00\x00\x00' -tRp5065 -sVbennett -p5066 -g24 -(g26 -S'X\x03\x00\x00\x00\x00\x00\x00' -tRp5067 -sVindia -p5068 -g24 -(g26 -S'\xe3\x10\x00\x00\x00\x00\x00\x00' -tRp5069 -sVindicates -p5070 -g24 -(g26 -S'\xea\x10\x00\x00\x00\x00\x00\x00' -tRp5071 -sVviolin -p5072 -g24 -(g26 -S'A$\x00\x00\x00\x00\x00\x00' -tRp5073 -sVrecovery -p5074 -g24 -(g26 -S'\xbc\x1b\x00\x00\x00\x00\x00\x00' -tRp5075 -sVcarriers -p5076 -g24 -(g26 -S'\x1d\x05\x00\x00\x00\x00\x00\x00' -tRp5077 -sVprovide -p5078 -g24 -(g26 -S'\xbb\x1a\x00\x00\x00\x00\x00\x00' -tRp5079 -sVverify -p5080 -g24 -(g26 -S'\x07$\x00\x00\x00\x00\x00\x00' -tRp5081 -sVsong -p5082 -g24 -(g26 -S'x\x1f\x00\x00\x00\x00\x00\x00' -tRp5083 -sVnuts -p5084 -g24 -(g26 -S'\x18\x17\x00\x00\x00\x00\x00\x00' -tRp5085 -sVfar -p5086 -g24 -(g26 -S'\xaf\x0c\x00\x00\x00\x00\x00\x00' -tRp5087 -sVboats -p5088 -g24 -(g26 -S'\xd1\x03\x00\x00\x00\x00\x00\x00' -tRp5089 -sVordinary -p5090 -g24 -(g26 -S'\xad\x17\x00\x00\x00\x00\x00\x00' -tRp5091 -sVbeach -p5092 -g24 -(g26 -S'\x16\x03\x00\x00\x00\x00\x00\x00' -tRp5093 -sVoffshore -p5094 -g24 -(g26 -S'`\x17\x00\x00\x00\x00\x00\x00' -tRp5095 -sVpizza -p5096 -g24 -(g26 -S'4\x19\x00\x00\x00\x00\x00\x00' -tRp5097 -sVlan -p5098 -g24 -(g26 -S'\xd8\x12\x00\x00\x00\x00\x00\x00' -tRp5099 -sVfever -p5100 -g24 -(g26 -S'\xf2\x0c\x00\x00\x00\x00\x00\x00' -tRp5101 -sVladder -p5102 -g24 -(g26 -S'\xcc\x12\x00\x00\x00\x00\x00\x00' -tRp5103 -sVearlier -p5104 -g24 -(g26 -S'\xc6\n\x00\x00\x00\x00\x00\x00' -tRp5105 -sVmemorial -p5106 -g24 -(g26 -S'\x14\x15\x00\x00\x00\x00\x00\x00' -tRp5107 -sVlab -p5108 -g24 -(g26 -S'\xc2\x12\x00\x00\x00\x00\x00\x00' -tRp5109 -sVcustoms -p5110 -g24 -(g26 -S'\x8c\x08\x00\x00\x00\x00\x00\x00' -tRp5111 -sVlay -p5112 -g24 -(g26 -S'\x0e\x13\x00\x00\x00\x00\x00\x00' -tRp5113 -sVlat -p5114 -g24 -(g26 -S'\xf2\x12\x00\x00\x00\x00\x00\x00' -tRp5115 -sVlaw -p5116 -g24 -(g26 -S'\x07\x13\x00\x00\x00\x00\x00\x00' -tRp5117 -sVarch -p5118 -g24 -(g26 -S'\xd8\x01\x00\x00\x00\x00\x00\x00' -tRp5119 -sVlas -p5120 -g24 -(g26 -S'\xef\x12\x00\x00\x00\x00\x00\x00' -tRp5121 -sVappreciate -p5122 -g24 -(g26 -S'\xbb\x01\x00\x00\x00\x00\x00\x00' -tRp5123 -sVgreek -p5124 -g24 -(g26 -S'\xf0\x0e\x00\x00\x00\x00\x00\x00' -tRp5125 -sVgreen -p5126 -g24 -(g26 -S'\xf1\x0e\x00\x00\x00\x00\x00\x00' -tRp5127 -sVparish -p5128 -g24 -(g26 -S'4\x18\x00\x00\x00\x00\x00\x00' -tRp5129 -sVworst -p5130 -g24 -(g26 -S'e%\x00\x00\x00\x00\x00\x00' -tRp5131 -sVorder -p5132 -g24 -(g26 -S'\xa8\x17\x00\x00\x00\x00\x00\x00' -tRp5133 -sVlindsay -p5134 -g24 -(g26 -S'\x95\x13\x00\x00\x00\x00\x00\x00' -tRp5135 -sVsalon -p5136 -g24 -(g26 -S'\x8c\x1d\x00\x00\x00\x00\x00\x00' -tRp5137 -sVcumulative -p5138 -g24 -(g26 -S'w\x08\x00\x00\x00\x00\x00\x00' -tRp5139 -sVoffice -p5140 -g24 -(g26 -S'W\x17\x00\x00\x00\x00\x00\x00' -tRp5141 -sVconsent -p5142 -g24 -(g26 -S'^\x07\x00\x00\x00\x00\x00\x00' -tRp5143 -sVzen -p5144 -g24 -(g26 -S'\xb8%\x00\x00\x00\x00\x00\x00' -tRp5145 -sVsatisfied -p5146 -g24 -(g26 -S'\xac\x1d\x00\x00\x00\x00\x00\x00' -tRp5147 -sVfinest -p5148 -g24 -(g26 -S'"\r\x00\x00\x00\x00\x00\x00' -tRp5149 -sVfrequency -p5150 -g24 -(g26 -S'\xde\r\x00\x00\x00\x00\x00\x00' -tRp5151 -sVinnovative -p5152 -g24 -(g26 -S')\x11\x00\x00\x00\x00\x00\x00' -tRp5153 -sVjapan -p5154 -g24 -(g26 -S'\xf7\x11\x00\x00\x00\x00\x00\x00' -tRp5155 -sVmayor -p5156 -g24 -(g26 -S'\xda\x14\x00\x00\x00\x00\x00\x00' -tRp5157 -sVhighlights -p5158 -g24 -(g26 -S'\xce\x0f\x00\x00\x00\x00\x00\x00' -tRp5159 -sVrecreational -p5160 -g24 -(g26 -S'\xbe\x1b\x00\x00\x00\x00\x00\x00' -tRp5161 -sVdenver -p5162 -g24 -(g26 -S'@\t\x00\x00\x00\x00\x00\x00' -tRp5163 -sVproduction -p5164 -g24 -(g26 -S'j\x1a\x00\x00\x00\x00\x00\x00' -tRp5165 -sVpotentially -p5166 -g24 -(g26 -S'\xd2\x19\x00\x00\x00\x00\x00\x00' -tRp5167 -sVdamages -p5168 -g24 -(g26 -S'\xa8\x08\x00\x00\x00\x00\x00\x00' -tRp5169 -sVversus -p5170 -g24 -(g26 -S'\x0e$\x00\x00\x00\x00\x00\x00' -tRp5171 -sVeventually -p5172 -g24 -(g26 -S'\xf8\x0b\x00\x00\x00\x00\x00\x00' -tRp5173 -sVcoffee -p5174 -g24 -(g26 -S'\x80\x06\x00\x00\x00\x00\x00\x00' -tRp5175 -sVaffected -p5176 -g24 -(g26 -S'\xbf\x00\x00\x00\x00\x00\x00\x00' -tRp5177 -sVthee -p5178 -g24 -(g26 -S'\xe5!\x00\x00\x00\x00\x00\x00' -tRp5179 -sVsafe -p5180 -g24 -(g26 -S'x\x1d\x00\x00\x00\x00\x00\x00' -tRp5181 -sVtouring -p5182 -g24 -(g26 -S'\x7f"\x00\x00\x00\x00\x00\x00' -tRp5183 -sVbreak -p5184 -g24 -(g26 -S')\x04\x00\x00\x00\x00\x00\x00' -tRp5185 -sVband -p5186 -g24 -(g26 -S'\xd4\x02\x00\x00\x00\x00\x00\x00' -tRp5187 -sVbang -p5188 -g24 -(g26 -S'\xd7\x02\x00\x00\x00\x00\x00\x00' -tRp5189 -sVpenetration -p5190 -g24 -(g26 -S'\x99\x18\x00\x00\x00\x00\x00\x00' -tRp5191 -sVfear -p5192 -g24 -(g26 -S'\xce\x0c\x00\x00\x00\x00\x00\x00' -tRp5193 -sVstrategic -p5194 -g24 -(g26 -S'a \x00\x00\x00\x00\x00\x00' -tRp5195 -sVbank -p5196 -g24 -(g26 -S'\xdb\x02\x00\x00\x00\x00\x00\x00' -tRp5197 -sVbread -p5198 -g24 -(g26 -S'(\x04\x00\x00\x00\x00\x00\x00' -tRp5199 -sVrocky -p5200 -g24 -(g26 -S'\x19\x1d\x00\x00\x00\x00\x00\x00' -tRp5201 -sVoxygen -p5202 -g24 -(g26 -S'\xed\x17\x00\x00\x00\x00\x00\x00' -tRp5203 -sVchangelog -p5204 -g24 -(g26 -S'\x95\x05\x00\x00\x00\x00\x00\x00' -tRp5205 -sVreasonably -p5206 -g24 -(g26 -S'\x90\x1b\x00\x00\x00\x00\x00\x00' -tRp5207 -sVclassified -p5208 -g24 -(g26 -S'5\x06\x00\x00\x00\x00\x00\x00' -tRp5209 -sVbackgrounds -p5210 -g24 -(g26 -S'\xb7\x02\x00\x00\x00\x00\x00\x00' -tRp5211 -sVrocks -p5212 -g24 -(g26 -S'\x18\x1d\x00\x00\x00\x00\x00\x00' -tRp5213 -sVreasonable -p5214 -g24 -(g26 -S'\x8f\x1b\x00\x00\x00\x00\x00\x00' -tRp5215 -sVfeeds -p5216 -g24 -(g26 -S'\xde\x0c\x00\x00\x00\x00\x00\x00' -tRp5217 -sVcarlos -p5218 -g24 -(g26 -S'\x14\x05\x00\x00\x00\x00\x00\x00' -tRp5219 -sVschemes -p5220 -g24 -(g26 -S'\xd5\x1d\x00\x00\x00\x00\x00\x00' -tRp5221 -sVlogs -p5222 -g24 -(g26 -S'\xe9\x13\x00\x00\x00\x00\x00\x00' -tRp5223 -sVcouncils -p5224 -g24 -(g26 -S'\r\x08\x00\x00\x00\x00\x00\x00' -tRp5225 -sVcrimes -p5226 -g24 -(g26 -S'O\x08\x00\x00\x00\x00\x00\x00' -tRp5227 -sVhosted -p5228 -g24 -(g26 -S"'\x10\x00\x00\x00\x00\x00\x00" -tRp5229 -sVlogo -p5230 -g24 -(g26 -S'\xe7\x13\x00\x00\x00\x00\x00\x00' -tRp5231 -sVhostel -p5232 -g24 -(g26 -S'(\x10\x00\x00\x00\x00\x00\x00' -tRp5233 -sVnetwork -p5234 -g24 -(g26 -S'\x9a\x16\x00\x00\x00\x00\x00\x00' -tRp5235 -sVcameras -p5236 -g24 -(g26 -S'\xd9\x04\x00\x00\x00\x00\x00\x00' -tRp5237 -sVdiesel -p5238 -g24 -(g26 -S'\xb4\t\x00\x00\x00\x00\x00\x00' -tRp5239 -sVvessels -p5240 -g24 -(g26 -S'\x13$\x00\x00\x00\x00\x00\x00' -tRp5241 -sVfellowship -p5242 -g24 -(g26 -S'\xe7\x0c\x00\x00\x00\x00\x00\x00' -tRp5243 -sVdaniel -p5244 -g24 -(g26 -S'\xb1\x08\x00\x00\x00\x00\x00\x00' -tRp5245 -sVmedicine -p5246 -g24 -(g26 -S'\xfd\x14\x00\x00\x00\x00\x00\x00' -tRp5247 -sVforth -p5248 -g24 -(g26 -S'\xac\r\x00\x00\x00\x00\x00\x00' -tRp5249 -sVbarrier -p5250 -g24 -(g26 -S'\xef\x02\x00\x00\x00\x00\x00\x00' -tRp5251 -sVqualifications -p5252 -g24 -(g26 -S'\t\x1b\x00\x00\x00\x00\x00\x00' -tRp5253 -sVstandard -p5254 -g24 -(g26 -S'\x07 \x00\x00\x00\x00\x00\x00' -tRp5255 -sVcampaigns -p5256 -g24 -(g26 -S'\xde\x04\x00\x00\x00\x00\x00\x00' -tRp5257 -sVappointments -p5258 -g24 -(g26 -S'\xb9\x01\x00\x00\x00\x00\x00\x00' -tRp5259 -sVtechno -p5260 -g24 -(g26 -S'\x90!\x00\x00\x00\x00\x00\x00' -tRp5261 -sVstorm -p5262 -g24 -(g26 -S'X \x00\x00\x00\x00\x00\x00' -tRp5263 -sVcertified -p5264 -g24 -(g26 -S'w\x05\x00\x00\x00\x00\x00\x00' -tRp5265 -sVphotographers -p5266 -g24 -(g26 -S'\xf9\x18\x00\x00\x00\x00\x00\x00' -tRp5267 -sVcreates -p5268 -g24 -(g26 -S'?\x08\x00\x00\x00\x00\x00\x00' -tRp5269 -sVfestival -p5270 -g24 -(g26 -S'\xef\x0c\x00\x00\x00\x00\x00\x00' -tRp5271 -sVrenew -p5272 -g24 -(g26 -S'<\x1c\x00\x00\x00\x00\x00\x00' -tRp5273 -sVincorporated -p5274 -g24 -(g26 -S'\xd3\x10\x00\x00\x00\x00\x00\x00' -tRp5275 -sVorganize -p5276 -g24 -(g26 -S'\xb8\x17\x00\x00\x00\x00\x00\x00' -tRp5277 -sVkim -p5278 -g24 -(g26 -S'\x94\x12\x00\x00\x00\x00\x00\x00' -tRp5279 -sVrender -p5280 -g24 -(g26 -S'9\x1c\x00\x00\x00\x00\x00\x00' -tRp5281 -sVdelicious -p5282 -g24 -(g26 -S'\x1f\t\x00\x00\x00\x00\x00\x00' -tRp5283 -sVtel -p5284 -g24 -(g26 -S'\x9c!\x00\x00\x00\x00\x00\x00' -tRp5285 -sVcomic -p5286 -g24 -(g26 -S'\xba\x06\x00\x00\x00\x00\x00\x00' -tRp5287 -sVelectronic -p5288 -g24 -(g26 -S'#\x0b\x00\x00\x00\x00\x00\x00' -tRp5289 -sVtimothy -p5290 -g24 -(g26 -S';"\x00\x00\x00\x00\x00\x00' -tRp5291 -sVrated -p5292 -g24 -(g26 -S'e\x1b\x00\x00\x00\x00\x00\x00' -tRp5293 -sVapproximately -p5294 -g24 -(g26 -S'\xc7\x01\x00\x00\x00\x00\x00\x00' -tRp5295 -sVrates -p5296 -g24 -(g26 -S'f\x1b\x00\x00\x00\x00\x00\x00' -tRp5297 -sVobservations -p5298 -g24 -(g26 -S'0\x17\x00\x00\x00\x00\x00\x00' -tRp5299 -sVjohn -p5300 -g24 -(g26 -S'$\x12\x00\x00\x00\x00\x00\x00' -tRp5301 -sVdogs -p5302 -g24 -(g26 -S'F\n\x00\x00\x00\x00\x00\x00' -tRp5303 -sVenhancing -p5304 -g24 -(g26 -S'\x7f\x0b\x00\x00\x00\x00\x00\x00' -tRp5305 -sValbert -p5306 -g24 -(g26 -S'\xfc\x00\x00\x00\x00\x00\x00\x00' -tRp5307 -sVrejected -p5308 -g24 -(g26 -S'\x04\x1c\x00\x00\x00\x00\x00\x00' -tRp5309 -sVhonolulu -p5310 -g24 -(g26 -S'\r\x10\x00\x00\x00\x00\x00\x00' -tRp5311 -sVtoronto -p5312 -g24 -(g26 -S'u"\x00\x00\x00\x00\x00\x00' -tRp5313 -sVmercy -p5314 -g24 -(g26 -S'&\x15\x00\x00\x00\x00\x00\x00' -tRp5315 -sVguild -p5316 -g24 -(g26 -S'%\x0f\x00\x00\x00\x00\x00\x00' -tRp5317 -sVtarget -p5318 -g24 -(g26 -S'm!\x00\x00\x00\x00\x00\x00' -tRp5319 -sVscenes -p5320 -g24 -(g26 -S'\xcd\x1d\x00\x00\x00\x00\x00\x00' -tRp5321 -sVebay -p5322 -g24 -(g26 -S'\xdb\n\x00\x00\x00\x00\x00\x00' -tRp5323 -sVhistorical -p5324 -g24 -(g26 -S'\xe1\x0f\x00\x00\x00\x00\x00\x00' -tRp5325 -sVpowers -p5326 -g24 -(g26 -S'\xe0\x19\x00\x00\x00\x00\x00\x00' -tRp5327 -sVminus -p5328 -g24 -(g26 -S'\x8c\x15\x00\x00\x00\x00\x00\x00' -tRp5329 -sVnavigate -p5330 -g24 -(g26 -S'n\x16\x00\x00\x00\x00\x00\x00' -tRp5331 -sVdildo -p5332 -g24 -(g26 -S'\xc6\t\x00\x00\x00\x00\x00\x00' -tRp5333 -sVmanner -p5334 -g24 -(g26 -S'z\x14\x00\x00\x00\x00\x00\x00' -tRp5335 -sVcontents -p5336 -g24 -(g26 -S'\x99\x07\x00\x00\x00\x00\x00\x00' -tRp5337 -sVgear -p5338 -g24 -(g26 -S'M\x0e\x00\x00\x00\x00\x00\x00' -tRp5339 -sVforced -p5340 -g24 -(g26 -S'\x92\r\x00\x00\x00\x00\x00\x00' -tRp5341 -sVstrength -p5342 -g24 -(g26 -S'i \x00\x00\x00\x00\x00\x00' -tRp5343 -sVgenuine -p5344 -g24 -(g26 -S'm\x0e\x00\x00\x00\x00\x00\x00' -tRp5345 -sVladen -p5346 -g24 -(g26 -S'\xcd\x12\x00\x00\x00\x00\x00\x00' -tRp5347 -sVconvenient -p5348 -g24 -(g26 -S'\xbe\x07\x00\x00\x00\x00\x00\x00' -tRp5349 -sVindexes -p5350 -g24 -(g26 -S'\xe2\x10\x00\x00\x00\x00\x00\x00' -tRp5351 -sVmaterials -p5352 -g24 -(g26 -S'\xc6\x14\x00\x00\x00\x00\x00\x00' -tRp5353 -sVluxury -p5354 -g24 -(g26 -S'*\x14\x00\x00\x00\x00\x00\x00' -tRp5355 -sVforces -p5356 -g24 -(g26 -S'\x93\r\x00\x00\x00\x00\x00\x00' -tRp5357 -sVindexed -p5358 -g24 -(g26 -S'\xe1\x10\x00\x00\x00\x00\x00\x00' -tRp5359 -sVexplanation -p5360 -g24 -(g26 -S'Y\x0c\x00\x00\x00\x00\x00\x00' -tRp5361 -sVcircles -p5362 -g24 -(g26 -S'\x0e\x06\x00\x00\x00\x00\x00\x00' -tRp5363 -sVmaiden -p5364 -g24 -(g26 -S'J\x14\x00\x00\x00\x00\x00\x00' -tRp5365 -sVbruce -p5366 -g24 -(g26 -S'c\x04\x00\x00\x00\x00\x00\x00' -tRp5367 -sViceland -p5368 -g24 -(g26 -S'r\x10\x00\x00\x00\x00\x00\x00' -tRp5369 -sVebook -p5370 -g24 -(g26 -S'\xdd\n\x00\x00\x00\x00\x00\x00' -tRp5371 -sVanatomy -p5372 -g24 -(g26 -S'V\x01\x00\x00\x00\x00\x00\x00' -tRp5373 -sVextending -p5374 -g24 -(g26 -S'm\x0c\x00\x00\x00\x00\x00\x00' -tRp5375 -sVinvolving -p5376 -g24 -(g26 -S'\xb1\x11\x00\x00\x00\x00\x00\x00' -tRp5377 -sVgermany -p5378 -g24 -(g26 -S'y\x0e\x00\x00\x00\x00\x00\x00' -tRp5379 -sVscripts -p5380 -g24 -(g26 -S'\xf8\x1d\x00\x00\x00\x00\x00\x00' -tRp5381 -sVphase -p5382 -g24 -(g26 -S'\xe6\x18\x00\x00\x00\x00\x00\x00' -tRp5383 -sVassessed -p5384 -g24 -(g26 -S'%\x02\x00\x00\x00\x00\x00\x00' -tRp5385 -sVgrave -p5386 -g24 -(g26 -S'\xe8\x0e\x00\x00\x00\x00\x00\x00' -tRp5387 -sVwebcam -p5388 -g24 -(g26 -S'\xd0$\x00\x00\x00\x00\x00\x00' -tRp5389 -sVconsumers -p5390 -g24 -(g26 -S'\x8a\x07\x00\x00\x00\x00\x00\x00' -tRp5391 -sVcalculated -p5392 -g24 -(g26 -S'\xc2\x04\x00\x00\x00\x00\x00\x00' -tRp5393 -sVbarnes -p5394 -g24 -(g26 -S'\xed\x02\x00\x00\x00\x00\x00\x00' -tRp5395 -sValumni -p5396 -g24 -(g26 -S'1\x01\x00\x00\x00\x00\x00\x00' -tRp5397 -sVbracket -p5398 -g24 -(g26 -S'\x16\x04\x00\x00\x00\x00\x00\x00' -tRp5399 -sVsun -p5400 -g24 -(g26 -S'\xdb \x00\x00\x00\x00\x00\x00' -tRp5401 -sVvoting -p5402 -g24 -(g26 -S'r$\x00\x00\x00\x00\x00\x00' -tRp5403 -sVnotion -p5404 -g24 -(g26 -S'\xf6\x16\x00\x00\x00\x00\x00\x00' -tRp5405 -sVfitted -p5406 -g24 -(g26 -S'@\r\x00\x00\x00\x00\x00\x00' -tRp5407 -sVreserve -p5408 -g24 -(g26 -S'|\x1c\x00\x00\x00\x00\x00\x00' -tRp5409 -sVlewis -p5410 -g24 -(g26 -S']\x13\x00\x00\x00\x00\x00\x00' -tRp5411 -sVinfrared -p5412 -g24 -(g26 -S'\x12\x11\x00\x00\x00\x00\x00\x00' -tRp5413 -sVreligions -p5414 -g24 -(g26 -S'\x1d\x1c\x00\x00\x00\x00\x00\x00' -tRp5415 -sVcorp -p5416 -g24 -(g26 -S'\xf2\x07\x00\x00\x00\x00\x00\x00' -tRp5417 -sVkeywords -p5418 -g24 -(g26 -S'\x87\x12\x00\x00\x00\x00\x00\x00' -tRp5419 -sVsubtle -p5420 -g24 -(g26 -S'\xb5 \x00\x00\x00\x00\x00\x00' -tRp5421 -sVenjoyed -p5422 -g24 -(g26 -S'\x81\x0b\x00\x00\x00\x00\x00\x00' -tRp5423 -sVjust -p5424 -g24 -(g26 -S'[\x12\x00\x00\x00\x00\x00\x00' -tRp5425 -sVimplementation -p5426 -g24 -(g26 -S'\xa7\x10\x00\x00\x00\x00\x00\x00' -tRp5427 -sVguidance -p5428 -g24 -(g26 -S' \x0f\x00\x00\x00\x00\x00\x00' -tRp5429 -sVsentence -p5430 -g24 -(g26 -S'P\x1e\x00\x00\x00\x00\x00\x00' -tRp5431 -sVhrs -p5432 -g24 -(g26 -S'B\x10\x00\x00\x00\x00\x00\x00' -tRp5433 -sVscreening -p5434 -g24 -(g26 -S'\xef\x1d\x00\x00\x00\x00\x00\x00' -tRp5435 -sVadequate -p5436 -g24 -(g26 -S'\x82\x00\x00\x00\x00\x00\x00\x00' -tRp5437 -sVpersonality -p5438 -g24 -(g26 -S'\xc8\x18\x00\x00\x00\x00\x00\x00' -tRp5439 -sVdl -p5440 -g24 -(g26 -S'2\n\x00\x00\x00\x00\x00\x00' -tRp5441 -sVdm -p5442 -g24 -(g26 -S'3\n\x00\x00\x00\x00\x00\x00' -tRp5443 -sVdj -p5444 -g24 -(g26 -S'0\n\x00\x00\x00\x00\x00\x00' -tRp5445 -sVdk -p5446 -g24 -(g26 -S'1\n\x00\x00\x00\x00\x00\x00' -tRp5447 -sVdh -p5448 -g24 -(g26 -S'\x9a\t\x00\x00\x00\x00\x00\x00' -tRp5449 -sVdi -p5450 -g24 -(g26 -S'\x9b\t\x00\x00\x00\x00\x00\x00' -tRp5451 -sVdf -p5452 -g24 -(g26 -S'\x98\t\x00\x00\x00\x00\x00\x00' -tRp5453 -sVdg -p5454 -g24 -(g26 -S'\x99\t\x00\x00\x00\x00\x00\x00' -tRp5455 -sVdd -p5456 -g24 -(g26 -S'\xcf\x08\x00\x00\x00\x00\x00\x00' -tRp5457 -sVdb -p5458 -g24 -(g26 -S'\xcd\x08\x00\x00\x00\x00\x00\x00' -tRp5459 -sVdc -p5460 -g24 -(g26 -S'\xce\x08\x00\x00\x00\x00\x00\x00' -tRp5461 -sVleisure -p5462 -g24 -(g26 -S'?\x13\x00\x00\x00\x00\x00\x00' -tRp5463 -sVda -p5464 -g24 -(g26 -S'\x9c\x08\x00\x00\x00\x00\x00\x00' -tRp5465 -sVwatson -p5466 -g24 -(g26 -S'\xbc$\x00\x00\x00\x00\x00\x00' -tRp5467 -sVdx -p5468 -g24 -(g26 -S'\xbc\n\x00\x00\x00\x00\x00\x00' -tRp5469 -sVdv -p5470 -g24 -(g26 -S'\xb9\n\x00\x00\x00\x00\x00\x00' -tRp5471 -sVdt -p5472 -g24 -(g26 -S'\xa3\n\x00\x00\x00\x00\x00\x00' -tRp5473 -sVdu -p5474 -g24 -(g26 -S'\xa5\n\x00\x00\x00\x00\x00\x00' -tRp5475 -sVdr -p5476 -g24 -(g26 -S't\n\x00\x00\x00\x00\x00\x00' -tRp5477 -sVds -p5478 -g24 -(g26 -S'\xa0\n\x00\x00\x00\x00\x00\x00' -tRp5479 -sVdp -p5480 -g24 -(g26 -S'r\n\x00\x00\x00\x00\x00\x00' -tRp5481 -sVruns -p5482 -g24 -(g26 -S'd\x1d\x00\x00\x00\x00\x00\x00' -tRp5483 -sVcovering -p5484 -g24 -(g26 -S'*\x08\x00\x00\x00\x00\x00\x00' -tRp5485 -sVbandwidth -p5486 -g24 -(g26 -S'\xd6\x02\x00\x00\x00\x00\x00\x00' -tRp5487 -sVanalytical -p5488 -g24 -(g26 -S'R\x01\x00\x00\x00\x00\x00\x00' -tRp5489 -sVsteal -p5490 -g24 -(g26 -S'2 \x00\x00\x00\x00\x00\x00' -tRp5491 -sVsteam -p5492 -g24 -(g26 -S'3 \x00\x00\x00\x00\x00\x00' -tRp5493 -sVsecretary -p5494 -g24 -(g26 -S'\x16\x1e\x00\x00\x00\x00\x00\x00' -tRp5495 -sVinns -p5496 -g24 -(g26 -S'*\x11\x00\x00\x00\x00\x00\x00' -tRp5497 -sVobserver -p5498 -g24 -(g26 -S'3\x17\x00\x00\x00\x00\x00\x00' -tRp5499 -sVobserved -p5500 -g24 -(g26 -S'2\x17\x00\x00\x00\x00\x00\x00' -tRp5501 -sVdepends -p5502 -g24 -(g26 -S'J\t\x00\x00\x00\x00\x00\x00' -tRp5503 -sVcattle -p5504 -g24 -(g26 -S'E\x05\x00\x00\x00\x00\x00\x00' -tRp5505 -sVdiscussions -p5506 -g24 -(g26 -S'\xfe\t\x00\x00\x00\x00\x00\x00' -tRp5507 -sVoptimum -p5508 -g24 -(g26 -S'\x9f\x17\x00\x00\x00\x00\x00\x00' -tRp5509 -sVtechniques -p5510 -g24 -(g26 -S'\x8f!\x00\x00\x00\x00\x00\x00' -tRp5511 -sVdraws -p5512 -g24 -(g26 -S'\x81\n\x00\x00\x00\x00\x00\x00' -tRp5513 -sVaway -p5514 -g24 -(g26 -S'\xa8\x02\x00\x00\x00\x00\x00\x00' -tRp5515 -sVgentleman -p5516 -g24 -(g26 -S'k\x0e\x00\x00\x00\x00\x00\x00' -tRp5517 -sVcompensation -p5518 -g24 -(g26 -S'\xec\x06\x00\x00\x00\x00\x00\x00' -tRp5519 -sVunable -p5520 -g24 -(g26 -S'W#\x00\x00\x00\x00\x00\x00' -tRp5521 -sVcooperation -p5522 -g24 -(g26 -S'\xd7\x07\x00\x00\x00\x00\x00\x00' -tRp5523 -sVdrawn -p5524 -g24 -(g26 -S'\x80\n\x00\x00\x00\x00\x00\x00' -tRp5525 -sVterms -p5526 -g24 -(g26 -S'\xbd!\x00\x00\x00\x00\x00\x00' -tRp5527 -sVwb -p5528 -g24 -(g26 -S'\xc6$\x00\x00\x00\x00\x00\x00' -tRp5529 -sVwa -p5530 -g24 -(g26 -S'}$\x00\x00\x00\x00\x00\x00' -tRp5531 -sVwn -p5532 -g24 -(g26 -S'<%\x00\x00\x00\x00\x00\x00' -tRp5533 -sVwm -p5534 -g24 -(g26 -S':%\x00\x00\x00\x00\x00\x00' -tRp5535 -sVwi -p5536 -g24 -(g26 -S'\x01%\x00\x00\x00\x00\x00\x00' -tRp5537 -sVww -p5538 -g24 -(g26 -S'\x80%\x00\x00\x00\x00\x00\x00' -tRp5539 -sVwv -p5540 -g24 -(g26 -S'\x7f%\x00\x00\x00\x00\x00\x00' -tRp5541 -sVwu -p5542 -g24 -(g26 -S'~%\x00\x00\x00\x00\x00\x00' -tRp5543 -sVwt -p5544 -g24 -(g26 -S'|%\x00\x00\x00\x00\x00\x00' -tRp5545 -sVws -p5546 -g24 -(g26 -S'{%\x00\x00\x00\x00\x00\x00' -tRp5547 -sVwr -p5548 -g24 -(g26 -S'k%\x00\x00\x00\x00\x00\x00' -tRp5549 -sVwp -p5550 -g24 -(g26 -S'j%\x00\x00\x00\x00\x00\x00' -tRp5551 -sVconvertible -p5552 -g24 -(g26 -S'\xc9\x07\x00\x00\x00\x00\x00\x00' -tRp5553 -sVpackages -p5554 -g24 -(g26 -S'\xf6\x17\x00\x00\x00\x00\x00\x00' -tRp5555 -sVwy -p5556 -g24 -(g26 -S'\x83%\x00\x00\x00\x00\x00\x00' -tRp5557 -sVkitchen -p5558 -g24 -(g26 -S'\xa1\x12\x00\x00\x00\x00\x00\x00' -tRp5559 -sVbras -p5560 -g24 -(g26 -S'"\x04\x00\x00\x00\x00\x00\x00' -tRp5561 -sVreceived -p5562 -g24 -(g26 -S'\x9c\x1b\x00\x00\x00\x00\x00\x00' -tRp5563 -sVcos -p5564 -g24 -(g26 -S'\x01\x08\x00\x00\x00\x00\x00\x00' -tRp5565 -sVcow -p5566 -g24 -(g26 -S',\x08\x00\x00\x00\x00\x00\x00' -tRp5567 -sVcox -p5568 -g24 -(g26 -S'.\x08\x00\x00\x00\x00\x00\x00' -tRp5569 -sVill -p5570 -g24 -(g26 -S'\x8e\x10\x00\x00\x00\x00\x00\x00' -tRp5571 -sVncaa -p5572 -g24 -(g26 -S'v\x16\x00\x00\x00\x00\x00\x00' -tRp5573 -sVcod -p5574 -g24 -(g26 -S'|\x06\x00\x00\x00\x00\x00\x00' -tRp5575 -sVreceives -p5576 -g24 -(g26 -S'\x9f\x1b\x00\x00\x00\x00\x00\x00' -tRp5577 -sVreceiver -p5578 -g24 -(g26 -S'\x9d\x1b\x00\x00\x00\x00\x00\x00' -tRp5579 -sVtransmission -p5580 -g24 -(g26 -S'\xc7"\x00\x00\x00\x00\x00\x00' -tRp5581 -sVrequests -p5582 -g24 -(g26 -S'm\x1c\x00\x00\x00\x00\x00\x00' -tRp5583 -sVcom -p5584 -g24 -(g26 -S'\xac\x06\x00\x00\x00\x00\x00\x00' -tRp5585 -sVcol -p5586 -g24 -(g26 -S'\x85\x06\x00\x00\x00\x00\x00\x00' -tRp5587 -sVcompressed -p5588 -g24 -(g26 -S'\x11\x07\x00\x00\x00\x00\x00\x00' -tRp5589 -sVnegotiation -p5590 -g24 -(g26 -S'\x89\x16\x00\x00\x00\x00\x00\x00' -tRp5591 -sVtough -p5592 -g24 -(g26 -S'}"\x00\x00\x00\x00\x00\x00' -tRp5593 -sVroyal -p5594 -g24 -(g26 -S'M\x1d\x00\x00\x00\x00\x00\x00' -tRp5595 -sVexcess -p5596 -g24 -(g26 -S'\x14\x0c\x00\x00\x00\x00\x00\x00' -tRp5597 -sVtons -p5598 -g24 -(g26 -S'h"\x00\x00\x00\x00\x00\x00' -tRp5599 -sVtony -p5600 -g24 -(g26 -S'i"\x00\x00\x00\x00\x00\x00' -tRp5601 -sVtelecommunications -p5602 -g24 -(g26 -S'\x9f!\x00\x00\x00\x00\x00\x00' -tRp5603 -sVspeak -p5604 -g24 -(g26 -S'\xa2\x1f\x00\x00\x00\x00\x00\x00' -tRp5605 -sViraq -p5606 -g24 -(g26 -S'\xbc\x11\x00\x00\x00\x00\x00\x00' -tRp5607 -sVengines -p5608 -g24 -(g26 -S'x\x0b\x00\x00\x00\x00\x00\x00' -tRp5609 -sVrefurbished -p5610 -g24 -(g26 -S'\xe6\x1b\x00\x00\x00\x00\x00\x00' -tRp5611 -sVflexible -p5612 -g24 -(g26 -S'T\r\x00\x00\x00\x00\x00\x00' -tRp5613 -sVdozens -p5614 -g24 -(g26 -S'q\n\x00\x00\x00\x00\x00\x00' -tRp5615 -sVduties -p5616 -g24 -(g26 -S'\xb7\n\x00\x00\x00\x00\x00\x00' -tRp5617 -sVfamilies -p5618 -g24 -(g26 -S'\xa5\x0c\x00\x00\x00\x00\x00\x00' -tRp5619 -sVinnocent -p5620 -g24 -(g26 -S'&\x11\x00\x00\x00\x00\x00\x00' -tRp5621 -sVattacked -p5622 -g24 -(g26 -S'[\x02\x00\x00\x00\x00\x00\x00' -tRp5623 -sVconcerning -p5624 -g24 -(g26 -S'#\x07\x00\x00\x00\x00\x00\x00' -tRp5625 -sVcatering -p5626 -g24 -(g26 -S'@\x05\x00\x00\x00\x00\x00\x00' -tRp5627 -sVlauderdale -p5628 -g24 -(g26 -S'\xfe\x12\x00\x00\x00\x00\x00\x00' -tRp5629 -sVapplied -p5630 -g24 -(g26 -S'\xb3\x01\x00\x00\x00\x00\x00\x00' -tRp5631 -sVphysician -p5632 -g24 -(g26 -S'\x06\x19\x00\x00\x00\x00\x00\x00' -tRp5633 -sVahead -p5634 -g24 -(g26 -S'\xe2\x00\x00\x00\x00\x00\x00\x00' -tRp5635 -sVpublicly -p5636 -g24 -(g26 -S'\xd8\x1a\x00\x00\x00\x00\x00\x00' -tRp5637 -sVgnu -p5638 -g24 -(g26 -S'\xa5\x0e\x00\x00\x00\x00\x00\x00' -tRp5639 -sVlaunches -p5640 -g24 -(g26 -S'\x03\x13\x00\x00\x00\x00\x00\x00' -tRp5641 -sVgangbang -p5642 -g24 -(g26 -S',\x0e\x00\x00\x00\x00\x00\x00' -tRp5643 -sVair -p5644 -g24 -(g26 -S'\xe9\x00\x00\x00\x00\x00\x00\x00' -tRp5645 -sVaim -p5646 -g24 -(g26 -S'\xe6\x00\x00\x00\x00\x00\x00\x00' -tRp5647 -sVformatting -p5648 -g24 -(g26 -S'\xa6\r\x00\x00\x00\x00\x00\x00' -tRp5649 -sVapplies -p5650 -g24 -(g26 -S'\xb4\x01\x00\x00\x00\x00\x00\x00' -tRp5651 -sVaid -p5652 -g24 -(g26 -S'\xe4\x00\x00\x00\x00\x00\x00\x00' -tRp5653 -sVvoice -p5654 -g24 -(g26 -S'^$\x00\x00\x00\x00\x00\x00' -tRp5655 -sVinspired -p5656 -g24 -(g26 -S'=\x11\x00\x00\x00\x00\x00\x00' -tRp5657 -sVlaunched -p5658 -g24 -(g26 -S'\x02\x13\x00\x00\x00\x00\x00\x00' -tRp5659 -sVmistake -p5660 -g24 -(g26 -S'\x9c\x15\x00\x00\x00\x00\x00\x00' -tRp5661 -sVcylinder -p5662 -g24 -(g26 -S'\x98\x08\x00\x00\x00\x00\x00\x00' -tRp5663 -sVcons -p5664 -g24 -(g26 -S'Y\x07\x00\x00\x00\x00\x00\x00' -tRp5665 -sVsticker -p5666 -g24 -(g26 -S'B \x00\x00\x00\x00\x00\x00' -tRp5667 -sVtissue -p5668 -g24 -(g26 -S'E"\x00\x00\x00\x00\x00\x00' -tRp5669 -sVbrake -p5670 -g24 -(g26 -S'\x1b\x04\x00\x00\x00\x00\x00\x00' -tRp5671 -sVconf -p5672 -g24 -(g26 -S'6\x07\x00\x00\x00\x00\x00\x00' -tRp5673 -sVhebrew -p5674 -g24 -(g26 -S'\xa6\x0f\x00\x00\x00\x00\x00\x00' -tRp5675 -sVcomparative -p5676 -g24 -(g26 -S'\xe4\x06\x00\x00\x00\x00\x00\x00' -tRp5677 -sVconfirmed -p5678 -g24 -(g26 -S'F\x07\x00\x00\x00\x00\x00\x00' -tRp5679 -sVperform -p5680 -g24 -(g26 -S'\xad\x18\x00\x00\x00\x00\x00\x00' -tRp5681 -sVapparently -p5682 -g24 -(g26 -S'\xa2\x01\x00\x00\x00\x00\x00\x00' -tRp5683 -sVjerry -p5684 -g24 -(g26 -S'\x0c\x12\x00\x00\x00\x00\x00\x00' -tRp5685 -sVplates -p5686 -g24 -(g26 -S'P\x19\x00\x00\x00\x00\x00\x00' -tRp5687 -sVbunny -p5688 -g24 -(g26 -S'\x8c\x04\x00\x00\x00\x00\x00\x00' -tRp5689 -sVwheel -p5690 -g24 -(g26 -S'\xfb$\x00\x00\x00\x00\x00\x00' -tRp5691 -sVindependent -p5692 -g24 -(g26 -S'\xde\x10\x00\x00\x00\x00\x00\x00' -tRp5693 -sVraid -p5694 -g24 -(g26 -S'?\x1b\x00\x00\x00\x00\x00\x00' -tRp5695 -sVnil -p5696 -g24 -(g26 -S'\xc7\x16\x00\x00\x00\x00\x00\x00' -tRp5697 -sVsaddam -p5698 -g24 -(g26 -S'v\x1d\x00\x00\x00\x00\x00\x00' -tRp5699 -sVrail -p5700 -g24 -(g26 -S'@\x1b\x00\x00\x00\x00\x00\x00' -tRp5701 -sVevil -p5702 -g24 -(g26 -S'\xfd\x0b\x00\x00\x00\x00\x00\x00' -tRp5703 -sVhand -p5704 -g24 -(g26 -S'F\x0f\x00\x00\x00\x00\x00\x00' -tRp5705 -sVpubs -p5706 -g24 -(g26 -S'\xdf\x1a\x00\x00\x00\x00\x00\x00' -tRp5707 -sVnorwegian -p5708 -g24 -(g26 -S'\xe8\x16\x00\x00\x00\x00\x00\x00' -tRp5709 -sVproducers -p5710 -g24 -(g26 -S'f\x1a\x00\x00\x00\x00\x00\x00' -tRp5711 -sVhans -p5712 -g24 -(g26 -S'W\x0f\x00\x00\x00\x00\x00\x00' -tRp5713 -sVprescribed -p5714 -g24 -(g26 -S'\x10\x1a\x00\x00\x00\x00\x00\x00' -tRp5715 -sVvermont -p5716 -g24 -(g26 -S'\t$\x00\x00\x00\x00\x00\x00' -tRp5717 -sVkept -p5718 -g24 -(g26 -S'~\x12\x00\x00\x00\x00\x00\x00' -tRp5719 -sVthy -p5720 -g24 -(g26 -S'""\x00\x00\x00\x00\x00\x00' -tRp5721 -sVthu -p5722 -g24 -(g26 -S'\x1a"\x00\x00\x00\x00\x00\x00' -tRp5723 -sVdallas -p5724 -g24 -(g26 -S'\xa4\x08\x00\x00\x00\x00\x00\x00' -tRp5725 -sVkyle -p5726 -g24 -(g26 -S'\xc0\x12\x00\x00\x00\x00\x00\x00' -tRp5727 -sVoptions -p5728 -g24 -(g26 -S'\xa2\x17\x00\x00\x00\x00\x00\x00' -tRp5729 -sVhispanic -p5730 -g24 -(g26 -S'\xde\x0f\x00\x00\x00\x00\x00\x00' -tRp5731 -sVclient -p5732 -g24 -(g26 -S'I\x06\x00\x00\x00\x00\x00\x00' -tRp5733 -sVcentres -p5734 -g24 -(g26 -S'k\x05\x00\x00\x00\x00\x00\x00' -tRp5735 -sVcamps -p5736 -g24 -(g26 -S'\xe1\x04\x00\x00\x00\x00\x00\x00' -tRp5737 -sVmusical -p5738 -g24 -(g26 -S'7\x16\x00\x00\x00\x00\x00\x00' -tRp5739 -sVepa -p5740 -g24 -(g26 -S'\xa8\x0b\x00\x00\x00\x00\x00\x00' -tRp5741 -sVunified -p5742 -g24 -(g26 -S'm#\x00\x00\x00\x00\x00\x00' -tRp5743 -sVsolaris -p5744 -g24 -(g26 -S'd\x1f\x00\x00\x00\x00\x00\x00' -tRp5745 -sVtraditions -p5746 -g24 -(g26 -S'\xa3"\x00\x00\x00\x00\x00\x00' -tRp5747 -sVquoted -p5748 -g24 -(g26 -S'-\x1b\x00\x00\x00\x00\x00\x00' -tRp5749 -sVathletic -p5750 -g24 -(g26 -S'K\x02\x00\x00\x00\x00\x00\x00' -tRp5751 -sVphoto -p5752 -g24 -(g26 -S'\xf6\x18\x00\x00\x00\x00\x00\x00' -tRp5753 -sVedmonton -p5754 -g24 -(g26 -S'\xfb\n\x00\x00\x00\x00\x00\x00' -tRp5755 -sVnewton -p5756 -g24 -(g26 -S'\xaf\x16\x00\x00\x00\x00\x00\x00' -tRp5757 -sVmid -p5758 -g24 -(g26 -S'Y\x15\x00\x00\x00\x00\x00\x00' -tRp5759 -sVquotes -p5760 -g24 -(g26 -S'.\x1b\x00\x00\x00\x00\x00\x00' -tRp5761 -sVthanks -p5762 -g24 -(g26 -S'\xdf!\x00\x00\x00\x00\x00\x00' -tRp5763 -sVvictim -p5764 -g24 -(g26 -S'\x1f$\x00\x00\x00\x00\x00\x00' -tRp5765 -sVjose -p5766 -g24 -(g26 -S'4\x12\x00\x00\x00\x00\x00\x00' -tRp5767 -sVhills -p5768 -g24 -(g26 -S'\xd5\x0f\x00\x00\x00\x00\x00\x00' -tRp5769 -sVflooring -p5770 -g24 -(g26 -S']\r\x00\x00\x00\x00\x00\x00' -tRp5771 -sVyamaha -p5772 -g24 -(g26 -S'\x94%\x00\x00\x00\x00\x00\x00' -tRp5773 -sVcornell -p5774 -g24 -(g26 -S'\xee\x07\x00\x00\x00\x00\x00\x00' -tRp5775 -sVphotographer -p5776 -g24 -(g26 -S'\xf8\x18\x00\x00\x00\x00\x00\x00' -tRp5777 -sVjosh -p5778 -g24 -(g26 -S'6\x12\x00\x00\x00\x00\x00\x00' -tRp5779 -sVpassive -p5780 -g24 -(g26 -S'Z\x18\x00\x00\x00\x00\x00\x00' -tRp5781 -sVwright -p5782 -g24 -(g26 -S'p%\x00\x00\x00\x00\x00\x00' -tRp5783 -sVspread -p5784 -g24 -(g26 -S'\xe3\x1f\x00\x00\x00\x00\x00\x00' -tRp5785 -sVboard -p5786 -g24 -(g26 -S'\xcd\x03\x00\x00\x00\x00\x00\x00' -tRp5787 -sVfares -p5788 -g24 -(g26 -S'\xb1\x0c\x00\x00\x00\x00\x00\x00' -tRp5789 -sVopenings -p5790 -g24 -(g26 -S'\x84\x17\x00\x00\x00\x00\x00\x00' -tRp5791 -sVplasma -p5792 -g24 -(g26 -S'L\x19\x00\x00\x00\x00\x00\x00' -tRp5793 -sVemphasis -p5794 -g24 -(g26 -S'G\x0b\x00\x00\x00\x00\x00\x00' -tRp5795 -sVviking -p5796 -g24 -(g26 -S'5$\x00\x00\x00\x00\x00\x00' -tRp5797 -sVeditorials -p5798 -g24 -(g26 -S'\xf9\n\x00\x00\x00\x00\x00\x00' -tRp5799 -sVboxed -p5800 -g24 -(g26 -S'\x0c\x04\x00\x00\x00\x00\x00\x00' -tRp5801 -sVrna -p5802 -g24 -(g26 -S'\x07\x1d\x00\x00\x00\x00\x00\x00' -tRp5803 -sVcaps -p5804 -g24 -(g26 -S'\xfd\x04\x00\x00\x00\x00\x00\x00' -tRp5805 -sVarab -p5806 -g24 -(g26 -S'\xd0\x01\x00\x00\x00\x00\x00\x00' -tRp5807 -sVlcd -p5808 -g24 -(g26 -S'\x16\x13\x00\x00\x00\x00\x00\x00' -tRp5809 -sVcape -p5810 -g24 -(g26 -S'\xfa\x04\x00\x00\x00\x00\x00\x00' -tRp5811 -sVdesigners -p5812 -g24 -(g26 -S'e\t\x00\x00\x00\x00\x00\x00' -tRp5813 -sVretreat -p5814 -g24 -(g26 -S'\xb8\x1c\x00\x00\x00\x00\x00\x00' -tRp5815 -sVcooler -p5816 -g24 -(g26 -S'\xd4\x07\x00\x00\x00\x00\x00\x00' -tRp5817 -sVxbox -p5818 -g24 -(g26 -S'\x86%\x00\x00\x00\x00\x00\x00' -tRp5819 -sVsecurities -p5820 -g24 -(g26 -S'\x1f\x1e\x00\x00\x00\x00\x00\x00' -tRp5821 -sVnight -p5822 -g24 -(g26 -S'\xc1\x16\x00\x00\x00\x00\x00\x00' -tRp5823 -sVsecurity -p5824 -g24 -(g26 -S' \x1e\x00\x00\x00\x00\x00\x00' -tRp5825 -sVantique -p5826 -g24 -(g26 -S'\x8d\x01\x00\x00\x00\x00\x00\x00' -tRp5827 -sVportuguese -p5828 -g24 -(g26 -S'\xb4\x19\x00\x00\x00\x00\x00\x00' -tRp5829 -sVkorea -p5830 -g24 -(g26 -S'\xb8\x12\x00\x00\x00\x00\x00\x00' -tRp5831 -sVsends -p5832 -g24 -(g26 -S'F\x1e\x00\x00\x00\x00\x00\x00' -tRp5833 -sVborn -p5834 -g24 -(g26 -S'\xf7\x03\x00\x00\x00\x00\x00\x00' -tRp5835 -sVproductions -p5836 -g24 -(g26 -S'k\x1a\x00\x00\x00\x00\x00\x00' -tRp5837 -sVhumor -p5838 -g24 -(g26 -S'U\x10\x00\x00\x00\x00\x00\x00' -tRp5839 -sVpurple -p5840 -g24 -(g26 -S'\xf1\x1a\x00\x00\x00\x00\x00\x00' -tRp5841 -sVcomments -p5842 -g24 -(g26 -S'\xc4\x06\x00\x00\x00\x00\x00\x00' -tRp5843 -sVasking -p5844 -g24 -(g26 -S'\x1a\x02\x00\x00\x00\x00\x00\x00' -tRp5845 -sVdenied -p5846 -g24 -(g26 -S'9\t\x00\x00\x00\x00\x00\x00' -tRp5847 -sVparticipation -p5848 -g24 -(g26 -S'B\x18\x00\x00\x00\x00\x00\x00' -tRp5849 -sVcolumbus -p5850 -g24 -(g26 -S'\xa8\x06\x00\x00\x00\x00\x00\x00' -tRp5851 -sVrepository -p5852 -g24 -(g26 -S'W\x1c\x00\x00\x00\x00\x00\x00' -tRp5853 -sVmarketing -p5854 -g24 -(g26 -S'\xa1\x14\x00\x00\x00\x00\x00\x00' -tRp5855 -sVpose -p5856 -g24 -(g26 -S'\xb6\x19\x00\x00\x00\x00\x00\x00' -tRp5857 -sVillustration -p5858 -g24 -(g26 -S'\x93\x10\x00\x00\x00\x00\x00\x00' -tRp5859 -sVgraduates -p5860 -g24 -(g26 -S'\xd2\x0e\x00\x00\x00\x00\x00\x00' -tRp5861 -sVrestructuring -p5862 -g24 -(g26 -S'\xa9\x1c\x00\x00\x00\x00\x00\x00' -tRp5863 -sVplc -p5864 -g24 -(g26 -S'_\x19\x00\x00\x00\x00\x00\x00' -tRp5865 -sVarchitectural -p5866 -g24 -(g26 -S'\xdb\x01\x00\x00\x00\x00\x00\x00' -tRp5867 -sVpeer -p5868 -g24 -(g26 -S'\x91\x18\x00\x00\x00\x00\x00\x00' -tRp5869 -sVpost -p5870 -g24 -(g26 -S'\xc2\x19\x00\x00\x00\x00\x00\x00' -tRp5871 -sVproperties -p5872 -g24 -(g26 -S'\x9a\x1a\x00\x00\x00\x00\x00\x00' -tRp5873 -sVdead -p5874 -g24 -(g26 -S'\xd1\x08\x00\x00\x00\x00\x00\x00' -tRp5875 -sVobj -p5876 -g24 -(g26 -S'(\x17\x00\x00\x00\x00\x00\x00' -tRp5877 -sVnewspapers -p5878 -g24 -(g26 -S'\xae\x16\x00\x00\x00\x00\x00\x00' -tRp5879 -sVmonths -p5880 -g24 -(g26 -S'\xe5\x15\x00\x00\x00\x00\x00\x00' -tRp5881 -sVaccepts -p5882 -g24 -(g26 -S'#\x00\x00\x00\x00\x00\x00\x00' -tRp5883 -sVsituated -p5884 -g24 -(g26 -S'\x10\x1f\x00\x00\x00\x00\x00\x00' -tRp5885 -sVanime -p5886 -g24 -(g26 -S'm\x01\x00\x00\x00\x00\x00\x00' -tRp5887 -sVhorizon -p5888 -g24 -(g26 -S'\x19\x10\x00\x00\x00\x00\x00\x00' -tRp5889 -sVshowtimes -p5890 -g24 -(g26 -S'\xd2\x1e\x00\x00\x00\x00\x00\x00' -tRp5891 -sVconsiderations -p5892 -g24 -(g26 -S'g\x07\x00\x00\x00\x00\x00\x00' -tRp5893 -sVpays -p5894 -g24 -(g26 -S'}\x18\x00\x00\x00\x00\x00\x00' -tRp5895 -sVprisoners -p5896 -g24 -(g26 -S'G\x1a\x00\x00\x00\x00\x00\x00' -tRp5897 -sVfloat -p5898 -g24 -(g26 -S'Y\r\x00\x00\x00\x00\x00\x00' -tRp5899 -sVprofession -p5900 -g24 -(g26 -S'o\x1a\x00\x00\x00\x00\x00\x00' -tRp5901 -sVbeneficial -p5902 -g24 -(g26 -S'T\x03\x00\x00\x00\x00\x00\x00' -tRp5903 -sVrendering -p5904 -g24 -(g26 -S';\x1c\x00\x00\x00\x00\x00\x00' -tRp5905 -sVbalanced -p5906 -g24 -(g26 -S'\xc9\x02\x00\x00\x00\x00\x00\x00' -tRp5907 -sVwan -p5908 -g24 -(g26 -S'\x96$\x00\x00\x00\x00\x00\x00' -tRp5909 -sVwal -p5910 -g24 -(g26 -S'\x86$\x00\x00\x00\x00\x00\x00' -tRp5911 -sVcompression -p5912 -g24 -(g26 -S'\x12\x07\x00\x00\x00\x00\x00\x00' -tRp5913 -sVmedal -p5914 -g24 -(g26 -S'\xf4\x14\x00\x00\x00\x00\x00\x00' -tRp5915 -sVlegislation -p5916 -g24 -(g26 -S':\x13\x00\x00\x00\x00\x00\x00' -tRp5917 -sVfight -p5918 -g24 -(g26 -S'\xfe\x0c\x00\x00\x00\x00\x00\x00' -tRp5919 -sVaccordingly -p5920 -g24 -(g26 -S'6\x00\x00\x00\x00\x00\x00\x00' -tRp5921 -sVclinical -p5922 -g24 -(g26 -S'P\x06\x00\x00\x00\x00\x00\x00' -tRp5923 -sVway -p5924 -g24 -(g26 -S'\xc3$\x00\x00\x00\x00\x00\x00' -tRp5925 -sVwax -p5926 -g24 -(g26 -S'\xc2$\x00\x00\x00\x00\x00\x00' -tRp5927 -sVeditions -p5928 -g24 -(g26 -S'\xf6\n\x00\x00\x00\x00\x00\x00' -tRp5929 -sVwar -p5930 -g24 -(g26 -S'\x9d$\x00\x00\x00\x00\x00\x00' -tRp5931 -sVlowest -p5932 -g24 -(g26 -S'\x18\x14\x00\x00\x00\x00\x00\x00' -tRp5933 -sVpeninsula -p5934 -g24 -(g26 -S'\x9b\x18\x00\x00\x00\x00\x00\x00' -tRp5935 -sVtaken -p5936 -g24 -(g26 -S'W!\x00\x00\x00\x00\x00\x00' -tRp5937 -sVcatalyst -p5938 -g24 -(g26 -S'<\x05\x00\x00\x00\x00\x00\x00' -tRp5939 -sVtrue -p5940 -g24 -(g26 -S'\x0f#\x00\x00\x00\x00\x00\x00' -tRp5941 -sVreset -p5942 -g24 -(g26 -S'\x80\x1c\x00\x00\x00\x00\x00\x00' -tRp5943 -sVabsent -p5944 -g24 -(g26 -S'\x10\x00\x00\x00\x00\x00\x00\x00' -tRp5945 -sVinjury -p5946 -g24 -(g26 -S' \x11\x00\x00\x00\x00\x00\x00' -tRp5947 -sVreproductive -p5948 -g24 -(g26 -S'e\x1c\x00\x00\x00\x00\x00\x00' -tRp5949 -sVgeorge -p5950 -g24 -(g26 -S'u\x0e\x00\x00\x00\x00\x00\x00' -tRp5951 -sVmtv -p5952 -g24 -(g26 -S'$\x16\x00\x00\x00\x00\x00\x00' -tRp5953 -sVmaximum -p5954 -g24 -(g26 -S'\xd8\x14\x00\x00\x00\x00\x00\x00' -tRp5955 -sVcrystal -p5956 -g24 -(g26 -S'e\x08\x00\x00\x00\x00\x00\x00' -tRp5957 -sVplymouth -p5958 -g24 -(g26 -S'l\x19\x00\x00\x00\x00\x00\x00' -tRp5959 -sVvatican -p5960 -g24 -(g26 -S'\xe9#\x00\x00\x00\x00\x00\x00' -tRp5961 -sVemotional -p5962 -g24 -(g26 -S'D\x0b\x00\x00\x00\x00\x00\x00' -tRp5963 -sVmails -p5964 -g24 -(g26 -S'O\x14\x00\x00\x00\x00\x00\x00' -tRp5965 -sVpromises -p5966 -g24 -(g26 -S'\x8a\x1a\x00\x00\x00\x00\x00\x00' -tRp5967 -sVmedication -p5968 -g24 -(g26 -S'\xfb\x14\x00\x00\x00\x00\x00\x00' -tRp5969 -sVmoore -p5970 -g24 -(g26 -S'\xe9\x15\x00\x00\x00\x00\x00\x00' -tRp5971 -sVcomputing -p5972 -g24 -(g26 -S'\x1a\x07\x00\x00\x00\x00\x00\x00' -tRp5973 -sVrequest -p5974 -g24 -(g26 -S'j\x1c\x00\x00\x00\x00\x00\x00' -tRp5975 -sVabstract -p5976 -g24 -(g26 -S'\x14\x00\x00\x00\x00\x00\x00\x00' -tRp5977 -sVstore -p5978 -g24 -(g26 -S'T \x00\x00\x00\x00\x00\x00' -tRp5979 -sVevidence -p5980 -g24 -(g26 -S'\xfb\x0b\x00\x00\x00\x00\x00\x00' -tRp5981 -sVexpertise -p5982 -g24 -(g26 -S'P\x0c\x00\x00\x00\x00\x00\x00' -tRp5983 -sVpromised -p5984 -g24 -(g26 -S'\x89\x1a\x00\x00\x00\x00\x00\x00' -tRp5985 -sVprayer -p5986 -g24 -(g26 -S'\xef\x19\x00\x00\x00\x00\x00\x00' -tRp5987 -sVdistributions -p5988 -g24 -(g26 -S'\x1c\n\x00\x00\x00\x00\x00\x00' -tRp5989 -sVarchive -p5990 -g24 -(g26 -S'\xdd\x01\x00\x00\x00\x00\x00\x00' -tRp5991 -sVphysical -p5992 -g24 -(g26 -S'\x04\x19\x00\x00\x00\x00\x00\x00' -tRp5993 -sVdying -p5994 -g24 -(g26 -S'\xbd\n\x00\x00\x00\x00\x00\x00' -tRp5995 -sVstake -p5996 -g24 -(g26 -S'\x01 \x00\x00\x00\x00\x00\x00' -tRp5997 -sVhandmade -p5998 -g24 -(g26 -S'R\x0f\x00\x00\x00\x00\x00\x00' -tRp5999 -sVreality -p6000 -g24 -(g26 -S'\x85\x1b\x00\x00\x00\x00\x00\x00' -tRp6001 -sVinterested -p6002 -g24 -(g26 -S's\x11\x00\x00\x00\x00\x00\x00' -tRp6003 -sVholding -p6004 -g24 -(g26 -S'\xf2\x0f\x00\x00\x00\x00\x00\x00' -tRp6005 -sVtest -p6006 -g24 -(g26 -S'\xc8!\x00\x00\x00\x00\x00\x00' -tRp6007 -sVholocaust -p6008 -g24 -(g26 -S'\xfe\x0f\x00\x00\x00\x00\x00\x00' -tRp6009 -sVpichunter -p6010 -g24 -(g26 -S'\r\x19\x00\x00\x00\x00\x00\x00' -tRp6011 -sVscored -p6012 -g24 -(g26 -S'\xe5\x1d\x00\x00\x00\x00\x00\x00' -tRp6013 -sVbrothers -p6014 -g24 -(g26 -S'\\\x04\x00\x00\x00\x00\x00\x00' -tRp6015 -sVwelcome -p6016 -g24 -(g26 -S'\xea$\x00\x00\x00\x00\x00\x00' -tRp6017 -sVupdate -p6018 -g24 -(g26 -S'\x8c#\x00\x00\x00\x00\x00\x00' -tRp6019 -sVscores -p6020 -g24 -(g26 -S'\xe6\x1d\x00\x00\x00\x00\x00\x00' -tRp6021 -sVomega -p6022 -g24 -(g26 -S'u\x17\x00\x00\x00\x00\x00\x00' -tRp6023 -sVinterval -p6024 -g24 -(g26 -S'\x86\x11\x00\x00\x00\x00\x00\x00' -tRp6025 -sVmodules -p6026 -g24 -(g26 -S'\xc5\x15\x00\x00\x00\x00\x00\x00' -tRp6027 -sVbeds -p6028 -g24 -(g26 -S'.\x03\x00\x00\x00\x00\x00\x00' -tRp6029 -sVreception -p6030 -g24 -(g26 -S'\xa3\x1b\x00\x00\x00\x00\x00\x00' -tRp6031 -sVsongs -p6032 -g24 -(g26 -S'y\x1f\x00\x00\x00\x00\x00\x00' -tRp6033 -sVconcept -p6034 -g24 -(g26 -S'\x1e\x07\x00\x00\x00\x00\x00\x00' -tRp6035 -sVswitched -p6036 -g24 -(g26 -S'.!\x00\x00\x00\x00\x00\x00' -tRp6037 -sVdance -p6038 -g24 -(g26 -S'\xad\x08\x00\x00\x00\x00\x00\x00' -tRp6039 -sVglobal -p6040 -g24 -(g26 -S'\x99\x0e\x00\x00\x00\x00\x00\x00' -tRp6041 -sVswitches -p6042 -g24 -(g26 -S'/!\x00\x00\x00\x00\x00\x00' -tRp6043 -sVsupplement -p6044 -g24 -(g26 -S'\xe9 \x00\x00\x00\x00\x00\x00' -tRp6045 -sVgrateful -p6046 -g24 -(g26 -S'\xe5\x0e\x00\x00\x00\x00\x00\x00' -tRp6047 -sVbattle -p6048 -g24 -(g26 -S'\x0c\x03\x00\x00\x00\x00\x00\x00' -tRp6049 -sVlayers -p6050 -g24 -(g26 -S'\x10\x13\x00\x00\x00\x00\x00\x00' -tRp6051 -sVcertainly -p6052 -g24 -(g26 -S's\x05\x00\x00\x00\x00\x00\x00' -tRp6053 -sVzone -p6054 -g24 -(g26 -S'\xbe%\x00\x00\x00\x00\x00\x00' -tRp6055 -sVgraph -p6056 -g24 -(g26 -S'\xde\x0e\x00\x00\x00\x00\x00\x00' -tRp6057 -sVflash -p6058 -g24 -(g26 -S'J\r\x00\x00\x00\x00\x00\x00' -tRp6059 -sVfog -p6060 -g24 -(g26 -S'z\r\x00\x00\x00\x00\x00\x00' -tRp6061 -sVrhythm -p6062 -g24 -(g26 -S'\xde\x1c\x00\x00\x00\x00\x00\x00' -tRp6063 -sVterror -p6064 -g24 -(g26 -S'\xc3!\x00\x00\x00\x00\x00\x00' -tRp6065 -sVsouthwest -p6066 -g24 -(g26 -S'\x91\x1f\x00\x00\x00\x00\x00\x00' -tRp6067 -sVdivision -p6068 -g24 -(g26 -S'+\n\x00\x00\x00\x00\x00\x00' -tRp6069 -sVsupported -p6070 -g24 -(g26 -S'\xf2 \x00\x00\x00\x00\x00\x00' -tRp6071 -sVgrill -p6072 -g24 -(g26 -S'\xfe\x0e\x00\x00\x00\x00\x00\x00' -tRp6073 -sVliability -p6074 -g24 -(g26 -S'e\x13\x00\x00\x00\x00\x00\x00' -tRp6075 -sVautomobiles -p6076 -g24 -(g26 -S'\x91\x02\x00\x00\x00\x00\x00\x00' -tRp6077 -sVvegas -p6078 -g24 -(g26 -S'\xf1#\x00\x00\x00\x00\x00\x00' -tRp6079 -sVanonymous -p6080 -g24 -(g26 -S'~\x01\x00\x00\x00\x00\x00\x00' -tRp6081 -sVentries -p6082 -g24 -(g26 -S'\x9f\x0b\x00\x00\x00\x00\x00\x00' -tRp6083 -sVtrouble -p6084 -g24 -(g26 -S'\t#\x00\x00\x00\x00\x00\x00' -tRp6085 -sVblast -p6086 -g24 -(g26 -S'\xac\x03\x00\x00\x00\x00\x00\x00' -tRp6087 -sVperceived -p6088 -g24 -(g26 -S'\xa7\x18\x00\x00\x00\x00\x00\x00' -tRp6089 -sVrespiratory -p6090 -g24 -(g26 -S'\x94\x1c\x00\x00\x00\x00\x00\x00' -tRp6091 -sVsalvador -p6092 -g24 -(g26 -S'\x8e\x1d\x00\x00\x00\x00\x00\x00' -tRp6093 -sVpresented -p6094 -g24 -(g26 -S'\x16\x1a\x00\x00\x00\x00\x00\x00' -tRp6095 -sVturns -p6096 -g24 -(g26 -S'4#\x00\x00\x00\x00\x00\x00' -tRp6097 -sVgui -p6098 -g24 -(g26 -S'\x1f\x0f\x00\x00\x00\x00\x00\x00' -tRp6099 -sVgun -p6100 -g24 -(g26 -S'+\x0f\x00\x00\x00\x00\x00\x00' -tRp6101 -sVdiscrete -p6102 -g24 -(g26 -S'\xf5\t\x00\x00\x00\x00\x00\x00' -tRp6103 -sVguitars -p6104 -g24 -(g26 -S')\x0f\x00\x00\x00\x00\x00\x00' -tRp6105 -sVguy -p6106 -g24 -(g26 -S'.\x0f\x00\x00\x00\x00\x00\x00' -tRp6107 -sVgreenhouse -p6108 -g24 -(g26 -S'\xf3\x0e\x00\x00\x00\x00\x00\x00' -tRp6109 -sVupper -p6110 -g24 -(g26 -S'\x95#\x00\x00\x00\x00\x00\x00' -tRp6111 -sVrevolution -p6112 -g24 -(g26 -S'\xd4\x1c\x00\x00\x00\x00\x00\x00' -tRp6113 -sVrouge -p6114 -g24 -(g26 -S'<\x1d\x00\x00\x00\x00\x00\x00' -tRp6115 -sVdiscover -p6116 -g24 -(g26 -S'\xf2\t\x00\x00\x00\x00\x00\x00' -tRp6117 -sVaffiliation -p6118 -g24 -(g26 -S'\xc5\x00\x00\x00\x00\x00\x00\x00' -tRp6119 -sVcost -p6120 -g24 -(g26 -S'\x04\x08\x00\x00\x00\x00\x00\x00' -tRp6121 -sVcargo -p6122 -g24 -(g26 -S'\x0f\x05\x00\x00\x00\x00\x00\x00' -tRp6123 -sVappear -p6124 -g24 -(g26 -S'\xa5\x01\x00\x00\x00\x00\x00\x00' -tRp6125 -sVbarbie -p6126 -g24 -(g26 -S'\xe6\x02\x00\x00\x00\x00\x00\x00' -tRp6127 -sVassistance -p6128 -g24 -(g26 -S'0\x02\x00\x00\x00\x00\x00\x00' -tRp6129 -sVshares -p6130 -g24 -(g26 -S'\x95\x1e\x00\x00\x00\x00\x00\x00' -tRp6131 -sVuniform -p6132 -g24 -(g26 -S'n#\x00\x00\x00\x00\x00\x00' -tRp6133 -sVillustrations -p6134 -g24 -(g26 -S'\x94\x10\x00\x00\x00\x00\x00\x00' -tRp6135 -sVshared -p6136 -g24 -(g26 -S'\x93\x1e\x00\x00\x00\x00\x00\x00' -tRp6137 -sVoaks -p6138 -g24 -(g26 -S'#\x17\x00\x00\x00\x00\x00\x00' -tRp6139 -sVappeal -p6140 -g24 -(g26 -S'\xa3\x01\x00\x00\x00\x00\x00\x00' -tRp6141 -sVsatisfy -p6142 -g24 -(g26 -S'\xad\x1d\x00\x00\x00\x00\x00\x00' -tRp6143 -sVsupporting -p6144 -g24 -(g26 -S'\xf4 \x00\x00\x00\x00\x00\x00' -tRp6145 -sVexplosion -p6146 -g24 -(g26 -S'`\x0c\x00\x00\x00\x00\x00\x00' -tRp6147 -sVconfirmation -p6148 -g24 -(g26 -S'E\x07\x00\x00\x00\x00\x00\x00' -tRp6149 -sVmuslim -p6150 -g24 -(g26 -S':\x16\x00\x00\x00\x00\x00\x00' -tRp6151 -sVdownloaded -p6152 -g24 -(g26 -S'l\n\x00\x00\x00\x00\x00\x00' -tRp6153 -sVapache -p6154 -g24 -(g26 -S'\x97\x01\x00\x00\x00\x00\x00\x00' -tRp6155 -sVteaches -p6156 -g24 -(g26 -S'\x85!\x00\x00\x00\x00\x00\x00' -tRp6157 -sVteacher -p6158 -g24 -(g26 -S'\x83!\x00\x00\x00\x00\x00\x00' -tRp6159 -sVchange -p6160 -g24 -(g26 -S'\x93\x05\x00\x00\x00\x00\x00\x00' -tRp6161 -sVsending -p6162 -g24 -(g26 -S'E\x1e\x00\x00\x00\x00\x00\x00' -tRp6163 -sVincoming -p6164 -g24 -(g26 -S'\xd0\x10\x00\x00\x00\x00\x00\x00' -tRp6165 -sVtrial -p6166 -g24 -(g26 -S'\xef"\x00\x00\x00\x00\x00\x00' -tRp6167 -sVfranklin -p6168 -g24 -(g26 -S'\xcf\r\x00\x00\x00\x00\x00\x00' -tRp6169 -sVusually -p6170 -g24 -(g26 -S'\xb5#\x00\x00\x00\x00\x00\x00' -tRp6171 -sVpillow -p6172 -g24 -(g26 -S'\x1f\x19\x00\x00\x00\x00\x00\x00' -tRp6173 -sVmontreal -p6174 -g24 -(g26 -S'\xe6\x15\x00\x00\x00\x00\x00\x00' -tRp6175 -sVmacintosh -p6176 -g24 -(g26 -S'6\x14\x00\x00\x00\x00\x00\x00' -tRp6177 -sVregardless -p6178 -g24 -(g26 -S'\xed\x1b\x00\x00\x00\x00\x00\x00' -tRp6179 -sVdefensive -p6180 -g24 -(g26 -S'\n\t\x00\x00\x00\x00\x00\x00' -tRp6181 -sVhiking -p6182 -g24 -(g26 -S'\xd3\x0f\x00\x00\x00\x00\x00\x00' -tRp6183 -sVextra -p6184 -g24 -(g26 -S'u\x0c\x00\x00\x00\x00\x00\x00' -tRp6185 -sVlending -p6186 -g24 -(g26 -S'D\x13\x00\x00\x00\x00\x00\x00' -tRp6187 -sVgamecube -p6188 -g24 -(g26 -S'&\x0e\x00\x00\x00\x00\x00\x00' -tRp6189 -sVmarked -p6190 -g24 -(g26 -S'\x9d\x14\x00\x00\x00\x00\x00\x00' -tRp6191 -sVitaliano -p6192 -g24 -(g26 -S'\xda\x11\x00\x00\x00\x00\x00\x00' -tRp6193 -sVsnowboard -p6194 -g24 -(g26 -S'Q\x1f\x00\x00\x00\x00\x00\x00' -tRp6195 -sVmarker -p6196 -g24 -(g26 -S'\x9e\x14\x00\x00\x00\x00\x00\x00' -tRp6197 -sVfbi -p6198 -g24 -(g26 -S'\xc8\x0c\x00\x00\x00\x00\x00\x00' -tRp6199 -sVrarely -p6200 -g24 -(g26 -S'b\x1b\x00\x00\x00\x00\x00\x00' -tRp6201 -sVmarket -p6202 -g24 -(g26 -S'\xa0\x14\x00\x00\x00\x00\x00\x00' -tRp6203 -sVbuttons -p6204 -g24 -(g26 -S'\xa4\x04\x00\x00\x00\x00\x00\x00' -tRp6205 -sVprove -p6206 -g24 -(g26 -S'\xb8\x1a\x00\x00\x00\x00\x00\x00' -tRp6207 -sVangela -p6208 -g24 -(g26 -S'b\x01\x00\x00\x00\x00\x00\x00' -tRp6209 -sVfairfield -p6210 -g24 -(g26 -S'\x99\x0c\x00\x00\x00\x00\x00\x00' -tRp6211 -sVterritories -p6212 -g24 -(g26 -S'\xc1!\x00\x00\x00\x00\x00\x00' -tRp6213 -sVlive -p6214 -g24 -(g26 -S'\xb7\x13\x00\x00\x00\x00\x00\x00' -tRp6215 -sVangels -p6216 -g24 -(g26 -S'd\x01\x00\x00\x00\x00\x00\x00' -tRp6217 -sVentrance -p6218 -g24 -(g26 -S'\x9c\x0b\x00\x00\x00\x00\x00\x00' -tRp6219 -sVclub -p6220 -g24 -(g26 -S'f\x06\x00\x00\x00\x00\x00\x00' -tRp6221 -sVenvelope -p6222 -g24 -(g26 -S'\xa1\x0b\x00\x00\x00\x00\x00\x00' -tRp6223 -sVorganizations -p6224 -g24 -(g26 -S'\xb7\x17\x00\x00\x00\x00\x00\x00' -tRp6225 -sVinstructional -p6226 -g24 -(g26 -S'N\x11\x00\x00\x00\x00\x00\x00' -tRp6227 -sVgraphic -p6228 -g24 -(g26 -S'\xdf\x0e\x00\x00\x00\x00\x00\x00' -tRp6229 -sVibm -p6230 -g24 -(g26 -S'o\x10\x00\x00\x00\x00\x00\x00' -tRp6231 -sVcas -p6232 -g24 -(g26 -S')\x05\x00\x00\x00\x00\x00\x00' -tRp6233 -sVcar -p6234 -g24 -(g26 -S'\x01\x05\x00\x00\x00\x00\x00\x00' -tRp6235 -sVcap -p6236 -g24 -(g26 -S'\xf5\x04\x00\x00\x00\x00\x00\x00' -tRp6237 -sVcat -p6238 -g24 -(g26 -S'8\x05\x00\x00\x00\x00\x00\x00' -tRp6239 -sVlabeled -p6240 -g24 -(g26 -S'\xc4\x12\x00\x00\x00\x00\x00\x00' -tRp6241 -sVincidents -p6242 -g24 -(g26 -S'\xc7\x10\x00\x00\x00\x00\x00\x00' -tRp6243 -sVcam -p6244 -g24 -(g26 -S'\xd1\x04\x00\x00\x00\x00\x00\x00' -tRp6245 -sVcal -p6246 -g24 -(g26 -S'\xbf\x04\x00\x00\x00\x00\x00\x00' -tRp6247 -sVcab -p6248 -g24 -(g26 -S'\xb1\x04\x00\x00\x00\x00\x00\x00' -tRp6249 -sVtrans -p6250 -g24 -(g26 -S'\xb3"\x00\x00\x00\x00\x00\x00' -tRp6251 -sVcad -p6252 -g24 -(g26 -S'\xb9\x04\x00\x00\x00\x00\x00\x00' -tRp6253 -sVheart -p6254 -g24 -(g26 -S'\x9b\x0f\x00\x00\x00\x00\x00\x00' -tRp6255 -sVdedicated -p6256 -g24 -(g26 -S'\xfb\x08\x00\x00\x00\x00\x00\x00' -tRp6257 -sVexpanding -p6258 -g24 -(g26 -S';\x0c\x00\x00\x00\x00\x00\x00' -tRp6259 -sVchip -p6260 -g24 -(g26 -S'\xe2\x05\x00\x00\x00\x00\x00\x00' -tRp6261 -sVcarroll -p6262 -g24 -(g26 -S'\x1f\x05\x00\x00\x00\x00\x00\x00' -tRp6263 -sVtopic -p6264 -g24 -(g26 -S'q"\x00\x00\x00\x00\x00\x00' -tRp6265 -sVheard -p6266 -g24 -(g26 -S'\x98\x0f\x00\x00\x00\x00\x00\x00' -tRp6267 -sVposing -p6268 -g24 -(g26 -S'\xb7\x19\x00\x00\x00\x00\x00\x00' -tRp6269 -sVrefine -p6270 -g24 -(g26 -S'\xd9\x1b\x00\x00\x00\x00\x00\x00' -tRp6271 -sVphrase -p6272 -g24 -(g26 -S'\x01\x19\x00\x00\x00\x00\x00\x00' -tRp6273 -sVspa -p6274 -g24 -(g26 -S'\x95\x1f\x00\x00\x00\x00\x00\x00' -tRp6275 -sVclothing -p6276 -g24 -(g26 -S'b\x06\x00\x00\x00\x00\x00\x00' -tRp6277 -sVoccur -p6278 -g24 -(g26 -S'B\x17\x00\x00\x00\x00\x00\x00' -tRp6279 -sVproductive -p6280 -g24 -(g26 -S'l\x1a\x00\x00\x00\x00\x00\x00' -tRp6281 -sVdiscussion -p6282 -g24 -(g26 -S'\xfd\t\x00\x00\x00\x00\x00\x00' -tRp6283 -sVmeans -p6284 -g24 -(g26 -S'\xe6\x14\x00\x00\x00\x00\x00\x00' -tRp6285 -sVlounge -p6286 -g24 -(g26 -S'\x0e\x14\x00\x00\x00\x00\x00\x00' -tRp6287 -sVcriterion -p6288 -g24 -(g26 -S'S\x08\x00\x00\x00\x00\x00\x00' -tRp6289 -sVeconomy -p6290 -g24 -(g26 -S'\xe9\n\x00\x00\x00\x00\x00\x00' -tRp6291 -sVproduct -p6292 -g24 -(g26 -S'i\x1a\x00\x00\x00\x00\x00\x00' -tRp6293 -sVdive -p6294 -g24 -(g26 -S'#\n\x00\x00\x00\x00\x00\x00' -tRp6295 -sVaol -p6296 -g24 -(g26 -S'\x95\x01\x00\x00\x00\x00\x00\x00' -tRp6297 -sVsouthern -p6298 -g24 -(g26 -S'\x90\x1f\x00\x00\x00\x00\x00\x00' -tRp6299 -sVproduce -p6300 -g24 -(g26 -S'c\x1a\x00\x00\x00\x00\x00\x00' -tRp6301 -sVislands -p6302 -g24 -(g26 -S'\xca\x11\x00\x00\x00\x00\x00\x00' -tRp6303 -sVheroes -p6304 -g24 -(g26 -S'\xc0\x0f\x00\x00\x00\x00\x00\x00' -tRp6305 -sVnomination -p6306 -g24 -(g26 -S'\xd8\x16\x00\x00\x00\x00\x00\x00' -tRp6307 -sVcompatibility -p6308 -g24 -(g26 -S'\xea\x06\x00\x00\x00\x00\x00\x00' -tRp6309 -sVpermalink -p6310 -g24 -(g26 -S'\xbc\x18\x00\x00\x00\x00\x00\x00' -tRp6311 -sVremember -p6312 -g24 -(g26 -S'-\x1c\x00\x00\x00\x00\x00\x00' -tRp6313 -sVcandles -p6314 -g24 -(g26 -S'\xef\x04\x00\x00\x00\x00\x00\x00' -tRp6315 -sVfutures -p6316 -g24 -(g26 -S'\x13\x0e\x00\x00\x00\x00\x00\x00' -tRp6317 -sVexplicit -p6318 -g24 -(g26 -S'Z\x0c\x00\x00\x00\x00\x00\x00' -tRp6319 -sVghz -p6320 -g24 -(g26 -S'\x7f\x0e\x00\x00\x00\x00\x00\x00' -tRp6321 -sVkurt -p6322 -g24 -(g26 -S'\xbc\x12\x00\x00\x00\x00\x00\x00' -tRp6323 -sVmichel -p6324 -g24 -(g26 -S'R\x15\x00\x00\x00\x00\x00\x00' -tRp6325 -sVtypical -p6326 -g24 -(g26 -S'F#\x00\x00\x00\x00\x00\x00' -tRp6327 -sVtagged -p6328 -g24 -(g26 -S'R!\x00\x00\x00\x00\x00\x00' -tRp6329 -sVserving -p6330 -g24 -(g26 -S'j\x1e\x00\x00\x00\x00\x00\x00' -tRp6331 -sVpipe -p6332 -g24 -(g26 -S'(\x19\x00\x00\x00\x00\x00\x00' -tRp6333 -sVdisplayed -p6334 -g24 -(g26 -S'\x0b\n\x00\x00\x00\x00\x00\x00' -tRp6335 -sVraised -p6336 -g24 -(g26 -S'F\x1b\x00\x00\x00\x00\x00\x00' -tRp6337 -sVended -p6338 -g24 -(g26 -S'd\x0b\x00\x00\x00\x00\x00\x00' -tRp6339 -sVtablets -p6340 -g24 -(g26 -S'M!\x00\x00\x00\x00\x00\x00' -tRp6341 -sVstatistical -p6342 -g24 -(g26 -S'$ \x00\x00\x00\x00\x00\x00' -tRp6343 -sVmanagers -p6344 -g24 -(g26 -S'r\x14\x00\x00\x00\x00\x00\x00' -tRp6345 -sVcold -p6346 -g24 -(g26 -S'\x86\x06\x00\x00\x00\x00\x00\x00' -tRp6347 -sVcole -p6348 -g24 -(g26 -S'\x87\x06\x00\x00\x00\x00\x00\x00' -tRp6349 -sVieee -p6350 -g24 -(g26 -S'\x88\x10\x00\x00\x00\x00\x00\x00' -tRp6351 -sVbirds -p6352 -g24 -(g26 -S'\x92\x03\x00\x00\x00\x00\x00\x00' -tRp6353 -sVacknowledge -p6354 -g24 -(g26 -S'K\x00\x00\x00\x00\x00\x00\x00' -tRp6355 -sVwillow -p6356 -g24 -(g26 -S'\x15%\x00\x00\x00\x00\x00\x00' -tRp6357 -sVforms -p6358 -g24 -(g26 -S'\xa9\r\x00\x00\x00\x00\x00\x00' -tRp6359 -sVwindow -p6360 -g24 -(g26 -S'\x19%\x00\x00\x00\x00\x00\x00' -tRp6361 -sVnorway -p6362 -g24 -(g26 -S'\xe7\x16\x00\x00\x00\x00\x00\x00' -tRp6363 -sVcorrespondence -p6364 -g24 -(g26 -S'\xfe\x07\x00\x00\x00\x00\x00\x00' -tRp6365 -sVnon -p6366 -g24 -(g26 -S'\xda\x16\x00\x00\x00\x00\x00\x00' -tRp6367 -sVintroduce -p6368 -g24 -(g26 -S'\x90\x11\x00\x00\x00\x00\x00\x00' -tRp6369 -sVsol -p6370 -g24 -(g26 -S'b\x1f\x00\x00\x00\x00\x00\x00' -tRp6371 -sVhalf -p6372 -g24 -(g26 -S';\x0f\x00\x00\x00\x00\x00\x00' -tRp6373 -sVnov -p6374 -g24 -(g26 -S'\xf9\x16\x00\x00\x00\x00\x00\x00' -tRp6375 -sVprovision -p6376 -g24 -(g26 -S'\xc5\x1a\x00\x00\x00\x00\x00\x00' -tRp6377 -sVhall -p6378 -g24 -(g26 -S'=\x0f\x00\x00\x00\x00\x00\x00' -tRp6379 -sVhalo -p6380 -g24 -(g26 -S'?\x0f\x00\x00\x00\x00\x00\x00' -tRp6381 -sVorgan -p6382 -g24 -(g26 -S'\xb0\x17\x00\x00\x00\x00\x00\x00' -tRp6383 -sVlies -p6384 -g24 -(g26 -S'x\x13\x00\x00\x00\x00\x00\x00' -tRp6385 -sVjames -p6386 -g24 -(g26 -S'\xf1\x11\x00\x00\x00\x00\x00\x00' -tRp6387 -sVdrop -p6388 -g24 -(g26 -S'\x95\n\x00\x00\x00\x00\x00\x00' -tRp6389 -sVstockholm -p6390 -g24 -(g26 -S'G \x00\x00\x00\x00\x00\x00' -tRp6391 -sVentirely -p6392 -g24 -(g26 -S'\x98\x0b\x00\x00\x00\x00\x00\x00' -tRp6393 -sVconcerts -p6394 -g24 -(g26 -S'&\x07\x00\x00\x00\x00\x00\x00' -tRp6395 -sVem -p6396 -g24 -(g26 -S'5\x0b\x00\x00\x00\x00\x00\x00' -tRp6397 -sVel -p6398 -g24 -(g26 -S'\x16\x0b\x00\x00\x00\x00\x00\x00' -tRp6399 -sVdomain -p6400 -g24 -(g26 -S'M\n\x00\x00\x00\x00\x00\x00' -tRp6401 -sVen -p6402 -g24 -(g26 -S'Q\x0b\x00\x00\x00\x00\x00\x00' -tRp6403 -sVsignificantly -p6404 -g24 -(g26 -S'\xe7\x1e\x00\x00\x00\x00\x00\x00' -tRp6405 -sVchallenged -p6406 -g24 -(g26 -S'\x85\x05\x00\x00\x00\x00\x00\x00' -tRp6407 -sVee -p6408 -g24 -(g26 -S'\x04\x0b\x00\x00\x00\x00\x00\x00' -tRp6409 -sVed -p6410 -g24 -(g26 -S'\xeb\n\x00\x00\x00\x00\x00\x00' -tRp6411 -sVef -p6412 -g24 -(g26 -S'\x05\x0b\x00\x00\x00\x00\x00\x00' -tRp6413 -sVea -p6414 -g24 -(g26 -S'\xc1\n\x00\x00\x00\x00\x00\x00' -tRp6415 -sVyeah -p6416 -g24 -(g26 -S'\x9b%\x00\x00\x00\x00\x00\x00' -tRp6417 -sVec -p6418 -g24 -(g26 -S'\xdf\n\x00\x00\x00\x00\x00\x00' -tRp6419 -sVchallenges -p6420 -g24 -(g26 -S'\x86\x05\x00\x00\x00\x00\x00\x00' -tRp6421 -sVfires -p6422 -g24 -(g26 -S'0\r\x00\x00\x00\x00\x00\x00' -tRp6423 -sVphentermine -p6424 -g24 -(g26 -S'\xea\x18\x00\x00\x00\x00\x00\x00' -tRp6425 -sVex -p6426 -g24 -(g26 -S'\xff\x0b\x00\x00\x00\x00\x00\x00' -tRp6427 -sVyear -p6428 -g24 -(g26 -S'\x9c%\x00\x00\x00\x00\x00\x00' -tRp6429 -sVeu -p6430 -g24 -(g26 -S'\xe3\x0b\x00\x00\x00\x00\x00\x00' -tRp6431 -sVet -p6432 -g24 -(g26 -S'\xdc\x0b\x00\x00\x00\x00\x00\x00' -tRp6433 -sVhappen -p6434 -g24 -(g26 -S'Y\x0f\x00\x00\x00\x00\x00\x00' -tRp6435 -sVcalling -p6436 -g24 -(g26 -S'\xcd\x04\x00\x00\x00\x00\x00\x00' -tRp6437 -sVeq -p6438 -g24 -(g26 -S'\xae\x0b\x00\x00\x00\x00\x00\x00' -tRp6439 -sVep -p6440 -g24 -(g26 -S'\xa7\x0b\x00\x00\x00\x00\x00\x00' -tRp6441 -sVes -p6442 -g24 -(g26 -S'\xc3\x0b\x00\x00\x00\x00\x00\x00' -tRp6443 -sVer -p6444 -g24 -(g26 -S'\xb9\x0b\x00\x00\x00\x00\x00\x00' -tRp6445 -sValbum -p6446 -g24 -(g26 -S'\xfe\x00\x00\x00\x00\x00\x00\x00' -tRp6447 -sVshown -p6448 -g24 -(g26 -S'\xd0\x1e\x00\x00\x00\x00\x00\x00' -tRp6449 -sVmedications -p6450 -g24 -(g26 -S'\xfc\x14\x00\x00\x00\x00\x00\x00' -tRp6451 -sVopened -p6452 -g24 -(g26 -S'\x82\x17\x00\x00\x00\x00\x00\x00' -tRp6453 -sVspace -p6454 -g24 -(g26 -S'\x96\x1f\x00\x00\x00\x00\x00\x00' -tRp6455 -sVfurthermore -p6456 -g24 -(g26 -S'\x10\x0e\x00\x00\x00\x00\x00\x00' -tRp6457 -sVlooking -p6458 -g24 -(g26 -S'\xf5\x13\x00\x00\x00\x00\x00\x00' -tRp6459 -sVrational -p6460 -g24 -(g26 -S'j\x1b\x00\x00\x00\x00\x00\x00' -tRp6461 -sVreceiving -p6462 -g24 -(g26 -S'\xa0\x1b\x00\x00\x00\x00\x00\x00' -tRp6463 -sVshows -p6464 -g24 -(g26 -S'\xd1\x1e\x00\x00\x00\x00\x00\x00' -tRp6465 -sVthong -p6466 -g24 -(g26 -S'\x02"\x00\x00\x00\x00\x00\x00' -tRp6467 -sVcars -p6468 -g24 -(g26 -S'"\x05\x00\x00\x00\x00\x00\x00' -tRp6469 -sVcart -p6470 -g24 -(g26 -S'#\x05\x00\x00\x00\x00\x00\x00' -tRp6471 -sVdiagnostic -p6472 -g24 -(g26 -S'\x9e\t\x00\x00\x00\x00\x00\x00' -tRp6473 -sVadvantages -p6474 -g24 -(g26 -S'\xa4\x00\x00\x00\x00\x00\x00\x00' -tRp6475 -sVrebel -p6476 -g24 -(g26 -S'\x96\x1b\x00\x00\x00\x00\x00\x00' -tRp6477 -sVcarl -p6478 -g24 -(g26 -S'\x12\x05\x00\x00\x00\x00\x00\x00' -tRp6479 -sVcarb -p6480 -g24 -(g26 -S'\x02\x05\x00\x00\x00\x00\x00\x00' -tRp6481 -sVobligation -p6482 -g24 -(g26 -S'-\x17\x00\x00\x00\x00\x00\x00' -tRp6483 -sVmarine -p6484 -g24 -(g26 -S'\x98\x14\x00\x00\x00\x00\x00\x00' -tRp6485 -sVcard -p6486 -g24 -(g26 -S'\x04\x05\x00\x00\x00\x00\x00\x00' -tRp6487 -sVcare -p6488 -g24 -(g26 -S'\t\x05\x00\x00\x00\x00\x00\x00' -tRp6489 -sVfixed -p6490 -g24 -(g26 -S'C\r\x00\x00\x00\x00\x00\x00' -tRp6491 -sVselections -p6492 -g24 -(g26 -S'2\x1e\x00\x00\x00\x00\x00\x00' -tRp6493 -sVtransition -p6494 -g24 -(g26 -S'\xc1"\x00\x00\x00\x00\x00\x00' -tRp6495 -sVbritish -p6496 -g24 -(g26 -S'I\x04\x00\x00\x00\x00\x00\x00' -tRp6497 -sVhonest -p6498 -g24 -(g26 -S'\n\x10\x00\x00\x00\x00\x00\x00' -tRp6499 -sVinvitation -p6500 -g24 -(g26 -S'\xa8\x11\x00\x00\x00\x00\x00\x00' -tRp6501 -sVstyles -p6502 -g24 -(g26 -S'\x94 \x00\x00\x00\x00\x00\x00' -tRp6503 -sVlighting -p6504 -g24 -(g26 -S'\x80\x13\x00\x00\x00\x00\x00\x00' -tRp6505 -sVnonprofit -p6506 -g24 -(g26 -S'\xdb\x16\x00\x00\x00\x00\x00\x00' -tRp6507 -sVlambda -p6508 -g24 -(g26 -S'\xd5\x12\x00\x00\x00\x00\x00\x00' -tRp6509 -sVblind -p6510 -g24 -(g26 -S'\xb1\x03\x00\x00\x00\x00\x00\x00' -tRp6511 -sVromania -p6512 -g24 -(g26 -S'(\x1d\x00\x00\x00\x00\x00\x00' -tRp6513 -sVxi -p6514 -g24 -(g26 -S'\x89%\x00\x00\x00\x00\x00\x00' -tRp6515 -sVxl -p6516 -g24 -(g26 -S'\x8a%\x00\x00\x00\x00\x00\x00' -tRp6517 -sVstriking -p6518 -g24 -(g26 -S's \x00\x00\x00\x00\x00\x00' -tRp6519 -sVvariables -p6520 -g24 -(g26 -S'\xdc#\x00\x00\x00\x00\x00\x00' -tRp6521 -sVmunicipality -p6522 -g24 -(g26 -S'.\x16\x00\x00\x00\x00\x00\x00' -tRp6523 -sVblink -p6524 -g24 -(g26 -S'\xb2\x03\x00\x00\x00\x00\x00\x00' -tRp6525 -sVxx -p6526 -g24 -(g26 -S'\x8e%\x00\x00\x00\x00\x00\x00' -tRp6527 -sVdirectly -p6528 -g24 -(g26 -S'\xd6\t\x00\x00\x00\x00\x00\x00' -tRp6529 -sVfi -p6530 -g24 -(g26 -S'\xf6\x0c\x00\x00\x00\x00\x00\x00' -tRp6531 -sVimpossible -p6532 -g24 -(g26 -S'\xb5\x10\x00\x00\x00\x00\x00\x00' -tRp6533 -sVmessage -p6534 -g24 -(g26 -S'0\x15\x00\x00\x00\x00\x00\x00' -tRp6535 -sVforwarding -p6536 -g24 -(g26 -S'\xb1\r\x00\x00\x00\x00\x00\x00' -tRp6537 -sVtomorrow -p6538 -g24 -(g26 -S'a"\x00\x00\x00\x00\x00\x00' -tRp6539 -sVsize -p6540 -g24 -(g26 -S'\x14\x1f\x00\x00\x00\x00\x00\x00' -tRp6541 -sVsheep -p6542 -g24 -(g26 -S'\x9e\x1e\x00\x00\x00\x00\x00\x00' -tRp6543 -sVsheer -p6544 -g24 -(g26 -S'\x9f\x1e\x00\x00\x00\x00\x00\x00' -tRp6545 -sVsheet -p6546 -g24 -(g26 -S'\xa0\x1e\x00\x00\x00\x00\x00\x00' -tRp6547 -sVsilent -p6548 -g24 -(g26 -S'\xec\x1e\x00\x00\x00\x00\x00\x00' -tRp6549 -sVbookmark -p6550 -g24 -(g26 -S'\xe7\x03\x00\x00\x00\x00\x00\x00' -tRp6551 -sVcaught -p6552 -g24 -(g26 -S'F\x05\x00\x00\x00\x00\x00\x00' -tRp6553 -sVbreed -p6554 -g24 -(g26 -S'2\x04\x00\x00\x00\x00\x00\x00' -tRp6555 -sVhouseholds -p6556 -g24 -(g26 -S'6\x10\x00\x00\x00\x00\x00\x00' -tRp6557 -sVconfigured -p6558 -g24 -(g26 -S'B\x07\x00\x00\x00\x00\x00\x00' -tRp6559 -sVfriend -p6560 -g24 -(g26 -S'\xe5\r\x00\x00\x00\x00\x00\x00' -tRp6561 -sVnutrition -p6562 -g24 -(g26 -S'\x16\x17\x00\x00\x00\x00\x00\x00' -tRp6563 -sVcourier -p6564 -g24 -(g26 -S' \x08\x00\x00\x00\x00\x00\x00' -tRp6565 -sVpittsburgh -p6566 -g24 -(g26 -S'0\x19\x00\x00\x00\x00\x00\x00' -tRp6567 -sVtaxation -p6568 -g24 -(g26 -S'w!\x00\x00\x00\x00\x00\x00' -tRp6569 -sVcornwall -p6570 -g24 -(g26 -S'\xf1\x07\x00\x00\x00\x00\x00\x00' -tRp6571 -sVresulted -p6572 -g24 -(g26 -S'\xab\x1c\x00\x00\x00\x00\x00\x00' -tRp6573 -sVquad -p6574 -g24 -(g26 -S'\x07\x1b\x00\x00\x00\x00\x00\x00' -tRp6575 -sVthai -p6576 -g24 -(g26 -S'\xdc!\x00\x00\x00\x00\x00\x00' -tRp6577 -sVflowers -p6578 -g24 -(g26 -S'h\r\x00\x00\x00\x00\x00\x00' -tRp6579 -sVappreciated -p6580 -g24 -(g26 -S'\xbc\x01\x00\x00\x00\x00\x00\x00' -tRp6581 -sVtitans -p6582 -g24 -(g26 -S'H"\x00\x00\x00\x00\x00\x00' -tRp6583 -sVprofessionals -p6584 -g24 -(g26 -S'q\x1a\x00\x00\x00\x00\x00\x00' -tRp6585 -sVtelevision -p6586 -g24 -(g26 -S'\xa3!\x00\x00\x00\x00\x00\x00' -tRp6587 -sVthumbnails -p6588 -g24 -(g26 -S'\x1d"\x00\x00\x00\x00\x00\x00' -tRp6589 -sVaccordance -p6590 -g24 -(g26 -S'4\x00\x00\x00\x00\x00\x00\x00' -tRp6591 -sVtransferred -p6592 -g24 -(g26 -S'\xbc"\x00\x00\x00\x00\x00\x00' -tRp6593 -sVvocals -p6594 -g24 -(g26 -S'\\$\x00\x00\x00\x00\x00\x00' -tRp6595 -sVfruits -p6596 -g24 -(g26 -S'\xef\r\x00\x00\x00\x00\x00\x00' -tRp6597 -sVquarters -p6598 -g24 -(g26 -S'\x15\x1b\x00\x00\x00\x00\x00\x00' -tRp6599 -sVaccessed -p6600 -g24 -(g26 -S'%\x00\x00\x00\x00\x00\x00\x00' -tRp6601 -sVsublime -p6602 -g24 -(g26 -S'\x9f \x00\x00\x00\x00\x00\x00' -tRp6603 -sVbrowser -p6604 -g24 -(g26 -S'`\x04\x00\x00\x00\x00\x00\x00' -tRp6605 -sVportsmouth -p6606 -g24 -(g26 -S'\xb2\x19\x00\x00\x00\x00\x00\x00' -tRp6607 -sVsurname -p6608 -g24 -(g26 -S'\x05!\x00\x00\x00\x00\x00\x00' -tRp6609 -sVinvestors -p6610 -g24 -(g26 -S'\xa5\x11\x00\x00\x00\x00\x00\x00' -tRp6611 -sVremained -p6612 -g24 -(g26 -S'%\x1c\x00\x00\x00\x00\x00\x00' -tRp6613 -sVcraig -p6614 -g24 -(g26 -S'6\x08\x00\x00\x00\x00\x00\x00' -tRp6615 -sVcorrection -p6616 -g24 -(g26 -S'\xfa\x07\x00\x00\x00\x00\x00\x00' -tRp6617 -sVpremier -p6618 -g24 -(g26 -S'\x05\x1a\x00\x00\x00\x00\x00\x00' -tRp6619 -sVovernight -p6620 -g24 -(g26 -S'\xe2\x17\x00\x00\x00\x00\x00\x00' -tRp6621 -sVanger -p6622 -g24 -(g26 -S'e\x01\x00\x00\x00\x00\x00\x00' -tRp6623 -sVappraisal -p6624 -g24 -(g26 -S'\xba\x01\x00\x00\x00\x00\x00\x00' -tRp6625 -sVbreakfast -p6626 -g24 -(g26 -S'+\x04\x00\x00\x00\x00\x00\x00' -tRp6627 -sVrecover -p6628 -g24 -(g26 -S'\xba\x1b\x00\x00\x00\x00\x00\x00' -tRp6629 -sVwindsor -p6630 -g24 -(g26 -S'\x1c%\x00\x00\x00\x00\x00\x00' -tRp6631 -sVform -p6632 -g24 -(g26 -S'\xa1\r\x00\x00\x00\x00\x00\x00' -tRp6633 -sVveteran -p6634 -g24 -(g26 -S'\x14$\x00\x00\x00\x00\x00\x00' -tRp6635 -sVmanufacturers -p6636 -g24 -(g26 -S'\x82\x14\x00\x00\x00\x00\x00\x00' -tRp6637 -sVequipment -p6638 -g24 -(g26 -S'\xb5\x0b\x00\x00\x00\x00\x00\x00' -tRp6639 -sVtextiles -p6640 -g24 -(g26 -S'\xd5!\x00\x00\x00\x00\x00\x00' -tRp6641 -sVonline -p6642 -g24 -(g26 -S'z\x17\x00\x00\x00\x00\x00\x00' -tRp6643 -sVobjective -p6644 -g24 -(g26 -S'*\x17\x00\x00\x00\x00\x00\x00' -tRp6645 -sVbegin -p6646 -g24 -(g26 -S'3\x03\x00\x00\x00\x00\x00\x00' -tRp6647 -sVshade -p6648 -g24 -(g26 -S'\x83\x1e\x00\x00\x00\x00\x00\x00' -tRp6649 -sVverzeichnis -p6650 -g24 -(g26 -S'\x11$\x00\x00\x00\x00\x00\x00' -tRp6651 -sVprice -p6652 -g24 -(g26 -S',\x1a\x00\x00\x00\x00\x00\x00' -tRp6653 -sVimportantly -p6654 -g24 -(g26 -S'\xb0\x10\x00\x00\x00\x00\x00\x00' -tRp6655 -sVamerica -p6656 -g24 -(g26 -S'@\x01\x00\x00\x00\x00\x00\x00' -tRp6657 -sVdestiny -p6658 -g24 -(g26 -S'r\t\x00\x00\x00\x00\x00\x00' -tRp6659 -sVmichelle -p6660 -g24 -(g26 -S'S\x15\x00\x00\x00\x00\x00\x00' -tRp6661 -sVforever -p6662 -g24 -(g26 -S'\x9b\r\x00\x00\x00\x00\x00\x00' -tRp6663 -sVegg -p6664 -g24 -(g26 -S'\x10\x0b\x00\x00\x00\x00\x00\x00' -tRp6665 -sVreform -p6666 -g24 -(g26 -S'\xe0\x1b\x00\x00\x00\x00\x00\x00' -tRp6667 -sVsteady -p6668 -g24 -(g26 -S'1 \x00\x00\x00\x00\x00\x00' -tRp6669 -sVtooth -p6670 -g24 -(g26 -S'p"\x00\x00\x00\x00\x00\x00' -tRp6671 -sVferrari -p6672 -g24 -(g26 -S'\xed\x0c\x00\x00\x00\x00\x00\x00' -tRp6673 -sVpattern -p6674 -g24 -(g26 -S'p\x18\x00\x00\x00\x00\x00\x00' -tRp6675 -sVprofessional -p6676 -g24 -(g26 -S'p\x1a\x00\x00\x00\x00\x00\x00' -tRp6677 -sVabraham -p6678 -g24 -(g26 -S'\x0c\x00\x00\x00\x00\x00\x00\x00' -tRp6679 -sVtypically -p6680 -g24 -(g26 -S'G#\x00\x00\x00\x00\x00\x00' -tRp6681 -sVfiling -p6682 -g24 -(g26 -S'\n\r\x00\x00\x00\x00\x00\x00' -tRp6683 -sVphotoshop -p6684 -g24 -(g26 -S'\xfe\x18\x00\x00\x00\x00\x00\x00' -tRp6685 -sVgerman -p6686 -g24 -(g26 -S'x\x0e\x00\x00\x00\x00\x00\x00' -tRp6687 -sVspyware -p6688 -g24 -(g26 -S'\xeb\x1f\x00\x00\x00\x00\x00\x00' -tRp6689 -sVdiscovered -p6690 -g24 -(g26 -S'\xf3\t\x00\x00\x00\x00\x00\x00' -tRp6691 -sVcopyrighted -p6692 -g24 -(g26 -S'\xe6\x07\x00\x00\x00\x00\x00\x00' -tRp6693 -sVmaine -p6694 -g24 -(g26 -S'R\x14\x00\x00\x00\x00\x00\x00' -tRp6695 -sVfifth -p6696 -g24 -(g26 -S'\xfc\x0c\x00\x00\x00\x00\x00\x00' -tRp6697 -sVground -p6698 -g24 -(g26 -S'\x03\x0f\x00\x00\x00\x00\x00\x00' -tRp6699 -sVupgrade -p6700 -g24 -(g26 -S'\x90#\x00\x00\x00\x00\x00\x00' -tRp6701 -sVratio -p6702 -g24 -(g26 -S'i\x1b\x00\x00\x00\x00\x00\x00' -tRp6703 -sVtitle -p6704 -g24 -(g26 -S'I"\x00\x00\x00\x00\x00\x00' -tRp6705 -sVproportion -p6706 -g24 -(g26 -S'\x9d\x1a\x00\x00\x00\x00\x00\x00' -tRp6707 -sVtexture -p6708 -g24 -(g26 -S'\xd7!\x00\x00\x00\x00\x00\x00' -tRp6709 -sVlean -p6710 -g24 -(g26 -S'!\x13\x00\x00\x00\x00\x00\x00' -tRp6711 -sVdeveloped -p6712 -g24 -(g26 -S'\x89\t\x00\x00\x00\x00\x00\x00' -tRp6713 -sVthompson -p6714 -g24 -(g26 -S'\x00"\x00\x00\x00\x00\x00\x00' -tRp6715 -sVinterstate -p6716 -g24 -(g26 -S'\x85\x11\x00\x00\x00\x00\x00\x00' -tRp6717 -sVtelevisions -p6718 -g24 -(g26 -S'\xa4!\x00\x00\x00\x00\x00\x00' -tRp6719 -sVcannon -p6720 -g24 -(g26 -S'\xf1\x04\x00\x00\x00\x00\x00\x00' -tRp6721 -sVsamuel -p6722 -g24 -(g26 -S'\x97\x1d\x00\x00\x00\x00\x00\x00' -tRp6723 -sVtruly -p6724 -g24 -(g26 -S'\x10#\x00\x00\x00\x00\x00\x00' -tRp6725 -sVbaghdad -p6726 -g24 -(g26 -S'\xc1\x02\x00\x00\x00\x00\x00\x00' -tRp6727 -sVbracelets -p6728 -g24 -(g26 -S'\x15\x04\x00\x00\x00\x00\x00\x00' -tRp6729 -sVcelebrate -p6730 -g24 -(g26 -S'Y\x05\x00\x00\x00\x00\x00\x00' -tRp6731 -sVleather -p6732 -g24 -(g26 -S'(\x13\x00\x00\x00\x00\x00\x00' -tRp6733 -sVreprints -p6734 -g24 -(g26 -S'a\x1c\x00\x00\x00\x00\x00\x00' -tRp6735 -sVamanda -p6736 -g24 -(g26 -S'2\x01\x00\x00\x00\x00\x00\x00' -tRp6737 -sVhusband -p6738 -g24 -(g26 -S'b\x10\x00\x00\x00\x00\x00\x00' -tRp6739 -sVbulgaria -p6740 -g24 -(g26 -S'\x83\x04\x00\x00\x00\x00\x00\x00' -tRp6741 -sVconcert -p6742 -g24 -(g26 -S'%\x07\x00\x00\x00\x00\x00\x00' -tRp6743 -sVburst -p6744 -g24 -(g26 -S'\x96\x04\x00\x00\x00\x00\x00\x00' -tRp6745 -sVphysically -p6746 -g24 -(g26 -S'\x05\x19\x00\x00\x00\x00\x00\x00' -tRp6747 -sVelected -p6748 -g24 -(g26 -S'\x1a\x0b\x00\x00\x00\x00\x00\x00' -tRp6749 -sVactively -p6750 -g24 -(g26 -S'_\x00\x00\x00\x00\x00\x00\x00' -tRp6751 -sVsport -p6752 -g24 -(g26 -S'\xdb\x1f\x00\x00\x00\x00\x00\x00' -tRp6753 -sVconcern -p6754 -g24 -(g26 -S'!\x07\x00\x00\x00\x00\x00\x00' -tRp6755 -sVisraeli -p6756 -g24 -(g26 -S'\xd1\x11\x00\x00\x00\x00\x00\x00' -tRp6757 -sVseekers -p6758 -g24 -(g26 -S'&\x1e\x00\x00\x00\x00\x00\x00' -tRp6759 -sVgazette -p6760 -g24 -(g26 -S'D\x0e\x00\x00\x00\x00\x00\x00' -tRp6761 -sVherbal -p6762 -g24 -(g26 -S'\xbc\x0f\x00\x00\x00\x00\x00\x00' -tRp6763 -sVimport -p6764 -g24 -(g26 -S'\xad\x10\x00\x00\x00\x00\x00\x00' -tRp6765 -sVdeveloper -p6766 -g24 -(g26 -S'\x8a\t\x00\x00\x00\x00\x00\x00' -tRp6767 -sVconferencing -p6768 -g24 -(g26 -S'9\x07\x00\x00\x00\x00\x00\x00' -tRp6769 -sVnotice -p6770 -g24 -(g26 -S'\xef\x16\x00\x00\x00\x00\x00\x00' -tRp6771 -sVanalyzes -p6772 -g24 -(g26 -S'U\x01\x00\x00\x00\x00\x00\x00' -tRp6773 -sVblame -p6774 -g24 -(g26 -S'\xa9\x03\x00\x00\x00\x00\x00\x00' -tRp6775 -sVinvision -p6776 -g24 -(g26 -S'\xa7\x11\x00\x00\x00\x00\x00\x00' -tRp6777 -sVanalyzed -p6778 -g24 -(g26 -S'T\x01\x00\x00\x00\x00\x00\x00' -tRp6779 -sVarticle -p6780 -g24 -(g26 -S'\x07\x02\x00\x00\x00\x00\x00\x00' -tRp6781 -sVpixels -p6782 -g24 -(g26 -S'3\x19\x00\x00\x00\x00\x00\x00' -tRp6783 -sVstages -p6784 -g24 -(g26 -S'\xff\x1f\x00\x00\x00\x00\x00\x00' -tRp6785 -sVinstallation -p6786 -g24 -(g26 -S'?\x11\x00\x00\x00\x00\x00\x00' -tRp6787 -sVtalented -p6788 -g24 -(g26 -S'\\!\x00\x00\x00\x00\x00\x00' -tRp6789 -sVmono -p6790 -g24 -(g26 -S'\xdc\x15\x00\x00\x00\x00\x00\x00' -tRp6791 -sVenabling -p6792 -g24 -(g26 -S'U\x0b\x00\x00\x00\x00\x00\x00' -tRp6793 -sVroof -p6794 -g24 -(g26 -S'-\x1d\x00\x00\x00\x00\x00\x00' -tRp6795 -sVwheels -p6796 -g24 -(g26 -S'\xfc$\x00\x00\x00\x00\x00\x00' -tRp6797 -sVcomes -p6798 -g24 -(g26 -S'\xb7\x06\x00\x00\x00\x00\x00\x00' -tRp6799 -sVnearby -p6800 -g24 -(g26 -S'z\x16\x00\x00\x00\x00\x00\x00' -tRp6801 -sVmadness -p6802 -g24 -(g26 -S'<\x14\x00\x00\x00\x00\x00\x00' -tRp6803 -sVcharacterization -p6804 -g24 -(g26 -S'\xa2\x05\x00\x00\x00\x00\x00\x00' -tRp6805 -sVoverview -p6806 -g24 -(g26 -S'\xe4\x17\x00\x00\x00\x00\x00\x00' -tRp6807 -sVjeans -p6808 -g24 -(g26 -S'\x03\x12\x00\x00\x00\x00\x00\x00' -tRp6809 -sVdispatch -p6810 -g24 -(g26 -S'\x08\n\x00\x00\x00\x00\x00\x00' -tRp6811 -sVlearning -p6812 -g24 -(g26 -S'%\x13\x00\x00\x00\x00\x00\x00' -tRp6813 -sVproved -p6814 -g24 -(g26 -S'\xb9\x1a\x00\x00\x00\x00\x00\x00' -tRp6815 -sVamino -p6816 -g24 -(g26 -S'D\x01\x00\x00\x00\x00\x00\x00' -tRp6817 -sVoliver -p6818 -g24 -(g26 -S'n\x17\x00\x00\x00\x00\x00\x00' -tRp6819 -sVcycling -p6820 -g24 -(g26 -S'\x97\x08\x00\x00\x00\x00\x00\x00' -tRp6821 -sVporsche -p6822 -g24 -(g26 -S'\xa6\x19\x00\x00\x00\x00\x00\x00' -tRp6823 -sVinformed -p6824 -g24 -(g26 -S'\x11\x11\x00\x00\x00\x00\x00\x00' -tRp6825 -sVcarey -p6826 -g24 -(g26 -S'\x0e\x05\x00\x00\x00\x00\x00\x00' -tRp6827 -sVtropical -p6828 -g24 -(g26 -S'\x08#\x00\x00\x00\x00\x00\x00' -tRp6829 -sVelvis -p6830 -g24 -(g26 -S'4\x0b\x00\x00\x00\x00\x00\x00' -tRp6831 -sVnikon -p6832 -g24 -(g26 -S'\xc6\x16\x00\x00\x00\x00\x00\x00' -tRp6833 -sVlanguage -p6834 -g24 -(g26 -S'\xe3\x12\x00\x00\x00\x00\x00\x00' -tRp6835 -sVtextbook -p6836 -g24 -(g26 -S'\xd2!\x00\x00\x00\x00\x00\x00' -tRp6837 -sVsuspected -p6838 -g24 -(g26 -S'\x18!\x00\x00\x00\x00\x00\x00' -tRp6839 -sVruby -p6840 -g24 -(g26 -S'Y\x1d\x00\x00\x00\x00\x00\x00' -tRp6841 -sVdeveloping -p6842 -g24 -(g26 -S'\x8c\t\x00\x00\x00\x00\x00\x00' -tRp6843 -sVtrick -p6844 -g24 -(g26 -S'\xf8"\x00\x00\x00\x00\x00\x00' -tRp6845 -sVeditorial -p6846 -g24 -(g26 -S'\xf8\n\x00\x00\x00\x00\x00\x00' -tRp6847 -sVjoke -p6848 -g24 -(g26 -S'.\x12\x00\x00\x00\x00\x00\x00' -tRp6849 -sVpolymer -p6850 -g24 -(g26 -S'\x94\x19\x00\x00\x00\x00\x00\x00' -tRp6851 -sVsuse -p6852 -g24 -(g26 -S'\x16!\x00\x00\x00\x00\x00\x00' -tRp6853 -sVorientation -p6854 -g24 -(g26 -S'\xbf\x17\x00\x00\x00\x00\x00\x00' -tRp6855 -sVsoil -p6856 -g24 -(g26 -S'a\x1f\x00\x00\x00\x00\x00\x00' -tRp6857 -sVmetric -p6858 -g24 -(g26 -S'B\x15\x00\x00\x00\x00\x00\x00' -tRp6859 -sVcommander -p6860 -g24 -(g26 -S'\xbf\x06\x00\x00\x00\x00\x00\x00' -tRp6861 -sVbias -p6862 -g24 -(g26 -S'o\x03\x00\x00\x00\x00\x00\x00' -tRp6863 -sVbeaver -p6864 -g24 -(g26 -S'(\x03\x00\x00\x00\x00\x00\x00' -tRp6865 -sVstickers -p6866 -g24 -(g26 -S'C \x00\x00\x00\x00\x00\x00' -tRp6867 -sVship -p6868 -g24 -(g26 -S'\xae\x1e\x00\x00\x00\x00\x00\x00' -tRp6869 -sVworry -p6870 -g24 -(g26 -S'b%\x00\x00\x00\x00\x00\x00' -tRp6871 -sVdevelop -p6872 -g24 -(g26 -S'\x88\t\x00\x00\x00\x00\x00\x00' -tRp6873 -sVinquire -p6874 -g24 -(g26 -S'-\x11\x00\x00\x00\x00\x00\x00' -tRp6875 -sVmedia -p6876 -g24 -(g26 -S'\xf5\x14\x00\x00\x00\x00\x00\x00' -tRp6877 -sVya -p6878 -g24 -(g26 -S'\x90%\x00\x00\x00\x00\x00\x00' -tRp6879 -sVinquiry -p6880 -g24 -(g26 -S'/\x11\x00\x00\x00\x00\x00\x00' -tRp6881 -sVlite -p6882 -g24 -(g26 -S'\xaf\x13\x00\x00\x00\x00\x00\x00' -tRp6883 -sVstreams -p6884 -g24 -(g26 -S'f \x00\x00\x00\x00\x00\x00' -tRp6885 -sVdocument -p6886 -g24 -(g26 -S'<\n\x00\x00\x00\x00\x00\x00' -tRp6887 -sVnoble -p6888 -g24 -(g26 -S'\xd2\x16\x00\x00\x00\x00\x00\x00' -tRp6889 -sVinvestigated -p6890 -g24 -(g26 -S'\x9c\x11\x00\x00\x00\x00\x00\x00' -tRp6891 -sVcenturies -p6892 -g24 -(g26 -S'm\x05\x00\x00\x00\x00\x00\x00' -tRp6893 -sVclosest -p6894 -g24 -(g26 -S']\x06\x00\x00\x00\x00\x00\x00' -tRp6895 -sVarctic -p6896 -g24 -(g26 -S'\xe0\x01\x00\x00\x00\x00\x00\x00' -tRp6897 -sVfoam -p6898 -g24 -(g26 -S't\r\x00\x00\x00\x00\x00\x00' -tRp6899 -sVvista -p6900 -g24 -(g26 -S'U$\x00\x00\x00\x00\x00\x00' -tRp6901 -sVfruit -p6902 -g24 -(g26 -S'\xee\r\x00\x00\x00\x00\x00\x00' -tRp6903 -sVfavorites -p6904 -g24 -(g26 -S'\xc5\x0c\x00\x00\x00\x00\x00\x00' -tRp6905 -sVtradition -p6906 -g24 -(g26 -S'\xa1"\x00\x00\x00\x00\x00\x00' -tRp6907 -sVtheater -p6908 -g24 -(g26 -S'\xe2!\x00\x00\x00\x00\x00\x00' -tRp6909 -sVbondage -p6910 -g24 -(g26 -S'\xdd\x03\x00\x00\x00\x00\x00\x00' -tRp6911 -sVcharges -p6912 -g24 -(g26 -S'\xa9\x05\x00\x00\x00\x00\x00\x00' -tRp6913 -sVcharger -p6914 -g24 -(g26 -S'\xa7\x05\x00\x00\x00\x00\x00\x00' -tRp6915 -sVconstitutional -p6916 -g24 -(g26 -S'}\x07\x00\x00\x00\x00\x00\x00' -tRp6917 -sVsevere -p6918 -g24 -(g26 -S'w\x1e\x00\x00\x00\x00\x00\x00' -tRp6919 -sVgain -p6920 -g24 -(g26 -S'\x1d\x0e\x00\x00\x00\x00\x00\x00' -tRp6921 -sVcoordinate -p6922 -g24 -(g26 -S'\xd9\x07\x00\x00\x00\x00\x00\x00' -tRp6923 -sVccd -p6924 -g24 -(g26 -S'Q\x05\x00\x00\x00\x00\x00\x00' -tRp6925 -sVlaboratories -p6926 -g24 -(g26 -S'\xc7\x12\x00\x00\x00\x00\x00\x00' -tRp6927 -sVfrontpage -p6928 -g24 -(g26 -S'\xeb\r\x00\x00\x00\x00\x00\x00' -tRp6929 -sVcharged -p6930 -g24 -(g26 -S'\xa6\x05\x00\x00\x00\x00\x00\x00' -tRp6931 -sVtaxi -p6932 -g24 -(g26 -S'y!\x00\x00\x00\x00\x00\x00' -tRp6933 -sVlivestock -p6934 -g24 -(g26 -S'\xbe\x13\x00\x00\x00\x00\x00\x00' -tRp6935 -sVexcel -p6936 -g24 -(g26 -S'\r\x0c\x00\x00\x00\x00\x00\x00' -tRp6937 -sVneon -p6938 -g24 -(g26 -S'\x91\x16\x00\x00\x00\x00\x00\x00' -tRp6939 -sVci -p6940 -g24 -(g26 -S'\x01\x06\x00\x00\x00\x00\x00\x00' -tRp6941 -sVvaluable -p6942 -g24 -(g26 -S'\xcf#\x00\x00\x00\x00\x00\x00' -tRp6943 -sVmaternity -p6944 -g24 -(g26 -S'\xc7\x14\x00\x00\x00\x00\x00\x00' -tRp6945 -sVcambodia -p6946 -g24 -(g26 -S'\xd2\x04\x00\x00\x00\x00\x00\x00' -tRp6947 -sVtouch -p6948 -g24 -(g26 -S'{"\x00\x00\x00\x00\x00\x00' -tRp6949 -sVspeed -p6950 -g24 -(g26 -S'\xc0\x1f\x00\x00\x00\x00\x00\x00' -tRp6951 -sVdeath -p6952 -g24 -(g26 -S'\xde\x08\x00\x00\x00\x00\x00\x00' -tRp6953 -sVstruct -p6954 -g24 -(g26 -S'~ \x00\x00\x00\x00\x00\x00' -tRp6955 -sVeuros -p6956 -g24 -(g26 -S'\xe9\x0b\x00\x00\x00\x00\x00\x00' -tRp6957 -sVthinking -p6958 -g24 -(g26 -S'\xfb!\x00\x00\x00\x00\x00\x00' -tRp6959 -sVconclude -p6960 -g24 -(g26 -S"'\x07\x00\x00\x00\x00\x00\x00" -tRp6961 -sVimprovement -p6962 -g24 -(g26 -S'\xbb\x10\x00\x00\x00\x00\x00\x00' -tRp6963 -sVlender -p6964 -g24 -(g26 -S'B\x13\x00\x00\x00\x00\x00\x00' -tRp6965 -sVverse -p6966 -g24 -(g26 -S'\x0b$\x00\x00\x00\x00\x00\x00' -tRp6967 -sVtreatment -p6968 -g24 -(g26 -S'\xe3"\x00\x00\x00\x00\x00\x00' -tRp6969 -sVrole -p6970 -g24 -(g26 -S'\x1e\x1d\x00\x00\x00\x00\x00\x00' -tRp6971 -sVstruck -p6972 -g24 -(g26 -S'} \x00\x00\x00\x00\x00\x00' -tRp6973 -sVmomentum -p6974 -g24 -(g26 -S'\xce\x15\x00\x00\x00\x00\x00\x00' -tRp6975 -sVreal -p6976 -g24 -(g26 -S'\x83\x1b\x00\x00\x00\x00\x00\x00' -tRp6977 -sVpsi -p6978 -g24 -(g26 -S'\xca\x1a\x00\x00\x00\x00\x00\x00' -tRp6979 -sVspectacular -p6980 -g24 -(g26 -S'\xbc\x1f\x00\x00\x00\x00\x00\x00' -tRp6981 -sVread -p6982 -g24 -(g26 -S'{\x1b\x00\x00\x00\x00\x00\x00' -tRp6983 -sVcayman -p6984 -g24 -(g26 -S'M\x05\x00\x00\x00\x00\x00\x00' -tRp6985 -sVcalendars -p6986 -g24 -(g26 -S'\xc8\x04\x00\x00\x00\x00\x00\x00' -tRp6987 -sVamd -p6988 -g24 -(g26 -S':\x01\x00\x00\x00\x00\x00\x00' -tRp6989 -sVgonna -p6990 -g24 -(g26 -S'\xb1\x0e\x00\x00\x00\x00\x00\x00' -tRp6991 -sVamy -p6992 -g24 -(g26 -S'J\x01\x00\x00\x00\x00\x00\x00' -tRp6993 -sVlistening -p6994 -g24 -(g26 -S'\xa9\x13\x00\x00\x00\x00\x00\x00' -tRp6995 -sVusing -p6996 -g24 -(g26 -S'\xb1#\x00\x00\x00\x00\x00\x00' -tRp6997 -sVpsp -p6998 -g24 -(g26 -S'\xcb\x1a\x00\x00\x00\x00\x00\x00' -tRp6999 -sVexecution -p7000 -g24 -(g26 -S'%\x0c\x00\x00\x00\x00\x00\x00' -tRp7001 -sVlady -p7002 -g24 -(g26 -S'\xcf\x12\x00\x00\x00\x00\x00\x00' -tRp7003 -sVrear -p7004 -g24 -(g26 -S'\x8d\x1b\x00\x00\x00\x00\x00\x00' -tRp7005 -sVruled -p7006 -g24 -(g26 -S'^\x1d\x00\x00\x00\x00\x00\x00' -tRp7007 -sVfortune -p7008 -g24 -(g26 -S'\xad\r\x00\x00\x00\x00\x00\x00' -tRp7009 -sVpounds -p7010 -g24 -(g26 -S'\xd7\x19\x00\x00\x00\x00\x00\x00' -tRp7011 -sVpostcard -p7012 -g24 -(g26 -S'\xc5\x19\x00\x00\x00\x00\x00\x00' -tRp7013 -sVcollective -p7014 -g24 -(g26 -S'\x98\x06\x00\x00\x00\x00\x00\x00' -tRp7015 -sVgreeting -p7016 -g24 -(g26 -S'\xf5\x0e\x00\x00\x00\x00\x00\x00' -tRp7017 -sVmiracle -p7018 -g24 -(g26 -S'\x8f\x15\x00\x00\x00\x00\x00\x00' -tRp7019 -sVannually -p7020 -g24 -(g26 -S'}\x01\x00\x00\x00\x00\x00\x00' -tRp7021 -sVbenefit -p7022 -g24 -(g26 -S'U\x03\x00\x00\x00\x00\x00\x00' -tRp7023 -sVblackberry -p7024 -g24 -(g26 -S'\xa1\x03\x00\x00\x00\x00\x00\x00' -tRp7025 -sVfully -p7026 -g24 -(g26 -S'\xfa\r\x00\x00\x00\x00\x00\x00' -tRp7027 -sVoutput -p7028 -g24 -(g26 -S'\xd7\x17\x00\x00\x00\x00\x00\x00' -tRp7029 -sVendorsed -p7030 -g24 -(g26 -S'h\x0b\x00\x00\x00\x00\x00\x00' -tRp7031 -sVcisco -p7032 -g24 -(g26 -S'\x15\x06\x00\x00\x00\x00\x00\x00' -tRp7033 -sVverbal -p7034 -g24 -(g26 -S'\x03$\x00\x00\x00\x00\x00\x00' -tRp7035 -sVexposed -p7036 -g24 -(g26 -S'd\x0c\x00\x00\x00\x00\x00\x00' -tRp7037 -sVeddie -p7038 -g24 -(g26 -S'\xec\n\x00\x00\x00\x00\x00\x00' -tRp7039 -sVduration -p7040 -g24 -(g26 -S'\xb3\n\x00\x00\x00\x00\x00\x00' -tRp7041 -sVquestionnaire -p7042 -g24 -(g26 -S'\x1f\x1b\x00\x00\x00\x00\x00\x00' -tRp7043 -sVviral -p7044 -g24 -(g26 -S'C$\x00\x00\x00\x00\x00\x00' -tRp7045 -sVcp -p7046 -g24 -(g26 -S'/\x08\x00\x00\x00\x00\x00\x00' -tRp7047 -sVcw -p7048 -g24 -(g26 -S'\x93\x08\x00\x00\x00\x00\x00\x00' -tRp7049 -sVrecorded -p7050 -g24 -(g26 -S'\xb4\x1b\x00\x00\x00\x00\x00\x00' -tRp7051 -sVhepatitis -p7052 -g24 -(g26 -S'\xb9\x0f\x00\x00\x00\x00\x00\x00' -tRp7053 -sVconservative -p7054 -g24 -(g26 -S'c\x07\x00\x00\x00\x00\x00\x00' -tRp7055 -sVdeficit -p7056 -g24 -(g26 -S'\x0c\t\x00\x00\x00\x00\x00\x00' -tRp7057 -sVrecorder -p7058 -g24 -(g26 -S'\xb5\x1b\x00\x00\x00\x00\x00\x00' -tRp7059 -sVarabia -p7060 -g24 -(g26 -S'\xd1\x01\x00\x00\x00\x00\x00\x00' -tRp7061 -sVepson -p7062 -g24 -(g26 -S'\xad\x0b\x00\x00\x00\x00\x00\x00' -tRp7063 -sVbusiness -p7064 -g24 -(g26 -S'\x9b\x04\x00\x00\x00\x00\x00\x00' -tRp7065 -sVsixth -p7066 -g24 -(g26 -S'\x13\x1f\x00\x00\x00\x00\x00\x00' -tRp7067 -sVequivalent -p7068 -g24 -(g26 -S'\xb8\x0b\x00\x00\x00\x00\x00\x00' -tRp7069 -sVvolkswagen -p7070 -g24 -(g26 -S'c$\x00\x00\x00\x00\x00\x00' -tRp7071 -sVcredits -p7072 -g24 -(g26 -S'I\x08\x00\x00\x00\x00\x00\x00' -tRp7073 -sVfrancis -p7074 -g24 -(g26 -S'\xcb\r\x00\x00\x00\x00\x00\x00' -tRp7075 -sVthrow -p7076 -g24 -(g26 -S'\x16"\x00\x00\x00\x00\x00\x00' -tRp7077 -sVbrighton -p7078 -g24 -(g26 -S'@\x04\x00\x00\x00\x00\x00\x00' -tRp7079 -sVcomparison -p7080 -g24 -(g26 -S'\xe8\x06\x00\x00\x00\x00\x00\x00' -tRp7081 -sVcentral -p7082 -g24 -(g26 -S'i\x05\x00\x00\x00\x00\x00\x00' -tRp7083 -sVsri -p7084 -g24 -(g26 -S'\xf4\x1f\x00\x00\x00\x00\x00\x00' -tRp7085 -sVjourney -p7086 -g24 -(g26 -S'=\x12\x00\x00\x00\x00\x00\x00' -tRp7087 -sVwolf -p7088 -g24 -(g26 -S'=%\x00\x00\x00\x00\x00\x00' -tRp7089 -sVgreatly -p7090 -g24 -(g26 -S'\xee\x0e\x00\x00\x00\x00\x00\x00' -tRp7091 -sVtestimony -p7092 -g24 -(g26 -S'\xcc!\x00\x00\x00\x00\x00\x00' -tRp7093 -sVantibody -p7094 -g24 -(g26 -S'\x8a\x01\x00\x00\x00\x00\x00\x00' -tRp7095 -sVprocessor -p7096 -g24 -(g26 -S'`\x1a\x00\x00\x00\x00\x00\x00' -tRp7097 -sVarabic -p7098 -g24 -(g26 -S'\xd2\x01\x00\x00\x00\x00\x00\x00' -tRp7099 -sVheater -p7100 -g24 -(g26 -S'\x9f\x0f\x00\x00\x00\x00\x00\x00' -tRp7101 -sVoutlook -p7102 -g24 -(g26 -S'\xd6\x17\x00\x00\x00\x00\x00\x00' -tRp7103 -sVinclusion -p7104 -g24 -(g26 -S'\xcd\x10\x00\x00\x00\x00\x00\x00' -tRp7105 -sVrolling -p7106 -g24 -(g26 -S'#\x1d\x00\x00\x00\x00\x00\x00' -tRp7107 -sVinvolvement -p7108 -g24 -(g26 -S'\xaf\x11\x00\x00\x00\x00\x00\x00' -tRp7109 -sVheated -p7110 -g24 -(g26 -S'\x9e\x0f\x00\x00\x00\x00\x00\x00' -tRp7111 -sVoperator -p7112 -g24 -(g26 -S'\x8e\x17\x00\x00\x00\x00\x00\x00' -tRp7113 -sVintervention -p7114 -g24 -(g26 -S'\x88\x11\x00\x00\x00\x00\x00\x00' -tRp7115 -sVloc -p7116 -g24 -(g26 -S'\xcf\x13\x00\x00\x00\x00\x00\x00' -tRp7117 -sVlog -p7118 -g24 -(g26 -S'\xde\x13\x00\x00\x00\x00\x00\x00' -tRp7119 -sVprepare -p7120 -g24 -(g26 -S'\x0c\x1a\x00\x00\x00\x00\x00\x00' -tRp7121 -sVarea -p7122 -g24 -(g26 -S'\xe1\x01\x00\x00\x00\x00\x00\x00' -tRp7123 -sVremoving -p7124 -g24 -(g26 -S'7\x1c\x00\x00\x00\x00\x00\x00' -tRp7125 -sVlol -p7126 -g24 -(g26 -S'\xea\x13\x00\x00\x00\x00\x00\x00' -tRp7127 -sVstart -p7128 -g24 -(g26 -S'\x12 \x00\x00\x00\x00\x00\x00' -tRp7129 -sVcats -p7130 -g24 -(g26 -S'D\x05\x00\x00\x00\x00\x00\x00' -tRp7131 -sVlow -p7132 -g24 -(g26 -S'\x16\x14\x00\x00\x00\x00\x00\x00' -tRp7133 -sVlot -p7134 -g24 -(g26 -S'\x04\x14\x00\x00\x00\x00\x00\x00' -tRp7135 -sVlou -p7136 -g24 -(g26 -S'\x08\x14\x00\x00\x00\x00\x00\x00' -tRp7137 -sVsomerset -p7138 -g24 -(g26 -S'u\x1f\x00\x00\x00\x00\x00\x00' -tRp7139 -sVassumes -p7140 -g24 -(g26 -S';\x02\x00\x00\x00\x00\x00\x00' -tRp7141 -sVshower -p7142 -g24 -(g26 -S'\xcd\x1e\x00\x00\x00\x00\x00\x00' -tRp7143 -sVdelayed -p7144 -g24 -(g26 -S'\x19\t\x00\x00\x00\x00\x00\x00' -tRp7145 -sVcottage -p7146 -g24 -(g26 -S'\t\x08\x00\x00\x00\x00\x00\x00' -tRp7147 -sVpodcast -p7148 -g24 -(g26 -S'u\x19\x00\x00\x00\x00\x00\x00' -tRp7149 -sVhottest -p7150 -g24 -(g26 -S'0\x10\x00\x00\x00\x00\x00\x00' -tRp7151 -sVhire -p7152 -g24 -(g26 -S'\xdb\x0f\x00\x00\x00\x00\x00\x00' -tRp7153 -sVfraud -p7154 -g24 -(g26 -S'\xd1\r\x00\x00\x00\x00\x00\x00' -tRp7155 -sVdominican -p7156 -g24 -(g26 -S'R\n\x00\x00\x00\x00\x00\x00' -tRp7157 -sVcirculation -p7158 -g24 -(g26 -S'\x12\x06\x00\x00\x00\x00\x00\x00' -tRp7159 -sVstanford -p7160 -g24 -(g26 -S'\x0c \x00\x00\x00\x00\x00\x00' -tRp7161 -sVcomics -p7162 -g24 -(g26 -S'\xbb\x06\x00\x00\x00\x00\x00\x00' -tRp7163 -sVappliance -p7164 -g24 -(g26 -S'\xac\x01\x00\x00\x00\x00\x00\x00' -tRp7165 -sVtones -p7166 -g24 -(g26 -S'e"\x00\x00\x00\x00\x00\x00' -tRp7167 -sVtoner -p7168 -g24 -(g26 -S'd"\x00\x00\x00\x00\x00\x00' -tRp7169 -sVbuilders -p7170 -g24 -(g26 -S'}\x04\x00\x00\x00\x00\x00\x00' -tRp7171 -sVbeliefs -p7172 -g24 -(g26 -S'B\x03\x00\x00\x00\x00\x00\x00' -tRp7173 -sVscanner -p7174 -g24 -(g26 -S'\xc5\x1d\x00\x00\x00\x00\x00\x00' -tRp7175 -sVmoved -p7176 -g24 -(g26 -S'\x0b\x16\x00\x00\x00\x00\x00\x00' -tRp7177 -sVsales -p7178 -g24 -(g26 -S'\x89\x1d\x00\x00\x00\x00\x00\x00' -tRp7179 -sVsalem -p7180 -g24 -(g26 -S'\x88\x1d\x00\x00\x00\x00\x00\x00' -tRp7181 -sVmoves -p7182 -g24 -(g26 -S'\x0f\x16\x00\x00\x00\x00\x00\x00' -tRp7183 -sVhospitals -p7184 -g24 -(g26 -S'%\x10\x00\x00\x00\x00\x00\x00' -tRp7185 -sVcabinets -p7186 -g24 -(g26 -S'\xb4\x04\x00\x00\x00\x00\x00\x00' -tRp7187 -sVantenna -p7188 -g24 -(g26 -S'\x85\x01\x00\x00\x00\x00\x00\x00' -tRp7189 -sVadministered -p7190 -g24 -(g26 -S'\x8c\x00\x00\x00\x00\x00\x00\x00' -tRp7191 -sVstorage -p7192 -g24 -(g26 -S'S \x00\x00\x00\x00\x00\x00' -tRp7193 -sVringtone -p7194 -g24 -(g26 -S'\xf7\x1c\x00\x00\x00\x00\x00\x00' -tRp7195 -sVvalid -p7196 -g24 -(g26 -S'\xca#\x00\x00\x00\x00\x00\x00' -tRp7197 -sVgambling -p7198 -g24 -(g26 -S'$\x0e\x00\x00\x00\x00\x00\x00' -tRp7199 -sVpoor -p7200 -g24 -(g26 -S'\x9a\x19\x00\x00\x00\x00\x00\x00' -tRp7201 -sVpolar -p7202 -g24 -(g26 -S'\x84\x19\x00\x00\x00\x00\x00\x00' -tRp7203 -sVphys -p7204 -g24 -(g26 -S'\x03\x19\x00\x00\x00\x00\x00\x00' -tRp7205 -sVpeas -p7206 -g24 -(g26 -S'\x8d\x18\x00\x00\x00\x00\x00\x00' -tRp7207 -sVpeak -p7208 -g24 -(g26 -S'\x8b\x18\x00\x00\x00\x00\x00\x00' -tRp7209 -sVsuited -p7210 -g24 -(g26 -S'\xd2 \x00\x00\x00\x00\x00\x00' -tRp7211 -sVqueensland -p7212 -g24 -(g26 -S'\x1a\x1b\x00\x00\x00\x00\x00\x00' -tRp7213 -sVpool -p7214 -g24 -(g26 -S'\x98\x19\x00\x00\x00\x00\x00\x00' -tRp7215 -sVbeastiality -p7216 -g24 -(g26 -S'!\x03\x00\x00\x00\x00\x00\x00' -tRp7217 -sVprofits -p7218 -g24 -(g26 -S'v\x1a\x00\x00\x00\x00\x00\x00' -tRp7219 -sVoverseas -p7220 -g24 -(g26 -S'\xe3\x17\x00\x00\x00\x00\x00\x00' -tRp7221 -sVstrings -p7222 -g24 -(g26 -S'u \x00\x00\x00\x00\x00\x00' -tRp7223 -sVmonte -p7224 -g24 -(g26 -S'\xe1\x15\x00\x00\x00\x00\x00\x00' -tRp7225 -sVexhibitions -p7226 -g24 -(g26 -S'/\x0c\x00\x00\x00\x00\x00\x00' -tRp7227 -sVpointing -p7228 -g24 -(g26 -S'~\x19\x00\x00\x00\x00\x00\x00' -tRp7229 -sVmonth -p7230 -g24 -(g26 -S'\xe3\x15\x00\x00\x00\x00\x00\x00' -tRp7231 -sVdeadline -p7232 -g24 -(g26 -S'\xd2\x08\x00\x00\x00\x00\x00\x00' -tRp7233 -sVpublish -p7234 -g24 -(g26 -S'\xd9\x1a\x00\x00\x00\x00\x00\x00' -tRp7235 -sVcameron -p7236 -g24 -(g26 -S'\xda\x04\x00\x00\x00\x00\x00\x00' -tRp7237 -sVnewbie -p7238 -g24 -(g26 -S'\xa2\x16\x00\x00\x00\x00\x00\x00' -tRp7239 -sVreligious -p7240 -g24 -(g26 -S'\x1e\x1c\x00\x00\x00\x00\x00\x00' -tRp7241 -sVcarpet -p7242 -g24 -(g26 -S'\x1a\x05\x00\x00\x00\x00\x00\x00' -tRp7243 -sVgriffin -p7244 -g24 -(g26 -S'\xfd\x0e\x00\x00\x00\x00\x00\x00' -tRp7245 -sVreferring -p7246 -g24 -(g26 -S'\xd6\x1b\x00\x00\x00\x00\x00\x00' -tRp7247 -sVauckland -p7248 -g24 -(g26 -S'r\x02\x00\x00\x00\x00\x00\x00' -tRp7249 -sVwyoming -p7250 -g24 -(g26 -S'\x84%\x00\x00\x00\x00\x00\x00' -tRp7251 -sVfoster -p7252 -g24 -(g26 -S'\xb3\r\x00\x00\x00\x00\x00\x00' -tRp7253 -sVsafety -p7254 -g24 -(g26 -S'{\x1d\x00\x00\x00\x00\x00\x00' -tRp7255 -sVwma -p7256 -g24 -(g26 -S';%\x00\x00\x00\x00\x00\x00' -tRp7257 -sVcdna -p7258 -g24 -(g26 -S'S\x05\x00\x00\x00\x00\x00\x00' -tRp7259 -sVmpg -p7260 -g24 -(g26 -S'\x18\x16\x00\x00\x00\x00\x00\x00' -tRp7261 -sVseventh -p7262 -g24 -(g26 -S'v\x1e\x00\x00\x00\x00\x00\x00' -tRp7263 -sVconfidential -p7264 -g24 -(g26 -S'<\x07\x00\x00\x00\x00\x00\x00' -tRp7265 -sVhomes -p7266 -g24 -(g26 -S'\x04\x10\x00\x00\x00\x00\x00\x00' -tRp7267 -sVhorror -p7268 -g24 -(g26 -S'\x1f\x10\x00\x00\x00\x00\x00\x00' -tRp7269 -sVmph -p7270 -g24 -(g26 -S'\x19\x16\x00\x00\x00\x00\x00\x00' -tRp7271 -sVdecide -p7272 -g24 -(g26 -S'\xeb\x08\x00\x00\x00\x00\x00\x00' -tRp7273 -sVsecurely -p7274 -g24 -(g26 -S'\x1e\x1e\x00\x00\x00\x00\x00\x00' -tRp7275 -sVlaura -p7276 -g24 -(g26 -S'\x05\x13\x00\x00\x00\x00\x00\x00' -tRp7277 -sVheaven -p7278 -g24 -(g26 -S'\xa3\x0f\x00\x00\x00\x00\x00\x00' -tRp7279 -sVlouis -p7280 -g24 -(g26 -S'\n\x14\x00\x00\x00\x00\x00\x00' -tRp7281 -sVmanager -p7282 -g24 -(g26 -S'q\x14\x00\x00\x00\x00\x00\x00' -tRp7283 -sVrandom -p7284 -g24 -(g26 -S'P\x1b\x00\x00\x00\x00\x00\x00' -tRp7285 -sVcircuit -p7286 -g24 -(g26 -S'\x0f\x06\x00\x00\x00\x00\x00\x00' -tRp7287 -sVstudy -p7288 -g24 -(g26 -S'\x8d \x00\x00\x00\x00\x00\x00' -tRp7289 -sVanal -p7290 -g24 -(g26 -S'M\x01\x00\x00\x00\x00\x00\x00' -tRp7291 -sVcookies -p7292 -g24 -(g26 -S'\xd1\x07\x00\x00\x00\x00\x00\x00' -tRp7293 -sVfence -p7294 -g24 -(g26 -S'\xeb\x0c\x00\x00\x00\x00\x00\x00' -tRp7295 -sVstreets -p7296 -g24 -(g26 -S'h \x00\x00\x00\x00\x00\x00' -tRp7297 -sVorgasm -p7298 -g24 -(g26 -S'\xbc\x17\x00\x00\x00\x00\x00\x00' -tRp7299 -sVasp -p7300 -g24 -(g26 -S'\x1d\x02\x00\x00\x00\x00\x00\x00' -tRp7301 -sVenhancement -p7302 -g24 -(g26 -S'}\x0b\x00\x00\x00\x00\x00\x00' -tRp7303 -sVthehun -p7304 -g24 -(g26 -S'\xe7!\x00\x00\x00\x00\x00\x00' -tRp7305 -sVcasual -p7306 -g24 -(g26 -S'7\x05\x00\x00\x00\x00\x00\x00' -tRp7307 -sVtoolbox -p7308 -g24 -(g26 -S'm"\x00\x00\x00\x00\x00\x00' -tRp7309 -sVdarkness -p7310 -g24 -(g26 -S'\xb7\x08\x00\x00\x00\x00\x00\x00' -tRp7311 -sVnano -p7312 -g24 -(g26 -S'U\x16\x00\x00\x00\x00\x00\x00' -tRp7313 -sVinvesting -p7314 -g24 -(g26 -S'\xa1\x11\x00\x00\x00\x00\x00\x00' -tRp7315 -sVemotions -p7316 -g24 -(g26 -S'E\x0b\x00\x00\x00\x00\x00\x00' -tRp7317 -sVthickness -p7318 -g24 -(g26 -S'\xf7!\x00\x00\x00\x00\x00\x00' -tRp7319 -sVwitnesses -p7320 -g24 -(g26 -S'7%\x00\x00\x00\x00\x00\x00' -tRp7321 -sVcertificates -p7322 -g24 -(g26 -S'u\x05\x00\x00\x00\x00\x00\x00' -tRp7323 -sVlearned -p7324 -g24 -(g26 -S'#\x13\x00\x00\x00\x00\x00\x00' -tRp7325 -sVdeborah -p7326 -g24 -(g26 -S'\xe2\x08\x00\x00\x00\x00\x00\x00' -tRp7327 -sVedited -p7328 -g24 -(g26 -S'\xf3\n\x00\x00\x00\x00\x00\x00' -tRp7329 -sViran -p7330 -g24 -(g26 -S'\xbb\x11\x00\x00\x00\x00\x00\x00' -tRp7331 -sVloose -p7332 -g24 -(g26 -S'\xfb\x13\x00\x00\x00\x00\x00\x00' -tRp7333 -sVmodify -p7334 -g24 -(g26 -S'\xc1\x15\x00\x00\x00\x00\x00\x00' -tRp7335 -sVballet -p7336 -g24 -(g26 -S'\xcd\x02\x00\x00\x00\x00\x00\x00' -tRp7337 -sVanswers -p7338 -g24 -(g26 -S'\x82\x01\x00\x00\x00\x00\x00\x00' -tRp7339 -sVmodular -p7340 -g24 -(g26 -S'\xc3\x15\x00\x00\x00\x00\x00\x00' -tRp7341 -sVtracks -p7342 -g24 -(g26 -S'\x97"\x00\x00\x00\x00\x00\x00' -tRp7343 -sVselective -p7344 -g24 -(g26 -S'3\x1e\x00\x00\x00\x00\x00\x00' -tRp7345 -sVtrunk -p7346 -g24 -(g26 -S'\x11#\x00\x00\x00\x00\x00\x00' -tRp7347 -sVstrong -p7348 -g24 -(g26 -S'z \x00\x00\x00\x00\x00\x00' -tRp7349 -sVarena -p7350 -g24 -(g26 -S'\xe3\x01\x00\x00\x00\x00\x00\x00' -tRp7351 -sVcolored -p7352 -g24 -(g26 -S'\xa5\x06\x00\x00\x00\x00\x00\x00' -tRp7353 -sVconviction -p7354 -g24 -(g26 -S'\xcb\x07\x00\x00\x00\x00\x00\x00' -tRp7355 -sVdisclaimers -p7356 -g24 -(g26 -S'\xeb\t\x00\x00\x00\x00\x00\x00' -tRp7357 -sVvegetarian -p7358 -g24 -(g26 -S'\xf4#\x00\x00\x00\x00\x00\x00' -tRp7359 -sVlosses -p7360 -g24 -(g26 -S'\x02\x14\x00\x00\x00\x00\x00\x00' -tRp7361 -sVfired -p7362 -g24 -(g26 -S'-\r\x00\x00\x00\x00\x00\x00' -tRp7363 -sVsoldier -p7364 -g24 -(g26 -S'f\x1f\x00\x00\x00\x00\x00\x00' -tRp7365 -sVadvertising -p7366 -g24 -(g26 -S'\xae\x00\x00\x00\x00\x00\x00\x00' -tRp7367 -sVtrainer -p7368 -g24 -(g26 -S'\xac"\x00\x00\x00\x00\x00\x00' -tRp7369 -sVfamily -p7370 -g24 -(g26 -S'\xa6\x0c\x00\x00\x00\x00\x00\x00' -tRp7371 -sVrequiring -p7372 -g24 -(g26 -S's\x1c\x00\x00\x00\x00\x00\x00' -tRp7373 -sVcosmetic -p7374 -g24 -(g26 -S'\x02\x08\x00\x00\x00\x00\x00\x00' -tRp7375 -sVhref -p7376 -g24 -(g26 -S'A\x10\x00\x00\x00\x00\x00\x00' -tRp7377 -sVaimed -p7378 -g24 -(g26 -S'\xe7\x00\x00\x00\x00\x00\x00\x00' -tRp7379 -sVtrained -p7380 -g24 -(g26 -S'\xab"\x00\x00\x00\x00\x00\x00' -tRp7381 -sVtoys -p7382 -g24 -(g26 -S'\x8d"\x00\x00\x00\x00\x00\x00' -tRp7383 -sVconventional -p7384 -g24 -(g26 -S'\xc0\x07\x00\x00\x00\x00\x00\x00' -tRp7385 -sVearliest -p7386 -g24 -(g26 -S'\xc7\n\x00\x00\x00\x00\x00\x00' -tRp7387 -sVtakes -p7388 -g24 -(g26 -S'X!\x00\x00\x00\x00\x00\x00' -tRp7389 -sViraqi -p7390 -g24 -(g26 -S'\xbd\x11\x00\x00\x00\x00\x00\x00' -tRp7391 -sVrevelation -p7392 -g24 -(g26 -S'\xc7\x1c\x00\x00\x00\x00\x00\x00' -tRp7393 -sVcontains -p7394 -g24 -(g26 -S'\x95\x07\x00\x00\x00\x00\x00\x00' -tRp7395 -sVoecd -p7396 -g24 -(g26 -S'N\x17\x00\x00\x00\x00\x00\x00' -tRp7397 -sVmysterious -p7398 -g24 -(g26 -S'H\x16\x00\x00\x00\x00\x00\x00' -tRp7399 -sVbrunswick -p7400 -g24 -(g26 -S'f\x04\x00\x00\x00\x00\x00\x00' -tRp7401 -sVauthorization -p7402 -g24 -(g26 -S'\x88\x02\x00\x00\x00\x00\x00\x00' -tRp7403 -sVturbo -p7404 -g24 -(g26 -S'-#\x00\x00\x00\x00\x00\x00' -tRp7405 -sVinstrumental -p7406 -g24 -(g26 -S'S\x11\x00\x00\x00\x00\x00\x00' -tRp7407 -sVexcuse -p7408 -g24 -(g26 -S'!\x0c\x00\x00\x00\x00\x00\x00' -tRp7409 -sVbroke -p7410 -g24 -(g26 -S'S\x04\x00\x00\x00\x00\x00\x00' -tRp7411 -sVmounted -p7412 -g24 -(g26 -S'\x06\x16\x00\x00\x00\x00\x00\x00' -tRp7413 -sVproducing -p7414 -g24 -(g26 -S'h\x1a\x00\x00\x00\x00\x00\x00' -tRp7415 -sVwebmaster -p7416 -g24 -(g26 -S'\xd5$\x00\x00\x00\x00\x00\x00' -tRp7417 -sVvp -p7418 -g24 -(g26 -S'v$\x00\x00\x00\x00\x00\x00' -tRp7419 -sVmuze -p7420 -g24 -(g26 -S'>\x16\x00\x00\x00\x00\x00\x00' -tRp7421 -sVcoalition -p7422 -g24 -(g26 -S's\x06\x00\x00\x00\x00\x00\x00' -tRp7423 -sVnebraska -p7424 -g24 -(g26 -S'}\x16\x00\x00\x00\x00\x00\x00' -tRp7425 -sVbudgets -p7426 -g24 -(g26 -S't\x04\x00\x00\x00\x00\x00\x00' -tRp7427 -sVyemen -p7428 -g24 -(g26 -S'\xa1%\x00\x00\x00\x00\x00\x00' -tRp7429 -sVhistory -p7430 -g24 -(g26 -S'\xe2\x0f\x00\x00\x00\x00\x00\x00' -tRp7431 -sVpushed -p7432 -g24 -(g26 -S'\xf9\x1a\x00\x00\x00\x00\x00\x00' -tRp7433 -sVexclude -p7434 -g24 -(g26 -S'\x1b\x0c\x00\x00\x00\x00\x00\x00' -tRp7435 -sVspecies -p7436 -g24 -(g26 -S'\xb2\x1f\x00\x00\x00\x00\x00\x00' -tRp7437 -sVprocessors -p7438 -g24 -(g26 -S'a\x1a\x00\x00\x00\x00\x00\x00' -tRp7439 -sVclarke -p7440 -g24 -(g26 -S'.\x06\x00\x00\x00\x00\x00\x00' -tRp7441 -sVutilize -p7442 -g24 -(g26 -S'\xbc#\x00\x00\x00\x00\x00\x00' -tRp7443 -sVstayed -p7444 -g24 -(g26 -S', \x00\x00\x00\x00\x00\x00' -tRp7445 -sVmenus -p7446 -g24 -(g26 -S' \x15\x00\x00\x00\x00\x00\x00' -tRp7447 -sVreject -p7448 -g24 -(g26 -S'\x03\x1c\x00\x00\x00\x00\x00\x00' -tRp7449 -sVidaho -p7450 -g24 -(g26 -S'x\x10\x00\x00\x00\x00\x00\x00' -tRp7451 -sVfp -p7452 -g24 -(g26 -S'\xbf\r\x00\x00\x00\x00\x00\x00' -tRp7453 -sVfr -p7454 -g24 -(g26 -S'\xc0\r\x00\x00\x00\x00\x00\x00' -tRp7455 -sVfs -p7456 -g24 -(g26 -S'\xf0\r\x00\x00\x00\x00\x00\x00' -tRp7457 -sVft -p7458 -g24 -(g26 -S'\xf1\r\x00\x00\x00\x00\x00\x00' -tRp7459 -sVfu -p7460 -g24 -(g26 -S'\xf3\r\x00\x00\x00\x00\x00\x00' -tRp7461 -sVfw -p7462 -g24 -(g26 -S'\x15\x0e\x00\x00\x00\x00\x00\x00' -tRp7463 -sVfx -p7464 -g24 -(g26 -S'\x17\x0e\x00\x00\x00\x00\x00\x00' -tRp7465 -sVfy -p7466 -g24 -(g26 -S'\x18\x0e\x00\x00\x00\x00\x00\x00' -tRp7467 -sVderived -p7468 -g24 -(g26 -S'V\t\x00\x00\x00\x00\x00\x00' -tRp7469 -sVfa -p7470 -g24 -(g26 -S'\x80\x0c\x00\x00\x00\x00\x00\x00' -tRp7471 -sVtries -p7472 -g24 -(g26 -S'\xfb"\x00\x00\x00\x00\x00\x00' -tRp7473 -sVfc -p7474 -g24 -(g26 -S'\xc9\x0c\x00\x00\x00\x00\x00\x00' -tRp7475 -sVfd -p7476 -g24 -(g26 -S'\xcb\x0c\x00\x00\x00\x00\x00\x00' -tRp7477 -sVfe -p7478 -g24 -(g26 -S'\xcd\x0c\x00\x00\x00\x00\x00\x00' -tRp7479 -sVff -p7480 -g24 -(g26 -S'\xf4\x0c\x00\x00\x00\x00\x00\x00' -tRp7481 -sVfg -p7482 -g24 -(g26 -S'\xf5\x0c\x00\x00\x00\x00\x00\x00' -tRp7483 -sVinvasion -p7484 -g24 -(g26 -S'\x97\x11\x00\x00\x00\x00\x00\x00' -tRp7485 -sVhorizontal -p7486 -g24 -(g26 -S'\x1a\x10\x00\x00\x00\x00\x00\x00' -tRp7487 -sVfl -p7488 -g24 -(g26 -S'F\r\x00\x00\x00\x00\x00\x00' -tRp7489 -sVfm -p7490 -g24 -(g26 -S'r\r\x00\x00\x00\x00\x00\x00' -tRp7491 -sVfo -p7492 -g24 -(g26 -S's\r\x00\x00\x00\x00\x00\x00' -tRp7493 -sVworkstation -p7494 -g24 -(g26 -S'Y%\x00\x00\x00\x00\x00\x00' -tRp7495 -sVhardcover -p7496 -g24 -(g26 -S'c\x0f\x00\x00\x00\x00\x00\x00' -tRp7497 -sVtravis -p7498 -g24 -(g26 -S'\xda"\x00\x00\x00\x00\x00\x00' -tRp7499 -sVdocumentation -p7500 -g24 -(g26 -S'>\n\x00\x00\x00\x00\x00\x00' -tRp7501 -sVbugs -p7502 -g24 -(g26 -S'z\x04\x00\x00\x00\x00\x00\x00' -tRp7503 -sVanytime -p7504 -g24 -(g26 -S'\x94\x01\x00\x00\x00\x00\x00\x00' -tRp7505 -sVroommates -p7506 -g24 -(g26 -S'0\x1d\x00\x00\x00\x00\x00\x00' -tRp7507 -sVcrafts -p7508 -g24 -(g26 -S'5\x08\x00\x00\x00\x00\x00\x00' -tRp7509 -sVbanks -p7510 -g24 -(g26 -S'\xde\x02\x00\x00\x00\x00\x00\x00' -tRp7511 -sVinline -p7512 -g24 -(g26 -S'#\x11\x00\x00\x00\x00\x00\x00' -tRp7513 -sVscsi -p7514 -g24 -(g26 -S'\xfa\x1d\x00\x00\x00\x00\x00\x00' -tRp7515 -sVdream -p7516 -g24 -(g26 -S'\x82\n\x00\x00\x00\x00\x00\x00' -tRp7517 -sVchicks -p7518 -g24 -(g26 -S'\xd9\x05\x00\x00\x00\x00\x00\x00' -tRp7519 -sVhelp -p7520 -g24 -(g26 -S'\xb1\x0f\x00\x00\x00\x00\x00\x00' -tRp7521 -sVreservoir -p7522 -g24 -(g26 -S'\x7f\x1c\x00\x00\x00\x00\x00\x00' -tRp7523 -sVhierarchy -p7524 -g24 -(g26 -S'\xc7\x0f\x00\x00\x00\x00\x00\x00' -tRp7525 -sVbasename -p7526 -g24 -(g26 -S'\xf8\x02\x00\x00\x00\x00\x00\x00' -tRp7527 -sVadvised -p7528 -g24 -(g26 -S'\xb1\x00\x00\x00\x00\x00\x00\x00' -tRp7529 -sVsoon -p7530 -g24 -(g26 -S'}\x1f\x00\x00\x00\x00\x00\x00' -tRp7531 -sVauburn -p7532 -g24 -(g26 -S'q\x02\x00\x00\x00\x00\x00\x00' -tRp7533 -sVheld -p7534 -g24 -(g26 -S'\xaa\x0f\x00\x00\x00\x00\x00\x00' -tRp7535 -sVthermal -p7536 -g24 -(g26 -S'\xf3!\x00\x00\x00\x00\x00\x00' -tRp7537 -sVcommittee -p7538 -g24 -(g26 -S'\xcf\x06\x00\x00\x00\x00\x00\x00' -tRp7539 -sVcommitted -p7540 -g24 -(g26 -S'\xce\x06\x00\x00\x00\x00\x00\x00' -tRp7541 -sVhell -p7542 -g24 -(g26 -S'\xae\x0f\x00\x00\x00\x00\x00\x00' -tRp7543 -sVcardiovascular -p7544 -g24 -(g26 -S'\x07\x05\x00\x00\x00\x00\x00\x00' -tRp7545 -sVhighlighted -p7546 -g24 -(g26 -S'\xcd\x0f\x00\x00\x00\x00\x00\x00' -tRp7547 -sVsolving -p7548 -g24 -(g26 -S'q\x1f\x00\x00\x00\x00\x00\x00' -tRp7549 -sVactually -p7550 -g24 -(g26 -S'h\x00\x00\x00\x00\x00\x00\x00' -tRp7551 -sVabsence -p7552 -g24 -(g26 -S'\x0f\x00\x00\x00\x00\x00\x00\x00' -tRp7553 -sVsystems -p7554 -g24 -(g26 -S'G!\x00\x00\x00\x00\x00\x00' -tRp7555 -sVrelate -p7556 -g24 -(g26 -S'\x05\x1c\x00\x00\x00\x00\x00\x00' -tRp7557 -sVfool -p7558 -g24 -(g26 -S'\x8a\r\x00\x00\x00\x00\x00\x00' -tRp7559 -sVevening -p7560 -g24 -(g26 -S'\xf5\x0b\x00\x00\x00\x00\x00\x00' -tRp7561 -sVmotivated -p7562 -g24 -(g26 -S'\xfc\x15\x00\x00\x00\x00\x00\x00' -tRp7563 -sVyo -p7564 -g24 -(g26 -S'\xa8%\x00\x00\x00\x00\x00\x00' -tRp7565 -sVyn -p7566 -g24 -(g26 -S'\xa7%\x00\x00\x00\x00\x00\x00' -tRp7567 -sVfood -p7568 -g24 -(g26 -S'\x88\r\x00\x00\x00\x00\x00\x00' -tRp7569 -sVye -p7570 -g24 -(g26 -S'\x99%\x00\x00\x00\x00\x00\x00' -tRp7571 -sVanticipated -p7572 -g24 -(g26 -S'\x8b\x01\x00\x00\x00\x00\x00\x00' -tRp7573 -sVpeeing -p7574 -g24 -(g26 -S'\x90\x18\x00\x00\x00\x00\x00\x00' -tRp7575 -sVcet -p7576 -g24 -(g26 -S'x\x05\x00\x00\x00\x00\x00\x00' -tRp7577 -sVfoot -p7578 -g24 -(g26 -S'\x8b\r\x00\x00\x00\x00\x00\x00' -tRp7579 -sVyr -p7580 -g24 -(g26 -S'\xaf%\x00\x00\x00\x00\x00\x00' -tRp7581 -sVyu -p7582 -g24 -(g26 -S'\xb1%\x00\x00\x00\x00\x00\x00' -tRp7583 -sVbryan -p7584 -g24 -(g26 -S'j\x04\x00\x00\x00\x00\x00\x00' -tRp7585 -sVoccasions -p7586 -g24 -(g26 -S'=\x17\x00\x00\x00\x00\x00\x00' -tRp7587 -sVdecimal -p7588 -g24 -(g26 -S'\xed\x08\x00\x00\x00\x00\x00\x00' -tRp7589 -sVcapability -p7590 -g24 -(g26 -S'\xf7\x04\x00\x00\x00\x00\x00\x00' -tRp7591 -sVstopped -p7592 -g24 -(g26 -S'P \x00\x00\x00\x00\x00\x00' -tRp7593 -sVdie -p7594 -g24 -(g26 -S'\xb0\t\x00\x00\x00\x00\x00\x00' -tRp7595 -sVfairy -p7596 -g24 -(g26 -S'\x9b\x0c\x00\x00\x00\x00\x00\x00' -tRp7597 -sVtrailer -p7598 -g24 -(g26 -S'\xa7"\x00\x00\x00\x00\x00\x00' -tRp7599 -sVreferred -p7600 -g24 -(g26 -S'\xd5\x1b\x00\x00\x00\x00\x00\x00' -tRp7601 -sVheavy -p7602 -g24 -(g26 -S'\xa5\x0f\x00\x00\x00\x00\x00\x00' -tRp7603 -sVneil -p7604 -g24 -(g26 -S'\x8e\x16\x00\x00\x00\x00\x00\x00' -tRp7605 -sVfees -p7606 -g24 -(g26 -S'\xe3\x0c\x00\x00\x00\x00\x00\x00' -tRp7607 -sVtodd -p7608 -g24 -(g26 -S'T"\x00\x00\x00\x00\x00\x00' -tRp7609 -sVquantum -p7610 -g24 -(g26 -S'\x12\x1b\x00\x00\x00\x00\x00\x00' -tRp7611 -sVinspections -p7612 -g24 -(g26 -S':\x11\x00\x00\x00\x00\x00\x00' -tRp7613 -sVevent -p7614 -g24 -(g26 -S'\xf6\x0b\x00\x00\x00\x00\x00\x00' -tRp7615 -sVmagnet -p7616 -g24 -(g26 -S'E\x14\x00\x00\x00\x00\x00\x00' -tRp7617 -sVrobert -p7618 -g24 -(g26 -S'\r\x1d\x00\x00\x00\x00\x00\x00' -tRp7619 -sVsurrounded -p7620 -g24 -(g26 -S'\x0c!\x00\x00\x00\x00\x00\x00' -tRp7621 -sVdouglas -p7622 -g24 -(g26 -S'g\n\x00\x00\x00\x00\x00\x00' -tRp7623 -sVtrusts -p7624 -g24 -(g26 -S'\x16#\x00\x00\x00\x00\x00\x00' -tRp7625 -sVfountain -p7626 -g24 -(g26 -S'\xbc\r\x00\x00\x00\x00\x00\x00' -tRp7627 -sVissue -p7628 -g24 -(g26 -S'\xd3\x11\x00\x00\x00\x00\x00\x00' -tRp7629 -sVmsie -p7630 -g24 -(g26 -S'!\x16\x00\x00\x00\x00\x00\x00' -tRp7631 -sVass -p7632 -g24 -(g26 -S' \x02\x00\x00\x00\x00\x00\x00' -tRp7633 -sVdrink -p7634 -g24 -(g26 -S'\x8c\n\x00\x00\x00\x00\x00\x00' -tRp7635 -sVbass -p7636 -g24 -(g26 -S'\x02\x03\x00\x00\x00\x00\x00\x00' -tRp7637 -sVdirt -p7638 -g24 -(g26 -S'\xdb\t\x00\x00\x00\x00\x00\x00' -tRp7639 -sVtimeline -p7640 -g24 -(g26 -S'6"\x00\x00\x00\x00\x00\x00' -tRp7641 -sVpub -p7642 -g24 -(g26 -S'\xd3\x1a\x00\x00\x00\x00\x00\x00' -tRp7643 -sVlabs -p7644 -g24 -(g26 -S'\xc9\x12\x00\x00\x00\x00\x00\x00' -tRp7645 -sVhouses -p7646 -g24 -(g26 -S'7\x10\x00\x00\x00\x00\x00\x00' -tRp7647 -sVreason -p7648 -g24 -(g26 -S'\x8e\x1b\x00\x00\x00\x00\x00\x00' -tRp7649 -sVbase -p7650 -g24 -(g26 -S'\xf3\x02\x00\x00\x00\x00\x00\x00' -tRp7651 -sVask -p7652 -g24 -(g26 -S'\x18\x02\x00\x00\x00\x00\x00\x00' -tRp7653 -sVphd -p7654 -g24 -(g26 -S'\xe8\x18\x00\x00\x00\x00\x00\x00' -tRp7655 -sVasn -p7656 -g24 -(g26 -S'\x1c\x02\x00\x00\x00\x00\x00\x00' -tRp7657 -sVrevolutionary -p7658 -g24 -(g26 -S'\xd5\x1c\x00\x00\x00\x00\x00\x00' -tRp7659 -sVlaunch -p7660 -g24 -(g26 -S'\x01\x13\x00\x00\x00\x00\x00\x00' -tRp7661 -sVscript -p7662 -g24 -(g26 -S'\xf6\x1d\x00\x00\x00\x00\x00\x00' -tRp7663 -sVterrible -p7664 -g24 -(g26 -S'\xc0!\x00\x00\x00\x00\x00\x00' -tRp7665 -sVamericas -p7666 -g24 -(g26 -S'C\x01\x00\x00\x00\x00\x00\x00' -tRp7667 -sVamerican -p7668 -g24 -(g26 -S'A\x01\x00\x00\x00\x00\x00\x00' -tRp7669 -sVdaisy -p7670 -g24 -(g26 -S'\xa1\x08\x00\x00\x00\x00\x00\x00' -tRp7671 -sVsyria -p7672 -g24 -(g26 -S'D!\x00\x00\x00\x00\x00\x00' -tRp7673 -sVassign -p7674 -g24 -(g26 -S'+\x02\x00\x00\x00\x00\x00\x00' -tRp7675 -sVpartnerships -p7676 -g24 -(g26 -S'M\x18\x00\x00\x00\x00\x00\x00' -tRp7677 -sVmr -p7678 -g24 -(g26 -S'\x1a\x16\x00\x00\x00\x00\x00\x00' -tRp7679 -sVprobability -p7680 -g24 -(g26 -S'P\x1a\x00\x00\x00\x00\x00\x00' -tRp7681 -sVencoding -p7682 -g24 -(g26 -S'Y\x0b\x00\x00\x00\x00\x00\x00' -tRp7683 -sVtrackbacks -p7684 -g24 -(g26 -S'\x93"\x00\x00\x00\x00\x00\x00' -tRp7685 -sVmisc -p7686 -g24 -(g26 -S'\x92\x15\x00\x00\x00\x00\x00\x00' -tRp7687 -sVreflected -p7688 -g24 -(g26 -S'\xdc\x1b\x00\x00\x00\x00\x00\x00' -tRp7689 -sVelder -p7690 -g24 -(g26 -S'\x17\x0b\x00\x00\x00\x00\x00\x00' -tRp7691 -sVtalked -p7692 -g24 -(g26 -S'_!\x00\x00\x00\x00\x00\x00' -tRp7693 -sVcraps -p7694 -g24 -(g26 -S'8\x08\x00\x00\x00\x00\x00\x00' -tRp7695 -sVmiss -p7696 -g24 -(g26 -S'\x94\x15\x00\x00\x00\x00\x00\x00' -tRp7697 -sVecommerce -p7698 -g24 -(g26 -S'\xe5\n\x00\x00\x00\x00\x00\x00' -tRp7699 -sVmaple -p7700 -g24 -(g26 -S'\x85\x14\x00\x00\x00\x00\x00\x00' -tRp7701 -sVarbitration -p7702 -g24 -(g26 -S'\xd4\x01\x00\x00\x00\x00\x00\x00' -tRp7703 -sVhorse -p7704 -g24 -(g26 -S' \x10\x00\x00\x00\x00\x00\x00' -tRp7705 -sVstation -p7706 -g24 -(g26 -S'! \x00\x00\x00\x00\x00\x00' -tRp7707 -sVexpand -p7708 -g24 -(g26 -S'9\x0c\x00\x00\x00\x00\x00\x00' -tRp7709 -sVbukkake -p7710 -g24 -(g26 -S'\x82\x04\x00\x00\x00\x00\x00\x00' -tRp7711 -sVnigeria -p7712 -g24 -(g26 -S'\xc0\x16\x00\x00\x00\x00\x00\x00' -tRp7713 -sVscheme -p7714 -g24 -(g26 -S'\xd4\x1d\x00\x00\x00\x00\x00\x00' -tRp7715 -sVbanana -p7716 -g24 -(g26 -S'\xd3\x02\x00\x00\x00\x00\x00\x00' -tRp7717 -sVschema -p7718 -g24 -(g26 -S'\xd3\x1d\x00\x00\x00\x00\x00\x00' -tRp7719 -sVselling -p7720 -g24 -(g26 -S'8\x1e\x00\x00\x00\x00\x00\x00' -tRp7721 -sVpostposted -p7722 -g24 -(g26 -S'\xcc\x19\x00\x00\x00\x00\x00\x00' -tRp7723 -sVjamie -p7724 -g24 -(g26 -S'\xf2\x11\x00\x00\x00\x00\x00\x00' -tRp7725 -sVjordan -p7726 -g24 -(g26 -S'3\x12\x00\x00\x00\x00\x00\x00' -tRp7727 -sVauthors -p7728 -g24 -(g26 -S'\x8a\x02\x00\x00\x00\x00\x00\x00' -tRp7729 -sVtft -p7730 -g24 -(g26 -S'\xd9!\x00\x00\x00\x00\x00\x00' -tRp7731 -sValbums -p7732 -g24 -(g26 -S'\xff\x00\x00\x00\x00\x00\x00\x00' -tRp7733 -sVstd -p7734 -g24 -(g26 -S'/ \x00\x00\x00\x00\x00\x00' -tRp7735 -sVste -p7736 -g24 -(g26 -S'0 \x00\x00\x00\x00\x00\x00' -tRp7737 -sVfinancing -p7738 -g24 -(g26 -S'\x1a\r\x00\x00\x00\x00\x00\x00' -tRp7739 -sVgrew -p7740 -g24 -(g26 -S'\xfa\x0e\x00\x00\x00\x00\x00\x00' -tRp7741 -sVgrey -p7742 -g24 -(g26 -S'\xfb\x0e\x00\x00\x00\x00\x00\x00' -tRp7743 -sVbride -p7744 -g24 -(g26 -S'8\x04\x00\x00\x00\x00\x00\x00' -tRp7745 -sVgreg -p7746 -g24 -(g26 -S'\xf7\x0e\x00\x00\x00\x00\x00\x00' -tRp7747 -sVecuador -p7748 -g24 -(g26 -S'\xea\n\x00\x00\x00\x00\x00\x00' -tRp7749 -sVstr -p7750 -g24 -(g26 -S'Z \x00\x00\x00\x00\x00\x00' -tRp7751 -sVdts -p7752 -g24 -(g26 -S'\xa4\n\x00\x00\x00\x00\x00\x00' -tRp7753 -sVbuilder -p7754 -g24 -(g26 -S'|\x04\x00\x00\x00\x00\x00\x00' -tRp7755 -sVcharlotte -p7756 -g24 -(g26 -S'\xb0\x05\x00\x00\x00\x00\x00\x00' -tRp7757 -sVjuice -p7758 -g24 -(g26 -S'K\x12\x00\x00\x00\x00\x00\x00' -tRp7759 -sVsubstantial -p7760 -g24 -(g26 -S'\xb2 \x00\x00\x00\x00\x00\x00' -tRp7761 -sVsentences -p7762 -g24 -(g26 -S'Q\x1e\x00\x00\x00\x00\x00\x00' -tRp7763 -sVconcentration -p7764 -g24 -(g26 -S'\x1c\x07\x00\x00\x00\x00\x00\x00' -tRp7765 -sVnull -p7766 -g24 -(g26 -S'\x0b\x17\x00\x00\x00\x00\x00\x00' -tRp7767 -sVvulnerable -p7768 -g24 -(g26 -S'|$\x00\x00\x00\x00\x00\x00' -tRp7769 -sVoption -p7770 -g24 -(g26 -S'\xa0\x17\x00\x00\x00\x00\x00\x00' -tRp7771 -sVlid -p7772 -g24 -(g26 -S'u\x13\x00\x00\x00\x00\x00\x00' -tRp7773 -sVratings -p7774 -g24 -(g26 -S'h\x1b\x00\x00\x00\x00\x00\x00' -tRp7775 -sVlib -p7776 -g24 -(g26 -S'g\x13\x00\x00\x00\x00\x00\x00' -tRp7777 -sVlil -p7778 -g24 -(g26 -S'\x8a\x13\x00\x00\x00\x00\x00\x00' -tRp7779 -sVtrance -p7780 -g24 -(g26 -S'\xb1"\x00\x00\x00\x00\x00\x00' -tRp7781 -sVcave -p7782 -g24 -(g26 -S'L\x05\x00\x00\x00\x00\x00\x00' -tRp7783 -sVscotland -p7784 -g24 -(g26 -S'\xe9\x1d\x00\x00\x00\x00\x00\x00' -tRp7785 -sVofficers -p7786 -g24 -(g26 -S'Y\x17\x00\x00\x00\x00\x00\x00' -tRp7787 -sVlit -p7788 -g24 -(g26 -S'\xae\x13\x00\x00\x00\x00\x00\x00' -tRp7789 -sVlip -p7790 -g24 -(g26 -S'\xa2\x13\x00\x00\x00\x00\x00\x00' -tRp7791 -sVliz -p7792 -g24 -(g26 -S'\xc0\x13\x00\x00\x00\x00\x00\x00' -tRp7793 -sVexperienced -p7794 -g24 -(g26 -S'I\x0c\x00\x00\x00\x00\x00\x00' -tRp7795 -sVquote -p7796 -g24 -(g26 -S',\x1b\x00\x00\x00\x00\x00\x00' -tRp7797 -sVkai -p7798 -g24 -(g26 -S'b\x12\x00\x00\x00\x00\x00\x00' -tRp7799 -sVhired -p7800 -g24 -(g26 -S'\xdc\x0f\x00\x00\x00\x00\x00\x00' -tRp7801 -sVsponsored -p7802 -g24 -(g26 -S'\xd8\x1f\x00\x00\x00\x00\x00\x00' -tRp7803 -sVposition -p7804 -g24 -(g26 -S'\xb8\x19\x00\x00\x00\x00\x00\x00' -tRp7805 -sVwatt -p7806 -g24 -(g26 -S'\xbd$\x00\x00\x00\x00\x00\x00' -tRp7807 -sValpha -p7808 -g24 -(g26 -S'$\x01\x00\x00\x00\x00\x00\x00' -tRp7809 -sVkay -p7810 -g24 -(g26 -S'l\x12\x00\x00\x00\x00\x00\x00' -tRp7811 -sVapproved -p7812 -g24 -(g26 -S'\xc4\x01\x00\x00\x00\x00\x00\x00' -tRp7813 -sVsalary -p7814 -g24 -(g26 -S'\x86\x1d\x00\x00\x00\x00\x00\x00' -tRp7815 -sVchronicle -p7816 -g24 -(g26 -S'\xfa\x05\x00\x00\x00\x00\x00\x00' -tRp7817 -sVmobile -p7818 -g24 -(g26 -S'\xae\x15\x00\x00\x00\x00\x00\x00' -tRp7819 -sVperformances -p7820 -g24 -(g26 -S'\xaf\x18\x00\x00\x00\x00\x00\x00' -tRp7821 -sVclear -p7822 -g24 -(g26 -S'?\x06\x00\x00\x00\x00\x00\x00' -tRp7823 -sVpopularity -p7824 -g24 -(g26 -S'\x9e\x19\x00\x00\x00\x00\x00\x00' -tRp7825 -sVoptical -p7826 -g24 -(g26 -S'\x9a\x17\x00\x00\x00\x00\x00\x00' -tRp7827 -sVclean -p7828 -g24 -(g26 -S':\x06\x00\x00\x00\x00\x00\x00' -tRp7829 -sVcartridges -p7830 -g24 -(g26 -S'(\x05\x00\x00\x00\x00\x00\x00' -tRp7831 -sVusual -p7832 -g24 -(g26 -S'\xb4#\x00\x00\x00\x00\x00\x00' -tRp7833 -sVtubes -p7834 -g24 -(g26 -S' #\x00\x00\x00\x00\x00\x00' -tRp7835 -sVsurrey -p7836 -g24 -(g26 -S'\n!\x00\x00\x00\x00\x00\x00' -tRp7837 -sVphenomenon -p7838 -g24 -(g26 -S'\xe9\x18\x00\x00\x00\x00\x00\x00' -tRp7839 -sVcelebrities -p7840 -g24 -(g26 -S'[\x05\x00\x00\x00\x00\x00\x00' -tRp7841 -sVtranslation -p7842 -g24 -(g26 -S'\xc4"\x00\x00\x00\x00\x00\x00' -tRp7843 -sVcompletion -p7844 -g24 -(g26 -S'\xff\x06\x00\x00\x00\x00\x00\x00' -tRp7845 -sVparameters -p7846 -g24 -(g26 -S'-\x18\x00\x00\x00\x00\x00\x00' -tRp7847 -sVduncan -p7848 -g24 -(g26 -S'\xaf\n\x00\x00\x00\x00\x00\x00' -tRp7849 -sVjustice -p7850 -g24 -(g26 -S'\\\x12\x00\x00\x00\x00\x00\x00' -tRp7851 -sVflights -p7852 -g24 -(g26 -S'W\r\x00\x00\x00\x00\x00\x00' -tRp7853 -sVrandy -p7854 -g24 -(g26 -S'Q\x1b\x00\x00\x00\x00\x00\x00' -tRp7855 -sVsubsection -p7856 -g24 -(g26 -S'\xab \x00\x00\x00\x00\x00\x00' -tRp7857 -sVpretty -p7858 -g24 -(g26 -S'#\x1a\x00\x00\x00\x00\x00\x00' -tRp7859 -sVcircle -p7860 -g24 -(g26 -S'\r\x06\x00\x00\x00\x00\x00\x00' -tRp7861 -sVdarwin -p7862 -g24 -(g26 -S'\xb8\x08\x00\x00\x00\x00\x00\x00' -tRp7863 -sVhotmail -p7864 -g24 -(g26 -S'/\x10\x00\x00\x00\x00\x00\x00' -tRp7865 -sVdominant -p7866 -g24 -(g26 -S'Q\n\x00\x00\x00\x00\x00\x00' -tRp7867 -sVwaterproof -p7868 -g24 -(g26 -S'\xb9$\x00\x00\x00\x00\x00\x00' -tRp7869 -sVdomestic -p7870 -g24 -(g26 -S'P\n\x00\x00\x00\x00\x00\x00' -tRp7871 -sVzambia -p7872 -g24 -(g26 -S'\xb5%\x00\x00\x00\x00\x00\x00' -tRp7873 -sVgrocery -p7874 -g24 -(g26 -S'\x00\x0f\x00\x00\x00\x00\x00\x00' -tRp7875 -sVtrees -p7876 -g24 -(g26 -S'\xe7"\x00\x00\x00\x00\x00\x00' -tRp7877 -sVfamous -p7878 -g24 -(g26 -S'\xa7\x0c\x00\x00\x00\x00\x00\x00' -tRp7879 -sVfeels -p7880 -g24 -(g26 -S'\xe2\x0c\x00\x00\x00\x00\x00\x00' -tRp7881 -sVcompeting -p7882 -g24 -(g26 -S'\xef\x06\x00\x00\x00\x00\x00\x00' -tRp7883 -sVcombinations -p7884 -g24 -(g26 -S'\xaf\x06\x00\x00\x00\x00\x00\x00' -tRp7885 -sValexander -p7886 -g24 -(g26 -S'\x05\x01\x00\x00\x00\x00\x00\x00' -tRp7887 -sVbadge -p7888 -g24 -(g26 -S'\xbe\x02\x00\x00\x00\x00\x00\x00' -tRp7889 -sVperfume -p7890 -g24 -(g26 -S'\xb4\x18\x00\x00\x00\x00\x00\x00' -tRp7891 -sVstored -p7892 -g24 -(g26 -S'U \x00\x00\x00\x00\x00\x00' -tRp7893 -sVgloves -p7894 -g24 -(g26 -S'\x9d\x0e\x00\x00\x00\x00\x00\x00' -tRp7895 -sVrecommendations -p7896 -g24 -(g26 -S'\xaf\x1b\x00\x00\x00\x00\x00\x00' -tRp7897 -sVswitzerland -p7898 -g24 -(g26 -S'1!\x00\x00\x00\x00\x00\x00' -tRp7899 -sVscanning -p7900 -g24 -(g26 -S'\xc7\x1d\x00\x00\x00\x00\x00\x00' -tRp7901 -sVthrowing -p7902 -g24 -(g26 -S'\x17"\x00\x00\x00\x00\x00\x00' -tRp7903 -sVprague -p7904 -g24 -(g26 -S'\xeb\x19\x00\x00\x00\x00\x00\x00' -tRp7905 -sVculture -p7906 -g24 -(g26 -S'r\x08\x00\x00\x00\x00\x00\x00' -tRp7907 -sVengineers -p7908 -g24 -(g26 -S'w\x0b\x00\x00\x00\x00\x00\x00' -tRp7909 -sVdescriptions -p7910 -g24 -(g26 -S']\t\x00\x00\x00\x00\x00\x00' -tRp7911 -sVclose -p7912 -g24 -(g26 -S'X\x06\x00\x00\x00\x00\x00\x00' -tRp7913 -sVpictures -p7914 -g24 -(g26 -S'\x16\x19\x00\x00\x00\x00\x00\x00' -tRp7915 -sVwow -p7916 -g24 -(g26 -S'i%\x00\x00\x00\x00\x00\x00' -tRp7917 -sVthongs -p7918 -g24 -(g26 -S'\x03"\x00\x00\x00\x00\x00\x00' -tRp7919 -sVprobably -p7920 -g24 -(g26 -S'Q\x1a\x00\x00\x00\x00\x00\x00' -tRp7921 -sVconditions -p7922 -g24 -(g26 -S'0\x07\x00\x00\x00\x00\x00\x00' -tRp7923 -sVpiss -p7924 -g24 -(g26 -S',\x19\x00\x00\x00\x00\x00\x00' -tRp7925 -sVcatalogs -p7926 -g24 -(g26 -S':\x05\x00\x00\x00\x00\x00\x00' -tRp7927 -sVmissing -p7928 -g24 -(g26 -S'\x97\x15\x00\x00\x00\x00\x00\x00' -tRp7929 -sVspray -p7930 -g24 -(g26 -S'\xe2\x1f\x00\x00\x00\x00\x00\x00' -tRp7931 -sVranked -p7932 -g24 -(g26 -S'X\x1b\x00\x00\x00\x00\x00\x00' -tRp7933 -sVgenre -p7934 -g24 -(g26 -S'h\x0e\x00\x00\x00\x00\x00\x00' -tRp7935 -sVleague -p7936 -g24 -(g26 -S' \x13\x00\x00\x00\x00\x00\x00' -tRp7937 -sVmega -p7938 -g24 -(g26 -S'\t\x15\x00\x00\x00\x00\x00\x00' -tRp7939 -sVsecrets -p7940 -g24 -(g26 -S'\x17\x1e\x00\x00\x00\x00\x00\x00' -tRp7941 -sVsensitive -p7942 -g24 -(g26 -S'K\x1e\x00\x00\x00\x00\x00\x00' -tRp7943 -sVforgotten -p7944 -g24 -(g26 -S'\x9f\r\x00\x00\x00\x00\x00\x00' -tRp7945 -sVvault -p7946 -g24 -(g26 -S'\xea#\x00\x00\x00\x00\x00\x00' -tRp7947 -sVexperimental -p7948 -g24 -(g26 -S'M\x0c\x00\x00\x00\x00\x00\x00' -tRp7949 -sVliked -p7950 -g24 -(g26 -S'\x85\x13\x00\x00\x00\x00\x00\x00' -tRp7951 -sVjeff -p7952 -g24 -(g26 -S'\x05\x12\x00\x00\x00\x00\x00\x00' -tRp7953 -sVbattery -p7954 -g24 -(g26 -S'\x0b\x03\x00\x00\x00\x00\x00\x00' -tRp7955 -sVliabilities -p7956 -g24 -(g26 -S'd\x13\x00\x00\x00\x00\x00\x00' -tRp7957 -sVheader -p7958 -g24 -(g26 -S'\x8a\x0f\x00\x00\x00\x00\x00\x00' -tRp7959 -sVlikes -p7960 -g24 -(g26 -S'\x88\x13\x00\x00\x00\x00\x00\x00' -tRp7961 -sVlinux -p7962 -g24 -(g26 -S'\x9f\x13\x00\x00\x00\x00\x00\x00' -tRp7963 -sVvessel -p7964 -g24 -(g26 -S'\x12$\x00\x00\x00\x00\x00\x00' -tRp7965 -sVbench -p7966 -g24 -(g26 -S'P\x03\x00\x00\x00\x00\x00\x00' -tRp7967 -sVyukon -p7968 -g24 -(g26 -S'\xb3%\x00\x00\x00\x00\x00\x00' -tRp7969 -sVdescribed -p7970 -g24 -(g26 -S'Y\t\x00\x00\x00\x00\x00\x00' -tRp7971 -sVstamp -p7972 -g24 -(g26 -S'\x03 \x00\x00\x00\x00\x00\x00' -tRp7973 -sVdescribes -p7974 -g24 -(g26 -S'Z\t\x00\x00\x00\x00\x00\x00' -tRp7975 -sVdamn -p7976 -g24 -(g26 -S'\xaa\x08\x00\x00\x00\x00\x00\x00' -tRp7977 -sVmaintenance -p7978 -g24 -(g26 -S'Z\x14\x00\x00\x00\x00\x00\x00' -tRp7979 -sVcollected -p7980 -g24 -(g26 -S'\x92\x06\x00\x00\x00\x00\x00\x00' -tRp7981 -sVterritory -p7982 -g24 -(g26 -S'\xc2!\x00\x00\x00\x00\x00\x00' -tRp7983 -sVdame -p7984 -g24 -(g26 -S'\xa9\x08\x00\x00\x00\x00\x00\x00' -tRp7985 -sVcollectible -p7986 -g24 -(g26 -S'\x93\x06\x00\x00\x00\x00\x00\x00' -tRp7987 -sVdialogue -p7988 -g24 -(g26 -S'\xa2\t\x00\x00\x00\x00\x00\x00' -tRp7989 -sVlived -p7990 -g24 -(g26 -S'\xb9\x13\x00\x00\x00\x00\x00\x00' -tRp7991 -sVpartly -p7992 -g24 -(g26 -S'I\x18\x00\x00\x00\x00\x00\x00' -tRp7993 -sVpacks -p7994 -g24 -(g26 -S'\xfd\x17\x00\x00\x00\x00\x00\x00' -tRp7995 -sVwet -p7996 -g24 -(g26 -S'\xf7$\x00\x00\x00\x00\x00\x00' -tRp7997 -sVmodelling -p7998 -g24 -(g26 -S'\xb5\x15\x00\x00\x00\x00\x00\x00' -tRp7999 -sVanthony -p8000 -g24 -(g26 -S'\x86\x01\x00\x00\x00\x00\x00\x00' -tRp8001 -sVdetermination -p8002 -g24 -(g26 -S'}\t\x00\x00\x00\x00\x00\x00' -tRp8003 -sVliver -p8004 -g24 -(g26 -S'\xba\x13\x00\x00\x00\x00\x00\x00' -tRp8005 -sVbidding -p8006 -g24 -(g26 -S'w\x03\x00\x00\x00\x00\x00\x00' -tRp8007 -sVreferrals -p8008 -g24 -(g26 -S'\xd4\x1b\x00\x00\x00\x00\x00\x00' -tRp8009 -sVlook -p8010 -g24 -(g26 -S'\xf3\x13\x00\x00\x00\x00\x00\x00' -tRp8011 -sVultram -p8012 -g24 -(g26 -S'T#\x00\x00\x00\x00\x00\x00' -tRp8013 -sVgovernor -p8014 -g24 -(g26 -S'\xc5\x0e\x00\x00\x00\x00\x00\x00' -tRp8015 -sVrope -p8016 -g24 -(g26 -S'4\x1d\x00\x00\x00\x00\x00\x00' -tRp8017 -sVpace -p8018 -g24 -(g26 -S'\xf2\x17\x00\x00\x00\x00\x00\x00' -tRp8019 -sVbikini -p8020 -g24 -(g26 -S'~\x03\x00\x00\x00\x00\x00\x00' -tRp8021 -sVought -p8022 -g24 -(g26 -S'\xcc\x17\x00\x00\x00\x00\x00\x00' -tRp8023 -sVfleet -p8024 -g24 -(g26 -S'P\r\x00\x00\x00\x00\x00\x00' -tRp8025 -sVtranscripts -p8026 -g24 -(g26 -S'\xb8"\x00\x00\x00\x00\x00\x00' -tRp8027 -sVanimated -p8028 -g24 -(g26 -S'k\x01\x00\x00\x00\x00\x00\x00' -tRp8029 -sVmitchell -p8030 -g24 -(g26 -S'\xa0\x15\x00\x00\x00\x00\x00\x00' -tRp8031 -sVguide -p8032 -g24 -(g26 -S'!\x0f\x00\x00\x00\x00\x00\x00' -tRp8033 -sVloop -p8034 -g24 -(g26 -S'\xf9\x13\x00\x00\x00\x00\x00\x00' -tRp8035 -sVpack -p8036 -g24 -(g26 -S'\xf4\x17\x00\x00\x00\x00\x00\x00' -tRp8037 -sVvoters -p8038 -g24 -(g26 -S'p$\x00\x00\x00\x00\x00\x00' -tRp8039 -sVjpg -p8040 -g24 -(g26 -S'B\x12\x00\x00\x00\x00\x00\x00' -tRp8041 -sVcurtis -p8042 -g24 -(g26 -S'\x83\x08\x00\x00\x00\x00\x00\x00' -tRp8043 -sVreads -p8044 -g24 -(g26 -S'\x81\x1b\x00\x00\x00\x00\x00\x00' -tRp8045 -sVskype -p8046 -g24 -(g26 -S'%\x1f\x00\x00\x00\x00\x00\x00' -tRp8047 -sVready -p8048 -g24 -(g26 -S'\x82\x1b\x00\x00\x00\x00\x00\x00' -tRp8049 -sValbany -p8050 -g24 -(g26 -S'\xfb\x00\x00\x00\x00\x00\x00\x00' -tRp8051 -sVbaseline -p8052 -g24 -(g26 -S'\xf6\x02\x00\x00\x00\x00\x00\x00' -tRp8053 -sVanymore -p8054 -g24 -(g26 -S'\x93\x01\x00\x00\x00\x00\x00\x00' -tRp8055 -sVgrant -p8056 -g24 -(g26 -S'\xdb\x0e\x00\x00\x00\x00\x00\x00' -tRp8057 -sVbelong -p8058 -g24 -(g26 -S'K\x03\x00\x00\x00\x00\x00\x00' -tRp8059 -sVkarl -p8060 -g24 -(g26 -S'f\x12\x00\x00\x00\x00\x00\x00' -tRp8061 -sVgrand -p8062 -g24 -(g26 -S'\xd8\x0e\x00\x00\x00\x00\x00\x00' -tRp8063 -sVmodification -p8064 -g24 -(g26 -S'\xbe\x15\x00\x00\x00\x00\x00\x00' -tRp8065 -sVcomposition -p8066 -g24 -(g26 -S'\r\x07\x00\x00\x00\x00\x00\x00' -tRp8067 -sVconflict -p8068 -g24 -(g26 -S'G\x07\x00\x00\x00\x00\x00\x00' -tRp8069 -sVindianapolis -p8070 -g24 -(g26 -S'\xe6\x10\x00\x00\x00\x00\x00\x00' -tRp8071 -sVlawyers -p8072 -g24 -(g26 -S'\r\x13\x00\x00\x00\x00\x00\x00' -tRp8073 -sVfiscal -p8074 -g24 -(g26 -S'6\r\x00\x00\x00\x00\x00\x00' -tRp8075 -sVlie -p8076 -g24 -(g26 -S'v\x13\x00\x00\x00\x00\x00\x00' -tRp8077 -sVbonus -p8078 -g24 -(g26 -S'\xe1\x03\x00\x00\x00\x00\x00\x00' -tRp8079 -sVblair -p8080 -g24 -(g26 -S'\xa7\x03\x00\x00\x00\x00\x00\x00' -tRp8081 -sVuses -p8082 -g24 -(g26 -S'\xaf#\x00\x00\x00\x00\x00\x00' -tRp8083 -sVuser -p8084 -g24 -(g26 -S'\xac#\x00\x00\x00\x00\x00\x00' -tRp8085 -sVbrussels -p8086 -g24 -(g26 -S'h\x04\x00\x00\x00\x00\x00\x00' -tRp8087 -sVhandjobs -p8088 -g24 -(g26 -S'M\x0f\x00\x00\x00\x00\x00\x00' -tRp8089 -sVgst -p8090 -g24 -(g26 -S'\x10\x0f\x00\x00\x00\x00\x00\x00' -tRp8091 -sVolder -p8092 -g24 -(g26 -S'k\x17\x00\x00\x00\x00\x00\x00' -tRp8093 -sVpoland -p8094 -g24 -(g26 -S'\x83\x19\x00\x00\x00\x00\x00\x00' -tRp8095 -sVcruz -p8096 -g24 -(g26 -S'd\x08\x00\x00\x00\x00\x00\x00' -tRp8097 -sVobviously -p8098 -g24 -(g26 -S'8\x17\x00\x00\x00\x00\x00\x00' -tRp8099 -sVsynopsis -p8100 -g24 -(g26 -S'?!\x00\x00\x00\x00\x00\x00' -tRp8101 -sVroyalty -p8102 -g24 -(g26 -S'N\x1d\x00\x00\x00\x00\x00\x00' -tRp8103 -sVchronicles -p8104 -g24 -(g26 -S'\xfb\x05\x00\x00\x00\x00\x00\x00' -tRp8105 -sVauditor -p8106 -g24 -(g26 -S'z\x02\x00\x00\x00\x00\x00\x00' -tRp8107 -sVconsistency -p8108 -g24 -(g26 -S'l\x07\x00\x00\x00\x00\x00\x00' -tRp8109 -sVgsm -p8110 -g24 -(g26 -S'\x0f\x0f\x00\x00\x00\x00\x00\x00' -tRp8111 -sVambassador -p8112 -g24 -(g26 -S'6\x01\x00\x00\x00\x00\x00\x00' -tRp8113 -sVdesk -p8114 -g24 -(g26 -S'k\t\x00\x00\x00\x00\x00\x00' -tRp8115 -sVreviewed -p8116 -g24 -(g26 -S'\xcd\x1c\x00\x00\x00\x00\x00\x00' -tRp8117 -sVreviewer -p8118 -g24 -(g26 -S'\xce\x1c\x00\x00\x00\x00\x00\x00' -tRp8119 -sVtaiwan -p8120 -g24 -(g26 -S'V!\x00\x00\x00\x00\x00\x00' -tRp8121 -sVcocks -p8122 -g24 -(g26 -S'z\x06\x00\x00\x00\x00\x00\x00' -tRp8123 -sVconfidentiality -p8124 -g24 -(g26 -S'=\x07\x00\x00\x00\x00\x00\x00' -tRp8125 -sVretirement -p8126 -g24 -(g26 -S'\xb7\x1c\x00\x00\x00\x00\x00\x00' -tRp8127 -sVinformal -p8128 -g24 -(g26 -S'\r\x11\x00\x00\x00\x00\x00\x00' -tRp8129 -sVguaranteed -p8130 -g24 -(g26 -S'\x15\x0f\x00\x00\x00\x00\x00\x00' -tRp8131 -sVguarantees -p8132 -g24 -(g26 -S'\x16\x0f\x00\x00\x00\x00\x00\x00' -tRp8133 -sVtransformation -p8134 -g24 -(g26 -S'\xbf"\x00\x00\x00\x00\x00\x00' -tRp8135 -sVmarco -p8136 -g24 -(g26 -S'\x8d\x14\x00\x00\x00\x00\x00\x00' -tRp8137 -sVmarch -p8138 -g24 -(g26 -S'\x8c\x14\x00\x00\x00\x00\x00\x00' -tRp8139 -sVevaluate -p8140 -g24 -(g26 -S'\xed\x0b\x00\x00\x00\x00\x00\x00' -tRp8141 -sVshowing -p8142 -g24 -(g26 -S'\xcf\x1e\x00\x00\x00\x00\x00\x00' -tRp8143 -sVgame -p8144 -g24 -(g26 -S'%\x0e\x00\x00\x00\x00\x00\x00' -tRp8145 -sVdamage -p8146 -g24 -(g26 -S'\xa6\x08\x00\x00\x00\x00\x00\x00' -tRp8147 -sVwings -p8148 -g24 -(g26 -S' %\x00\x00\x00\x00\x00\x00' -tRp8149 -sVsuccess -p8150 -g24 -(g26 -S'\xb8 \x00\x00\x00\x00\x00\x00' -tRp8151 -sVsubmission -p8152 -g24 -(g26 -S'\xa1 \x00\x00\x00\x00\x00\x00' -tRp8153 -sVsignal -p8154 -g24 -(g26 -S'\xe0\x1e\x00\x00\x00\x00\x00\x00' -tRp8155 -sVtoyota -p8156 -g24 -(g26 -S'\x8c"\x00\x00\x00\x00\x00\x00' -tRp8157 -sVdonna -p8158 -g24 -(g26 -S'Y\n\x00\x00\x00\x00\x00\x00' -tRp8159 -sVpopular -p8160 -g24 -(g26 -S'\x9d\x19\x00\x00\x00\x00\x00\x00' -tRp8161 -sVterminology -p8162 -g24 -(g26 -S'\xbc!\x00\x00\x00\x00\x00\x00' -tRp8163 -sVmathematical -p8164 -g24 -(g26 -S'\xc9\x14\x00\x00\x00\x00\x00\x00' -tRp8165 -sVparade -p8166 -g24 -(g26 -S'&\x18\x00\x00\x00\x00\x00\x00' -tRp8167 -sVbrakes -p8168 -g24 -(g26 -S'\x1c\x04\x00\x00\x00\x00\x00\x00' -tRp8169 -sVdrove -p8170 -g24 -(g26 -S'\x98\n\x00\x00\x00\x00\x00\x00' -tRp8171 -sVfathers -p8172 -g24 -(g26 -S'\xc0\x0c\x00\x00\x00\x00\x00\x00' -tRp8173 -sVcreation -p8174 -g24 -(g26 -S'A\x08\x00\x00\x00\x00\x00\x00' -tRp8175 -sVpierre -p8176 -g24 -(g26 -S'\x1b\x19\x00\x00\x00\x00\x00\x00' -tRp8177 -sVmetres -p8178 -g24 -(g26 -S'A\x15\x00\x00\x00\x00\x00\x00' -tRp8179 -sVsaints -p8180 -g24 -(g26 -S'\x82\x1d\x00\x00\x00\x00\x00\x00' -tRp8181 -sVurgent -p8182 -g24 -(g26 -S'\x9d#\x00\x00\x00\x00\x00\x00' -tRp8183 -sVtrends -p8184 -g24 -(g26 -S'\xec"\x00\x00\x00\x00\x00\x00' -tRp8185 -sVeconomic -p8186 -g24 -(g26 -S'\xe6\n\x00\x00\x00\x00\x00\x00' -tRp8187 -sVmustang -p8188 -g24 -(g26 -S'<\x16\x00\x00\x00\x00\x00\x00' -tRp8189 -sVdelivered -p8190 -g24 -(g26 -S'"\t\x00\x00\x00\x00\x00\x00' -tRp8191 -sVqatar -p8192 -g24 -(g26 -S'\x02\x1b\x00\x00\x00\x00\x00\x00' -tRp8193 -sVdescribing -p8194 -g24 -(g26 -S'[\t\x00\x00\x00\x00\x00\x00' -tRp8195 -sVwarnings -p8196 -g24 -(g26 -S'\xa7$\x00\x00\x00\x00\x00\x00' -tRp8197 -sVcompetitions -p8198 -g24 -(g26 -S'\xf1\x06\x00\x00\x00\x00\x00\x00' -tRp8199 -sVprovidence -p8200 -g24 -(g26 -S'\xbd\x1a\x00\x00\x00\x00\x00\x00' -tRp8201 -sVcivilization -p8202 -g24 -(g26 -S'#\x06\x00\x00\x00\x00\x00\x00' -tRp8203 -sVminimal -p8204 -g24 -(g26 -S'}\x15\x00\x00\x00\x00\x00\x00' -tRp8205 -sVcgi -p8206 -g24 -(g26 -S'|\x05\x00\x00\x00\x00\x00\x00' -tRp8207 -sVrun -p8208 -g24 -(g26 -S'a\x1d\x00\x00\x00\x00\x00\x00' -tRp8209 -sVadipex -p8210 -g24 -(g26 -S'\x84\x00\x00\x00\x00\x00\x00\x00' -tRp8211 -sVreach -p8212 -g24 -(g26 -S'u\x1b\x00\x00\x00\x00\x00\x00' -tRp8213 -sVprocessing -p8214 -g24 -(g26 -S'_\x1a\x00\x00\x00\x00\x00\x00' -tRp8215 -sVlakes -p8216 -g24 -(g26 -S'\xd3\x12\x00\x00\x00\x00\x00\x00' -tRp8217 -sVstem -p8218 -g24 -(g26 -S'6 \x00\x00\x00\x00\x00\x00' -tRp8219 -sVstep -p8220 -g24 -(g26 -S'7 \x00\x00\x00\x00\x00\x00' -tRp8221 -sVassists -p8222 -g24 -(g26 -S'3\x02\x00\x00\x00\x00\x00\x00' -tRp8223 -sVboxes -p8224 -g24 -(g26 -S'\r\x04\x00\x00\x00\x00\x00\x00' -tRp8225 -sVplots -p8226 -g24 -(g26 -S'f\x19\x00\x00\x00\x00\x00\x00' -tRp8227 -sVabroad -p8228 -g24 -(g26 -S'\r\x00\x00\x00\x00\x00\x00\x00' -tRp8229 -sVholdings -p8230 -g24 -(g26 -S'\xf3\x0f\x00\x00\x00\x00\x00\x00' -tRp8231 -sVshine -p8232 -g24 -(g26 -S'\xad\x1e\x00\x00\x00\x00\x00\x00' -tRp8233 -sVfaith -p8234 -g24 -(g26 -S'\x9c\x0c\x00\x00\x00\x00\x00\x00' -tRp8235 -sVhandbags -p8236 -g24 -(g26 -S'G\x0f\x00\x00\x00\x00\x00\x00' -tRp8237 -sVids -p8238 -g24 -(g26 -S'\x87\x10\x00\x00\x00\x00\x00\x00' -tRp8239 -sVsimulation -p8240 -g24 -(g26 -S'\xfb\x1e\x00\x00\x00\x00\x00\x00' -tRp8241 -sVpapua -p8242 -g24 -(g26 -S'#\x18\x00\x00\x00\x00\x00\x00' -tRp8243 -sVaye -p8244 -g24 -(g26 -S'\xac\x02\x00\x00\x00\x00\x00\x00' -tRp8245 -sVexperiences -p8246 -g24 -(g26 -S'J\x0c\x00\x00\x00\x00\x00\x00' -tRp8247 -sVclassics -p8248 -g24 -(g26 -S'3\x06\x00\x00\x00\x00\x00\x00' -tRp8249 -sVsilence -p8250 -g24 -(g26 -S'\xeb\x1e\x00\x00\x00\x00\x00\x00' -tRp8251 -sVseeing -p8252 -g24 -(g26 -S'#\x1e\x00\x00\x00\x00\x00\x00' -tRp8253 -sVvisit -p8254 -g24 -(g26 -S'O$\x00\x00\x00\x00\x00\x00' -tRp8255 -sVvoyeurweb -p8256 -g24 -(g26 -S't$\x00\x00\x00\x00\x00\x00' -tRp8257 -sVsubaru -p8258 -g24 -(g26 -S'\x99 \x00\x00\x00\x00\x00\x00' -tRp8259 -sVslovak -p8260 -g24 -(g26 -S'6\x1f\x00\x00\x00\x00\x00\x00' -tRp8261 -sVperl -p8262 -g24 -(g26 -S'\xbb\x18\x00\x00\x00\x00\x00\x00' -tRp8263 -sVrolls -p8264 -g24 -(g26 -S'$\x1d\x00\x00\x00\x00\x00\x00' -tRp8265 -sVconnector -p8266 -g24 -(g26 -S'W\x07\x00\x00\x00\x00\x00\x00' -tRp8267 -sVstatistics -p8268 -g24 -(g26 -S'% \x00\x00\x00\x00\x00\x00' -tRp8269 -sVbangladesh -p8270 -g24 -(g26 -S'\xda\x02\x00\x00\x00\x00\x00\x00' -tRp8271 -sVrenewal -p8272 -g24 -(g26 -S'>\x1c\x00\x00\x00\x00\x00\x00' -tRp8273 -sVplacing -p8274 -g24 -(g26 -S'<\x19\x00\x00\x00\x00\x00\x00' -tRp8275 -sVaccountability -p8276 -g24 -(g26 -S'8\x00\x00\x00\x00\x00\x00\x00' -tRp8277 -sVconsultation -p8278 -g24 -(g26 -S'\x87\x07\x00\x00\x00\x00\x00\x00' -tRp8279 -sVheritage -p8280 -g24 -(g26 -S'\xbe\x0f\x00\x00\x00\x00\x00\x00' -tRp8281 -sVmanufacture -p8282 -g24 -(g26 -S'\x7f\x14\x00\x00\x00\x00\x00\x00' -tRp8283 -sVregistered -p8284 -g24 -(g26 -S'\xf5\x1b\x00\x00\x00\x00\x00\x00' -tRp8285 -sVfrost -p8286 -g24 -(g26 -S'\xec\r\x00\x00\x00\x00\x00\x00' -tRp8287 -sVspecialty -p8288 -g24 -(g26 -S'\xb1\x1f\x00\x00\x00\x00\x00\x00' -tRp8289 -sVcalgary -p8290 -g24 -(g26 -S'\xc9\x04\x00\x00\x00\x00\x00\x00' -tRp8291 -sVlarry -p8292 -g24 -(g26 -S'\xee\x12\x00\x00\x00\x00\x00\x00' -tRp8293 -sVreed -p8294 -g24 -(g26 -S'\xcb\x1b\x00\x00\x00\x00\x00\x00' -tRp8295 -sValive -p8296 -g24 -(g26 -S'\x13\x01\x00\x00\x00\x00\x00\x00' -tRp8297 -sVnewer -p8298 -g24 -(g26 -S'\xa4\x16\x00\x00\x00\x00\x00\x00' -tRp8299 -sVsick -p8300 -g24 -(g26 -S'\xd7\x1e\x00\x00\x00\x00\x00\x00' -tRp8301 -sVrussian -p8302 -g24 -(g26 -S'j\x1d\x00\x00\x00\x00\x00\x00' -tRp8303 -sVinjection -p8304 -g24 -(g26 -S'\x1d\x11\x00\x00\x00\x00\x00\x00' -tRp8305 -sVreel -p8306 -g24 -(g26 -S'\xcd\x1b\x00\x00\x00\x00\x00\x00' -tRp8307 -sVgrams -p8308 -g24 -(g26 -S'\xd7\x0e\x00\x00\x00\x00\x00\x00' -tRp8309 -sVfda -p8310 -g24 -(g26 -S'\xcc\x0c\x00\x00\x00\x00\x00\x00' -tRp8311 -sVutc -p8312 -g24 -(g26 -S'\xb8#\x00\x00\x00\x00\x00\x00' -tRp8313 -sVcircuits -p8314 -g24 -(g26 -S'\x10\x06\x00\x00\x00\x00\x00\x00' -tRp8315 -sVvacancies -p8316 -g24 -(g26 -S'\xc2#\x00\x00\x00\x00\x00\x00' -tRp8317 -sVwicked -p8318 -g24 -(g26 -S'\x03%\x00\x00\x00\x00\x00\x00' -tRp8319 -sVsimilar -p8320 -g24 -(g26 -S'\xf2\x1e\x00\x00\x00\x00\x00\x00' -tRp8321 -sVinch -p8322 -g24 -(g26 -S'\xc3\x10\x00\x00\x00\x00\x00\x00' -tRp8323 -sVordered -p8324 -g24 -(g26 -S'\xa9\x17\x00\x00\x00\x00\x00\x00' -tRp8325 -sVadults -p8326 -g24 -(g26 -S'\x9e\x00\x00\x00\x00\x00\x00\x00' -tRp8327 -sVinterventions -p8328 -g24 -(g26 -S'\x89\x11\x00\x00\x00\x00\x00\x00' -tRp8329 -sVaccessibility -p8330 -g24 -(g26 -S'&\x00\x00\x00\x00\x00\x00\x00' -tRp8331 -sVmetals -p8332 -g24 -(g26 -S';\x15\x00\x00\x00\x00\x00\x00' -tRp8333 -sVkidney -p8334 -g24 -(g26 -S'\x8b\x12\x00\x00\x00\x00\x00\x00' -tRp8335 -sVcotton -p8336 -g24 -(g26 -S'\x0b\x08\x00\x00\x00\x00\x00\x00' -tRp8337 -sVamounts -p8338 -g24 -(g26 -S'E\x01\x00\x00\x00\x00\x00\x00' -tRp8339 -sVfears -p8340 -g24 -(g26 -S'\xcf\x0c\x00\x00\x00\x00\x00\x00' -tRp8341 -sVnam -p8342 -g24 -(g26 -S'O\x16\x00\x00\x00\x00\x00\x00' -tRp8343 -sVapplication -p8344 -g24 -(g26 -S'\xb1\x01\x00\x00\x00\x00\x00\x00' -tRp8345 -sVpoliticians -p8346 -g24 -(g26 -S'\x8c\x19\x00\x00\x00\x00\x00\x00' -tRp8347 -sVelectrical -p8348 -g24 -(g26 -S'\x1f\x0b\x00\x00\x00\x00\x00\x00' -tRp8349 -sVtransport -p8350 -g24 -(g26 -S'\xcc"\x00\x00\x00\x00\x00\x00' -tRp8351 -sVtits -p8352 -g24 -(g26 -S'L"\x00\x00\x00\x00\x00\x00' -tRp8353 -sVdepartment -p8354 -g24 -(g26 -S'B\t\x00\x00\x00\x00\x00\x00' -tRp8355 -sVmanhattan -p8356 -g24 -(g26 -S'x\x14\x00\x00\x00\x00\x00\x00' -tRp8357 -sVhappens -p8358 -g24 -(g26 -S'\\\x0f\x00\x00\x00\x00\x00\x00' -tRp8359 -sVdraw -p8360 -g24 -(g26 -S'}\n\x00\x00\x00\x00\x00\x00' -tRp8361 -sVkansas -p8362 -g24 -(g26 -S'c\x12\x00\x00\x00\x00\x00\x00' -tRp8363 -sVvisits -p8364 -g24 -(g26 -S'T$\x00\x00\x00\x00\x00\x00' -tRp8365 -sVregulations -p8366 -g24 -(g26 -S'\xfe\x1b\x00\x00\x00\x00\x00\x00' -tRp8367 -sVdrag -p8368 -g24 -(g26 -S'v\n\x00\x00\x00\x00\x00\x00' -tRp8369 -sVvalidity -p8370 -g24 -(g26 -S'\xcc#\x00\x00\x00\x00\x00\x00' -tRp8371 -sVeval -p8372 -g24 -(g26 -S'\xec\x0b\x00\x00\x00\x00\x00\x00' -tRp8373 -sVvelocity -p8374 -g24 -(g26 -S'\xf8#\x00\x00\x00\x00\x00\x00' -tRp8375 -sVreservation -p8376 -g24 -(g26 -S'z\x1c\x00\x00\x00\x00\x00\x00' -tRp8377 -sVstructure -p8378 -g24 -(g26 -S'\x80 \x00\x00\x00\x00\x00\x00' -tRp8379 -sVindependently -p8380 -g24 -(g26 -S'\xdf\x10\x00\x00\x00\x00\x00\x00' -tRp8381 -sVphysics -p8382 -g24 -(g26 -S'\x08\x19\x00\x00\x00\x00\x00\x00' -tRp8383 -sVrequired -p8384 -g24 -(g26 -S'o\x1c\x00\x00\x00\x00\x00\x00' -tRp8385 -sVconsoles -p8386 -g24 -(g26 -S'r\x07\x00\x00\x00\x00\x00\x00' -tRp8387 -sVheath -p8388 -g24 -(g26 -S'\xa0\x0f\x00\x00\x00\x00\x00\x00' -tRp8389 -sVdepth -p8390 -g24 -(g26 -S'Q\t\x00\x00\x00\x00\x00\x00' -tRp8391 -sVrequires -p8392 -g24 -(g26 -S'r\x1c\x00\x00\x00\x00\x00\x00' -tRp8393 -sVbedding -p8394 -g24 -(g26 -S'*\x03\x00\x00\x00\x00\x00\x00' -tRp8395 -sVgt -p8396 -g24 -(g26 -S'\x11\x0f\x00\x00\x00\x00\x00\x00' -tRp8397 -sVgs -p8398 -g24 -(g26 -S'\x0e\x0f\x00\x00\x00\x00\x00\x00' -tRp8399 -sVgr -p8400 -g24 -(g26 -S'\xc9\x0e\x00\x00\x00\x00\x00\x00' -tRp8401 -sVgp -p8402 -g24 -(g26 -S'\xc6\x0e\x00\x00\x00\x00\x00\x00' -tRp8403 -sVgg -p8404 -g24 -(g26 -S'|\x0e\x00\x00\x00\x00\x00\x00' -tRp8405 -sVge -p8406 -g24 -(g26 -S'L\x0e\x00\x00\x00\x00\x00\x00' -tRp8407 -sVproposition -p8408 -g24 -(g26 -S'\xa2\x1a\x00\x00\x00\x00\x00\x00' -tRp8409 -sVgc -p8410 -g24 -(g26 -S'H\x0e\x00\x00\x00\x00\x00\x00' -tRp8411 -sVgb -p8412 -g24 -(g26 -S'E\x0e\x00\x00\x00\x00\x00\x00' -tRp8413 -sVga -p8414 -g24 -(g26 -S'\x19\x0e\x00\x00\x00\x00\x00\x00' -tRp8415 -sVgm -p8416 -g24 -(g26 -S'\xa0\x0e\x00\x00\x00\x00\x00\x00' -tRp8417 -sVgl -p8418 -g24 -(g26 -S'\x91\x0e\x00\x00\x00\x00\x00\x00' -tRp8419 -sVkate -p8420 -g24 -(g26 -S'h\x12\x00\x00\x00\x00\x00\x00' -tRp8421 -sVgi -p8422 -g24 -(g26 -S'\x80\x0e\x00\x00\x00\x00\x00\x00' -tRp8423 -sVcompact -p8424 -g24 -(g26 -S'\xde\x06\x00\x00\x00\x00\x00\x00' -tRp8425 -sVwizard -p8426 -g24 -(g26 -S'9%\x00\x00\x00\x00\x00\x00' -tRp8427 -sVsuits -p8428 -g24 -(g26 -S'\xd4 \x00\x00\x00\x00\x00\x00' -tRp8429 -sVexcluded -p8430 -g24 -(g26 -S'\x1c\x0c\x00\x00\x00\x00\x00\x00' -tRp8431 -sVsuite -p8432 -g24 -(g26 -S'\xd1 \x00\x00\x00\x00\x00\x00' -tRp8433 -sVfriendly -p8434 -g24 -(g26 -S'\xe6\r\x00\x00\x00\x00\x00\x00' -tRp8435 -sVpdas -p8436 -g24 -(g26 -S'\x85\x18\x00\x00\x00\x00\x00\x00' -tRp8437 -sVinfinite -p8438 -g24 -(g26 -S'\x06\x11\x00\x00\x00\x00\x00\x00' -tRp8439 -sVkitty -p8440 -g24 -(g26 -S'\xa3\x12\x00\x00\x00\x00\x00\x00' -tRp8441 -sVwave -p8442 -g24 -(g26 -S'\xc0$\x00\x00\x00\x00\x00\x00' -tRp8443 -sVvibrator -p8444 -g24 -(g26 -S'\x1b$\x00\x00\x00\x00\x00\x00' -tRp8445 -sVcellular -p8446 -g24 -(g26 -S'`\x05\x00\x00\x00\x00\x00\x00' -tRp8447 -sVtelling -p8448 -g24 -(g26 -S'\xa6!\x00\x00\x00\x00\x00\x00' -tRp8449 -sVacres -p8450 -g24 -(g26 -S'U\x00\x00\x00\x00\x00\x00\x00' -tRp8451 -sVpositions -p8452 -g24 -(g26 -S'\xba\x19\x00\x00\x00\x00\x00\x00' -tRp8453 -sVbutton -p8454 -g24 -(g26 -S'\xa3\x04\x00\x00\x00\x00\x00\x00' -tRp8455 -sVmichael -p8456 -g24 -(g26 -S'Q\x15\x00\x00\x00\x00\x00\x00' -tRp8457 -sVryan -p8458 -g24 -(g26 -S'p\x1d\x00\x00\x00\x00\x00\x00' -tRp8459 -sVassignments -p8460 -g24 -(g26 -S'.\x02\x00\x00\x00\x00\x00\x00' -tRp8461 -sVbarbara -p8462 -g24 -(g26 -S'\xe5\x02\x00\x00\x00\x00\x00\x00' -tRp8463 -sVconfigurations -p8464 -g24 -(g26 -S'@\x07\x00\x00\x00\x00\x00\x00' -tRp8465 -sVbooty -p8466 -g24 -(g26 -S'\xf2\x03\x00\x00\x00\x00\x00\x00' -tRp8467 -sVcarter -p8468 -g24 -(g26 -S'$\x05\x00\x00\x00\x00\x00\x00' -tRp8469 -sVza -p8470 -g24 -(g26 -S'\xb4%\x00\x00\x00\x00\x00\x00' -tRp8471 -sVboots -p8472 -g24 -(g26 -S'\xf1\x03\x00\x00\x00\x00\x00\x00' -tRp8473 -sVjump -p8474 -g24 -(g26 -S'Q\x12\x00\x00\x00\x00\x00\x00' -tRp8475 -sVnoise -p8476 -g24 -(g26 -S'\xd5\x16\x00\x00\x00\x00\x00\x00' -tRp8477 -sVbooth -p8478 -g24 -(g26 -S'\xf0\x03\x00\x00\x00\x00\x00\x00' -tRp8479 -sVpicked -p8480 -g24 -(g26 -S'\x0f\x19\x00\x00\x00\x00\x00\x00' -tRp8481 -sVdownload -p8482 -g24 -(g26 -S'j\n\x00\x00\x00\x00\x00\x00' -tRp8483 -sVzu -p8484 -g24 -(g26 -S'\xc6%\x00\x00\x00\x00\x00\x00' -tRp8485 -sVclick -p8486 -g24 -(g26 -S'F\x06\x00\x00\x00\x00\x00\x00' -tRp8487 -sVplays -p8488 -g24 -(g26 -S'\\\x19\x00\x00\x00\x00\x00\x00' -tRp8489 -sVpaintings -p8490 -g24 -(g26 -S'\t\x18\x00\x00\x00\x00\x00\x00' -tRp8491 -sVsoup -p8492 -g24 -(g26 -S'\x8a\x1f\x00\x00\x00\x00\x00\x00' -tRp8493 -sVvampire -p8494 -g24 -(g26 -S'\xd6#\x00\x00\x00\x00\x00\x00' -tRp8495 -sVcell -p8496 -g24 -(g26 -S'^\x05\x00\x00\x00\x00\x00\x00' -tRp8497 -sVexperiment -p8498 -g24 -(g26 -S'L\x0c\x00\x00\x00\x00\x00\x00' -tRp8499 -sVrouters -p8500 -g24 -(g26 -S'D\x1d\x00\x00\x00\x00\x00\x00' -tRp8501 -sVcollins -p8502 -g24 -(g26 -S'\x9d\x06\x00\x00\x00\x00\x00\x00' -tRp8503 -sVtournaments -p8504 -g24 -(g26 -S'\x83"\x00\x00\x00\x00\x00\x00' -tRp8505 -sVbrunei -p8506 -g24 -(g26 -S'd\x04\x00\x00\x00\x00\x00\x00' -tRp8507 -sVfocuses -p8508 -g24 -(g26 -S'x\r\x00\x00\x00\x00\x00\x00' -tRp8509 -sVcommercial -p8510 -g24 -(g26 -S'\xc6\x06\x00\x00\x00\x00\x00\x00' -tRp8511 -sVeminem -p8512 -g24 -(g26 -S'?\x0b\x00\x00\x00\x00\x00\x00' -tRp8513 -sVfollowing -p8514 -g24 -(g26 -S'\x83\r\x00\x00\x00\x00\x00\x00' -tRp8515 -sVfocused -p8516 -g24 -(g26 -S'w\r\x00\x00\x00\x00\x00\x00' -tRp8517 -sVconvert -p8518 -g24 -(g26 -S'\xc6\x07\x00\x00\x00\x00\x00\x00' -tRp8519 -sVcopyright -p8520 -g24 -(g26 -S'\xe5\x07\x00\x00\x00\x00\x00\x00' -tRp8521 -sVproducts -p8522 -g24 -(g26 -S'n\x1a\x00\x00\x00\x00\x00\x00' -tRp8523 -sVgene -p8524 -g24 -(g26 -S'S\x0e\x00\x00\x00\x00\x00\x00' -tRp8525 -sVsalvation -p8526 -g24 -(g26 -S'\x8f\x1d\x00\x00\x00\x00\x00\x00' -tRp8527 -sVpatents -p8528 -g24 -(g26 -S'f\x18\x00\x00\x00\x00\x00\x00' -tRp8529 -sVexamining -p8530 -g24 -(g26 -S'\x08\x0c\x00\x00\x00\x00\x00\x00' -tRp8531 -sVaddresses -p8532 -g24 -(g26 -S'~\x00\x00\x00\x00\x00\x00\x00' -tRp8533 -sVclark -p8534 -g24 -(g26 -S'-\x06\x00\x00\x00\x00\x00\x00' -tRp8535 -sVdanger -p8536 -g24 -(g26 -S'\xaf\x08\x00\x00\x00\x00\x00\x00' -tRp8537 -sVwin -p8538 -g24 -(g26 -S'\x17%\x00\x00\x00\x00\x00\x00' -tRp8539 -sVmanage -p8540 -g24 -(g26 -S'n\x14\x00\x00\x00\x00\x00\x00' -tRp8541 -sVclara -p8542 -g24 -(g26 -S'+\x06\x00\x00\x00\x00\x00\x00' -tRp8543 -sVaddressed -p8544 -g24 -(g26 -S'}\x00\x00\x00\x00\x00\x00\x00' -tRp8545 -sVboolean -p8546 -g24 -(g26 -S'\xec\x03\x00\x00\x00\x00\x00\x00' -tRp8547 -sVsinging -p8548 -g24 -(g26 -S'\x03\x1f\x00\x00\x00\x00\x00\x00' -tRp8549 -sVcloud -p8550 -g24 -(g26 -S'c\x06\x00\x00\x00\x00\x00\x00' -tRp8551 -sVannounced -p8552 -g24 -(g26 -S'w\x01\x00\x00\x00\x00\x00\x00' -tRp8553 -sVcrap -p8554 -g24 -(g26 -S'7\x08\x00\x00\x00\x00\x00\x00' -tRp8555 -sVremains -p8556 -g24 -(g26 -S"'\x1c\x00\x00\x00\x00\x00\x00" -tRp8557 -sVhudson -p8558 -g24 -(g26 -S'I\x10\x00\x00\x00\x00\x00\x00' -tRp8559 -sVcamera -p8560 -g24 -(g26 -S'\xd8\x04\x00\x00\x00\x00\x00\x00' -tRp8561 -sVvehicle -p8562 -g24 -(g26 -S'\xf6#\x00\x00\x00\x00\x00\x00' -tRp8563 -sVjonathan -p8564 -g24 -(g26 -S'1\x12\x00\x00\x00\x00\x00\x00' -tRp8565 -sVmalawi -p8566 -g24 -(g26 -S'c\x14\x00\x00\x00\x00\x00\x00' -tRp8567 -sVreflects -p8568 -g24 -(g26 -S'\xdf\x1b\x00\x00\x00\x00\x00\x00' -tRp8569 -sVdentists -p8570 -g24 -(g26 -S'?\t\x00\x00\x00\x00\x00\x00' -tRp8571 -sVbiblical -p8572 -g24 -(g26 -S'q\x03\x00\x00\x00\x00\x00\x00' -tRp8573 -sVstarted -p8574 -g24 -(g26 -S'\x13 \x00\x00\x00\x00\x00\x00' -tRp8575 -sVstatutes -p8576 -g24 -(g26 -S') \x00\x00\x00\x00\x00\x00' -tRp8577 -sVbenchmark -p8578 -g24 -(g26 -S'Q\x03\x00\x00\x00\x00\x00\x00' -tRp8579 -sVvisibility -p8580 -g24 -(g26 -S'L$\x00\x00\x00\x00\x00\x00' -tRp8581 -sVfuck -p8582 -g24 -(g26 -S'\xf4\r\x00\x00\x00\x00\x00\x00' -tRp8583 -sVmitsubishi -p8584 -g24 -(g26 -S'\xa1\x15\x00\x00\x00\x00\x00\x00' -tRp8585 -sVappointed -p8586 -g24 -(g26 -S'\xb7\x01\x00\x00\x00\x00\x00\x00' -tRp8587 -sVstarter -p8588 -g24 -(g26 -S'\x14 \x00\x00\x00\x00\x00\x00' -tRp8589 -sVsocket -p8590 -g24 -(g26 -S'Z\x1f\x00\x00\x00\x00\x00\x00' -tRp8591 -sVsalad -p8592 -g24 -(g26 -S'\x84\x1d\x00\x00\x00\x00\x00\x00' -tRp8593 -sVride -p8594 -g24 -(g26 -S'\xec\x1c\x00\x00\x00\x00\x00\x00' -tRp8595 -sVmeet -p8596 -g24 -(g26 -S'\x04\x15\x00\x00\x00\x00\x00\x00' -tRp8597 -sVdrops -p8598 -g24 -(g26 -S'\x97\n\x00\x00\x00\x00\x00\x00' -tRp8599 -sVcontrol -p8600 -g24 -(g26 -S'\xb5\x07\x00\x00\x00\x00\x00\x00' -tRp8601 -sVbeijing -p8602 -g24 -(g26 -S'<\x03\x00\x00\x00\x00\x00\x00' -tRp8603 -sVkenny -p8604 -g24 -(g26 -S'y\x12\x00\x00\x00\x00\x00\x00' -tRp8605 -sVlinks -p8606 -g24 -(g26 -S'\x9e\x13\x00\x00\x00\x00\x00\x00' -tRp8607 -sVproviders -p8608 -g24 -(g26 -S'\xbf\x1a\x00\x00\x00\x00\x00\x00' -tRp8609 -sVhalloween -p8610 -g24 -(g26 -S'>\x0f\x00\x00\x00\x00\x00\x00' -tRp8611 -sVimaging -p8612 -g24 -(g26 -S'\x9a\x10\x00\x00\x00\x00\x00\x00' -tRp8613 -sVpulling -p8614 -g24 -(g26 -S'\xe3\x1a\x00\x00\x00\x00\x00\x00' -tRp8615 -sVsought -p8616 -g24 -(g26 -S'\x84\x1f\x00\x00\x00\x00\x00\x00' -tRp8617 -sVwonderful -p8618 -g24 -(g26 -S'C%\x00\x00\x00\x00\x00\x00' -tRp8619 -sVskirt -p8620 -g24 -(g26 -S'!\x1f\x00\x00\x00\x00\x00\x00' -tRp8621 -sVchevrolet -p8622 -g24 -(g26 -S'\xd3\x05\x00\x00\x00\x00\x00\x00' -tRp8623 -sVpoetry -p8624 -g24 -(g26 -S'z\x19\x00\x00\x00\x00\x00\x00' -tRp8625 -sVarrangement -p8626 -g24 -(g26 -S'\xf9\x01\x00\x00\x00\x00\x00\x00' -tRp8627 -sVlocated -p8628 -g24 -(g26 -S'\xd4\x13\x00\x00\x00\x00\x00\x00' -tRp8629 -sVcircular -p8630 -g24 -(g26 -S'\x11\x06\x00\x00\x00\x00\x00\x00' -tRp8631 -sVfare -p8632 -g24 -(g26 -S'\xb0\x0c\x00\x00\x00\x00\x00\x00' -tRp8633 -sVfarm -p8634 -g24 -(g26 -S'\xb2\x0c\x00\x00\x00\x00\x00\x00' -tRp8635 -sVronald -p8636 -g24 -(g26 -S',\x1d\x00\x00\x00\x00\x00\x00' -tRp8637 -sVrays -p8638 -g24 -(g26 -S'p\x1b\x00\x00\x00\x00\x00\x00' -tRp8639 -sVspelling -p8640 -g24 -(g26 -S'\xc3\x1f\x00\x00\x00\x00\x00\x00' -tRp8641 -sVknowledgestorm -p8642 -g24 -(g26 -S'\xb2\x12\x00\x00\x00\x00\x00\x00' -tRp8643 -sVprojectors -p8644 -g24 -(g26 -S'\x85\x1a\x00\x00\x00\x00\x00\x00' -tRp8645 -sVscoop -p8646 -g24 -(g26 -S'\xe2\x1d\x00\x00\x00\x00\x00\x00' -tRp8647 -sVclaire -p8648 -g24 -(g26 -S')\x06\x00\x00\x00\x00\x00\x00' -tRp8649 -sVencyclopedia -p8650 -g24 -(g26 -S'a\x0b\x00\x00\x00\x00\x00\x00' -tRp8651 -sVtemp -p8652 -g24 -(g26 -S'\xa8!\x00\x00\x00\x00\x00\x00' -tRp8653 -sVagenda -p8654 -g24 -(g26 -S'\xd2\x00\x00\x00\x00\x00\x00\x00' -tRp8655 -sVhealthcare -p8656 -g24 -(g26 -S'\x95\x0f\x00\x00\x00\x00\x00\x00' -tRp8657 -sVswimming -p8658 -g24 -(g26 -S')!\x00\x00\x00\x00\x00\x00' -tRp8659 -sVfastest -p8660 -g24 -(g26 -S'\xbb\x0c\x00\x00\x00\x00\x00\x00' -tRp8661 -sVbasement -p8662 -g24 -(g26 -S'\xf7\x02\x00\x00\x00\x00\x00\x00' -tRp8663 -sVcitysearch -p8664 -g24 -(g26 -S'\x1f\x06\x00\x00\x00\x00\x00\x00' -tRp8665 -sVsperm -p8666 -g24 -(g26 -S'\xc8\x1f\x00\x00\x00\x00\x00\x00' -tRp8667 -sVincluding -p8668 -g24 -(g26 -S'\xcc\x10\x00\x00\x00\x00\x00\x00' -tRp8669 -sVcostume -p8670 -g24 -(g26 -S'\x07\x08\x00\x00\x00\x00\x00\x00' -tRp8671 -sVcruise -p8672 -g24 -(g26 -S'b\x08\x00\x00\x00\x00\x00\x00' -tRp8673 -sVmentioned -p8674 -g24 -(g26 -S'\x1d\x15\x00\x00\x00\x00\x00\x00' -tRp8675 -sVblake -p8676 -g24 -(g26 -S'\xa8\x03\x00\x00\x00\x00\x00\x00' -tRp8677 -sVouter -p8678 -g24 -(g26 -S'\xd1\x17\x00\x00\x00\x00\x00\x00' -tRp8679 -sVexclusion -p8680 -g24 -(g26 -S'\x1e\x0c\x00\x00\x00\x00\x00\x00' -tRp8681 -sVtemporal -p8682 -g24 -(g26 -S'\xae!\x00\x00\x00\x00\x00\x00' -tRp8683 -sVnotebooks -p8684 -g24 -(g26 -S'\xec\x16\x00\x00\x00\x00\x00\x00' -tRp8685 -sVlithuania -p8686 -g24 -(g26 -S'\xb4\x13\x00\x00\x00\x00\x00\x00' -tRp8687 -sVwalnut -p8688 -g24 -(g26 -S'\x93$\x00\x00\x00\x00\x00\x00' -tRp8689 -sVpixel -p8690 -g24 -(g26 -S'2\x19\x00\x00\x00\x00\x00\x00' -tRp8691 -sVpure -p8692 -g24 -(g26 -S'\xf0\x1a\x00\x00\x00\x00\x00\x00' -tRp8693 -sVauto -p8694 -g24 -(g26 -S'\x8b\x02\x00\x00\x00\x00\x00\x00' -tRp8695 -sVnokia -p8696 -g24 -(g26 -S'\xd6\x16\x00\x00\x00\x00\x00\x00' -tRp8697 -sVtile -p8698 -g24 -(g26 -S'0"\x00\x00\x00\x00\x00\x00' -tRp8699 -sVhands -p8700 -g24 -(g26 -S'S\x0f\x00\x00\x00\x00\x00\x00' -tRp8701 -sVdocumented -p8702 -g24 -(g26 -S'?\n\x00\x00\x00\x00\x00\x00' -tRp8703 -sVxhtml -p8704 -g24 -(g26 -S'\x88%\x00\x00\x00\x00\x00\x00' -tRp8705 -sVusgs -p8706 -g24 -(g26 -S'\xb0#\x00\x00\x00\x00\x00\x00' -tRp8707 -sVliteracy -p8708 -g24 -(g26 -S'\xb0\x13\x00\x00\x00\x00\x00\x00' -tRp8709 -sVmasters -p8710 -g24 -(g26 -S'\xbc\x14\x00\x00\x00\x00\x00\x00' -tRp8711 -sVmods -p8712 -g24 -(g26 -S'\xc2\x15\x00\x00\x00\x00\x00\x00' -tRp8713 -sVuniversity -p8714 -g24 -(g26 -S'{#\x00\x00\x00\x00\x00\x00' -tRp8715 -sVslide -p8716 -g24 -(g26 -S',\x1f\x00\x00\x00\x00\x00\x00' -tRp8717 -sVmagnitude -p8718 -g24 -(g26 -S'H\x14\x00\x00\x00\x00\x00\x00' -tRp8719 -sVmode -p8720 -g24 -(g26 -S'\xb2\x15\x00\x00\x00\x00\x00\x00' -tRp8721 -sVcrossing -p8722 -g24 -(g26 -S'\\\x08\x00\x00\x00\x00\x00\x00' -tRp8723 -sVcommonwealth -p8724 -g24 -(g26 -S'\xd6\x06\x00\x00\x00\x00\x00\x00' -tRp8725 -sVattachments -p8726 -g24 -(g26 -S'Y\x02\x00\x00\x00\x00\x00\x00' -tRp8727 -sVmap -p8728 -g24 -(g26 -S'\x84\x14\x00\x00\x00\x00\x00\x00' -tRp8729 -sVglobe -p8730 -g24 -(g26 -S'\x9a\x0e\x00\x00\x00\x00\x00\x00' -tRp8731 -sVserbia -p8732 -g24 -(g26 -S'^\x1e\x00\x00\x00\x00\x00\x00' -tRp8733 -sVstaying -p8734 -g24 -(g26 -S'- \x00\x00\x00\x00\x00\x00' -tRp8735 -sVbluetooth -p8736 -g24 -(g26 -S'\xc8\x03\x00\x00\x00\x00\x00\x00' -tRp8737 -sVconstitute -p8738 -g24 -(g26 -S'z\x07\x00\x00\x00\x00\x00\x00' -tRp8739 -sVmar -p8740 -g24 -(g26 -S'\x88\x14\x00\x00\x00\x00\x00\x00' -tRp8741 -sVmeasure -p8742 -g24 -(g26 -S'\xe8\x14\x00\x00\x00\x00\x00\x00' -tRp8743 -sVspecial -p8744 -g24 -(g26 -S'\xa9\x1f\x00\x00\x00\x00\x00\x00' -tRp8745 -sVentertainment -p8746 -g24 -(g26 -S'\x96\x0b\x00\x00\x00\x00\x00\x00' -tRp8747 -sVarmor -p8748 -g24 -(g26 -S'\xf2\x01\x00\x00\x00\x00\x00\x00' -tRp8749 -sVricky -p8750 -g24 -(g26 -S'\xe9\x1c\x00\x00\x00\x00\x00\x00' -tRp8751 -sVcause -p8752 -g24 -(g26 -S'G\x05\x00\x00\x00\x00\x00\x00' -tRp8753 -sVachievements -p8754 -g24 -(g26 -S'G\x00\x00\x00\x00\x00\x00\x00' -tRp8755 -sVwines -p8756 -g24 -(g26 -S'\x1e%\x00\x00\x00\x00\x00\x00' -tRp8757 -sVeco -p8758 -g24 -(g26 -S'\xe2\n\x00\x00\x00\x00\x00\x00' -tRp8759 -sVwithdrawal -p8760 -g24 -(g26 -S'5%\x00\x00\x00\x00\x00\x00' -tRp8761 -sVundo -p8762 -g24 -(g26 -S'g#\x00\x00\x00\x00\x00\x00' -tRp8763 -sVattending -p8764 -g24 -(g26 -S'd\x02\x00\x00\x00\x00\x00\x00' -tRp8765 -sVcompletely -p8766 -g24 -(g26 -S'\xfd\x06\x00\x00\x00\x00\x00\x00' -tRp8767 -sVjill -p8768 -g24 -(g26 -S'\x19\x12\x00\x00\x00\x00\x00\x00' -tRp8769 -sVlevitra -p8770 -g24 -(g26 -S'[\x13\x00\x00\x00\x00\x00\x00' -tRp8771 -sVadvisor -p8772 -g24 -(g26 -S'\xb2\x00\x00\x00\x00\x00\x00\x00' -tRp8773 -sVprincess -p8774 -g24 -(g26 -S'6\x1a\x00\x00\x00\x00\x00\x00' -tRp8775 -sVgeometry -p8776 -g24 -(g26 -S't\x0e\x00\x00\x00\x00\x00\x00' -tRp8777 -sVdetermining -p8778 -g24 -(g26 -S'\x81\t\x00\x00\x00\x00\x00\x00' -tRp8779 -sVroute -p8780 -g24 -(g26 -S'B\x1d\x00\x00\x00\x00\x00\x00' -tRp8781 -sVflorida -p8782 -g24 -(g26 -S'b\r\x00\x00\x00\x00\x00\x00' -tRp8783 -sVmembership -p8784 -g24 -(g26 -S'\x10\x15\x00\x00\x00\x00\x00\x00' -tRp8785 -sVtimer -p8786 -g24 -(g26 -S'8"\x00\x00\x00\x00\x00\x00' -tRp8787 -sVtimes -p8788 -g24 -(g26 -S'9"\x00\x00\x00\x00\x00\x00' -tRp8789 -sVkeen -p8790 -g24 -(g26 -S'p\x12\x00\x00\x00\x00\x00\x00' -tRp8791 -sVwrote -p8792 -g24 -(g26 -S'z%\x00\x00\x00\x00\x00\x00' -tRp8793 -sVresumes -p8794 -g24 -(g26 -S'\xaf\x1c\x00\x00\x00\x00\x00\x00' -tRp8795 -sVaustin -p8796 -g24 -(g26 -S'\x7f\x02\x00\x00\x00\x00\x00\x00' -tRp8797 -sVdesigned -p8798 -g24 -(g26 -S'c\t\x00\x00\x00\x00\x00\x00' -tRp8799 -sVprospective -p8800 -g24 -(g26 -S'\xa6\x1a\x00\x00\x00\x00\x00\x00' -tRp8801 -sVevans -p8802 -g24 -(g26 -S'\xf3\x0b\x00\x00\x00\x00\x00\x00' -tRp8803 -sVblogger -p8804 -g24 -(g26 -S'\xb8\x03\x00\x00\x00\x00\x00\x00' -tRp8805 -sVpowerful -p8806 -g24 -(g26 -S'\xde\x19\x00\x00\x00\x00\x00\x00' -tRp8807 -sVcardiac -p8808 -g24 -(g26 -S'\x05\x05\x00\x00\x00\x00\x00\x00' -tRp8809 -sVcongo -p8810 -g24 -(g26 -S'K\x07\x00\x00\x00\x00\x00\x00' -tRp8811 -sVwarcraft -p8812 -g24 -(g26 -S'\x9e$\x00\x00\x00\x00\x00\x00' -tRp8813 -sVbitch -p8814 -g24 -(g26 -S'\x98\x03\x00\x00\x00\x00\x00\x00' -tRp8815 -sVflows -p8816 -g24 -(g26 -S'i\r\x00\x00\x00\x00\x00\x00' -tRp8817 -sVequity -p8818 -g24 -(g26 -S'\xb7\x0b\x00\x00\x00\x00\x00\x00' -tRp8819 -sVprecisely -p8820 -g24 -(g26 -S'\xf6\x19\x00\x00\x00\x00\x00\x00' -tRp8821 -sVquality -p8822 -g24 -(g26 -S'\x0e\x1b\x00\x00\x00\x00\x00\x00' -tRp8823 -sVplaylist -p8824 -g24 -(g26 -S'[\x19\x00\x00\x00\x00\x00\x00' -tRp8825 -sVmanagement -p8826 -g24 -(g26 -S'p\x14\x00\x00\x00\x00\x00\x00' -tRp8827 -sVpractitioners -p8828 -g24 -(g26 -S'\xea\x19\x00\x00\x00\x00\x00\x00' -tRp8829 -sVprivacy -p8830 -g24 -(g26 -S'H\x1a\x00\x00\x00\x00\x00\x00' -tRp8831 -sVbears -p8832 -g24 -(g26 -S'\x1e\x03\x00\x00\x00\x00\x00\x00' -tRp8833 -sVrevealed -p8834 -g24 -(g26 -S'\xc5\x1c\x00\x00\x00\x00\x00\x00' -tRp8835 -sVdurable -p8836 -g24 -(g26 -S'\xb2\n\x00\x00\x00\x00\x00\x00' -tRp8837 -sVadopted -p8838 -g24 -(g26 -S'\x98\x00\x00\x00\x00\x00\x00\x00' -tRp8839 -sVlocale -p8840 -g24 -(g26 -S'\xd1\x13\x00\x00\x00\x00\x00\x00' -tRp8841 -sVattack -p8842 -g24 -(g26 -S'Z\x02\x00\x00\x00\x00\x00\x00' -tRp8843 -sVbelize -p8844 -g24 -(g26 -S'F\x03\x00\x00\x00\x00\x00\x00' -tRp8845 -sVwrapped -p8846 -g24 -(g26 -S'm%\x00\x00\x00\x00\x00\x00' -tRp8847 -sVperfectly -p8848 -g24 -(g26 -S'\xac\x18\x00\x00\x00\x00\x00\x00' -tRp8849 -sVfinal -p8850 -g24 -(g26 -S'\x14\r\x00\x00\x00\x00\x00\x00' -tRp8851 -sVconfigure -p8852 -g24 -(g26 -S'A\x07\x00\x00\x00\x00\x00\x00' -tRp8853 -sVash -p8854 -g24 -(g26 -S'\x12\x02\x00\x00\x00\x00\x00\x00' -tRp8855 -sVexactly -p8856 -g24 -(g26 -S'\x01\x0c\x00\x00\x00\x00\x00\x00' -tRp8857 -sVlists -p8858 -g24 -(g26 -S'\xad\x13\x00\x00\x00\x00\x00\x00' -tRp8859 -sVchemicals -p8860 -g24 -(g26 -S'\xcb\x05\x00\x00\x00\x00\x00\x00' -tRp8861 -sVfuzzy -p8862 -g24 -(g26 -S'\x14\x0e\x00\x00\x00\x00\x00\x00' -tRp8863 -sVupdating -p8864 -g24 -(g26 -S'\x8f#\x00\x00\x00\x00\x00\x00' -tRp8865 -sVneck -p8866 -g24 -(g26 -S'\x82\x16\x00\x00\x00\x00\x00\x00' -tRp8867 -sVphotograph -p8868 -g24 -(g26 -S'\xf7\x18\x00\x00\x00\x00\x00\x00' -tRp8869 -sVben -p8870 -g24 -(g26 -S'O\x03\x00\x00\x00\x00\x00\x00' -tRp8871 -sVjohnson -p8872 -g24 -(g26 -S"'\x12\x00\x00\x00\x00\x00\x00" -tRp8873 -sVsubmitted -p8874 -g24 -(g26 -S'\xa4 \x00\x00\x00\x00\x00\x00' -tRp8875 -sVbee -p8876 -g24 -(g26 -S'/\x03\x00\x00\x00\x00\x00\x00' -tRp8877 -sVanaheim -p8878 -g24 -(g26 -S'L\x01\x00\x00\x00\x00\x00\x00' -tRp8879 -sVarc -p8880 -g24 -(g26 -S'\xd6\x01\x00\x00\x00\x00\x00\x00' -tRp8881 -sVtelecharger -p8882 -g24 -(g26 -S'\x9d!\x00\x00\x00\x00\x00\x00' -tRp8883 -sVbare -p8884 -g24 -(g26 -S'\xe8\x02\x00\x00\x00\x00\x00\x00' -tRp8885 -sVproviding -p8886 -g24 -(g26 -S'\xc1\x1a\x00\x00\x00\x00\x00\x00' -tRp8887 -sVdistinguished -p8888 -g24 -(g26 -S'\x18\n\x00\x00\x00\x00\x00\x00' -tRp8889 -sVbet -p8890 -g24 -(g26 -S'c\x03\x00\x00\x00\x00\x00\x00' -tRp8891 -sVexhibit -p8892 -g24 -(g26 -S'-\x0c\x00\x00\x00\x00\x00\x00' -tRp8893 -sVapplicant -p8894 -g24 -(g26 -S'\xaf\x01\x00\x00\x00\x00\x00\x00' -tRp8895 -sVtabs -p8896 -g24 -(g26 -S'N!\x00\x00\x00\x00\x00\x00' -tRp8897 -sVjulian -p8898 -g24 -(g26 -S'N\x12\x00\x00\x00\x00\x00\x00' -tRp8899 -sVportrait -p8900 -g24 -(g26 -S'\xaf\x19\x00\x00\x00\x00\x00\x00' -tRp8901 -sVneed -p8902 -g24 -(g26 -S'\x84\x16\x00\x00\x00\x00\x00\x00' -tRp8903 -sVmanitoba -p8904 -g24 -(g26 -S'y\x14\x00\x00\x00\x00\x00\x00' -tRp8905 -sVborder -p8906 -g24 -(g26 -S'\xf3\x03\x00\x00\x00\x00\x00\x00' -tRp8907 -sVscrew -p8908 -g24 -(g26 -S'\xf5\x1d\x00\x00\x00\x00\x00\x00' -tRp8909 -sVmicrophone -p8910 -g24 -(g26 -S'V\x15\x00\x00\x00\x00\x00\x00' -tRp8911 -sVable -p8912 -g24 -(g26 -S'\t\x00\x00\x00\x00\x00\x00\x00' -tRp8913 -sVpurchasing -p8914 -g24 -(g26 -S'\xef\x1a\x00\x00\x00\x00\x00\x00' -tRp8915 -sVinstance -p8916 -g24 -(g26 -S'C\x11\x00\x00\x00\x00\x00\x00' -tRp8917 -sVrelatives -p8918 -g24 -(g26 -S'\x0f\x1c\x00\x00\x00\x00\x00\x00' -tRp8919 -sVdetector -p8920 -g24 -(g26 -S'|\t\x00\x00\x00\x00\x00\x00' -tRp8921 -sVblades -p8922 -g24 -(g26 -S'\xa5\x03\x00\x00\x00\x00\x00\x00' -tRp8923 -sVlectures -p8924 -g24 -(g26 -S'.\x13\x00\x00\x00\x00\x00\x00' -tRp8925 -sVmileage -p8926 -g24 -(g26 -S'f\x15\x00\x00\x00\x00\x00\x00' -tRp8927 -sVexpires -p8928 -g24 -(g26 -S'T\x0c\x00\x00\x00\x00\x00\x00' -tRp8929 -sVparenting -p8930 -g24 -(g26 -S'1\x18\x00\x00\x00\x00\x00\x00' -tRp8931 -sVmontana -p8932 -g24 -(g26 -S'\xe0\x15\x00\x00\x00\x00\x00\x00' -tRp8933 -sVconnected -p8934 -g24 -(g26 -S'Q\x07\x00\x00\x00\x00\x00\x00' -tRp8935 -sVdefinitions -p8936 -g24 -(g26 -S'\x13\t\x00\x00\x00\x00\x00\x00' -tRp8937 -sVexpired -p8938 -g24 -(g26 -S'S\x0c\x00\x00\x00\x00\x00\x00' -tRp8939 -sVgallery -p8940 -g24 -(g26 -S'#\x0e\x00\x00\x00\x00\x00\x00' -tRp8941 -sVstereo -p8942 -g24 -(g26 -S'; \x00\x00\x00\x00\x00\x00' -tRp8943 -sVconsequences -p8944 -g24 -(g26 -S'`\x07\x00\x00\x00\x00\x00\x00' -tRp8945 -sVurl -p8946 -g24 -(g26 -S'\x9f#\x00\x00\x00\x00\x00\x00' -tRp8947 -sVsg -p8948 -g24 -(g26 -S'\x81\x1e\x00\x00\x00\x00\x00\x00' -tRp8949 -sVupset -p8950 -g24 -(g26 -S'\x97#\x00\x00\x00\x00\x00\x00' -tRp8951 -sVuri -p8952 -g24 -(g26 -S'\x9e#\x00\x00\x00\x00\x00\x00' -tRp8953 -sVmanga -p8954 -g24 -(g26 -S'w\x14\x00\x00\x00\x00\x00\x00' -tRp8955 -sVproceedings -p8956 -g24 -(g26 -S'Z\x1a\x00\x00\x00\x00\x00\x00' -tRp8957 -sVurw -p8958 -g24 -(g26 -S'\xa2#\x00\x00\x00\x00\x00\x00' -tRp8959 -sVsnapshot -p8960 -g24 -(g26 -S'O\x1f\x00\x00\x00\x00\x00\x00' -tRp8961 -sVdatabases -p8962 -g24 -(g26 -S'\xbe\x08\x00\x00\x00\x00\x00\x00' -tRp8963 -sVpst -p8964 -g24 -(g26 -S'\xcc\x1a\x00\x00\x00\x00\x00\x00' -tRp8965 -sVimpression -p8966 -g24 -(g26 -S'\xb7\x10\x00\x00\x00\x00\x00\x00' -tRp8967 -sVemerging -p8968 -g24 -(g26 -S'=\x0b\x00\x00\x00\x00\x00\x00' -tRp8969 -sVparker -p8970 -g24 -(g26 -S'6\x18\x00\x00\x00\x00\x00\x00' -tRp8971 -sVbelkin -p8972 -g24 -(g26 -S'G\x03\x00\x00\x00\x00\x00\x00' -tRp8973 -sVviolation -p8974 -g24 -(g26 -S'=$\x00\x00\x00\x00\x00\x00' -tRp8975 -sVindoor -p8976 -g24 -(g26 -S'\xf8\x10\x00\x00\x00\x00\x00\x00' -tRp8977 -sVsoldiers -p8978 -g24 -(g26 -S'g\x1f\x00\x00\x00\x00\x00\x00' -tRp8979 -sVshoes -p8980 -g24 -(g26 -S'\xb9\x1e\x00\x00\x00\x00\x00\x00' -tRp8981 -sVpartners -p8982 -g24 -(g26 -S'K\x18\x00\x00\x00\x00\x00\x00' -tRp8983 -sVbased -p8984 -g24 -(g26 -S'\xf5\x02\x00\x00\x00\x00\x00\x00' -tRp8985 -sVdistributors -p8986 -g24 -(g26 -S'\x1e\n\x00\x00\x00\x00\x00\x00' -tRp8987 -sVtire -p8988 -g24 -(g26 -S'B"\x00\x00\x00\x00\x00\x00' -tRp8989 -sVearned -p8990 -g24 -(g26 -S'\xca\n\x00\x00\x00\x00\x00\x00' -tRp8991 -sVmemphis -p8992 -g24 -(g26 -S'\x17\x15\x00\x00\x00\x00\x00\x00' -tRp8993 -sVwinner -p8994 -g24 -(g26 -S'!%\x00\x00\x00\x00\x00\x00' -tRp8995 -sVreceptors -p8996 -g24 -(g26 -S'\xa5\x1b\x00\x00\x00\x00\x00\x00' -tRp8997 -sVemployer -p8998 -g24 -(g26 -S'N\x0b\x00\x00\x00\x00\x00\x00' -tRp8999 -sVwon -p9000 -g24 -(g26 -S'A%\x00\x00\x00\x00\x00\x00' -tRp9001 -sVinherited -p9002 -g24 -(g26 -S'\x17\x11\x00\x00\x00\x00\x00\x00' -tRp9003 -sVfuel -p9004 -g24 -(g26 -S'\xf7\r\x00\x00\x00\x00\x00\x00' -tRp9005 -sVemployed -p9006 -g24 -(g26 -S'K\x0b\x00\x00\x00\x00\x00\x00' -tRp9007 -sVachieve -p9008 -g24 -(g26 -S'D\x00\x00\x00\x00\x00\x00\x00' -tRp9009 -sVdodge -p9010 -g24 -(g26 -S'B\n\x00\x00\x00\x00\x00\x00' -tRp9011 -sVmichigan -p9012 -g24 -(g26 -S'T\x15\x00\x00\x00\x00\x00\x00' -tRp9013 -sVoverall -p9014 -g24 -(g26 -S'\xdf\x17\x00\x00\x00\x00\x00\x00' -tRp9015 -sVmaritime -p9016 -g24 -(g26 -S'\x9b\x14\x00\x00\x00\x00\x00\x00' -tRp9017 -sVjoint -p9018 -g24 -(g26 -S'-\x12\x00\x00\x00\x00\x00\x00' -tRp9019 -sVlegitimate -p9020 -g24 -(g26 -S'=\x13\x00\x00\x00\x00\x00\x00' -tRp9021 -sVjoins -p9022 -g24 -(g26 -S',\x12\x00\x00\x00\x00\x00\x00' -tRp9023 -sVbuyer -p9024 -g24 -(g26 -S'\xa7\x04\x00\x00\x00\x00\x00\x00' -tRp9025 -sVkong -p9026 -g24 -(g26 -S'\xb7\x12\x00\x00\x00\x00\x00\x00' -tRp9027 -sVprocedures -p9028 -g24 -(g26 -S'W\x1a\x00\x00\x00\x00\x00\x00' -tRp9029 -sVendless -p9030 -g24 -(g26 -S'g\x0b\x00\x00\x00\x00\x00\x00' -tRp9031 -sVgray -p9032 -g24 -(g26 -S'\xea\x0e\x00\x00\x00\x00\x00\x00' -tRp9033 -sVevolution -p9034 -g24 -(g26 -S'\xfe\x0b\x00\x00\x00\x00\x00\x00' -tRp9035 -sVevident -p9036 -g24 -(g26 -S'\xfc\x0b\x00\x00\x00\x00\x00\x00' -tRp9037 -sVtobacco -p9038 -g24 -(g26 -S'Q"\x00\x00\x00\x00\x00\x00' -tRp9039 -sVhiring -p9040 -g24 -(g26 -S'\xdd\x0f\x00\x00\x00\x00\x00\x00' -tRp9041 -sVwellness -p9042 -g24 -(g26 -S'\xee$\x00\x00\x00\x00\x00\x00' -tRp9043 -sVgras -p9044 -g24 -(g26 -S'\xe3\x0e\x00\x00\x00\x00\x00\x00' -tRp9045 -sVwatershed -p9046 -g24 -(g26 -S'\xbb$\x00\x00\x00\x00\x00\x00' -tRp9047 -sVprocessed -p9048 -g24 -(g26 -S']\x1a\x00\x00\x00\x00\x00\x00' -tRp9049 -sVcontain -p9050 -g24 -(g26 -S'\x90\x07\x00\x00\x00\x00\x00\x00' -tRp9051 -sVtunes -p9052 -g24 -(g26 -S')#\x00\x00\x00\x00\x00\x00' -tRp9053 -sVtuner -p9054 -g24 -(g26 -S'(#\x00\x00\x00\x00\x00\x00' -tRp9055 -sVgrab -p9056 -g24 -(g26 -S'\xca\x0e\x00\x00\x00\x00\x00\x00' -tRp9057 -sVgrad -p9058 -g24 -(g26 -S'\xcc\x0e\x00\x00\x00\x00\x00\x00' -tRp9059 -sVdpi -p9060 -g24 -(g26 -S's\n\x00\x00\x00\x00\x00\x00' -tRp9061 -sValbania -p9062 -g24 -(g26 -S'\xfa\x00\x00\x00\x00\x00\x00\x00' -tRp9063 -sVcomputed -p9064 -g24 -(g26 -S'\x17\x07\x00\x00\x00\x00\x00\x00' -tRp9065 -sVprayers -p9066 -g24 -(g26 -S'\xf0\x19\x00\x00\x00\x00\x00\x00' -tRp9067 -sVhardwood -p9068 -g24 -(g26 -S'g\x0f\x00\x00\x00\x00\x00\x00' -tRp9069 -sVpitch -p9070 -g24 -(g26 -S'/\x19\x00\x00\x00\x00\x00\x00' -tRp9071 -sVterrain -p9072 -g24 -(g26 -S'\xbf!\x00\x00\x00\x00\x00\x00' -tRp9073 -sVoperates -p9074 -g24 -(g26 -S'\x89\x17\x00\x00\x00\x00\x00\x00' -tRp9075 -sVcomputer -p9076 -g24 -(g26 -S'\x18\x07\x00\x00\x00\x00\x00\x00' -tRp9077 -sVyugoslavia -p9078 -g24 -(g26 -S'\xb2%\x00\x00\x00\x00\x00\x00' -tRp9079 -sVpowder -p9080 -g24 -(g26 -S'\xda\x19\x00\x00\x00\x00\x00\x00' -tRp9081 -sVdesperate -p9082 -g24 -(g26 -S'n\t\x00\x00\x00\x00\x00\x00' -tRp9083 -sVoperated -p9084 -g24 -(g26 -S'\x88\x17\x00\x00\x00\x00\x00\x00' -tRp9085 -sVstats -p9086 -g24 -(g26 -S'& \x00\x00\x00\x00\x00\x00' -tRp9087 -sVnightmare -p9088 -g24 -(g26 -S'\xc3\x16\x00\x00\x00\x00\x00\x00' -tRp9089 -sVtend -p9090 -g24 -(g26 -S'\xb2!\x00\x00\x00\x00\x00\x00' -tRp9091 -sVstate -p9092 -g24 -(g26 -S'\x19 \x00\x00\x00\x00\x00\x00' -tRp9093 -sVcorrectly -p9094 -g24 -(g26 -S'\xfc\x07\x00\x00\x00\x00\x00\x00' -tRp9095 -sVhorrible -p9096 -g24 -(g26 -S'\x1e\x10\x00\x00\x00\x00\x00\x00' -tRp9097 -sVunderstood -p9098 -g24 -(g26 -S'c#\x00\x00\x00\x00\x00\x00' -tRp9099 -sVflickr -p9100 -g24 -(g26 -S'U\r\x00\x00\x00\x00\x00\x00' -tRp9101 -sVtent -p9102 -g24 -(g26 -S'\xb7!\x00\x00\x00\x00\x00\x00' -tRp9103 -sVken -p9104 -g24 -(g26 -S'v\x12\x00\x00\x00\x00\x00\x00' -tRp9105 -sVcomparable -p9106 -g24 -(g26 -S'\xe3\x06\x00\x00\x00\x00\x00\x00' -tRp9107 -sVsole -p9108 -g24 -(g26 -S'h\x1f\x00\x00\x00\x00\x00\x00' -tRp9109 -sVtripadvisor -p9110 -g24 -(g26 -S'\x02#\x00\x00\x00\x00\x00\x00' -tRp9111 -sVimportance -p9112 -g24 -(g26 -S'\xae\x10\x00\x00\x00\x00\x00\x00' -tRp9113 -sVefficiency -p9114 -g24 -(g26 -S'\x0b\x0b\x00\x00\x00\x00\x00\x00' -tRp9115 -sVkey -p9116 -g24 -(g26 -S'\x82\x12\x00\x00\x00\x00\x00\x00' -tRp9117 -sVapproval -p9118 -g24 -(g26 -S'\xc2\x01\x00\x00\x00\x00\x00\x00' -tRp9119 -sVprecious -p9120 -g24 -(g26 -S'\xf3\x19\x00\x00\x00\x00\x00\x00' -tRp9121 -sVdistribution -p9122 -g24 -(g26 -S'\x1b\n\x00\x00\x00\x00\x00\x00' -tRp9123 -sVthank -p9124 -g24 -(g26 -S'\xde!\x00\x00\x00\x00\x00\x00' -tRp9125 -sVhits -p9126 -g24 -(g26 -S'\xe5\x0f\x00\x00\x00\x00\x00\x00' -tRp9127 -sVlimits -p9128 -g24 -(g26 -S'\x91\x13\x00\x00\x00\x00\x00\x00' -tRp9129 -sVcareer -p9130 -g24 -(g26 -S'\n\x05\x00\x00\x00\x00\x00\x00' -tRp9131 -sVaqua -p9132 -g24 -(g26 -S'\xcc\x01\x00\x00\x00\x00\x00\x00' -tRp9133 -sVpresentations -p9134 -g24 -(g26 -S'\x15\x1a\x00\x00\x00\x00\x00\x00' -tRp9135 -sVadmit -p9136 -g24 -(g26 -S'\x93\x00\x00\x00\x00\x00\x00\x00' -tRp9137 -sVestimation -p9138 -g24 -(g26 -S'\xda\x0b\x00\x00\x00\x00\x00\x00' -tRp9139 -sVjersey -p9140 -g24 -(g26 -S'\r\x12\x00\x00\x00\x00\x00\x00' -tRp9141 -sVtuesday -p9142 -g24 -(g26 -S'##\x00\x00\x00\x00\x00\x00' -tRp9143 -sVinvisible -p9144 -g24 -(g26 -S'\xa6\x11\x00\x00\x00\x00\x00\x00' -tRp9145 -sVmaximize -p9146 -g24 -(g26 -S'\xd7\x14\x00\x00\x00\x00\x00\x00' -tRp9147 -sVkings -p9148 -g24 -(g26 -S'\x9b\x12\x00\x00\x00\x00\x00\x00' -tRp9149 -sVquit -p9150 -g24 -(g26 -S"'\x1b\x00\x00\x00\x00\x00\x00" -tRp9151 -sVaddition -p9152 -g24 -(g26 -S'x\x00\x00\x00\x00\x00\x00\x00' -tRp9153 -sVdiscrimination -p9154 -g24 -(g26 -S'\xf7\t\x00\x00\x00\x00\x00\x00' -tRp9155 -sVsara -p9156 -g24 -(g26 -S'\xa3\x1d\x00\x00\x00\x00\x00\x00' -tRp9157 -sVcent -p9158 -g24 -(g26 -S'e\x05\x00\x00\x00\x00\x00\x00' -tRp9159 -sVquiz -p9160 -g24 -(g26 -S')\x1b\x00\x00\x00\x00\x00\x00' -tRp9161 -sVnurses -p9162 -g24 -(g26 -S'\x13\x17\x00\x00\x00\x00\x00\x00' -tRp9163 -sVcreations -p9164 -g24 -(g26 -S'B\x08\x00\x00\x00\x00\x00\x00' -tRp9165 -sVslowly -p9166 -g24 -(g26 -S':\x1f\x00\x00\x00\x00\x00\x00' -tRp9167 -sVtreat -p9168 -g24 -(g26 -S'\xe0"\x00\x00\x00\x00\x00\x00' -tRp9169 -sVpoet -p9170 -g24 -(g26 -S'y\x19\x00\x00\x00\x00\x00\x00' -tRp9171 -sVusername -p9172 -g24 -(g26 -S'\xad#\x00\x00\x00\x00\x00\x00' -tRp9173 -sVkingston -p9174 -g24 -(g26 -S'\x9c\x12\x00\x00\x00\x00\x00\x00' -tRp9175 -sVcontrolled -p9176 -g24 -(g26 -S'\xb6\x07\x00\x00\x00\x00\x00\x00' -tRp9177 -sVtitten -p9178 -g24 -(g26 -S'M"\x00\x00\x00\x00\x00\x00' -tRp9179 -sVpie -p9180 -g24 -(g26 -S'\x17\x19\x00\x00\x00\x00\x00\x00' -tRp9181 -sVcontroller -p9182 -g24 -(g26 -S'\xb7\x07\x00\x00\x00\x00\x00\x00' -tRp9183 -sVexpenditure -p9184 -g24 -(g26 -S'C\x0c\x00\x00\x00\x00\x00\x00' -tRp9185 -sVcams -p9186 -g24 -(g26 -S'\xe3\x04\x00\x00\x00\x00\x00\x00' -tRp9187 -sVdecreased -p9188 -g24 -(g26 -S'\xfa\x08\x00\x00\x00\x00\x00\x00' -tRp9189 -sVsmoking -p9190 -g24 -(g26 -S'H\x1f\x00\x00\x00\x00\x00\x00' -tRp9191 -sVcuts -p9192 -g24 -(g26 -S'\x8f\x08\x00\x00\x00\x00\x00\x00' -tRp9193 -sVgarmin -p9194 -g24 -(g26 -S'6\x0e\x00\x00\x00\x00\x00\x00' -tRp9195 -sVnovel -p9196 -g24 -(g26 -S'\xfb\x16\x00\x00\x00\x00\x00\x00' -tRp9197 -sVglossary -p9198 -g24 -(g26 -S'\x9c\x0e\x00\x00\x00\x00\x00\x00' -tRp9199 -sVharder -p9200 -g24 -(g26 -S'd\x0f\x00\x00\x00\x00\x00\x00' -tRp9201 -sVdeviant -p9202 -g24 -(g26 -S'\x91\t\x00\x00\x00\x00\x00\x00' -tRp9203 -sVowns -p9204 -g24 -(g26 -S'\xea\x17\x00\x00\x00\x00\x00\x00' -tRp9205 -sVexamines -p9206 -g24 -(g26 -S'\x07\x0c\x00\x00\x00\x00\x00\x00' -tRp9207 -sVresident -p9208 -g24 -(g26 -S'\x82\x1c\x00\x00\x00\x00\x00\x00' -tRp9209 -sVdemo -p9210 -g24 -(g26 -S'-\t\x00\x00\x00\x00\x00\x00' -tRp9211 -sVcoating -p9212 -g24 -(g26 -S'x\x06\x00\x00\x00\x00\x00\x00' -tRp9213 -sVsurface -p9214 -g24 -(g26 -S'\xfd \x00\x00\x00\x00\x00\x00' -tRp9215 -sVexamined -p9216 -g24 -(g26 -S'\x06\x0c\x00\x00\x00\x00\x00\x00' -tRp9217 -sVbucks -p9218 -g24 -(g26 -S'p\x04\x00\x00\x00\x00\x00\x00' -tRp9219 -sVcapture -p9220 -g24 -(g26 -S'\xff\x04\x00\x00\x00\x00\x00\x00' -tRp9221 -sVgeneric -p9222 -g24 -(g26 -S'_\x0e\x00\x00\x00\x00\x00\x00' -tRp9223 -sVbegan -p9224 -g24 -(g26 -S'2\x03\x00\x00\x00\x00\x00\x00' -tRp9225 -sVcampus -p9226 -g24 -(g26 -S'\xe2\x04\x00\x00\x00\x00\x00\x00' -tRp9227 -sVstrange -p9228 -g24 -(g26 -S'^ \x00\x00\x00\x00\x00\x00' -tRp9229 -sVspeaker -p9230 -g24 -(g26 -S'\xa3\x1f\x00\x00\x00\x00\x00\x00' -tRp9231 -sVnorthwest -p9232 -g24 -(g26 -S'\xe5\x16\x00\x00\x00\x00\x00\x00' -tRp9233 -sVunderground -p9234 -g24 -(g26 -S'_#\x00\x00\x00\x00\x00\x00' -tRp9235 -sVparty -p9236 -g24 -(g26 -S'O\x18\x00\x00\x00\x00\x00\x00' -tRp9237 -sVhttp -p9238 -g24 -(g26 -S'F\x10\x00\x00\x00\x00\x00\x00' -tRp9239 -sVcontext -p9240 -g24 -(g26 -S'\x9c\x07\x00\x00\x00\x00\x00\x00' -tRp9241 -sVbuzz -p9242 -g24 -(g26 -S'\xab\x04\x00\x00\x00\x00\x00\x00' -tRp9243 -sVeffect -p9244 -g24 -(g26 -S'\x06\x0b\x00\x00\x00\x00\x00\x00' -tRp9245 -sVfrequently -p9246 -g24 -(g26 -S'\xe0\r\x00\x00\x00\x00\x00\x00' -tRp9247 -sVindigenous -p9248 -g24 -(g26 -S'\xf1\x10\x00\x00\x00\x00\x00\x00' -tRp9249 -sVdestruction -p9250 -g24 -(g26 -S'u\t\x00\x00\x00\x00\x00\x00' -tRp9251 -sVpoultry -p9252 -g24 -(g26 -S'\xd5\x19\x00\x00\x00\x00\x00\x00' -tRp9253 -sVtransaction -p9254 -g24 -(g26 -S'\xb4"\x00\x00\x00\x00\x00\x00' -tRp9255 -sVashley -p9256 -g24 -(g26 -S'\x13\x02\x00\x00\x00\x00\x00\x00' -tRp9257 -sVreflection -p9258 -g24 -(g26 -S'\xdd\x1b\x00\x00\x00\x00\x00\x00' -tRp9259 -sVweblog -p9260 -g24 -(g26 -S'\xd3$\x00\x00\x00\x00\x00\x00' -tRp9261 -sVtrials -p9262 -g24 -(g26 -S'\xf0"\x00\x00\x00\x00\x00\x00' -tRp9263 -sVrestore -p9264 -g24 -(g26 -S'\xa3\x1c\x00\x00\x00\x00\x00\x00' -tRp9265 -sVincreasingly -p9266 -g24 -(g26 -S'\xd9\x10\x00\x00\x00\x00\x00\x00' -tRp9267 -sVaccurate -p9268 -g24 -(g26 -S'>\x00\x00\x00\x00\x00\x00\x00' -tRp9269 -sVdose -p9270 -g24 -(g26 -S'b\n\x00\x00\x00\x00\x00\x00' -tRp9271 -sVsources -p9272 -g24 -(g26 -S'\x8c\x1f\x00\x00\x00\x00\x00\x00' -tRp9273 -sVmistakes -p9274 -g24 -(g26 -S'\x9d\x15\x00\x00\x00\x00\x00\x00' -tRp9275 -sVdistant -p9276 -g24 -(g26 -S'\x15\n\x00\x00\x00\x00\x00\x00' -tRp9277 -sVskill -p9278 -g24 -(g26 -S'\x1b\x1f\x00\x00\x00\x00\x00\x00' -tRp9279 -sVlauren -p9280 -g24 -(g26 -S'\x06\x13\x00\x00\x00\x00\x00\x00' -tRp9281 -sVcoordination -p9282 -g24 -(g26 -S'\xdc\x07\x00\x00\x00\x00\x00\x00' -tRp9283 -sVdensity -p9284 -g24 -(g26 -S'=\t\x00\x00\x00\x00\x00\x00' -tRp9285 -sVheaded -p9286 -g24 -(g26 -S'\x89\x0f\x00\x00\x00\x00\x00\x00' -tRp9287 -sVlogged -p9288 -g24 -(g26 -S'\xe0\x13\x00\x00\x00\x00\x00\x00' -tRp9289 -sVpatricia -p9290 -g24 -(g26 -S'm\x18\x00\x00\x00\x00\x00\x00' -tRp9291 -sVextends -p9292 -g24 -(g26 -S'n\x0c\x00\x00\x00\x00\x00\x00' -tRp9293 -sVvids -p9294 -g24 -(g26 -S'($\x00\x00\x00\x00\x00\x00' -tRp9295 -sVriverside -p9296 -g24 -(g26 -S'\x02\x1d\x00\x00\x00\x00\x00\x00' -tRp9297 -sVwarrant -p9298 -g24 -(g26 -S'\xa8$\x00\x00\x00\x00\x00\x00' -tRp9299 -sVkick -p9300 -g24 -(g26 -S'\x89\x12\x00\x00\x00\x00\x00\x00' -tRp9301 -sVsonic -p9302 -g24 -(g26 -S'z\x1f\x00\x00\x00\x00\x00\x00' -tRp9303 -sVfate -p9304 -g24 -(g26 -S'\xbe\x0c\x00\x00\x00\x00\x00\x00' -tRp9305 -sVutah -p9306 -g24 -(g26 -S'\xb7#\x00\x00\x00\x00\x00\x00' -tRp9307 -sVmunich -p9308 -g24 -(g26 -S',\x16\x00\x00\x00\x00\x00\x00' -tRp9309 -sVhistoric -p9310 -g24 -(g26 -S'\xe0\x0f\x00\x00\x00\x00\x00\x00' -tRp9311 -sVburden -p9312 -g24 -(g26 -S'\x8d\x04\x00\x00\x00\x00\x00\x00' -tRp9313 -sVimmediately -p9314 -g24 -(g26 -S'\x9d\x10\x00\x00\x00\x00\x00\x00' -tRp9315 -sVintersection -p9316 -g24 -(g26 -S'\x84\x11\x00\x00\x00\x00\x00\x00' -tRp9317 -sVprominent -p9318 -g24 -(g26 -S'\x87\x1a\x00\x00\x00\x00\x00\x00' -tRp9319 -sVloss -p9320 -g24 -(g26 -S'\x01\x14\x00\x00\x00\x00\x00\x00' -tRp9321 -sVlincoln -p9322 -g24 -(g26 -S'\x93\x13\x00\x00\x00\x00\x00\x00' -tRp9323 -sVimmunology -p9324 -g24 -(g26 -S'\xa1\x10\x00\x00\x00\x00\x00\x00' -tRp9325 -sVlost -p9326 -g24 -(g26 -S'\x03\x14\x00\x00\x00\x00\x00\x00' -tRp9327 -sVsizes -p9328 -g24 -(g26 -S'\x16\x1f\x00\x00\x00\x00\x00\x00' -tRp9329 -sValternatively -p9330 -g24 -(g26 -S',\x01\x00\x00\x00\x00\x00\x00' -tRp9331 -sVring -p9332 -g24 -(g26 -S'\xf5\x1c\x00\x00\x00\x00\x00\x00' -tRp9333 -sVsmilies -p9334 -g24 -(g26 -S'D\x1f\x00\x00\x00\x00\x00\x00' -tRp9335 -sVdictionaries -p9336 -g24 -(g26 -S'\xad\t\x00\x00\x00\x00\x00\x00' -tRp9337 -sVcandy -p9338 -g24 -(g26 -S'\xf0\x04\x00\x00\x00\x00\x00\x00' -tRp9339 -sVsagem -p9340 -g24 -(g26 -S'}\x1d\x00\x00\x00\x00\x00\x00' -tRp9341 -sVpayments -p9342 -g24 -(g26 -S'z\x18\x00\x00\x00\x00\x00\x00' -tRp9343 -sVlose -p9344 -g24 -(g26 -S'\xff\x13\x00\x00\x00\x00\x00\x00' -tRp9345 -sVrefugees -p9346 -g24 -(g26 -S'\xe4\x1b\x00\x00\x00\x00\x00\x00' -tRp9347 -sVpage -p9348 -g24 -(g26 -S'\x00\x18\x00\x00\x00\x00\x00\x00' -tRp9349 -sVshed -p9350 -g24 -(g26 -S'\x9d\x1e\x00\x00\x00\x00\x00\x00' -tRp9351 -sVproteins -p9352 -g24 -(g26 -S'\xb1\x1a\x00\x00\x00\x00\x00\x00' -tRp9353 -sVlibrary -p9354 -g24 -(g26 -S'm\x13\x00\x00\x00\x00\x00\x00' -tRp9355 -sVfrancisco -p9356 -g24 -(g26 -S'\xcc\r\x00\x00\x00\x00\x00\x00' -tRp9357 -sVcleveland -p9358 -g24 -(g26 -S'E\x06\x00\x00\x00\x00\x00\x00' -tRp9359 -sVhome -p9360 -g24 -(g26 -S'\x00\x10\x00\x00\x00\x00\x00\x00' -tRp9361 -sVpeter -p9362 -g24 -(g26 -S'\xd5\x18\x00\x00\x00\x00\x00\x00' -tRp9363 -sVbroad -p9364 -g24 -(g26 -S'K\x04\x00\x00\x00\x00\x00\x00' -tRp9365 -sVdelaware -p9366 -g24 -(g26 -S'\x17\t\x00\x00\x00\x00\x00\x00' -tRp9367 -sVcradle -p9368 -g24 -(g26 -S'3\x08\x00\x00\x00\x00\x00\x00' -tRp9369 -sVwendy -p9370 -g24 -(g26 -S'\xf1$\x00\x00\x00\x00\x00\x00' -tRp9371 -sVdemonstrated -p9372 -g24 -(g26 -S'4\t\x00\x00\x00\x00\x00\x00' -tRp9373 -sVlimitations -p9374 -g24 -(g26 -S'\x8e\x13\x00\x00\x00\x00\x00\x00' -tRp9375 -sVcoated -p9376 -g24 -(g26 -S'w\x06\x00\x00\x00\x00\x00\x00' -tRp9377 -sVmedieval -p9378 -g24 -(g26 -S'\xff\x14\x00\x00\x00\x00\x00\x00' -tRp9379 -sVdecline -p9380 -g24 -(g26 -S'\xf4\x08\x00\x00\x00\x00\x00\x00' -tRp9381 -sVjournal -p9382 -g24 -(g26 -S'8\x12\x00\x00\x00\x00\x00\x00' -tRp9383 -sVlexmark -p9384 -g24 -(g26 -S'_\x13\x00\x00\x00\x00\x00\x00' -tRp9385 -sVmonetary -p9386 -g24 -(g26 -S'\xd3\x15\x00\x00\x00\x00\x00\x00' -tRp9387 -sVexpansion -p9388 -g24 -(g26 -S'<\x0c\x00\x00\x00\x00\x00\x00' -tRp9389 -sVprohibited -p9390 -g24 -(g26 -S'\x80\x1a\x00\x00\x00\x00\x00\x00' -tRp9391 -sVvariation -p9392 -g24 -(g26 -S'\xde#\x00\x00\x00\x00\x00\x00' -tRp9393 -sVoffset -p9394 -g24 -(g26 -S'_\x17\x00\x00\x00\x00\x00\x00' -tRp9395 -sVfreedom -p9396 -g24 -(g26 -S'\xd6\r\x00\x00\x00\x00\x00\x00' -tRp9397 -sVrecognized -p9398 -g24 -(g26 -S'\xac\x1b\x00\x00\x00\x00\x00\x00' -tRp9399 -sVcompatible -p9400 -g24 -(g26 -S'\xeb\x06\x00\x00\x00\x00\x00\x00' -tRp9401 -sVtongue -p9402 -g24 -(g26 -S'f"\x00\x00\x00\x00\x00\x00' -tRp9403 -sVequally -p9404 -g24 -(g26 -S'\xb1\x0b\x00\x00\x00\x00\x00\x00' -tRp9405 -sVglenn -p9406 -g24 -(g26 -S'\x98\x0e\x00\x00\x00\x00\x00\x00' -tRp9407 -sVpreviously -p9408 -g24 -(g26 -S'+\x1a\x00\x00\x00\x00\x00\x00' -tRp9409 -sVwashington -p9410 -g24 -(g26 -S'\xb2$\x00\x00\x00\x00\x00\x00' -tRp9411 -sVreceptor -p9412 -g24 -(g26 -S'\xa4\x1b\x00\x00\x00\x00\x00\x00' -tRp9413 -sVartists -p9414 -g24 -(g26 -S'\x0c\x02\x00\x00\x00\x00\x00\x00' -tRp9415 -sVretrieve -p9416 -g24 -(g26 -S'\xba\x1c\x00\x00\x00\x00\x00\x00' -tRp9417 -sVadditions -p9418 -g24 -(g26 -S'{\x00\x00\x00\x00\x00\x00\x00' -tRp9419 -sVutility -p9420 -g24 -(g26 -S'\xba#\x00\x00\x00\x00\x00\x00' -tRp9421 -sVmississippi -p9422 -g24 -(g26 -S'\x9a\x15\x00\x00\x00\x00\x00\x00' -tRp9423 -sVprozac -p9424 -g24 -(g26 -S'\xc8\x1a\x00\x00\x00\x00\x00\x00' -tRp9425 -sVnetworking -p9426 -g24 -(g26 -S'\x9b\x16\x00\x00\x00\x00\x00\x00' -tRp9427 -sVadditional -p9428 -g24 -(g26 -S'y\x00\x00\x00\x00\x00\x00\x00' -tRp9429 -sVmuseum -p9430 -g24 -(g26 -S'4\x16\x00\x00\x00\x00\x00\x00' -tRp9431 -sVnoticed -p9432 -g24 -(g26 -S'\xf0\x16\x00\x00\x00\x00\x00\x00' -tRp9433 -sVinner -p9434 -g24 -(g26 -S'%\x11\x00\x00\x00\x00\x00\x00' -tRp9435 -sVnotices -p9436 -g24 -(g26 -S'\xf1\x16\x00\x00\x00\x00\x00\x00' -tRp9437 -sVinspiration -p9438 -g24 -(g26 -S'<\x11\x00\x00\x00\x00\x00\x00' -tRp9439 -sVsuzuki -p9440 -g24 -(g26 -S'\x1f!\x00\x00\x00\x00\x00\x00' -tRp9441 -sVhz -p9442 -g24 -(g26 -S'l\x10\x00\x00\x00\x00\x00\x00' -tRp9443 -sVsearches -p9444 -g24 -(g26 -S'\x06\x1e\x00\x00\x00\x00\x00\x00' -tRp9445 -sVcricket -p9446 -g24 -(g26 -S'M\x08\x00\x00\x00\x00\x00\x00' -tRp9447 -sVreceipt -p9448 -g24 -(g26 -S'\x9a\x1b\x00\x00\x00\x00\x00\x00' -tRp9449 -sVnorth -p9450 -g24 -(g26 -S'\xe2\x16\x00\x00\x00\x00\x00\x00' -tRp9451 -sVhr -p9452 -g24 -(g26 -S'@\x10\x00\x00\x00\x00\x00\x00' -tRp9453 -sVhs -p9454 -g24 -(g26 -S'C\x10\x00\x00\x00\x00\x00\x00' -tRp9455 -sVhazardous -p9456 -g24 -(g26 -S'\x82\x0f\x00\x00\x00\x00\x00\x00' -tRp9457 -sVhq -p9458 -g24 -(g26 -S'?\x10\x00\x00\x00\x00\x00\x00' -tRp9459 -sVxerox -p9460 -g24 -(g26 -S'\x87%\x00\x00\x00\x00\x00\x00' -tRp9461 -sVht -p9462 -g24 -(g26 -S'D\x10\x00\x00\x00\x00\x00\x00' -tRp9463 -sVhu -p9464 -g24 -(g26 -S'G\x10\x00\x00\x00\x00\x00\x00' -tRp9465 -sVsubjective -p9466 -g24 -(g26 -S'\x9d \x00\x00\x00\x00\x00\x00' -tRp9467 -sVhk -p9468 -g24 -(g26 -S'\xe8\x0f\x00\x00\x00\x00\x00\x00' -tRp9469 -sVneutral -p9470 -g24 -(g26 -S'\x9e\x16\x00\x00\x00\x00\x00\x00' -tRp9471 -sVhi -p9472 -g24 -(g26 -S'\xc4\x0f\x00\x00\x00\x00\x00\x00' -tRp9473 -sVgoals -p9474 -g24 -(g26 -S'\xa7\x0e\x00\x00\x00\x00\x00\x00' -tRp9475 -sVcourts -p9476 -g24 -(g26 -S'%\x08\x00\x00\x00\x00\x00\x00' -tRp9477 -sVpk -p9478 -g24 -(g26 -S'6\x19\x00\x00\x00\x00\x00\x00' -tRp9479 -sVhb -p9480 -g24 -(g26 -S'\x84\x0f\x00\x00\x00\x00\x00\x00' -tRp9481 -sVhc -p9482 -g24 -(g26 -S'\x85\x0f\x00\x00\x00\x00\x00\x00' -tRp9483 -sVear -p9484 -g24 -(g26 -S'\xc4\n\x00\x00\x00\x00\x00\x00' -tRp9485 -sVeau -p9486 -g24 -(g26 -S'\xda\n\x00\x00\x00\x00\x00\x00' -tRp9487 -sVeat -p9488 -g24 -(g26 -S'\xd8\n\x00\x00\x00\x00\x00\x00' -tRp9489 -sVhd -p9490 -g24 -(g26 -S'\x86\x0f\x00\x00\x00\x00\x00\x00' -tRp9491 -sVconverter -p9492 -g24 -(g26 -S'\xc8\x07\x00\x00\x00\x00\x00\x00' -tRp9493 -sVcells -p9494 -g24 -(g26 -S'_\x05\x00\x00\x00\x00\x00\x00' -tRp9495 -sVhosting -p9496 -g24 -(g26 -S'*\x10\x00\x00\x00\x00\x00\x00' -tRp9497 -sVsigned -p9498 -g24 -(g26 -S'\xe4\x1e\x00\x00\x00\x00\x00\x00' -tRp9499 -sVconverted -p9500 -g24 -(g26 -S'\xc7\x07\x00\x00\x00\x00\x00\x00' -tRp9501 -sVlimit -p9502 -g24 -(g26 -S'\x8c\x13\x00\x00\x00\x00\x00\x00' -tRp9503 -sVwalter -p9504 -g24 -(g26 -S'\x95$\x00\x00\x00\x00\x00\x00' -tRp9505 -sVdisplay -p9506 -g24 -(g26 -S'\n\n\x00\x00\x00\x00\x00\x00' -tRp9507 -sVmechanics -p9508 -g24 -(g26 -S'\xf0\x14\x00\x00\x00\x00\x00\x00' -tRp9509 -sVmarketplace -p9510 -g24 -(g26 -S'\xa2\x14\x00\x00\x00\x00\x00\x00' -tRp9511 -sVreservations -p9512 -g24 -(g26 -S'{\x1c\x00\x00\x00\x00\x00\x00' -tRp9513 -sVuniversal -p9514 -g24 -(g26 -S'x#\x00\x00\x00\x00\x00\x00' -tRp9515 -sVpenny -p9516 -g24 -(g26 -S'\x9f\x18\x00\x00\x00\x00\x00\x00' -tRp9517 -sVgenerating -p9518 -g24 -(g26 -S'Z\x0e\x00\x00\x00\x00\x00\x00' -tRp9519 -sVtwist -p9520 -g24 -(g26 -S'?#\x00\x00\x00\x00\x00\x00' -tRp9521 -sVbeats -p9522 -g24 -(g26 -S'$\x03\x00\x00\x00\x00\x00\x00' -tRp9523 -sVerik -p9524 -g24 -(g26 -S'\xbd\x0b\x00\x00\x00\x00\x00\x00' -tRp9525 -sVeducation -p9526 -g24 -(g26 -S'\xff\n\x00\x00\x00\x00\x00\x00' -tRp9527 -sVeric -p9528 -g24 -(g26 -S'\xbb\x0b\x00\x00\x00\x00\x00\x00' -tRp9529 -sVdiego -p9530 -g24 -(g26 -S'\xb2\t\x00\x00\x00\x00\x00\x00' -tRp9531 -sVfunctions -p9532 -g24 -(g26 -S'\x00\x0e\x00\x00\x00\x00\x00\x00' -tRp9533 -sVperformed -p9534 -g24 -(g26 -S'\xb0\x18\x00\x00\x00\x00\x00\x00' -tRp9535 -sVingredients -p9536 -g24 -(g26 -S'\x16\x11\x00\x00\x00\x00\x00\x00' -tRp9537 -sVoffensive -p9538 -g24 -(g26 -S'Q\x17\x00\x00\x00\x00\x00\x00' -tRp9539 -sVwestminster -p9540 -g24 -(g26 -S'\xf6$\x00\x00\x00\x00\x00\x00' -tRp9541 -sVacrylic -p9542 -g24 -(g26 -S'W\x00\x00\x00\x00\x00\x00\x00' -tRp9543 -sVmonitors -p9544 -g24 -(g26 -S'\xda\x15\x00\x00\x00\x00\x00\x00' -tRp9545 -sVstat -p9546 -g24 -(g26 -S'\x18 \x00\x00\x00\x00\x00\x00' -tRp9547 -sVstar -p9548 -g24 -(g26 -S'\x0e \x00\x00\x00\x00\x00\x00' -tRp9549 -sVprecision -p9550 -g24 -(g26 -S'\xf7\x19\x00\x00\x00\x00\x00\x00' -tRp9551 -sVadditionally -p9552 -g24 -(g26 -S'z\x00\x00\x00\x00\x00\x00\x00' -tRp9553 -sVnintendo -p9554 -g24 -(g26 -S'\xc8\x16\x00\x00\x00\x00\x00\x00' -tRp9555 -sVstan -p9556 -g24 -(g26 -S'\x05 \x00\x00\x00\x00\x00\x00' -tRp9557 -sVfriends -p9558 -g24 -(g26 -S'\xe7\r\x00\x00\x00\x00\x00\x00' -tRp9559 -sVaccidents -p9560 -g24 -(g26 -S',\x00\x00\x00\x00\x00\x00\x00' -tRp9561 -sVamp -p9562 -g24 -(g26 -S'F\x01\x00\x00\x00\x00\x00\x00' -tRp9563 -sVsamsung -p9564 -g24 -(g26 -S'\x96\x1d\x00\x00\x00\x00\x00\x00' -tRp9565 -sVblogs -p9566 -g24 -(g26 -S'\xbb\x03\x00\x00\x00\x00\x00\x00' -tRp9567 -sVmartin -p9568 -g24 -(g26 -S'\xaf\x14\x00\x00\x00\x00\x00\x00' -tRp9569 -sVpersistent -p9570 -g24 -(g26 -S'\xc5\x18\x00\x00\x00\x00\x00\x00' -tRp9571 -sVportion -p9572 -g24 -(g26 -S'\xac\x19\x00\x00\x00\x00\x00\x00' -tRp9573 -sVextras -p9574 -g24 -(g26 -S'y\x0c\x00\x00\x00\x00\x00\x00' -tRp9575 -sVdiagnosis -p9576 -g24 -(g26 -S'\x9d\t\x00\x00\x00\x00\x00\x00' -tRp9577 -sVlives -p9578 -g24 -(g26 -S'\xbc\x13\x00\x00\x00\x00\x00\x00' -tRp9579 -sVvalidation -p9580 -g24 -(g26 -S'\xcb#\x00\x00\x00\x00\x00\x00' -tRp9581 -sVfrankfurt -p9582 -g24 -(g26 -S'\xce\r\x00\x00\x00\x00\x00\x00' -tRp9583 -sVsimpson -p9584 -g24 -(g26 -S'\xf8\x1e\x00\x00\x00\x00\x00\x00' -tRp9585 -sVdynamic -p9586 -g24 -(g26 -S'\xbf\n\x00\x00\x00\x00\x00\x00' -tRp9587 -sVuzbekistan -p9588 -g24 -(g26 -S'\xc0#\x00\x00\x00\x00\x00\x00' -tRp9589 -sVnottingham -p9590 -g24 -(g26 -S'\xf8\x16\x00\x00\x00\x00\x00\x00' -tRp9591 -sVprotest -p9592 -g24 -(g26 -S'\xb2\x1a\x00\x00\x00\x00\x00\x00' -tRp9593 -sVasian -p9594 -g24 -(g26 -S'\x15\x02\x00\x00\x00\x00\x00\x00' -tRp9595 -sVconsists -p9596 -g24 -(g26 -S'p\x07\x00\x00\x00\x00\x00\x00' -tRp9597 -sVcaptain -p9598 -g24 -(g26 -S'\xfe\x04\x00\x00\x00\x00\x00\x00' -tRp9599 -sVaud -p9600 -g24 -(g26 -S'u\x02\x00\x00\x00\x00\x00\x00' -tRp9601 -sVaug -p9602 -g24 -(g26 -S'{\x02\x00\x00\x00\x00\x00\x00' -tRp9603 -sVsegments -p9604 -g24 -(g26 -S'-\x1e\x00\x00\x00\x00\x00\x00' -tRp9605 -sVdisability -p9606 -g24 -(g26 -S'\xdf\t\x00\x00\x00\x00\x00\x00' -tRp9607 -sVcontained -p9608 -g24 -(g26 -S'\x91\x07\x00\x00\x00\x00\x00\x00' -tRp9609 -sVpresents -p9610 -g24 -(g26 -S'\x19\x1a\x00\x00\x00\x00\x00\x00' -tRp9611 -sVaus -p9612 -g24 -(g26 -S'~\x02\x00\x00\x00\x00\x00\x00' -tRp9613 -sVswap -p9614 -g24 -(g26 -S'"!\x00\x00\x00\x00\x00\x00' -tRp9615 -sVteaching -p9616 -g24 -(g26 -S'\x86!\x00\x00\x00\x00\x00\x00' -tRp9617 -sVsorry -p9618 -g24 -(g26 -S'\x80\x1f\x00\x00\x00\x00\x00\x00' -tRp9619 -sVsaver -p9620 -g24 -(g26 -S'\xb6\x1d\x00\x00\x00\x00\x00\x00' -tRp9621 -sVapparatus -p9622 -g24 -(g26 -S'\x9f\x01\x00\x00\x00\x00\x00\x00' -tRp9623 -sVupdated -p9624 -g24 -(g26 -S'\x8d#\x00\x00\x00\x00\x00\x00' -tRp9625 -sVrescue -p9626 -g24 -(g26 -S'u\x1c\x00\x00\x00\x00\x00\x00' -tRp9627 -sVactivation -p9628 -g24 -(g26 -S']\x00\x00\x00\x00\x00\x00\x00' -tRp9629 -sVrelatively -p9630 -g24 -(g26 -S'\x0e\x1c\x00\x00\x00\x00\x00\x00' -tRp9631 -sVgeorgia -p9632 -g24 -(g26 -S'v\x0e\x00\x00\x00\x00\x00\x00' -tRp9633 -sVupdates -p9634 -g24 -(g26 -S'\x8e#\x00\x00\x00\x00\x00\x00' -tRp9635 -sVreforms -p9636 -g24 -(g26 -S'\xe1\x1b\x00\x00\x00\x00\x00\x00' -tRp9637 -sVaffect -p9638 -g24 -(g26 -S'\xbe\x00\x00\x00\x00\x00\x00\x00' -tRp9639 -sVvast -p9640 -g24 -(g26 -S'\xe7#\x00\x00\x00\x00\x00\x00' -tRp9641 -sValpine -p9642 -g24 -(g26 -S'&\x01\x00\x00\x00\x00\x00\x00' -tRp9643 -sVcnet -p9644 -g24 -(g26 -S'm\x06\x00\x00\x00\x00\x00\x00' -tRp9645 -sVbaking -p9646 -g24 -(g26 -S'\xc7\x02\x00\x00\x00\x00\x00\x00' -tRp9647 -sVcrops -p9648 -g24 -(g26 -S'Z\x08\x00\x00\x00\x00\x00\x00' -tRp9649 -sVcompanies -p9650 -g24 -(g26 -S'\xdf\x06\x00\x00\x00\x00\x00\x00' -tRp9651 -sVcommons -p9652 -g24 -(g26 -S'\xd5\x06\x00\x00\x00\x00\x00\x00' -tRp9653 -sVconvenience -p9654 -g24 -(g26 -S'\xbd\x07\x00\x00\x00\x00\x00\x00' -tRp9655 -sVvector -p9656 -g24 -(g26 -S'\xf0#\x00\x00\x00\x00\x00\x00' -tRp9657 -sVcholesterol -p9658 -g24 -(g26 -S'\xe9\x05\x00\x00\x00\x00\x00\x00' -tRp9659 -sVenhance -p9660 -g24 -(g26 -S'{\x0b\x00\x00\x00\x00\x00\x00' -tRp9661 -sVheading -p9662 -g24 -(g26 -S'\x8c\x0f\x00\x00\x00\x00\x00\x00' -tRp9663 -sVclothes -p9664 -g24 -(g26 -S'a\x06\x00\x00\x00\x00\x00\x00' -tRp9665 -sVforce -p9666 -g24 -(g26 -S'\x91\r\x00\x00\x00\x00\x00\x00' -tRp9667 -sVquilt -p9668 -g24 -(g26 -S'&\x1b\x00\x00\x00\x00\x00\x00' -tRp9669 -sVjapanese -p9670 -g24 -(g26 -S'\xf8\x11\x00\x00\x00\x00\x00\x00' -tRp9671 -sVlikely -p9672 -g24 -(g26 -S'\x87\x13\x00\x00\x00\x00\x00\x00' -tRp9673 -sVimplemented -p9674 -g24 -(g26 -S'\xa8\x10\x00\x00\x00\x00\x00\x00' -tRp9675 -sVmonster -p9676 -g24 -(g26 -S'\xde\x15\x00\x00\x00\x00\x00\x00' -tRp9677 -sVasin -p9678 -g24 -(g26 -S'\x17\x02\x00\x00\x00\x00\x00\x00' -tRp9679 -sVpreferences -p9680 -g24 -(g26 -S'\xfe\x19\x00\x00\x00\x00\x00\x00' -tRp9681 -sVintegrity -p9682 -g24 -(g26 -S'b\x11\x00\x00\x00\x00\x00\x00' -tRp9683 -sVpanama -p9684 -g24 -(g26 -S'\x17\x18\x00\x00\x00\x00\x00\x00' -tRp9685 -sVorchestra -p9686 -g24 -(g26 -S'\xa7\x17\x00\x00\x00\x00\x00\x00' -tRp9687 -sVnec -p9688 -g24 -(g26 -S'~\x16\x00\x00\x00\x00\x00\x00' -tRp9689 -sVasia -p9690 -g24 -(g26 -S'\x14\x02\x00\x00\x00\x00\x00\x00' -tRp9691 -sVspokesman -p9692 -g24 -(g26 -S'\xd6\x1f\x00\x00\x00\x00\x00\x00' -tRp9693 -sVlights -p9694 -g24 -(g26 -S'\x82\x13\x00\x00\x00\x00\x00\x00' -tRp9695 -sVfetish -p9696 -g24 -(g26 -S'\xf1\x0c\x00\x00\x00\x00\x00\x00' -tRp9697 -sVtips -p9698 -g24 -(g26 -S'A"\x00\x00\x00\x00\x00\x00' -tRp9699 -sVscanned -p9700 -g24 -(g26 -S'\xc4\x1d\x00\x00\x00\x00\x00\x00' -tRp9701 -sVmetadata -p9702 -g24 -(g26 -S'7\x15\x00\x00\x00\x00\x00\x00' -tRp9703 -sVmed -p9704 -g24 -(g26 -S'\xf3\x14\x00\x00\x00\x00\x00\x00' -tRp9705 -sVdeemed -p9706 -g24 -(g26 -S'\xfd\x08\x00\x00\x00\x00\x00\x00' -tRp9707 -sVmem -p9708 -g24 -(g26 -S'\r\x15\x00\x00\x00\x00\x00\x00' -tRp9709 -sVmel -p9710 -g24 -(g26 -S'\n\x15\x00\x00\x00\x00\x00\x00' -tRp9711 -sVmen -p9712 -g24 -(g26 -S'\x18\x15\x00\x00\x00\x00\x00\x00' -tRp9713 -sVdrew -p9714 -g24 -(g26 -S'\x88\n\x00\x00\x00\x00\x00\x00' -tRp9715 -sVanthropology -p9716 -g24 -(g26 -S'\x87\x01\x00\x00\x00\x00\x00\x00' -tRp9717 -sVmet -p9718 -g24 -(g26 -S'4\x15\x00\x00\x00\x00\x00\x00' -tRp9719 -sVgoverning -p9720 -g24 -(g26 -S'\xc1\x0e\x00\x00\x00\x00\x00\x00' -tRp9721 -sVactive -p9722 -g24 -(g26 -S'^\x00\x00\x00\x00\x00\x00\x00' -tRp9723 -sVdry -p9724 -g24 -(g26 -S'\x9e\n\x00\x00\x00\x00\x00\x00' -tRp9725 -sVluther -p9726 -g24 -(g26 -S'(\x14\x00\x00\x00\x00\x00\x00' -tRp9727 -sVtapes -p9728 -g24 -(g26 -S'k!\x00\x00\x00\x00\x00\x00' -tRp9729 -sVoman -p9730 -g24 -(g26 -S't\x17\x00\x00\x00\x00\x00\x00' -tRp9731 -sVvulnerability -p9732 -g24 -(g26 -S'{$\x00\x00\x00\x00\x00\x00' -tRp9733 -sVcredit -p9734 -g24 -(g26 -S'H\x08\x00\x00\x00\x00\x00\x00' -tRp9735 -sVcindy -p9736 -g24 -(g26 -S'\x08\x06\x00\x00\x00\x00\x00\x00' -tRp9737 -sVpermit -p9738 -g24 -(g26 -S'\xc0\x18\x00\x00\x00\x00\x00\x00' -tRp9739 -sVmime -p9740 -g24 -(g26 -S't\x15\x00\x00\x00\x00\x00\x00' -tRp9741 -sVsuitable -p9742 -g24 -(g26 -S'\xd0 \x00\x00\x00\x00\x00\x00' -tRp9743 -sVjoshua -p9744 -g24 -(g26 -S'7\x12\x00\x00\x00\x00\x00\x00' -tRp9745 -sVfantastic -p9746 -g24 -(g26 -S'\xab\x0c\x00\x00\x00\x00\x00\x00' -tRp9747 -sVfragrances -p9748 -g24 -(g26 -S'\xc3\r\x00\x00\x00\x00\x00\x00' -tRp9749 -sVmyanmar -p9750 -g24 -(g26 -S'B\x16\x00\x00\x00\x00\x00\x00' -tRp9751 -sVmobility -p9752 -g24 -(g26 -S'\xb0\x15\x00\x00\x00\x00\x00\x00' -tRp9753 -sVcounty -p9754 -g24 -(g26 -S'\x19\x08\x00\x00\x00\x00\x00\x00' -tRp9755 -sVspecifics -p9756 -g24 -(g26 -S'\xb7\x1f\x00\x00\x00\x00\x00\x00' -tRp9757 -sVmoral -p9758 -g24 -(g26 -S'\xea\x15\x00\x00\x00\x00\x00\x00' -tRp9759 -sVguests -p9760 -g24 -(g26 -S'\x1e\x0f\x00\x00\x00\x00\x00\x00' -tRp9761 -sVjackets -p9762 -g24 -(g26 -S'\xe6\x11\x00\x00\x00\x00\x00\x00' -tRp9763 -sVcounts -p9764 -g24 -(g26 -S'\x18\x08\x00\x00\x00\x00\x00\x00' -tRp9765 -sVlandscape -p9766 -g24 -(g26 -S'\xde\x12\x00\x00\x00\x00\x00\x00' -tRp9767 -sVarmy -p9768 -g24 -(g26 -S'\xf5\x01\x00\x00\x00\x00\x00\x00' -tRp9769 -sVarms -p9770 -g24 -(g26 -S'\xf3\x01\x00\x00\x00\x00\x00\x00' -tRp9771 -sVedward -p9772 -g24 -(g26 -S'\x02\x0b\x00\x00\x00\x00\x00\x00' -tRp9773 -sVoverhead -p9774 -g24 -(g26 -S'\xe1\x17\x00\x00\x00\x00\x00\x00' -tRp9775 -sVcalm -p9776 -g24 -(g26 -S'\xcf\x04\x00\x00\x00\x00\x00\x00' -tRp9777 -sVbdsm -p9778 -g24 -(g26 -S'\x15\x03\x00\x00\x00\x00\x00\x00' -tRp9779 -sVrecommend -p9780 -g24 -(g26 -S'\xad\x1b\x00\x00\x00\x00\x00\x00' -tRp9781 -sVrobertson -p9782 -g24 -(g26 -S'\x0f\x1d\x00\x00\x00\x00\x00\x00' -tRp9783 -sVtype -p9784 -g24 -(g26 -S'D#\x00\x00\x00\x00\x00\x00' -tRp9785 -sVtell -p9786 -g24 -(g26 -S'\xa5!\x00\x00\x00\x00\x00\x00' -tRp9787 -sVsupporters -p9788 -g24 -(g26 -S'\xf3 \x00\x00\x00\x00\x00\x00' -tRp9789 -sVcomposite -p9790 -g24 -(g26 -S'\x0c\x07\x00\x00\x00\x00\x00\x00' -tRp9791 -sVoscar -p9792 -g24 -(g26 -S'\xc8\x17\x00\x00\x00\x00\x00\x00' -tRp9793 -sVchubby -p9794 -g24 -(g26 -S'\xfd\x05\x00\x00\x00\x00\x00\x00' -tRp9795 -sVwars -p9796 -g24 -(g26 -S'\xae$\x00\x00\x00\x00\x00\x00' -tRp9797 -sVberlin -p9798 -g24 -(g26 -S'\\\x03\x00\x00\x00\x00\x00\x00' -tRp9799 -sVwarm -p9800 -g24 -(g26 -S'\xa2$\x00\x00\x00\x00\x00\x00' -tRp9801 -sVadult -p9802 -g24 -(g26 -S'\x9d\x00\x00\x00\x00\x00\x00\x00' -tRp9803 -sVadware -p9804 -g24 -(g26 -S'\xb7\x00\x00\x00\x00\x00\x00\x00' -tRp9805 -sVward -p9806 -g24 -(g26 -S'\x9f$\x00\x00\x00\x00\x00\x00' -tRp9807 -sVware -p9808 -g24 -(g26 -S'\xa0$\x00\x00\x00\x00\x00\x00' -tRp9809 -sVroom -p9810 -g24 -(g26 -S'.\x1d\x00\x00\x00\x00\x00\x00' -tRp9811 -sVrights -p9812 -g24 -(g26 -S'\xf3\x1c\x00\x00\x00\x00\x00\x00' -tRp9813 -sVsetup -p9814 -g24 -(g26 -S't\x1e\x00\x00\x00\x00\x00\x00' -tRp9815 -sVgasoline -p9816 -g24 -(g26 -S'9\x0e\x00\x00\x00\x00\x00\x00' -tRp9817 -sVgamespot -p9818 -g24 -(g26 -S'(\x0e\x00\x00\x00\x00\x00\x00' -tRp9819 -sVspec -p9820 -g24 -(g26 -S'\xa8\x1f\x00\x00\x00\x00\x00\x00' -tRp9821 -sVmovies -p9822 -g24 -(g26 -S'\x11\x16\x00\x00\x00\x00\x00\x00' -tRp9823 -sVexceptions -p9824 -g24 -(g26 -S'\x12\x0c\x00\x00\x00\x00\x00\x00' -tRp9825 -sVhansen -p9826 -g24 -(g26 -S'X\x0f\x00\x00\x00\x00\x00\x00' -tRp9827 -sVroot -p9828 -g24 -(g26 -S'2\x1d\x00\x00\x00\x00\x00\x00' -tRp9829 -sVnewfoundland -p9830 -g24 -(g26 -S'\xa6\x16\x00\x00\x00\x00\x00\x00' -tRp9831 -sVlistings -p9832 -g24 -(g26 -S'\xab\x13\x00\x00\x00\x00\x00\x00' -tRp9833 -sVsquirting -p9834 -g24 -(g26 -S'\xf1\x1f\x00\x00\x00\x00\x00\x00' -tRp9835 -sVprogramming -p9836 -g24 -(g26 -S'|\x1a\x00\x00\x00\x00\x00\x00' -tRp9837 -sVhoney -p9838 -g24 -(g26 -S'\x0b\x10\x00\x00\x00\x00\x00\x00' -tRp9839 -sVfoods -p9840 -g24 -(g26 -S'\x89\r\x00\x00\x00\x00\x00\x00' -tRp9841 -sVtransactions -p9842 -g24 -(g26 -S'\xb5"\x00\x00\x00\x00\x00\x00' -tRp9843 -sVaging -p9844 -g24 -(g26 -S'\xd8\x00\x00\x00\x00\x00\x00\x00' -tRp9845 -sVamazing -p9846 -g24 -(g26 -S'4\x01\x00\x00\x00\x00\x00\x00' -tRp9847 -sVanswer -p9848 -g24 -(g26 -S'\x7f\x01\x00\x00\x00\x00\x00\x00' -tRp9849 -sVconfig -p9850 -g24 -(g26 -S'>\x07\x00\x00\x00\x00\x00\x00' -tRp9851 -sVblanket -p9852 -g24 -(g26 -S'\xab\x03\x00\x00\x00\x00\x00\x00' -tRp9853 -sVwallpapers -p9854 -g24 -(g26 -S'\x91$\x00\x00\x00\x00\x00\x00' -tRp9855 -sVminority -p9856 -g24 -(g26 -S'\x89\x15\x00\x00\x00\x00\x00\x00' -tRp9857 -sVreplacing -p9858 -g24 -(g26 -S'K\x1c\x00\x00\x00\x00\x00\x00' -tRp9859 -sVcadillac -p9860 -g24 -(g26 -S'\xba\x04\x00\x00\x00\x00\x00\x00' -tRp9861 -sVmanuals -p9862 -g24 -(g26 -S'~\x14\x00\x00\x00\x00\x00\x00' -tRp9863 -sVpresident -p9864 -g24 -(g26 -S'\x1c\x1a\x00\x00\x00\x00\x00\x00' -tRp9865 -sVdeutsche -p9866 -g24 -(g26 -S'\x84\t\x00\x00\x00\x00\x00\x00' -tRp9867 -sVlesbian -p9868 -g24 -(g26 -S'M\x13\x00\x00\x00\x00\x00\x00' -tRp9869 -sVshaw -p9870 -g24 -(g26 -S'\x9c\x1e\x00\x00\x00\x00\x00\x00' -tRp9871 -sVpurchase -p9872 -g24 -(g26 -S'\xec\x1a\x00\x00\x00\x00\x00\x00' -tRp9873 -sVattempt -p9874 -g24 -(g26 -S']\x02\x00\x00\x00\x00\x00\x00' -tRp9875 -sVcumshots -p9876 -g24 -(g26 -S'v\x08\x00\x00\x00\x00\x00\x00' -tRp9877 -sVmaintain -p9878 -g24 -(g26 -S'V\x14\x00\x00\x00\x00\x00\x00' -tRp9879 -sVethernet -p9880 -g24 -(g26 -S'\xde\x0b\x00\x00\x00\x00\x00\x00' -tRp9881 -sVoperate -p9882 -g24 -(g26 -S'\x87\x17\x00\x00\x00\x00\x00\x00' -tRp9883 -sVathletes -p9884 -g24 -(g26 -S'J\x02\x00\x00\x00\x00\x00\x00' -tRp9885 -sVoperations -p9886 -g24 -(g26 -S'\x8d\x17\x00\x00\x00\x00\x00\x00' -tRp9887 -sVvibrators -p9888 -g24 -(g26 -S'\x1c$\x00\x00\x00\x00\x00\x00' -tRp9889 -sVdeck -p9890 -g24 -(g26 -S'\xf0\x08\x00\x00\x00\x00\x00\x00' -tRp9891 -sVmurray -p9892 -g24 -(g26 -S'1\x16\x00\x00\x00\x00\x00\x00' -tRp9893 -sVhelena -p9894 -g24 -(g26 -S'\xac\x0f\x00\x00\x00\x00\x00\x00' -tRp9895 -sVkeyboard -p9896 -g24 -(g26 -S'\x83\x12\x00\x00\x00\x00\x00\x00' -tRp9897 -sVscoring -p9898 -g24 -(g26 -S'\xe7\x1d\x00\x00\x00\x00\x00\x00' -tRp9899 -sVpersonal -p9900 -g24 -(g26 -S'\xc7\x18\x00\x00\x00\x00\x00\x00' -tRp9901 -sVcrew -p9902 -g24 -(g26 -S'L\x08\x00\x00\x00\x00\x00\x00' -tRp9903 -sVbetter -p9904 -g24 -(g26 -S'f\x03\x00\x00\x00\x00\x00\x00' -tRp9905 -sVdifferently -p9906 -g24 -(g26 -S'\xbd\t\x00\x00\x00\x00\x00\x00' -tRp9907 -sVweeks -p9908 -g24 -(g26 -S'\xe5$\x00\x00\x00\x00\x00\x00' -tRp9909 -sVovercome -p9910 -g24 -(g26 -S'\xe0\x17\x00\x00\x00\x00\x00\x00' -tRp9911 -sVdonors -p9912 -g24 -(g26 -S'[\n\x00\x00\x00\x00\x00\x00' -tRp9913 -sVbelarus -p9914 -g24 -(g26 -S'>\x03\x00\x00\x00\x00\x00\x00' -tRp9915 -sVcombination -p9916 -g24 -(g26 -S'\xae\x06\x00\x00\x00\x00\x00\x00' -tRp9917 -sVworkout -p9918 -g24 -(g26 -S'T%\x00\x00\x00\x00\x00\x00' -tRp9919 -sVacademics -p9920 -g24 -(g26 -S'\x1a\x00\x00\x00\x00\x00\x00\x00' -tRp9921 -sVtherapy -p9922 -g24 -(g26 -S'\xf1!\x00\x00\x00\x00\x00\x00' -tRp9923 -sVgrammar -p9924 -g24 -(g26 -S'\xd6\x0e\x00\x00\x00\x00\x00\x00' -tRp9925 -sVmeat -p9926 -g24 -(g26 -S'\xee\x14\x00\x00\x00\x00\x00\x00' -tRp9927 -sVsbjct -p9928 -g24 -(g26 -S'\xbf\x1d\x00\x00\x00\x00\x00\x00' -tRp9929 -sVarrested -p9930 -g24 -(g26 -S'\xfd\x01\x00\x00\x00\x00\x00\x00' -tRp9931 -sVlucy -p9932 -g24 -(g26 -S'"\x14\x00\x00\x00\x00\x00\x00' -tRp9933 -sVprerequisite -p9934 -g24 -(g26 -S'\x0f\x1a\x00\x00\x00\x00\x00\x00' -tRp9935 -sVmounts -p9936 -g24 -(g26 -S'\x08\x16\x00\x00\x00\x00\x00\x00' -tRp9937 -sVacoustic -p9938 -g24 -(g26 -S'O\x00\x00\x00\x00\x00\x00\x00' -tRp9939 -sVwent -p9940 -g24 -(g26 -S'\xf2$\x00\x00\x00\x00\x00\x00' -tRp9941 -sVmeal -p9942 -g24 -(g26 -S'\xe1\x14\x00\x00\x00\x00\x00\x00' -tRp9943 -sVbone -p9944 -g24 -(g26 -S'\xdf\x03\x00\x00\x00\x00\x00\x00' -tRp9945 -sVbond -p9946 -g24 -(g26 -S'\xdc\x03\x00\x00\x00\x00\x00\x00' -tRp9947 -sVadobe -p9948 -g24 -(g26 -S'\x95\x00\x00\x00\x00\x00\x00\x00' -tRp9949 -sVprinciples -p9950 -g24 -(g26 -S':\x1a\x00\x00\x00\x00\x00\x00' -tRp9951 -sVskins -p9952 -g24 -(g26 -S'\x1f\x1f\x00\x00\x00\x00\x00\x00' -tRp9953 -sVmilan -p9954 -g24 -(g26 -S'c\x15\x00\x00\x00\x00\x00\x00' -tRp9955 -sVtaught -p9956 -g24 -(g26 -S'u!\x00\x00\x00\x00\x00\x00' -tRp9957 -sVtrading -p9958 -g24 -(g26 -S'\xa0"\x00\x00\x00\x00\x00\x00' -tRp9959 -sVdoug -p9960 -g24 -(g26 -S'f\n\x00\x00\x00\x00\x00\x00' -tRp9961 -sVnavy -p9962 -g24 -(g26 -S'q\x16\x00\x00\x00\x00\x00\x00' -tRp9963 -sVtemporary -p9964 -g24 -(g26 -S'\xb0!\x00\x00\x00\x00\x00\x00' -tRp9965 -sVdawn -p9966 -g24 -(g26 -S'\xc9\x08\x00\x00\x00\x00\x00\x00' -tRp9967 -sVcollector -p9968 -g24 -(g26 -S'\x99\x06\x00\x00\x00\x00\x00\x00' -tRp9969 -sVenclosure -p9970 -g24 -(g26 -S'X\x0b\x00\x00\x00\x00\x00\x00' -tRp9971 -sVfatty -p9972 -g24 -(g26 -S'\xc1\x0c\x00\x00\x00\x00\x00\x00' -tRp9973 -sVmerchants -p9974 -g24 -(g26 -S'$\x15\x00\x00\x00\x00\x00\x00' -tRp9975 -sVvelvet -p9976 -g24 -(g26 -S'\xf9#\x00\x00\x00\x00\x00\x00' -tRp9977 -sVsluts -p9978 -g24 -(g26 -S'<\x1f\x00\x00\x00\x00\x00\x00' -tRp9979 -sVrestricted -p9980 -g24 -(g26 -S'\xa6\x1c\x00\x00\x00\x00\x00\x00' -tRp9981 -sVtales -p9982 -g24 -(g26 -S']!\x00\x00\x00\x00\x00\x00' -tRp9983 -sVcrucial -p9984 -g24 -(g26 -S'`\x08\x00\x00\x00\x00\x00\x00' -tRp9985 -sVparticles -p9986 -g24 -(g26 -S'D\x18\x00\x00\x00\x00\x00\x00' -tRp9987 -sVreader -p9988 -g24 -(g26 -S'|\x1b\x00\x00\x00\x00\x00\x00' -tRp9989 -sVsurprise -p9990 -g24 -(g26 -S'\x07!\x00\x00\x00\x00\x00\x00' -tRp9991 -sVvenezuela -p9992 -g24 -(g26 -S'\xfc#\x00\x00\x00\x00\x00\x00' -tRp9993 -sVfoto -p9994 -g24 -(g26 -S'\xb4\r\x00\x00\x00\x00\x00\x00' -tRp9995 -sVturning -p9996 -g24 -(g26 -S'3#\x00\x00\x00\x00\x00\x00' -tRp9997 -sVlinear -p9998 -g24 -(g26 -S'\x97\x13\x00\x00\x00\x00\x00\x00' -tRp9999 -sVresume -p10000 -g24 -(g26 -S'\xae\x1c\x00\x00\x00\x00\x00\x00' -tRp10001 -sVrevenge -p10002 -g24 -(g26 -S'\xc8\x1c\x00\x00\x00\x00\x00\x00' -tRp10003 -sVaboriginal -p10004 -g24 -(g26 -S'\n\x00\x00\x00\x00\x00\x00\x00' -tRp10005 -sVstruggle -p10006 -g24 -(g26 -S'\x83 \x00\x00\x00\x00\x00\x00' -tRp10007 -sVmistress -p10008 -g24 -(g26 -S'\x9e\x15\x00\x00\x00\x00\x00\x00' -tRp10009 -sVlogging -p10010 -g24 -(g26 -S'\xe1\x13\x00\x00\x00\x00\x00\x00' -tRp10011 -sVstarts -p10012 -g24 -(g26 -S'\x16 \x00\x00\x00\x00\x00\x00' -tRp10013 -sVisp -p10014 -g24 -(g26 -S'\xcf\x11\x00\x00\x00\x00\x00\x00' -tRp10015 -sVmessages -p10016 -g24 -(g26 -S'1\x15\x00\x00\x00\x00\x00\x00' -tRp10017 -sVist -p10018 -g24 -(g26 -S'\xd6\x11\x00\x00\x00\x00\x00\x00' -tRp10019 -sViso -p10020 -g24 -(g26 -S'\xcc\x11\x00\x00\x00\x00\x00\x00' -tRp10021 -sVsignature -p10022 -g24 -(g26 -S'\xe2\x1e\x00\x00\x00\x00\x00\x00' -tRp10023 -sVmoving -p10024 -g24 -(g26 -S'\x12\x16\x00\x00\x00\x00\x00\x00' -tRp10025 -sVisa -p10026 -g24 -(g26 -S'\xc4\x11\x00\x00\x00\x00\x00\x00' -tRp10027 -sVloud -p10028 -g24 -(g26 -S'\t\x14\x00\x00\x00\x00\x00\x00' -tRp10029 -sVstewart -p10030 -g24 -(g26 -S'@ \x00\x00\x00\x00\x00\x00' -tRp10031 -sVnaughty -p10032 -g24 -(g26 -S'k\x16\x00\x00\x00\x00\x00\x00' -tRp10033 -sVfeatures -p10034 -g24 -(g26 -S'\xd3\x0c\x00\x00\x00\x00\x00\x00' -tRp10035 -sVgrade -p10036 -g24 -(g26 -S'\xcd\x0e\x00\x00\x00\x00\x00\x00' -tRp10037 -sVthereof -p10038 -g24 -(g26 -S'\xf2!\x00\x00\x00\x00\x00\x00' -tRp10039 -sVhook -p10040 -g24 -(g26 -S'\x11\x10\x00\x00\x00\x00\x00\x00' -tRp10041 -sVfeatured -p10042 -g24 -(g26 -S'\xd2\x0c\x00\x00\x00\x00\x00\x00' -tRp10043 -sVfloors -p10044 -g24 -(g26 -S'^\r\x00\x00\x00\x00\x00\x00' -tRp10045 -sVhood -p10046 -g24 -(g26 -S'\x10\x10\x00\x00\x00\x00\x00\x00' -tRp10047 -sVannotated -p10048 -g24 -(g26 -S't\x01\x00\x00\x00\x00\x00\x00' -tRp10049 -sVrecruiting -p10050 -g24 -(g26 -S'\xbf\x1b\x00\x00\x00\x00\x00\x00' -tRp10051 -sVtwisted -p10052 -g24 -(g26 -S'@#\x00\x00\x00\x00\x00\x00' -tRp10053 -sVboating -p10054 -g24 -(g26 -S'\xd0\x03\x00\x00\x00\x00\x00\x00' -tRp10055 -sVhollywood -p10056 -g24 -(g26 -S'\xfc\x0f\x00\x00\x00\x00\x00\x00' -tRp10057 -sVguidelines -p10058 -g24 -(g26 -S'#\x0f\x00\x00\x00\x00\x00\x00' -tRp10059 -sValfred -p10060 -g24 -(g26 -S'\x07\x01\x00\x00\x00\x00\x00\x00' -tRp10061 -sVgym -p10062 -g24 -(g26 -S'1\x0f\x00\x00\x00\x00\x00\x00' -tRp10063 -sVvillages -p10064 -g24 -(g26 -S'8$\x00\x00\x00\x00\x00\x00' -tRp10065 -sVsomewhat -p10066 -g24 -(g26 -S'v\x1f\x00\x00\x00\x00\x00\x00' -tRp10067 -sVhelen -p10068 -g24 -(g26 -S'\xab\x0f\x00\x00\x00\x00\x00\x00' -tRp10069 -sVbegins -p10070 -g24 -(g26 -S'7\x03\x00\x00\x00\x00\x00\x00' -tRp10071 -sVdistance -p10072 -g24 -(g26 -S'\x13\n\x00\x00\x00\x00\x00\x00' -tRp10073 -sVanxiety -p10074 -g24 -(g26 -S'\x91\x01\x00\x00\x00\x00\x00\x00' -tRp10075 -sVkeyword -p10076 -g24 -(g26 -S'\x86\x12\x00\x00\x00\x00\x00\x00' -tRp10077 -sVprinceton -p10078 -g24 -(g26 -S'7\x1a\x00\x00\x00\x00\x00\x00' -tRp10079 -sVsoonest -p10080 -g24 -(g26 -S'~\x1f\x00\x00\x00\x00\x00\x00' -tRp10081 -sVstructures -p10082 -g24 -(g26 -S'\x82 \x00\x00\x00\x00\x00\x00' -tRp10083 -sVdatabase -p10084 -g24 -(g26 -S'\xbd\x08\x00\x00\x00\x00\x00\x00' -tRp10085 -sVenabled -p10086 -g24 -(g26 -S'S\x0b\x00\x00\x00\x00\x00\x00' -tRp10087 -sVpreparation -p10088 -g24 -(g26 -S'\x0b\x1a\x00\x00\x00\x00\x00\x00' -tRp10089 -sVmatter -p10090 -g24 -(g26 -S'\xcf\x14\x00\x00\x00\x00\x00\x00' -tRp10091 -sVsolomon -p10092 -g24 -(g26 -S'l\x1f\x00\x00\x00\x00\x00\x00' -tRp10093 -sVstreet -p10094 -g24 -(g26 -S'g \x00\x00\x00\x00\x00\x00' -tRp10095 -sVsilly -p10096 -g24 -(g26 -S'\xef\x1e\x00\x00\x00\x00\x00\x00' -tRp10097 -sVknights -p10098 -g24 -(g26 -S'\xaa\x12\x00\x00\x00\x00\x00\x00' -tRp10099 -sVenables -p10100 -g24 -(g26 -S'T\x0b\x00\x00\x00\x00\x00\x00' -tRp10101 -sVbidder -p10102 -g24 -(g26 -S'v\x03\x00\x00\x00\x00\x00\x00' -tRp10103 -sVmini -p10104 -g24 -(g26 -S'{\x15\x00\x00\x00\x00\x00\x00' -tRp10105 -sVsees -p10106 -g24 -(g26 -S'*\x1e\x00\x00\x00\x00\x00\x00' -tRp10107 -sVpalace -p10108 -g24 -(g26 -S'\x0e\x18\x00\x00\x00\x00\x00\x00' -tRp10109 -sVmodern -p10110 -g24 -(g26 -S'\xbc\x15\x00\x00\x00\x00\x00\x00' -tRp10111 -sVmind -p10112 -g24 -(g26 -S'v\x15\x00\x00\x00\x00\x00\x00' -tRp10113 -sVeyes -p10114 -g24 -(g26 -S'~\x0c\x00\x00\x00\x00\x00\x00' -tRp10115 -sVseed -p10116 -g24 -(g26 -S'!\x1e\x00\x00\x00\x00\x00\x00' -tRp10117 -sVseen -p10118 -g24 -(g26 -S')\x1e\x00\x00\x00\x00\x00\x00' -tRp10119 -sVtheology -p10120 -g24 -(g26 -S'\xea!\x00\x00\x00\x00\x00\x00' -tRp10121 -sVmint -p10122 -g24 -(g26 -S'\x8b\x15\x00\x00\x00\x00\x00\x00' -tRp10123 -sVtells -p10124 -g24 -(g26 -S'\xa7!\x00\x00\x00\x00\x00\x00' -tRp10125 -sVfitting -p10126 -g24 -(g26 -S'A\r\x00\x00\x00\x00\x00\x00' -tRp10127 -sVchess -p10128 -g24 -(g26 -S'\xd0\x05\x00\x00\x00\x00\x00\x00' -tRp10129 -sVpanties -p10130 -g24 -(g26 -S'\x1c\x18\x00\x00\x00\x00\x00\x00' -tRp10131 -sVmoscow -p10132 -g24 -(g26 -S'\xf3\x15\x00\x00\x00\x00\x00\x00' -tRp10133 -sVdavidson -p10134 -g24 -(g26 -S'\xc7\x08\x00\x00\x00\x00\x00\x00' -tRp10135 -sVmemorabilia -p10136 -g24 -(g26 -S'\x13\x15\x00\x00\x00\x00\x00\x00' -tRp10137 -sVtranslator -p10138 -g24 -(g26 -S'\xc6"\x00\x00\x00\x00\x00\x00' -tRp10139 -sVmario -p10140 -g24 -(g26 -S'\x99\x14\x00\x00\x00\x00\x00\x00' -tRp10141 -sVregular -p10142 -g24 -(g26 -S'\xfa\x1b\x00\x00\x00\x00\x00\x00' -tRp10143 -sVmeaning -p10144 -g24 -(g26 -S'\xe4\x14\x00\x00\x00\x00\x00\x00' -tRp10145 -sVpest -p10146 -g24 -(g26 -S'\xd2\x18\x00\x00\x00\x00\x00\x00' -tRp10147 -sVmarie -p10148 -g24 -(g26 -S'\x94\x14\x00\x00\x00\x00\x00\x00' -tRp10149 -sVmaria -p10150 -g24 -(g26 -S'\x92\x14\x00\x00\x00\x00\x00\x00' -tRp10151 -sVzealand -p10152 -g24 -(g26 -S'\xb7%\x00\x00\x00\x00\x00\x00' -tRp10153 -sVdon -p10154 -g24 -(g26 -S'S\n\x00\x00\x00\x00\x00\x00' -tRp10155 -sVobservation -p10156 -g24 -(g26 -S'/\x17\x00\x00\x00\x00\x00\x00' -tRp10157 -sVdom -p10158 -g24 -(g26 -S'L\n\x00\x00\x00\x00\x00\x00' -tRp10159 -sVdoc -p10160 -g24 -(g26 -S'6\n\x00\x00\x00\x00\x00\x00' -tRp10161 -sValarm -p10162 -g24 -(g26 -S'\xf8\x00\x00\x00\x00\x00\x00\x00' -tRp10163 -sVdog -p10164 -g24 -(g26 -S'E\n\x00\x00\x00\x00\x00\x00' -tRp10165 -sVdod -p10166 -g24 -(g26 -S'A\n\x00\x00\x00\x00\x00\x00' -tRp10167 -sVdoe -p10168 -g24 -(g26 -S'C\n\x00\x00\x00\x00\x00\x00' -tRp10169 -sVcompetitors -p10170 -g24 -(g26 -S'\xf3\x06\x00\x00\x00\x00\x00\x00' -tRp10171 -sVdefinitely -p10172 -g24 -(g26 -S'\x11\t\x00\x00\x00\x00\x00\x00' -tRp10173 -sVprinciple -p10174 -g24 -(g26 -S'9\x1a\x00\x00\x00\x00\x00\x00' -tRp10175 -sVdos -p10176 -g24 -(g26 -S'`\n\x00\x00\x00\x00\x00\x00' -tRp10177 -sVconsumer -p10178 -g24 -(g26 -S'\x89\x07\x00\x00\x00\x00\x00\x00' -tRp10179 -sVdow -p10180 -g24 -(g26 -S'i\n\x00\x00\x00\x00\x00\x00' -tRp10181 -sVdot -p10182 -g24 -(g26 -S'c\n\x00\x00\x00\x00\x00\x00' -tRp10183 -sVdover -p10184 -g24 -(g26 -S'h\n\x00\x00\x00\x00\x00\x00' -tRp10185 -sVaquatic -p10186 -g24 -(g26 -S'\xce\x01\x00\x00\x00\x00\x00\x00' -tRp10187 -sVlyrics -p10188 -g24 -(g26 -S'/\x14\x00\x00\x00\x00\x00\x00' -tRp10189 -sVhunger -p10190 -g24 -(g26 -S'Z\x10\x00\x00\x00\x00\x00\x00' -tRp10191 -sVringtones -p10192 -g24 -(g26 -S'\xf8\x1c\x00\x00\x00\x00\x00\x00' -tRp10193 -sVvisitor -p10194 -g24 -(g26 -S'R$\x00\x00\x00\x00\x00\x00' -tRp10195 -sVprobe -p10196 -g24 -(g26 -S'R\x1a\x00\x00\x00\x00\x00\x00' -tRp10197 -sVsyntax -p10198 -g24 -(g26 -S'@!\x00\x00\x00\x00\x00\x00' -tRp10199 -sVkruger -p10200 -g24 -(g26 -S'\xba\x12\x00\x00\x00\x00\x00\x00' -tRp10201 -sVattempts -p10202 -g24 -(g26 -S'`\x02\x00\x00\x00\x00\x00\x00' -tRp10203 -sVpoison -p10204 -g24 -(g26 -S'\x80\x19\x00\x00\x00\x00\x00\x00' -tRp10205 -sVnevada -p10206 -g24 -(g26 -S'\x9f\x16\x00\x00\x00\x00\x00\x00' -tRp10207 -sVjudges -p10208 -g24 -(g26 -S'G\x12\x00\x00\x00\x00\x00\x00' -tRp10209 -sVnortheast -p10210 -g24 -(g26 -S'\xe3\x16\x00\x00\x00\x00\x00\x00' -tRp10211 -sVphotographic -p10212 -g24 -(g26 -S'\xfa\x18\x00\x00\x00\x00\x00\x00' -tRp10213 -sVexplain -p10214 -g24 -(g26 -S'U\x0c\x00\x00\x00\x00\x00\x00' -tRp10215 -sVacne -p10216 -g24 -(g26 -S'N\x00\x00\x00\x00\x00\x00\x00' -tRp10217 -sVsugar -p10218 -g24 -(g26 -S'\xc7 \x00\x00\x00\x00\x00\x00' -tRp10219 -sVsexcam -p10220 -g24 -(g26 -S'z\x1e\x00\x00\x00\x00\x00\x00' -tRp10221 -sVintegrate -p10222 -g24 -(g26 -S'^\x11\x00\x00\x00\x00\x00\x00' -tRp10223 -sVfolder -p10224 -g24 -(g26 -S'|\r\x00\x00\x00\x00\x00\x00' -tRp10225 -sVbahrain -p10226 -g24 -(g26 -S'\xc4\x02\x00\x00\x00\x00\x00\x00' -tRp10227 -sVmonica -p10228 -g24 -(g26 -S'\xd6\x15\x00\x00\x00\x00\x00\x00' -tRp10229 -sVexports -p10230 -g24 -(g26 -S'c\x0c\x00\x00\x00\x00\x00\x00' -tRp10231 -sVstop -p10232 -g24 -(g26 -S'O \x00\x00\x00\x00\x00\x00' -tRp10233 -sVcoast -p10234 -g24 -(g26 -S't\x06\x00\x00\x00\x00\x00\x00' -tRp10235 -sVchristopher -p10236 -g24 -(g26 -S'\xf7\x05\x00\x00\x00\x00\x00\x00' -tRp10237 -sVsaturn -p10238 -g24 -(g26 -S'\xaf\x1d\x00\x00\x00\x00\x00\x00' -tRp10239 -sVcomply -p10240 -g24 -(g26 -S'\x07\x07\x00\x00\x00\x00\x00\x00' -tRp10241 -sVearl -p10242 -g24 -(g26 -S'\xc5\n\x00\x00\x00\x00\x00\x00' -tRp10243 -sVbat -p10244 -g24 -(g26 -S'\x03\x03\x00\x00\x00\x00\x00\x00' -tRp10245 -sVbar -p10246 -g24 -(g26 -S'\xe3\x02\x00\x00\x00\x00\x00\x00' -tRp10247 -sVfields -p10248 -g24 -(g26 -S'\xfb\x0c\x00\x00\x00\x00\x00\x00' -tRp10249 -sVdisco -p10250 -g24 -(g26 -S'\xee\t\x00\x00\x00\x00\x00\x00' -tRp10251 -sVreload -p10252 -g24 -(g26 -S'\x1f\x1c\x00\x00\x00\x00\x00\x00' -tRp10253 -sVbad -p10254 -g24 -(g26 -S'\xbd\x02\x00\x00\x00\x00\x00\x00' -tRp10255 -sVdiscs -p10256 -g24 -(g26 -S'\xf8\t\x00\x00\x00\x00\x00\x00' -tRp10257 -sVarchitecture -p10258 -g24 -(g26 -S'\xdc\x01\x00\x00\x00\x00\x00\x00' -tRp10259 -sVban -p10260 -g24 -(g26 -S'\xd2\x02\x00\x00\x00\x00\x00\x00' -tRp10261 -sVcounters -p10262 -g24 -(g26 -S'\x13\x08\x00\x00\x00\x00\x00\x00' -tRp10263 -sVears -p10264 -g24 -(g26 -S'\xce\n\x00\x00\x00\x00\x00\x00' -tRp10265 -sVethical -p10266 -g24 -(g26 -S'\xdf\x0b\x00\x00\x00\x00\x00\x00' -tRp10267 -sVfascinating -p10268 -g24 -(g26 -S'\xb7\x0c\x00\x00\x00\x00\x00\x00' -tRp10269 -sVtesting -p10270 -g24 -(g26 -S'\xcd!\x00\x00\x00\x00\x00\x00' -tRp10271 -sVzones -p10272 -g24 -(g26 -S'\xbf%\x00\x00\x00\x00\x00\x00' -tRp10273 -sVdecided -p10274 -g24 -(g26 -S'\xec\x08\x00\x00\x00\x00\x00\x00' -tRp10275 -sVhit -p10276 -g24 -(g26 -S'\xe3\x0f\x00\x00\x00\x00\x00\x00' -tRp10277 -sVsubject -p10278 -g24 -(g26 -S'\x9c \x00\x00\x00\x00\x00\x00' -tRp10279 -sVpete -p10280 -g24 -(g26 -S'\xd4\x18\x00\x00\x00\x00\x00\x00' -tRp10281 -sVsaid -p10282 -g24 -(g26 -S'~\x1d\x00\x00\x00\x00\x00\x00' -tRp10283 -sVinappropriate -p10284 -g24 -(g26 -S'\xbe\x10\x00\x00\x00\x00\x00\x00' -tRp10285 -sVsail -p10286 -g24 -(g26 -S'\x7f\x1d\x00\x00\x00\x00\x00\x00' -tRp10287 -sVshaved -p10288 -g24 -(g26 -S'\x9b\x1e\x00\x00\x00\x00\x00\x00' -tRp10289 -sVartificial -p10290 -g24 -(g26 -S'\t\x02\x00\x00\x00\x00\x00\x00' -tRp10291 -sVfilename -p10292 -g24 -(g26 -S'\x08\r\x00\x00\x00\x00\x00\x00' -tRp10293 -sVorgy -p10294 -g24 -(g26 -S'\xbd\x17\x00\x00\x00\x00\x00\x00' -tRp10295 -sVolympics -p10296 -g24 -(g26 -S'p\x17\x00\x00\x00\x00\x00\x00' -tRp10297 -sVpets -p10298 -g24 -(g26 -S'\xdb\x18\x00\x00\x00\x00\x00\x00' -tRp10299 -sVsorts -p10300 -g24 -(g26 -S'\x83\x1f\x00\x00\x00\x00\x00\x00' -tRp10301 -sVtolerance -p10302 -g24 -(g26 -S'["\x00\x00\x00\x00\x00\x00' -tRp10303 -sVwarrior -p10304 -g24 -(g26 -S'\xac$\x00\x00\x00\x00\x00\x00' -tRp10305 -sVlazy -p10306 -g24 -(g26 -S'\x12\x13\x00\x00\x00\x00\x00\x00' -tRp10307 -sVvitamin -p10308 -g24 -(g26 -S'X$\x00\x00\x00\x00\x00\x00' -tRp10309 -sVvernon -p10310 -g24 -(g26 -S'\n$\x00\x00\x00\x00\x00\x00' -tRp10311 -sVharvard -p10312 -g24 -(g26 -S's\x0f\x00\x00\x00\x00\x00\x00' -tRp10313 -sVmodeling -p10314 -g24 -(g26 -S'\xb4\x15\x00\x00\x00\x00\x00\x00' -tRp10315 -sVpicking -p10316 -g24 -(g26 -S'\x10\x19\x00\x00\x00\x00\x00\x00' -tRp10317 -sVsuggested -p10318 -g24 -(g26 -S'\xc9 \x00\x00\x00\x00\x00\x00' -tRp10319 -sVresistant -p10320 -g24 -(g26 -S'\x87\x1c\x00\x00\x00\x00\x00\x00' -tRp10321 -sVuncertainty -p10322 -g24 -(g26 -S'Z#\x00\x00\x00\x00\x00\x00' -tRp10323 -sVscuba -p10324 -g24 -(g26 -S'\xfb\x1d\x00\x00\x00\x00\x00\x00' -tRp10325 -sVuna -p10326 -g24 -(g26 -S'V#\x00\x00\x00\x00\x00\x00' -tRp10327 -sVund -p10328 -g24 -(g26 -S'\\#\x00\x00\x00\x00\x00\x00' -tRp10329 -sVune -p10330 -g24 -(g26 -S'h#\x00\x00\x00\x00\x00\x00' -tRp10331 -sVurls -p10332 -g24 -(g26 -S'\xa0#\x00\x00\x00\x00\x00\x00' -tRp10333 -sVuni -p10334 -g24 -(g26 -S'l#\x00\x00\x00\x00\x00\x00' -tRp10335 -sVcontribution -p10336 -g24 -(g26 -S'\xb1\x07\x00\x00\x00\x00\x00\x00' -tRp10337 -sVlivesex -p10338 -g24 -(g26 -S'\xbd\x13\x00\x00\x00\x00\x00\x00' -tRp10339 -sVappeared -p10340 -g24 -(g26 -S'\xa7\x01\x00\x00\x00\x00\x00\x00' -tRp10341 -sVcemetery -p10342 -g24 -(g26 -S'c\x05\x00\x00\x00\x00\x00\x00' -tRp10343 -sVmodems -p10344 -g24 -(g26 -S'\xb8\x15\x00\x00\x00\x00\x00\x00' -tRp10345 -sVofferings -p10346 -g24 -(g26 -S'U\x17\x00\x00\x00\x00\x00\x00' -tRp10347 -sVhygiene -p10348 -g24 -(g26 -S'h\x10\x00\x00\x00\x00\x00\x00' -tRp10349 -sVinitiative -p10350 -g24 -(g26 -S'\x1b\x11\x00\x00\x00\x00\x00\x00' -tRp10351 -sVloaded -p10352 -g24 -(g26 -S'\xc9\x13\x00\x00\x00\x00\x00\x00' -tRp10353 -sVasks -p10354 -g24 -(g26 -S'\x1b\x02\x00\x00\x00\x00\x00\x00' -tRp10355 -sVbasis -p10356 -g24 -(g26 -S'\xfe\x02\x00\x00\x00\x00\x00\x00' -tRp10357 -sVtiny -p10358 -g24 -(g26 -S'="\x00\x00\x00\x00\x00\x00' -tRp10359 -sVcommission -p10360 -g24 -(g26 -S'\xc7\x06\x00\x00\x00\x00\x00\x00' -tRp10361 -sVtrigger -p10362 -g24 -(g26 -S'\xfc"\x00\x00\x00\x00\x00\x00' -tRp10363 -sVbasic -p10364 -g24 -(g26 -S'\xfa\x02\x00\x00\x00\x00\x00\x00' -tRp10365 -sVbasin -p10366 -g24 -(g26 -S'\xfd\x02\x00\x00\x00\x00\x00\x00' -tRp10367 -sVlovely -p10368 -g24 -(g26 -S'\x11\x14\x00\x00\x00\x00\x00\x00' -tRp10369 -sVtopics -p10370 -g24 -(g26 -S'r"\x00\x00\x00\x00\x00\x00' -tRp10371 -sVidol -p10372 -g24 -(g26 -S'\x86\x10\x00\x00\x00\x00\x00\x00' -tRp10373 -sVwebsite -p10374 -g24 -(g26 -S'\xd9$\x00\x00\x00\x00\x00\x00' -tRp10375 -sVdeeper -p10376 -g24 -(g26 -S'\xff\x08\x00\x00\x00\x00\x00\x00' -tRp10377 -sVquantities -p10378 -g24 -(g26 -S'\x10\x1b\x00\x00\x00\x00\x00\x00' -tRp10379 -sVsunshine -p10380 -g24 -(g26 -S'\xe1 \x00\x00\x00\x00\x00\x00' -tRp10381 -sVlocations -p10382 -g24 -(g26 -S'\xd6\x13\x00\x00\x00\x00\x00\x00' -tRp10383 -sVpersonally -p10384 -g24 -(g26 -S'\xca\x18\x00\x00\x00\x00\x00\x00' -tRp10385 -sVaviation -p10386 -g24 -(g26 -S'\x9e\x02\x00\x00\x00\x00\x00\x00' -tRp10387 -sVexception -p10388 -g24 -(g26 -S'\x10\x0c\x00\x00\x00\x00\x00\x00' -tRp10389 -sVtank -p10390 -g24 -(g26 -S'f!\x00\x00\x00\x00\x00\x00' -tRp10391 -sVeconomies -p10392 -g24 -(g26 -S'\xe8\n\x00\x00\x00\x00\x00\x00' -tRp10393 -sVremaining -p10394 -g24 -(g26 -S'&\x1c\x00\x00\x00\x00\x00\x00' -tRp10395 -sVugly -p10396 -g24 -(g26 -S'K#\x00\x00\x00\x00\x00\x00' -tRp10397 -sVnear -p10398 -g24 -(g26 -S'y\x16\x00\x00\x00\x00\x00\x00' -tRp10399 -sVsuppose -p10400 -g24 -(g26 -S'\xf6 \x00\x00\x00\x00\x00\x00' -tRp10401 -sVbalance -p10402 -g24 -(g26 -S'\xc8\x02\x00\x00\x00\x00\x00\x00' -tRp10403 -sVanchor -p10404 -g24 -(g26 -S'W\x01\x00\x00\x00\x00\x00\x00' -tRp10405 -sVix -p10406 -g24 -(g26 -S'\xe2\x11\x00\x00\x00\x00\x00\x00' -tRp10407 -sVseven -p10408 -g24 -(g26 -S'u\x1e\x00\x00\x00\x00\x00\x00' -tRp10409 -sVusps -p10410 -g24 -(g26 -S'\xb2#\x00\x00\x00\x00\x00\x00' -tRp10411 -sVmetropolitan -p10412 -g24 -(g26 -S'D\x15\x00\x00\x00\x00\x00\x00' -tRp10413 -sVmexico -p10414 -g24 -(g26 -S'F\x15\x00\x00\x00\x00\x00\x00' -tRp10415 -sVip -p10416 -g24 -(g26 -S'\xb5\x11\x00\x00\x00\x00\x00\x00' -tRp10417 -sVir -p10418 -g24 -(g26 -S'\xb9\x11\x00\x00\x00\x00\x00\x00' -tRp10419 -sVcomplaint -p10420 -g24 -(g26 -S'\xf8\x06\x00\x00\x00\x00\x00\x00' -tRp10421 -sViv -p10422 -g24 -(g26 -S'\xe0\x11\x00\x00\x00\x00\x00\x00' -tRp10423 -sVnutten -p10424 -g24 -(g26 -S'\x19\x17\x00\x00\x00\x00\x00\x00' -tRp10425 -sVshame -p10426 -g24 -(g26 -S'\x8c\x1e\x00\x00\x00\x00\x00\x00' -tRp10427 -sVim -p10428 -g24 -(g26 -S'\x95\x10\x00\x00\x00\x00\x00\x00' -tRp10429 -sVil -p10430 -g24 -(g26 -S'\x8d\x10\x00\x00\x00\x00\x00\x00' -tRp10431 -sVio -p10432 -g24 -(g26 -S'\xb2\x11\x00\x00\x00\x00\x00\x00' -tRp10433 -sVia -p10434 -g24 -(g26 -S'm\x10\x00\x00\x00\x00\x00\x00' -tRp10435 -sVic -p10436 -g24 -(g26 -S'p\x10\x00\x00\x00\x00\x00\x00' -tRp10437 -sVseattle -p10438 -g24 -(g26 -S'\x0f\x1e\x00\x00\x00\x00\x00\x00' -tRp10439 -sVmouse -p10440 -g24 -(g26 -S'\t\x16\x00\x00\x00\x00\x00\x00' -tRp10441 -sVid -p10442 -g24 -(g26 -S'w\x10\x00\x00\x00\x00\x00\x00' -tRp10443 -sVgrown -p10444 -g24 -(g26 -S'\x0b\x0f\x00\x00\x00\x00\x00\x00' -tRp10445 -sVborough -p10446 -g24 -(g26 -S'\xf8\x03\x00\x00\x00\x00\x00\x00' -tRp10447 -sVbottles -p10448 -g24 -(g26 -S'\xff\x03\x00\x00\x00\x00\x00\x00' -tRp10449 -sVbelle -p10450 -g24 -(g26 -S'I\x03\x00\x00\x00\x00\x00\x00' -tRp10451 -sVmake -p10452 -g24 -(g26 -S']\x14\x00\x00\x00\x00\x00\x00' -tRp10453 -sVmeetup -p10454 -g24 -(g26 -S'\x08\x15\x00\x00\x00\x00\x00\x00' -tRp10455 -sVroland -p10456 -g24 -(g26 -S'\x1d\x1d\x00\x00\x00\x00\x00\x00' -tRp10457 -sVbelly -p10458 -g24 -(g26 -S'J\x03\x00\x00\x00\x00\x00\x00' -tRp10459 -sVvegetable -p10460 -g24 -(g26 -S'\xf2#\x00\x00\x00\x00\x00\x00' -tRp10461 -sVgrows -p10462 -g24 -(g26 -S'\x0c\x0f\x00\x00\x00\x00\x00\x00' -tRp10463 -sVentitled -p10464 -g24 -(g26 -S'\x9a\x0b\x00\x00\x00\x00\x00\x00' -tRp10465 -sVmeets -p10466 -g24 -(g26 -S'\x07\x15\x00\x00\x00\x00\x00\x00' -tRp10467 -sVsacramento -p10468 -g24 -(g26 -S'r\x1d\x00\x00\x00\x00\x00\x00' -tRp10469 -sVbrowsing -p10470 -g24 -(g26 -S'b\x04\x00\x00\x00\x00\x00\x00' -tRp10471 -sVkit -p10472 -g24 -(g26 -S'\xa0\x12\x00\x00\x00\x00\x00\x00' -tRp10473 -sVdelight -p10474 -g24 -(g26 -S' \t\x00\x00\x00\x00\x00\x00' -tRp10475 -sVrenaissance -p10476 -g24 -(g26 -S'8\x1c\x00\x00\x00\x00\x00\x00' -tRp10477 -sVampland -p10478 -g24 -(g26 -S'G\x01\x00\x00\x00\x00\x00\x00' -tRp10479 -sVgarlic -p10480 -g24 -(g26 -S'5\x0e\x00\x00\x00\x00\x00\x00' -tRp10481 -sVbloomberg -p10482 -g24 -(g26 -S'\xc1\x03\x00\x00\x00\x00\x00\x00' -tRp10483 -sVopportunity -p10484 -g24 -(g26 -S'\x95\x17\x00\x00\x00\x00\x00\x00' -tRp10485 -sVthoughts -p10486 -g24 -(g26 -S'\x08"\x00\x00\x00\x00\x00\x00' -tRp10487 -sVkid -p10488 -g24 -(g26 -S'\x8a\x12\x00\x00\x00\x00\x00\x00' -tRp10489 -sVbutter -p10490 -g24 -(g26 -S'\xa1\x04\x00\x00\x00\x00\x00\x00' -tRp10491 -sVprograms -p10492 -g24 -(g26 -S'}\x1a\x00\x00\x00\x00\x00\x00' -tRp10493 -sVchanges -p10494 -g24 -(g26 -S'\x96\x05\x00\x00\x00\x00\x00\x00' -tRp10495 -sVfailing -p10496 -g24 -(g26 -S'\x94\x0c\x00\x00\x00\x00\x00\x00' -tRp10497 -sVrome -p10498 -g24 -(g26 -S'*\x1d\x00\x00\x00\x00\x00\x00' -tRp10499 -sVqualities -p10500 -g24 -(g26 -S'\r\x1b\x00\x00\x00\x00\x00\x00' -tRp10501 -sVendif -p10502 -g24 -(g26 -S'e\x0b\x00\x00\x00\x00\x00\x00' -tRp10503 -sVclaims -p10504 -g24 -(g26 -S'(\x06\x00\x00\x00\x00\x00\x00' -tRp10505 -sVinvestments -p10506 -g24 -(g26 -S'\xa3\x11\x00\x00\x00\x00\x00\x00' -tRp10507 -sVleft -p10508 -g24 -(g26 -S'2\x13\x00\x00\x00\x00\x00\x00' -tRp10509 -sVprotocol -p10510 -g24 -(g26 -S'\xb3\x1a\x00\x00\x00\x00\x00\x00' -tRp10511 -sVconsciousness -p10512 -g24 -(g26 -S'[\x07\x00\x00\x00\x00\x00\x00' -tRp10513 -sVyen -p10514 -g24 -(g26 -S'\xa2%\x00\x00\x00\x00\x00\x00' -tRp10515 -sVyea -p10516 -g24 -(g26 -S'\x9a%\x00\x00\x00\x00\x00\x00' -tRp10517 -sVsporting -p10518 -g24 -(g26 -S'\xdc\x1f\x00\x00\x00\x00\x00\x00' -tRp10519 -sVassigned -p10520 -g24 -(g26 -S',\x02\x00\x00\x00\x00\x00\x00' -tRp10521 -sVfighters -p10522 -g24 -(g26 -S'\x00\r\x00\x00\x00\x00\x00\x00' -tRp10523 -sVidentify -p10524 -g24 -(g26 -S'\x82\x10\x00\x00\x00\x00\x00\x00' -tRp10525 -sVhuman -p10526 -g24 -(g26 -S'O\x10\x00\x00\x00\x00\x00\x00' -tRp10527 -sVinteger -p10528 -g24 -(g26 -S'\\\x11\x00\x00\x00\x00\x00\x00' -tRp10529 -sVfacts -p10530 -g24 -(g26 -S'\x90\x0c\x00\x00\x00\x00\x00\x00' -tRp10531 -sVyes -p10532 -g24 -(g26 -S'\xa3%\x00\x00\x00\x00\x00\x00' -tRp10533 -sVbuyers -p10534 -g24 -(g26 -S'\xa8\x04\x00\x00\x00\x00\x00\x00' -tRp10535 -sVbelfast -p10536 -g24 -(g26 -S'?\x03\x00\x00\x00\x00\x00\x00' -tRp10537 -sVcandidate -p10538 -g24 -(g26 -S'\xec\x04\x00\x00\x00\x00\x00\x00' -tRp10539 -sVregarded -p10540 -g24 -(g26 -S'\xeb\x1b\x00\x00\x00\x00\x00\x00' -tRp10541 -sVcharacter -p10542 -g24 -(g26 -S'\x9f\x05\x00\x00\x00\x00\x00\x00' -tRp10543 -sVjacksonville -p10544 -g24 -(g26 -S'\xe9\x11\x00\x00\x00\x00\x00\x00' -tRp10545 -sVpotential -p10546 -g24 -(g26 -S'\xd1\x19\x00\x00\x00\x00\x00\x00' -tRp10547 -sVcopyrights -p10548 -g24 -(g26 -S'\xe7\x07\x00\x00\x00\x00\x00\x00' -tRp10549 -sVsave -p10550 -g24 -(g26 -S'\xb4\x1d\x00\x00\x00\x00\x00\x00' -tRp10551 -sVopt -p10552 -g24 -(g26 -S'\x99\x17\x00\x00\x00\x00\x00\x00' -tRp10553 -sVinterior -p10554 -g24 -(g26 -S'z\x11\x00\x00\x00\x00\x00\x00' -tRp10555 -sVsupervisors -p10556 -g24 -(g26 -S'\xe8 \x00\x00\x00\x00\x00\x00' -tRp10557 -sVbackground -p10558 -g24 -(g26 -S'\xb6\x02\x00\x00\x00\x00\x00\x00' -tRp10559 -sVwanting -p10560 -g24 -(g26 -S'\x9b$\x00\x00\x00\x00\x00\x00' -tRp10561 -sVfeelings -p10562 -g24 -(g26 -S'\xe1\x0c\x00\x00\x00\x00\x00\x00' -tRp10563 -sVdreams -p10564 -g24 -(g26 -S'\x83\n\x00\x00\x00\x00\x00\x00' -tRp10565 -sVshoulder -p10566 -g24 -(g26 -S'\xca\x1e\x00\x00\x00\x00\x00\x00' -tRp10567 -sVfioricet -p10568 -g24 -(g26 -S',\r\x00\x00\x00\x00\x00\x00' -tRp10569 -sVnude -p10570 -g24 -(g26 -S'\x07\x17\x00\x00\x00\x00\x00\x00' -tRp10571 -sVperforming -p10572 -g24 -(g26 -S'\xb2\x18\x00\x00\x00\x00\x00\x00' -tRp10573 -sVmanual -p10574 -g24 -(g26 -S'|\x14\x00\x00\x00\x00\x00\x00' -tRp10575 -sVunnecessary -p10576 -g24 -(g26 -S'\x83#\x00\x00\x00\x00\x00\x00' -tRp10577 -sVarrivals -p10578 -g24 -(g26 -S'\xff\x01\x00\x00\x00\x00\x00\x00' -tRp10579 -sVwww -p10580 -g24 -(g26 -S'\x81%\x00\x00\x00\x00\x00\x00' -tRp10581 -sVdean -p10582 -g24 -(g26 -S'\xdc\x08\x00\x00\x00\x00\x00\x00' -tRp10583 -sVdeal -p10584 -g24 -(g26 -S'\xd5\x08\x00\x00\x00\x00\x00\x00' -tRp10585 -sVdeaf -p10586 -g24 -(g26 -S'\xd4\x08\x00\x00\x00\x00\x00\x00' -tRp10587 -sVelderly -p10588 -g24 -(g26 -S'\x18\x0b\x00\x00\x00\x00\x00\x00' -tRp10589 -sVfingering -p10590 -g24 -(g26 -S'$\r\x00\x00\x00\x00\x00\x00' -tRp10591 -sVinvoice -p10592 -g24 -(g26 -S'\xac\x11\x00\x00\x00\x00\x00\x00' -tRp10593 -sVparagraphs -p10594 -g24 -(g26 -S')\x18\x00\x00\x00\x00\x00\x00' -tRp10595 -sVdear -p10596 -g24 -(g26 -S'\xdd\x08\x00\x00\x00\x00\x00\x00' -tRp10597 -sVseparately -p10598 -g24 -(g26 -S'V\x1e\x00\x00\x00\x00\x00\x00' -tRp10599 -sVdense -p10600 -g24 -(g26 -S'<\t\x00\x00\x00\x00\x00\x00' -tRp10601 -sVtracked -p10602 -g24 -(g26 -S'\x94"\x00\x00\x00\x00\x00\x00' -tRp10603 -sVhobbies -p10604 -g24 -(g26 -S'\xeb\x0f\x00\x00\x00\x00\x00\x00' -tRp10605 -sVnotification -p10606 -g24 -(g26 -S'\xf2\x16\x00\x00\x00\x00\x00\x00' -tRp10607 -sVinvestigations -p10608 -g24 -(g26 -S'\x9e\x11\x00\x00\x00\x00\x00\x00' -tRp10609 -sVmicrowave -p10610 -g24 -(g26 -S'X\x15\x00\x00\x00\x00\x00\x00' -tRp10611 -sVtracker -p10612 -g24 -(g26 -S'\x95"\x00\x00\x00\x00\x00\x00' -tRp10613 -sVshakespeare -p10614 -g24 -(g26 -S'\x89\x1e\x00\x00\x00\x00\x00\x00' -tRp10615 -sVbold -p10616 -g24 -(g26 -S'\xd7\x03\x00\x00\x00\x00\x00\x00' -tRp10617 -sVsubscriptions -p10618 -g24 -(g26 -S'\xaa \x00\x00\x00\x00\x00\x00' -tRp10619 -sVburn -p10620 -g24 -(g26 -S'\x92\x04\x00\x00\x00\x00\x00\x00' -tRp10621 -sVtranslated -p10622 -g24 -(g26 -S'\xc3"\x00\x00\x00\x00\x00\x00' -tRp10623 -sVbolt -p10624 -g24 -(g26 -S'\xd9\x03\x00\x00\x00\x00\x00\x00' -tRp10625 -sVsuper -p10626 -g24 -(g26 -S'\xe2 \x00\x00\x00\x00\x00\x00' -tRp10627 -sVzus -p10628 -g24 -(g26 -S'\xc8%\x00\x00\x00\x00\x00\x00' -tRp10629 -sVbeta -p10630 -g24 -(g26 -S'd\x03\x00\x00\x00\x00\x00\x00' -tRp10631 -sVprostores -p10632 -g24 -(g26 -S'\xa9\x1a\x00\x00\x00\x00\x00\x00' -tRp10633 -sVmagazine -p10634 -g24 -(g26 -S'A\x14\x00\x00\x00\x00\x00\x00' -tRp10635 -sVafternoon -p10636 -g24 -(g26 -S'\xcc\x00\x00\x00\x00\x00\x00\x00' -tRp10637 -sVchrysler -p10638 -g24 -(g26 -S'\xfc\x05\x00\x00\x00\x00\x00\x00' -tRp10639 -sVcommit -p10640 -g24 -(g26 -S'\xcb\x06\x00\x00\x00\x00\x00\x00' -tRp10641 -sVautomatically -p10642 -g24 -(g26 -S'\x8e\x02\x00\x00\x00\x00\x00\x00' -tRp10643 -sVzum -p10644 -g24 -(g26 -S'\xc7%\x00\x00\x00\x00\x00\x00' -tRp10645 -sVnerve -p10646 -g24 -(g26 -S'\x93\x16\x00\x00\x00\x00\x00\x00' -tRp10647 -sVindians -p10648 -g24 -(g26 -S'\xe7\x10\x00\x00\x00\x00\x00\x00' -tRp10649 -sVwhats -p10650 -g24 -(g26 -S'\xf9$\x00\x00\x00\x00\x00\x00' -tRp10651 -sVintellectual -p10652 -g24 -(g26 -S'd\x11\x00\x00\x00\x00\x00\x00' -tRp10653 -sVlocator -p10654 -g24 -(g26 -S'\xd7\x13\x00\x00\x00\x00\x00\x00' -tRp10655 -sVdoctrine -p10656 -g24 -(g26 -S';\n\x00\x00\x00\x00\x00\x00' -tRp10657 -sVcardiff -p10658 -g24 -(g26 -S'\x06\x05\x00\x00\x00\x00\x00\x00' -tRp10659 -sVamsterdam -p10660 -g24 -(g26 -S'I\x01\x00\x00\x00\x00\x00\x00' -tRp10661 -sVrefined -p10662 -g24 -(g26 -S'\xda\x1b\x00\x00\x00\x00\x00\x00' -tRp10663 -sVtennis -p10664 -g24 -(g26 -S'\xb5!\x00\x00\x00\x00\x00\x00' -tRp10665 -sVapproximate -p10666 -g24 -(g26 -S'\xc6\x01\x00\x00\x00\x00\x00\x00' -tRp10667 -sVsoma -p10668 -g24 -(g26 -S'r\x1f\x00\x00\x00\x00\x00\x00' -tRp10669 -sVleaf -p10670 -g24 -(g26 -S'\x1f\x13\x00\x00\x00\x00\x00\x00' -tRp10671 -sVeditor -p10672 -g24 -(g26 -S'\xf7\n\x00\x00\x00\x00\x00\x00' -tRp10673 -sVfraction -p10674 -g24 -(g26 -S'\xc1\r\x00\x00\x00\x00\x00\x00' -tRp10675 -sVbodies -p10676 -g24 -(g26 -S'\xd5\x03\x00\x00\x00\x00\x00\x00' -tRp10677 -sVbolivia -p10678 -g24 -(g26 -S'\xd8\x03\x00\x00\x00\x00\x00\x00' -tRp10679 -sVfork -p10680 -g24 -(g26 -S'\xa0\r\x00\x00\x00\x00\x00\x00' -tRp10681 -sVoffering -p10682 -g24 -(g26 -S'T\x17\x00\x00\x00\x00\x00\x00' -tRp10683 -sVclinics -p10684 -g24 -(g26 -S'Q\x06\x00\x00\x00\x00\x00\x00' -tRp10685 -sVbatman -p10686 -g24 -(g26 -S'\t\x03\x00\x00\x00\x00\x00\x00' -tRp10687 -sVpensions -p10688 -g24 -(g26 -S'\xa2\x18\x00\x00\x00\x00\x00\x00' -tRp10689 -sVlanding -p10690 -g24 -(g26 -S'\xdc\x12\x00\x00\x00\x00\x00\x00' -tRp10691 -sVford -p10692 -g24 -(g26 -S'\x94\r\x00\x00\x00\x00\x00\x00' -tRp10693 -sVfailure -p10694 -g24 -(g26 -S'\x96\x0c\x00\x00\x00\x00\x00\x00' -tRp10695 -sVlows -p10696 -g24 -(g26 -S'\x19\x14\x00\x00\x00\x00\x00\x00' -tRp10697 -sVsyndicate -p10698 -g24 -(g26 -S'\x19\x00\x00\x00\x00\x00\x00' -tRp11331 -sVmoisture -p11332 -g24 -(g26 -S'\xc6\x15\x00\x00\x00\x00\x00\x00' -tRp11333 -sVparticipated -p11334 -g24 -(g26 -S'@\x18\x00\x00\x00\x00\x00\x00' -tRp11335 -sVspeaking -p11336 -g24 -(g26 -S'\xa5\x1f\x00\x00\x00\x00\x00\x00' -tRp11337 -sVmining -p11338 -g24 -(g26 -S'\x80\x15\x00\x00\x00\x00\x00\x00' -tRp11339 -sVmemo -p11340 -g24 -(g26 -S'\x12\x15\x00\x00\x00\x00\x00\x00' -tRp11341 -sVcontinuous -p11342 -g24 -(g26 -S'\xa5\x07\x00\x00\x00\x00\x00\x00' -tRp11343 -sVaccurately -p11344 -g24 -(g26 -S'?\x00\x00\x00\x00\x00\x00\x00' -tRp11345 -sVbroadcast -p11346 -g24 -(g26 -S'M\x04\x00\x00\x00\x00\x00\x00' -tRp11347 -sVhartford -p11348 -g24 -(g26 -S'r\x0f\x00\x00\x00\x00\x00\x00' -tRp11349 -sVeyed -p11350 -g24 -(g26 -S'}\x0c\x00\x00\x00\x00\x00\x00' -tRp11351 -sVbutt -p11352 -g24 -(g26 -S'\xa0\x04\x00\x00\x00\x00\x00\x00' -tRp11353 -sVrelative -p11354 -g24 -(g26 -S'\r\x1c\x00\x00\x00\x00\x00\x00' -tRp11355 -sVsailing -p11356 -g24 -(g26 -S'\x80\x1d\x00\x00\x00\x00\x00\x00' -tRp11357 -sVspecials -p11358 -g24 -(g26 -S'\xaf\x1f\x00\x00\x00\x00\x00\x00' -tRp11359 -sVgotta -p11360 -g24 -(g26 -S'\xbd\x0e\x00\x00\x00\x00\x00\x00' -tRp11361 -sVvictorian -p11362 -g24 -(g26 -S'#$\x00\x00\x00\x00\x00\x00' -tRp11363 -sVprotected -p11364 -g24 -(g26 -S'\xac\x1a\x00\x00\x00\x00\x00\x00' -tRp11365 -sVknives -p11366 -g24 -(g26 -S'\xad\x12\x00\x00\x00\x00\x00\x00' -tRp11367 -sVventure -p11368 -g24 -(g26 -S'\xfe#\x00\x00\x00\x00\x00\x00' -tRp11369 -sVtractor -p11370 -g24 -(g26 -S'\x99"\x00\x00\x00\x00\x00\x00' -tRp11371 -sVgathering -p11372 -g24 -(g26 -S'?\x0e\x00\x00\x00\x00\x00\x00' -tRp11373 -sVhandhelds -p11374 -g24 -(g26 -S'K\x0f\x00\x00\x00\x00\x00\x00' -tRp11375 -sVpreston -p11376 -g24 -(g26 -S'"\x1a\x00\x00\x00\x00\x00\x00' -tRp11377 -sVmarijuana -p11378 -g24 -(g26 -S'\x95\x14\x00\x00\x00\x00\x00\x00' -tRp11379 -sVvoices -p11380 -g24 -(g26 -S'_$\x00\x00\x00\x00\x00\x00' -tRp11381 -sVdash -p11382 -g24 -(g26 -S'\xba\x08\x00\x00\x00\x00\x00\x00' -tRp11383 -sVconspiracy -p11384 -g24 -(g26 -S'v\x07\x00\x00\x00\x00\x00\x00' -tRp11385 -sVoccupied -p11386 -g24 -(g26 -S'A\x17\x00\x00\x00\x00\x00\x00' -tRp11387 -sVkevin -p11388 -g24 -(g26 -S'\x81\x12\x00\x00\x00\x00\x00\x00' -tRp11389 -sVspeakers -p11390 -g24 -(g26 -S'\xa4\x1f\x00\x00\x00\x00\x00\x00' -tRp11391 -sVefficient -p11392 -g24 -(g26 -S'\x0c\x0b\x00\x00\x00\x00\x00\x00' -tRp11393 -sVanswering -p11394 -g24 -(g26 -S'\x81\x01\x00\x00\x00\x00\x00\x00' -tRp11395 -sVupgrading -p11396 -g24 -(g26 -S'\x92#\x00\x00\x00\x00\x00\x00' -tRp11397 -sVconsortium -p11398 -g24 -(g26 -S'u\x07\x00\x00\x00\x00\x00\x00' -tRp11399 -sVendangered -p11400 -g24 -(g26 -S'c\x0b\x00\x00\x00\x00\x00\x00' -tRp11401 -sVsquad -p11402 -g24 -(g26 -S'\xee\x1f\x00\x00\x00\x00\x00\x00' -tRp11403 -sVbailey -p11404 -g24 -(g26 -S'\xc5\x02\x00\x00\x00\x00\x00\x00' -tRp11405 -sVperformance -p11406 -g24 -(g26 -S'\xae\x18\x00\x00\x00\x00\x00\x00' -tRp11407 -sVpersonalized -p11408 -g24 -(g26 -S'\xc9\x18\x00\x00\x00\x00\x00\x00' -tRp11409 -sVswitching -p11410 -g24 -(g26 -S'0!\x00\x00\x00\x00\x00\x00' -tRp11411 -sVchannel -p11412 -g24 -(g26 -S'\x98\x05\x00\x00\x00\x00\x00\x00' -tRp11413 -sVultimate -p11414 -g24 -(g26 -S'Q#\x00\x00\x00\x00\x00\x00' -tRp11415 -sVanalysts -p11416 -g24 -(g26 -S'Q\x01\x00\x00\x00\x00\x00\x00' -tRp11417 -sVpain -p11418 -g24 -(g26 -S'\x03\x18\x00\x00\x00\x00\x00\x00' -tRp11419 -sVnorman -p11420 -g24 -(g26 -S'\xe1\x16\x00\x00\x00\x00\x00\x00' -tRp11421 -sVtrace -p11422 -g24 -(g26 -S'\x90"\x00\x00\x00\x00\x00\x00' -tRp11423 -sVroster -p11424 -g24 -(g26 -S'9\x1d\x00\x00\x00\x00\x00\x00' -tRp11425 -sVtrack -p11426 -g24 -(g26 -S'\x91"\x00\x00\x00\x00\x00\x00' -tRp11427 -sVincidence -p11428 -g24 -(g26 -S'\xc5\x10\x00\x00\x00\x00\x00\x00' -tRp11429 -sVpaid -p11430 -g24 -(g26 -S'\x02\x18\x00\x00\x00\x00\x00\x00' -tRp11431 -sVassault -p11432 -g24 -(g26 -S'!\x02\x00\x00\x00\x00\x00\x00' -tRp11433 -sVsheets -p11434 -g24 -(g26 -S'\xa1\x1e\x00\x00\x00\x00\x00\x00' -tRp11435 -sVtract -p11436 -g24 -(g26 -S'\x98"\x00\x00\x00\x00\x00\x00' -tRp11437 -sVpair -p11438 -g24 -(g26 -S'\n\x18\x00\x00\x00\x00\x00\x00' -tRp11439 -sVtracy -p11440 -g24 -(g26 -S'\x9a"\x00\x00\x00\x00\x00\x00' -tRp11441 -sVbeth -p11442 -g24 -(g26 -S'e\x03\x00\x00\x00\x00\x00\x00' -tRp11443 -sVqueens -p11444 -g24 -(g26 -S'\x19\x1b\x00\x00\x00\x00\x00\x00' -tRp11445 -sVespecially -p11446 -g24 -(g26 -S'\xc7\x0b\x00\x00\x00\x00\x00\x00' -tRp11447 -sVsurprising -p11448 -g24 -(g26 -S'\t!\x00\x00\x00\x00\x00\x00' -tRp11449 -sVcloth -p11450 -g24 -(g26 -S'`\x06\x00\x00\x00\x00\x00\x00' -tRp11451 -sVdiversity -p11452 -g24 -(g26 -S'%\n\x00\x00\x00\x00\x00\x00' -tRp11453 -sVcompounds -p11454 -g24 -(g26 -S'\x0f\x07\x00\x00\x00\x00\x00\x00' -tRp11455 -sVproperly -p11456 -g24 -(g26 -S'\x99\x1a\x00\x00\x00\x00\x00\x00' -tRp11457 -sVstockings -p11458 -g24 -(g26 -S'H \x00\x00\x00\x00\x00\x00' -tRp11459 -sVsigma -p11460 -g24 -(g26 -S'\xde\x1e\x00\x00\x00\x00\x00\x00' -tRp11461 -sVprecise -p11462 -g24 -(g26 -S'\xf5\x19\x00\x00\x00\x00\x00\x00' -tRp11463 -sVrating -p11464 -g24 -(g26 -S'g\x1b\x00\x00\x00\x00\x00\x00' -tRp11465 -sVshot -p11466 -g24 -(g26 -S'\xc8\x1e\x00\x00\x00\x00\x00\x00' -tRp11467 -sVreef -p11468 -g24 -(g26 -S'\xcc\x1b\x00\x00\x00\x00\x00\x00' -tRp11469 -sVcertification -p11470 -g24 -(g26 -S'v\x05\x00\x00\x00\x00\x00\x00' -tRp11471 -sVdelta -p11472 -g24 -(g26 -S"'\t\x00\x00\x00\x00\x00\x00" -tRp11473 -sVcontemporary -p11474 -g24 -(g26 -S'\x97\x07\x00\x00\x00\x00\x00\x00' -tRp11475 -sVsites -p11476 -g24 -(g26 -S'\x0e\x1f\x00\x00\x00\x00\x00\x00' -tRp11477 -sVmoderator -p11478 -g24 -(g26 -S'\xba\x15\x00\x00\x00\x00\x00\x00' -tRp11479 -sVtherapist -p11480 -g24 -(g26 -S'\xf0!\x00\x00\x00\x00\x00\x00' -tRp11481 -sVdrawings -p11482 -g24 -(g26 -S'\x7f\n\x00\x00\x00\x00\x00\x00' -tRp11483 -sVthreshold -p11484 -g24 -(g26 -S'\x13"\x00\x00\x00\x00\x00\x00' -tRp11485 -sVcorner -p11486 -g24 -(g26 -S'\xef\x07\x00\x00\x00\x00\x00\x00' -tRp11487 -sVforecast -p11488 -g24 -(g26 -S'\x95\r\x00\x00\x00\x00\x00\x00' -tRp11489 -sVboundaries -p11490 -g24 -(g26 -S'\x04\x04\x00\x00\x00\x00\x00\x00' -tRp11491 -sVdice -p11492 -g24 -(g26 -S'\xa9\t\x00\x00\x00\x00\x00\x00' -tRp11493 -sVtravesti -p11494 -g24 -(g26 -S'\xd9"\x00\x00\x00\x00\x00\x00' -tRp11495 -sVtreasure -p11496 -g24 -(g26 -S'\xdc"\x00\x00\x00\x00\x00\x00' -tRp11497 -sVspirituality -p11498 -g24 -(g26 -S'\xd2\x1f\x00\x00\x00\x00\x00\x00' -tRp11499 -sVblack -p11500 -g24 -(g26 -S'\xa0\x03\x00\x00\x00\x00\x00\x00' -tRp11501 -sVtreasury -p11502 -g24 -(g26 -S'\xdf"\x00\x00\x00\x00\x00\x00' -tRp11503 -sVawareness -p11504 -g24 -(g26 -S'\xa7\x02\x00\x00\x00\x00\x00\x00' -tRp11505 -sVinfo -p11506 -g24 -(g26 -S'\x0b\x11\x00\x00\x00\x00\x00\x00' -tRp11507 -sVhungarian -p11508 -g24 -(g26 -S'X\x10\x00\x00\x00\x00\x00\x00' -tRp11509 -sVcontracts -p11510 -g24 -(g26 -S'\xab\x07\x00\x00\x00\x00\x00\x00' -tRp11511 -sVdesignated -p11512 -g24 -(g26 -S'a\t\x00\x00\x00\x00\x00\x00' -tRp11513 -sVemployers -p11514 -g24 -(g26 -S'O\x0b\x00\x00\x00\x00\x00\x00' -tRp11515 -sVaffecting -p11516 -g24 -(g26 -S'\xc0\x00\x00\x00\x00\x00\x00\x00' -tRp11517 -sVframing -p11518 -g24 -(g26 -S'\xc8\r\x00\x00\x00\x00\x00\x00' -tRp11519 -sVconjunction -p11520 -g24 -(g26 -S'O\x07\x00\x00\x00\x00\x00\x00' -tRp11521 -sVgeo -p11522 -g24 -(g26 -S'n\x0e\x00\x00\x00\x00\x00\x00' -tRp11523 -sVgen -p11524 -g24 -(g26 -S'Q\x0e\x00\x00\x00\x00\x00\x00' -tRp11525 -sVgem -p11526 -g24 -(g26 -S'P\x0e\x00\x00\x00\x00\x00\x00' -tRp11527 -sVsecondary -p11528 -g24 -(g26 -S'\x12\x1e\x00\x00\x00\x00\x00\x00' -tRp11529 -sVkeyboards -p11530 -g24 -(g26 -S'\x84\x12\x00\x00\x00\x00\x00\x00' -tRp11531 -sVmedian -p11532 -g24 -(g26 -S'\xf6\x14\x00\x00\x00\x00\x00\x00' -tRp11533 -sVyield -p11534 -g24 -(g26 -S'\xa5%\x00\x00\x00\x00\x00\x00' -tRp11535 -sVsummary -p11536 -g24 -(g26 -S'\xd8 \x00\x00\x00\x00\x00\x00' -tRp11537 -sVstupid -p11538 -g24 -(g26 -S'\x92 \x00\x00\x00\x00\x00\x00' -tRp11539 -sVfinishing -p11540 -g24 -(g26 -S'(\r\x00\x00\x00\x00\x00\x00' -tRp11541 -sVwiki -p11542 -g24 -(g26 -S'\x0c%\x00\x00\x00\x00\x00\x00' -tRp11543 -sVkernel -p11544 -g24 -(g26 -S'\x7f\x12\x00\x00\x00\x00\x00\x00' -tRp11545 -sVdeclared -p11546 -g24 -(g26 -S'\xf3\x08\x00\x00\x00\x00\x00\x00' -tRp11547 -sVthesis -p11548 -g24 -(g26 -S'\xf5!\x00\x00\x00\x00\x00\x00' -tRp11549 -sVseas -p11550 -g24 -(g26 -S'\x08\x1e\x00\x00\x00\x00\x00\x00' -tRp11551 -sVbox -p11552 -g24 -(g26 -S'\x0b\x04\x00\x00\x00\x00\x00\x00' -tRp11553 -sVseat -p11554 -g24 -(g26 -S'\x0c\x1e\x00\x00\x00\x00\x00\x00' -tRp11555 -sVcologne -p11556 -g24 -(g26 -S'\x9e\x06\x00\x00\x00\x00\x00\x00' -tRp11557 -sVsean -p11558 -g24 -(g26 -S'\x03\x1e\x00\x00\x00\x00\x00\x00' -tRp11559 -sVseal -p11560 -g24 -(g26 -S'\x01\x1e\x00\x00\x00\x00\x00\x00' -tRp11561 -sVcalendar -p11562 -g24 -(g26 -S'\xc7\x04\x00\x00\x00\x00\x00\x00' -tRp11563 -sVwonder -p11564 -g24 -(g26 -S'B%\x00\x00\x00\x00\x00\x00' -tRp11565 -sVcamping -p11566 -g24 -(g26 -S'\xe0\x04\x00\x00\x00\x00\x00\x00' -tRp11567 -sVcleaning -p11568 -g24 -(g26 -S'=\x06\x00\x00\x00\x00\x00\x00' -tRp11569 -sVlabel -p11570 -g24 -(g26 -S'\xc3\x12\x00\x00\x00\x00\x00\x00' -tRp11571 -sVgage -p11572 -g24 -(g26 -S'\x1c\x0e\x00\x00\x00\x00\x00\x00' -tRp11573 -sVpump -p11574 -g24 -(g26 -S'\xe5\x1a\x00\x00\x00\x00\x00\x00' -tRp11575 -sVdiamonds -p11576 -g24 -(g26 -S'\xa5\t\x00\x00\x00\x00\x00\x00' -tRp11577 -sVreading -p11578 -g24 -(g26 -S'\x7f\x1b\x00\x00\x00\x00\x00\x00' -tRp11579 -sVchecks -p11580 -g24 -(g26 -S'\xc4\x05\x00\x00\x00\x00\x00\x00' -tRp11581 -sVaffordable -p11582 -g24 -(g26 -S'\xc7\x00\x00\x00\x00\x00\x00\x00' -tRp11583 -sVcampaign -p11584 -g24 -(g26 -S'\xdd\x04\x00\x00\x00\x00\x00\x00' -tRp11585 -sVinfrastructure -p11586 -g24 -(g26 -S'\x13\x11\x00\x00\x00\x00\x00\x00' -tRp11587 -sVaugust -p11588 -g24 -(g26 -S'|\x02\x00\x00\x00\x00\x00\x00' -tRp11589 -sVparent -p11590 -g24 -(g26 -S'/\x18\x00\x00\x00\x00\x00\x00' -tRp11591 -sVparental -p11592 -g24 -(g26 -S'0\x18\x00\x00\x00\x00\x00\x00' -tRp11593 -sVjp -p11594 -g24 -(g26 -S'@\x12\x00\x00\x00\x00\x00\x00' -tRp11595 -sVjr -p11596 -g24 -(g26 -S'C\x12\x00\x00\x00\x00\x00\x00' -tRp11597 -sVkilling -p11598 -g24 -(g26 -S'\x91\x12\x00\x00\x00\x00\x00\x00' -tRp11599 -sVjm -p11600 -g24 -(g26 -S'\x1d\x12\x00\x00\x00\x00\x00\x00' -tRp11601 -sVjo -p11602 -g24 -(g26 -S'\x1e\x12\x00\x00\x00\x00\x00\x00' -tRp11603 -sVjj -p11604 -g24 -(g26 -S'\x1c\x12\x00\x00\x00\x00\x00\x00' -tRp11605 -sVjd -p11606 -g24 -(g26 -S'\x00\x12\x00\x00\x00\x00\x00\x00' -tRp11607 -sVje -p11608 -g24 -(g26 -S'\x01\x12\x00\x00\x00\x00\x00\x00' -tRp11609 -sVtub -p11610 -g24 -(g26 -S'\x1e#\x00\x00\x00\x00\x00\x00' -tRp11611 -sVjs -p11612 -g24 -(g26 -S'D\x12\x00\x00\x00\x00\x00\x00' -tRp11613 -sVlopez -p11614 -g24 -(g26 -S'\xfc\x13\x00\x00\x00\x00\x00\x00' -tRp11615 -sVcoupons -p11616 -g24 -(g26 -S'\x1e\x08\x00\x00\x00\x00\x00\x00' -tRp11617 -sVjc -p11618 -g24 -(g26 -S'\xff\x11\x00\x00\x00\x00\x00\x00' -tRp11619 -sVdates -p11620 -g24 -(g26 -S'\xc1\x08\x00\x00\x00\x00\x00\x00' -tRp11621 -sVrugby -p11622 -g24 -(g26 -S'[\x1d\x00\x00\x00\x00\x00\x00' -tRp11623 -sVconfiguring -p11624 -g24 -(g26 -S'C\x07\x00\x00\x00\x00\x00\x00' -tRp11625 -sVchelsea -p11626 -g24 -(g26 -S'\xc8\x05\x00\x00\x00\x00\x00\x00' -tRp11627 -sVtrader -p11628 -g24 -(g26 -S'\x9e"\x00\x00\x00\x00\x00\x00' -tRp11629 -sVtrades -p11630 -g24 -(g26 -S'\x9f"\x00\x00\x00\x00\x00\x00' -tRp11631 -sVaccording -p11632 -g24 -(g26 -S'5\x00\x00\x00\x00\x00\x00\x00' -tRp11633 -sVtour -p11634 -g24 -(g26 -S'~"\x00\x00\x00\x00\x00\x00' -tRp11635 -sVdated -p11636 -g24 -(g26 -S'\xc0\x08\x00\x00\x00\x00\x00\x00' -tRp11637 -sVspare -p11638 -g24 -(g26 -S'\x9f\x1f\x00\x00\x00\x00\x00\x00' -tRp11639 -sVholders -p11640 -g24 -(g26 -S'\xf1\x0f\x00\x00\x00\x00\x00\x00' -tRp11641 -sVfranchise -p11642 -g24 -(g26 -S'\xca\r\x00\x00\x00\x00\x00\x00' -tRp11643 -sVcancer -p11644 -g24 -(g26 -S'\xeb\x04\x00\x00\x00\x00\x00\x00' -tRp11645 -sVfirewall -p11646 -g24 -(g26 -S'1\r\x00\x00\x00\x00\x00\x00' -tRp11647 -sVvenues -p11648 -g24 -(g26 -S'\x01$\x00\x00\x00\x00\x00\x00' -tRp11649 -sVinnovations -p11650 -g24 -(g26 -S'(\x11\x00\x00\x00\x00\x00\x00' -tRp11651 -sVmaintained -p11652 -g24 -(g26 -S'W\x14\x00\x00\x00\x00\x00\x00' -tRp11653 -sVgrants -p11654 -g24 -(g26 -S'\xdd\x0e\x00\x00\x00\x00\x00\x00' -tRp11655 -sVexhibits -p11656 -g24 -(g26 -S'0\x0c\x00\x00\x00\x00\x00\x00' -tRp11657 -sVcancel -p11658 -g24 -(g26 -S'\xe8\x04\x00\x00\x00\x00\x00\x00' -tRp11659 -sVdisciplinary -p11660 -g24 -(g26 -S'\xe7\t\x00\x00\x00\x00\x00\x00' -tRp11661 -sVcustody -p11662 -g24 -(g26 -S'\x86\x08\x00\x00\x00\x00\x00\x00' -tRp11663 -sVconsidering -p11664 -g24 -(g26 -S'i\x07\x00\x00\x00\x00\x00\x00' -tRp11665 -sVunusual -p11666 -g24 -(g26 -S'\x88#\x00\x00\x00\x00\x00\x00' -tRp11667 -sVtuning -p11668 -g24 -(g26 -S'*#\x00\x00\x00\x00\x00\x00' -tRp11669 -sVcapable -p11670 -g24 -(g26 -S'\xf8\x04\x00\x00\x00\x00\x00\x00' -tRp11671 -sVbarry -p11672 -g24 -(g26 -S'\xf1\x02\x00\x00\x00\x00\x00\x00' -tRp11673 -sVtue -p11674 -g24 -(g26 -S'"#\x00\x00\x00\x00\x00\x00' -tRp11675 -sVmart -p11676 -g24 -(g26 -S'\xac\x14\x00\x00\x00\x00\x00\x00' -tRp11677 -sVworkshop -p11678 -g24 -(g26 -S'W%\x00\x00\x00\x00\x00\x00' -tRp11679 -sVmars -p11680 -g24 -(g26 -S'\xa9\x14\x00\x00\x00\x00\x00\x00' -tRp11681 -sVborders -p11682 -g24 -(g26 -S'\xf4\x03\x00\x00\x00\x00\x00\x00' -tRp11683 -sVmary -p11684 -g24 -(g26 -S'\xb1\x14\x00\x00\x00\x00\x00\x00' -tRp11685 -sVeducated -p11686 -g24 -(g26 -S'\xfe\n\x00\x00\x00\x00\x00\x00' -tRp11687 -sVshopping -p11688 -g24 -(g26 -S'\xbf\x1e\x00\x00\x00\x00\x00\x00' -tRp11689 -sVoffered -p11690 -g24 -(g26 -S'S\x17\x00\x00\x00\x00\x00\x00' -tRp11691 -sVdangerous -p11692 -g24 -(g26 -S'\xb0\x08\x00\x00\x00\x00\x00\x00' -tRp11693 -sVlaptops -p11694 -g24 -(g26 -S'\xe9\x12\x00\x00\x00\x00\x00\x00' -tRp11695 -sVdramatic -p11696 -g24 -(g26 -S'{\n\x00\x00\x00\x00\x00\x00' -tRp11697 -sVwake -p11698 -g24 -(g26 -S'\x85$\x00\x00\x00\x00\x00\x00' -tRp11699 -sVbmw -p11700 -g24 -(g26 -S'\xcb\x03\x00\x00\x00\x00\x00\x00' -tRp11701 -sVdeclaration -p11702 -g24 -(g26 -S'\xf1\x08\x00\x00\x00\x00\x00\x00' -tRp11703 -sVhardcore -p11704 -g24 -(g26 -S'b\x0f\x00\x00\x00\x00\x00\x00' -tRp11705 -sVsound -p11706 -g24 -(g26 -S'\x87\x1f\x00\x00\x00\x00\x00\x00' -tRp11707 -sVprofiles -p11708 -g24 -(g26 -S't\x1a\x00\x00\x00\x00\x00\x00' -tRp11709 -sVcompile -p11710 -g24 -(g26 -S'\xf5\x06\x00\x00\x00\x00\x00\x00' -tRp11711 -sVassociates -p11712 -g24 -(g26 -S'6\x02\x00\x00\x00\x00\x00\x00' -tRp11713 -sVongoing -p11714 -g24 -(g26 -S'x\x17\x00\x00\x00\x00\x00\x00' -tRp11715 -sVpromising -p11716 -g24 -(g26 -S'\x8b\x1a\x00\x00\x00\x00\x00\x00' -tRp11717 -sVcancelled -p11718 -g24 -(g26 -S'\xea\x04\x00\x00\x00\x00\x00\x00' -tRp11719 -sVcock -p11720 -g24 -(g26 -S'y\x06\x00\x00\x00\x00\x00\x00' -tRp11721 -sVbathrooms -p11722 -g24 -(g26 -S'\x07\x03\x00\x00\x00\x00\x00\x00' -tRp11723 -sVhandy -p11724 -g24 -(g26 -S'T\x0f\x00\x00\x00\x00\x00\x00' -tRp11725 -sVconferences -p11726 -g24 -(g26 -S'8\x07\x00\x00\x00\x00\x00\x00' -tRp11727 -sVcharacteristics -p11728 -g24 -(g26 -S'\xa1\x05\x00\x00\x00\x00\x00\x00' -tRp11729 -sVsquirt -p11730 -g24 -(g26 -S'\xf0\x1f\x00\x00\x00\x00\x00\x00' -tRp11731 -sVsleeping -p11732 -g24 -(g26 -S')\x1f\x00\x00\x00\x00\x00\x00' -tRp11733 -sVstrain -p11734 -g24 -(g26 -S'\\ \x00\x00\x00\x00\x00\x00' -tRp11735 -sVsudden -p11736 -g24 -(g26 -S'\xbf \x00\x00\x00\x00\x00\x00' -tRp11737 -sVbaths -p11738 -g24 -(g26 -S'\x08\x03\x00\x00\x00\x00\x00\x00' -tRp11739 -sVprotein -p11740 -g24 -(g26 -S'\xb0\x1a\x00\x00\x00\x00\x00\x00' -tRp11741 -sVeveryday -p11742 -g24 -(g26 -S'\xfa\x0b\x00\x00\x00\x00\x00\x00' -tRp11743 -sVmovements -p11744 -g24 -(g26 -S'\r\x16\x00\x00\x00\x00\x00\x00' -tRp11745 -sVbags -p11746 -g24 -(g26 -S'\xc2\x02\x00\x00\x00\x00\x00\x00' -tRp11747 -sVpar -p11748 -g24 -(g26 -S'$\x18\x00\x00\x00\x00\x00\x00' -tRp11749 -sVpas -p11750 -g24 -(g26 -S'P\x18\x00\x00\x00\x00\x00\x00' -tRp11751 -sVpat -p11752 -g24 -(g26 -S'b\x18\x00\x00\x00\x00\x00\x00' -tRp11753 -sVdoctor -p11754 -g24 -(g26 -S'9\n\x00\x00\x00\x00\x00\x00' -tRp11755 -sVpay -p11756 -g24 -(g26 -S'u\x18\x00\x00\x00\x00\x00\x00' -tRp11757 -sVauthentication -p11758 -g24 -(g26 -S'\x84\x02\x00\x00\x00\x00\x00\x00' -tRp11759 -sVpac -p11760 -g24 -(g26 -S'\xf1\x17\x00\x00\x00\x00\x00\x00' -tRp11761 -sVspeech -p11762 -g24 -(g26 -S'\xbe\x1f\x00\x00\x00\x00\x00\x00' -tRp11763 -sVarguments -p11764 -g24 -(g26 -S'\xe9\x01\x00\x00\x00\x00\x00\x00' -tRp11765 -sVflashers -p11766 -g24 -(g26 -S'K\r\x00\x00\x00\x00\x00\x00' -tRp11767 -sVpam -p11768 -g24 -(g26 -S'\x14\x18\x00\x00\x00\x00\x00\x00' -tRp11769 -sVpan -p11770 -g24 -(g26 -S'\x16\x18\x00\x00\x00\x00\x00\x00' -tRp11771 -sVexhaust -p11772 -g24 -(g26 -S',\x0c\x00\x00\x00\x00\x00\x00' -tRp11773 -sVjeffrey -p11774 -g24 -(g26 -S'\x07\x12\x00\x00\x00\x00\x00\x00' -tRp11775 -sVoil -p11776 -g24 -(g26 -S'd\x17\x00\x00\x00\x00\x00\x00' -tRp11777 -sVassist -p11778 -g24 -(g26 -S'/\x02\x00\x00\x00\x00\x00\x00' -tRp11779 -sVcompanion -p11780 -g24 -(g26 -S'\xe0\x06\x00\x00\x00\x00\x00\x00' -tRp11781 -sVrunning -p11782 -g24 -(g26 -S'c\x1d\x00\x00\x00\x00\x00\x00' -tRp11783 -sVclimbing -p11784 -g24 -(g26 -S'N\x06\x00\x00\x00\x00\x00\x00' -tRp11785 -sVtotally -p11786 -g24 -(g26 -S'y"\x00\x00\x00\x00\x00\x00' -tRp11787 -sVdrain -p11788 -g24 -(g26 -S'x\n\x00\x00\x00\x00\x00\x00' -tRp11789 -sVlargely -p11790 -g24 -(g26 -S'\xeb\x12\x00\x00\x00\x00\x00\x00' -tRp11791 -sVmacro -p11792 -g24 -(g26 -S'7\x14\x00\x00\x00\x00\x00\x00' -tRp11793 -sVroommate -p11794 -g24 -(g26 -S'/\x1d\x00\x00\x00\x00\x00\x00' -tRp11795 -sVmortgages -p11796 -g24 -(g26 -S'\xf2\x15\x00\x00\x00\x00\x00\x00' -tRp11797 -sVsolve -p11798 -g24 -(g26 -S'o\x1f\x00\x00\x00\x00\x00\x00' -tRp11799 -sVbottle -p11800 -g24 -(g26 -S'\xfe\x03\x00\x00\x00\x00\x00\x00' -tRp11801 -sVgates -p11802 -g24 -(g26 -S';\x0e\x00\x00\x00\x00\x00\x00' -tRp11803 -sVuniprotkb -p11804 -g24 -(g26 -S'q#\x00\x00\x00\x00\x00\x00' -tRp11805 -sVmoney -p11806 -g24 -(g26 -S'\xd4\x15\x00\x00\x00\x00\x00\x00' -tRp11807 -sVadjustments -p11808 -g24 -(g26 -S'\x8a\x00\x00\x00\x00\x00\x00\x00' -tRp11809 -sVpissing -p11810 -g24 -(g26 -S'-\x19\x00\x00\x00\x00\x00\x00' -tRp11811 -sVaspect -p11812 -g24 -(g26 -S'\x1e\x02\x00\x00\x00\x00\x00\x00' -tRp11813 -sVflavor -p11814 -g24 -(g26 -S'N\r\x00\x00\x00\x00\x00\x00' -tRp11815 -sVguys -p11816 -g24 -(g26 -S'0\x0f\x00\x00\x00\x00\x00\x00' -tRp11817 -sVbarbados -p11818 -g24 -(g26 -S'\xe4\x02\x00\x00\x00\x00\x00\x00' -tRp11819 -sVasthma -p11820 -g24 -(g26 -S'B\x02\x00\x00\x00\x00\x00\x00' -tRp11821 -sVnick -p11822 -g24 -(g26 -S'\xbb\x16\x00\x00\x00\x00\x00\x00' -tRp11823 -sVmcdonald -p11824 -g24 -(g26 -S'\xdf\x14\x00\x00\x00\x00\x00\x00' -tRp11825 -sVtourism -p11826 -g24 -(g26 -S'\x80"\x00\x00\x00\x00\x00\x00' -tRp11827 -sVperth -p11828 -g24 -(g26 -S'\xd0\x18\x00\x00\x00\x00\x00\x00' -tRp11829 -sVnav -p11830 -g24 -(g26 -S'l\x16\x00\x00\x00\x00\x00\x00' -tRp11831 -sVextensive -p11832 -g24 -(g26 -S'q\x0c\x00\x00\x00\x00\x00\x00' -tRp11833 -sVpill -p11834 -g24 -(g26 -S'\x1e\x19\x00\x00\x00\x00\x00\x00' -tRp11835 -sVcareers -p11836 -g24 -(g26 -S'\x0b\x05\x00\x00\x00\x00\x00\x00' -tRp11837 -sVgenome -p11838 -g24 -(g26 -S'g\x0e\x00\x00\x00\x00\x00\x00' -tRp11839 -sVgrip -p11840 -g24 -(g26 -S'\xff\x0e\x00\x00\x00\x00\x00\x00' -tRp11841 -sVjake -p11842 -g24 -(g26 -S'\xee\x11\x00\x00\x00\x00\x00\x00' -tRp11843 -sVfucked -p11844 -g24 -(g26 -S'\xf5\r\x00\x00\x00\x00\x00\x00' -tRp11845 -sVnat -p11846 -g24 -(g26 -S'^\x16\x00\x00\x00\x00\x00\x00' -tRp11847 -sVforge -p11848 -g24 -(g26 -S'\x9c\r\x00\x00\x00\x00\x00\x00' -tRp11849 -sVgrid -p11850 -g24 -(g26 -S'\xfc\x0e\x00\x00\x00\x00\x00\x00' -tRp11851 -sVmon -p11852 -g24 -(g26 -S'\xd0\x15\x00\x00\x00\x00\x00\x00' -tRp11853 -sVmom -p11854 -g24 -(g26 -S'\xcb\x15\x00\x00\x00\x00\x00\x00' -tRp11855 -sVphpbb -p11856 -g24 -(g26 -S'\x00\x19\x00\x00\x00\x00\x00\x00' -tRp11857 -sVrailroad -p11858 -g24 -(g26 -S'A\x1b\x00\x00\x00\x00\x00\x00' -tRp11859 -sVviewpicture -p11860 -g24 -(g26 -S'1$\x00\x00\x00\x00\x00\x00' -tRp11861 -sVmod -p11862 -g24 -(g26 -S'\xb1\x15\x00\x00\x00\x00\x00\x00' -tRp11863 -sVchristina -p11864 -g24 -(g26 -S'\xf4\x05\x00\x00\x00\x00\x00\x00' -tRp11865 -sVadams -p11866 -g24 -(g26 -S'm\x00\x00\x00\x00\x00\x00\x00' -tRp11867 -sVchristine -p11868 -g24 -(g26 -S'\xf5\x05\x00\x00\x00\x00\x00\x00' -tRp11869 -sVidentifying -p11870 -g24 -(g26 -S'\x83\x10\x00\x00\x00\x00\x00\x00' -tRp11871 -sVserves -p11872 -g24 -(g26 -S'g\x1e\x00\x00\x00\x00\x00\x00' -tRp11873 -sVserver -p11874 -g24 -(g26 -S'e\x1e\x00\x00\x00\x00\x00\x00' -tRp11875 -sVfacing -p11876 -g24 -(g26 -S'\x8b\x0c\x00\x00\x00\x00\x00\x00' -tRp11877 -sVchamber -p11878 -g24 -(g26 -S'\x88\x05\x00\x00\x00\x00\x00\x00' -tRp11879 -sVaudience -p11880 -g24 -(g26 -S'w\x02\x00\x00\x00\x00\x00\x00' -tRp11881 -sVnose -p11882 -g24 -(g26 -S'\xe9\x16\x00\x00\x00\x00\x00\x00' -tRp11883 -sVretailers -p11884 -g24 -(g26 -S'\xb2\x1c\x00\x00\x00\x00\x00\x00' -tRp11885 -sVdrainage -p11886 -g24 -(g26 -S'y\n\x00\x00\x00\x00\x00\x00' -tRp11887 -sVserved -p11888 -g24 -(g26 -S'd\x1e\x00\x00\x00\x00\x00\x00' -tRp11889 -sVnice -p11890 -g24 -(g26 -S'\xb9\x16\x00\x00\x00\x00\x00\x00' -tRp11891 -sVspecifies -p11892 -g24 -(g26 -S'\xb9\x1f\x00\x00\x00\x00\x00\x00' -tRp11893 -sVroutines -p11894 -g24 -(g26 -S'G\x1d\x00\x00\x00\x00\x00\x00' -tRp11895 -sVjews -p11896 -g24 -(g26 -S'\x18\x12\x00\x00\x00\x00\x00\x00' -tRp11897 -sVdoll -p11898 -g24 -(g26 -S'H\n\x00\x00\x00\x00\x00\x00' -tRp11899 -sVspecified -p11900 -g24 -(g26 -S'\xb8\x1f\x00\x00\x00\x00\x00\x00' -tRp11901 -sVimages -p11902 -g24 -(g26 -S'\x97\x10\x00\x00\x00\x00\x00\x00' -tRp11903 -sVjoan -p11904 -g24 -(g26 -S'\x1f\x12\x00\x00\x00\x00\x00\x00' -tRp11905 -sVmatching -p11906 -g24 -(g26 -S'\xc3\x14\x00\x00\x00\x00\x00\x00' -tRp11907 -sVusers -p11908 -g24 -(g26 -S'\xae#\x00\x00\x00\x00\x00\x00' -tRp11909 -sVgross -p11910 -g24 -(g26 -S'\x02\x0f\x00\x00\x00\x00\x00\x00' -tRp11911 -sVgenetics -p11912 -g24 -(g26 -S'd\x0e\x00\x00\x00\x00\x00\x00' -tRp11913 -sVconfirm -p11914 -g24 -(g26 -S'D\x07\x00\x00\x00\x00\x00\x00' -tRp11915 -sVsudan -p11916 -g24 -(g26 -S'\xbe \x00\x00\x00\x00\x00\x00' -tRp11917 -sVcolonial -p11918 -g24 -(g26 -S'\xa1\x06\x00\x00\x00\x00\x00\x00' -tRp11919 -sVzdnet -p11920 -g24 -(g26 -S'\xb6%\x00\x00\x00\x00\x00\x00' -tRp11921 -sVpioneer -p11922 -g24 -(g26 -S"'\x19\x00\x00\x00\x00\x00\x00" -tRp11923 -sVescort -p11924 -g24 -(g26 -S'\xc5\x0b\x00\x00\x00\x00\x00\x00' -tRp11925 -sVaffiliate -p11926 -g24 -(g26 -S'\xc2\x00\x00\x00\x00\x00\x00\x00' -tRp11927 -sVmoderate -p11928 -g24 -(g26 -S'\xb9\x15\x00\x00\x00\x00\x00\x00' -tRp11929 -sVknife -p11930 -g24 -(g26 -S'\xa8\x12\x00\x00\x00\x00\x00\x00' -tRp11931 -sVmeasuring -p11932 -g24 -(g26 -S'\xed\x14\x00\x00\x00\x00\x00\x00' -tRp11933 -sVspecializing -p11934 -g24 -(g26 -S'\xad\x1f\x00\x00\x00\x00\x00\x00' -tRp11935 -sVmrna -p11936 -g24 -(g26 -S'\x1b\x16\x00\x00\x00\x00\x00\x00' -tRp11937 -sVseconds -p11938 -g24 -(g26 -S'\x13\x1e\x00\x00\x00\x00\x00\x00' -tRp11939 -sVmanufactured -p11940 -g24 -(g26 -S'\x80\x14\x00\x00\x00\x00\x00\x00' -tRp11941 -sVarts -p11942 -g24 -(g26 -S'\r\x02\x00\x00\x00\x00\x00\x00' -tRp11943 -sVbroken -p11944 -g24 -(g26 -S'T\x04\x00\x00\x00\x00\x00\x00' -tRp11945 -sVdrums -p11946 -g24 -(g26 -S'\x9c\n\x00\x00\x00\x00\x00\x00' -tRp11947 -sVrefers -p11948 -g24 -(g26 -S'\xd7\x1b\x00\x00\x00\x00\x00\x00' -tRp11949 -sVmanufacturer -p11950 -g24 -(g26 -S'\x81\x14\x00\x00\x00\x00\x00\x00' -tRp11951 -sVwilliam -p11952 -g24 -(g26 -S'\x12%\x00\x00\x00\x00\x00\x00' -tRp11953 -sVconducting -p11954 -g24 -(g26 -S'5\x07\x00\x00\x00\x00\x00\x00' -tRp11955 -sVoperating -p11956 -g24 -(g26 -S'\x8a\x17\x00\x00\x00\x00\x00\x00' -tRp11957 -sVscreensavers -p11958 -g24 -(g26 -S'\xf2\x1d\x00\x00\x00\x00\x00\x00' -tRp11959 -sVstations -p11960 -g24 -(g26 -S'# \x00\x00\x00\x00\x00\x00' -tRp11961 -sVisland -p11962 -g24 -(g26 -S'\xc9\x11\x00\x00\x00\x00\x00\x00' -tRp11963 -sVmarc -p11964 -g24 -(g26 -S'\x8b\x14\x00\x00\x00\x00\x00\x00' -tRp11965 -sVgenerated -p11966 -g24 -(g26 -S'X\x0e\x00\x00\x00\x00\x00\x00' -tRp11967 -sVmixer -p11968 -g24 -(g26 -S'\xa4\x15\x00\x00\x00\x00\x00\x00' -tRp11969 -sVpractical -p11970 -g24 -(g26 -S'\xe6\x19\x00\x00\x00\x00\x00\x00' -tRp11971 -sVairline -p11972 -g24 -(g26 -S'\xec\x00\x00\x00\x00\x00\x00\x00' -tRp11973 -sVpockets -p11974 -g24 -(g26 -S's\x19\x00\x00\x00\x00\x00\x00' -tRp11975 -sVmounting -p11976 -g24 -(g26 -S'\x07\x16\x00\x00\x00\x00\x00\x00' -tRp11977 -sVmixed -p11978 -g24 -(g26 -S'\xa3\x15\x00\x00\x00\x00\x00\x00' -tRp11979 -sVthreesome -p11980 -g24 -(g26 -S'\x12"\x00\x00\x00\x00\x00\x00' -tRp11981 -sVmarriott -p11982 -g24 -(g26 -S'\xa8\x14\x00\x00\x00\x00\x00\x00' -tRp11983 -sVroad -p11984 -g24 -(g26 -S'\t\x1d\x00\x00\x00\x00\x00\x00' -tRp11985 -sVlands -p11986 -g24 -(g26 -S'\xdd\x12\x00\x00\x00\x00\x00\x00' -tRp11987 -sVcoupon -p11988 -g24 -(g26 -S'\x1d\x08\x00\x00\x00\x00\x00\x00' -tRp11989 -sVspreading -p11990 -g24 -(g26 -S'\xe4\x1f\x00\x00\x00\x00\x00\x00' -tRp11991 -sVskilled -p11992 -g24 -(g26 -S'\x1c\x1f\x00\x00\x00\x00\x00\x00' -tRp11993 -sVblessed -p11994 -g24 -(g26 -S'\xb0\x03\x00\x00\x00\x00\x00\x00' -tRp11995 -sVvacation -p11996 -g24 -(g26 -S'\xc3#\x00\x00\x00\x00\x00\x00' -tRp11997 -sVreferences -p11998 -g24 -(g26 -S'\xd2\x1b\x00\x00\x00\x00\x00\x00' -tRp11999 -sVinbox -p12000 -g24 -(g26 -S'\xbf\x10\x00\x00\x00\x00\x00\x00' -tRp12001 -sVstrip -p12002 -g24 -(g26 -S'v \x00\x00\x00\x00\x00\x00' -tRp12003 -sVmark -p12004 -g24 -(g26 -S'\x9c\x14\x00\x00\x00\x00\x00\x00' -tRp12005 -sVsprings -p12006 -g24 -(g26 -S'\xe8\x1f\x00\x00\x00\x00\x00\x00' -tRp12007 -sVpharmaceutical -p12008 -g24 -(g26 -S'\xe1\x18\x00\x00\x00\x00\x00\x00' -tRp12009 -sVcompliant -p12010 -g24 -(g26 -S'\x03\x07\x00\x00\x00\x00\x00\x00' -tRp12011 -sVlions -p12012 -g24 -(g26 -S'\xa1\x13\x00\x00\x00\x00\x00\x00' -tRp12013 -sVacre -p12014 -g24 -(g26 -S'T\x00\x00\x00\x00\x00\x00\x00' -tRp12015 -sVpleased -p12016 -g24 -(g26 -S'a\x19\x00\x00\x00\x00\x00\x00' -tRp12017 -sVstrikes -p12018 -g24 -(g26 -S'r \x00\x00\x00\x00\x00\x00' -tRp12019 -sVsophisticated -p12020 -g24 -(g26 -S'\x7f\x1f\x00\x00\x00\x00\x00\x00' -tRp12021 -sVbookstore -p12022 -g24 -(g26 -S'\xea\x03\x00\x00\x00\x00\x00\x00' -tRp12023 -sVgore -p12024 -g24 -(g26 -S'\xb6\x0e\x00\x00\x00\x00\x00\x00' -tRp12025 -sVspice -p12026 -g24 -(g26 -S'\xca\x1f\x00\x00\x00\x00\x00\x00' -tRp12027 -sVarranged -p12028 -g24 -(g26 -S'\xf8\x01\x00\x00\x00\x00\x00\x00' -tRp12029 -sVromantic -p12030 -g24 -(g26 -S')\x1d\x00\x00\x00\x00\x00\x00' -tRp12031 -sVvhs -p12032 -g24 -(g26 -S'\x18$\x00\x00\x00\x00\x00\x00' -tRp12033 -sVemissions -p12034 -g24 -(g26 -S'B\x0b\x00\x00\x00\x00\x00\x00' -tRp12035 -sVdvd -p12036 -g24 -(g26 -S'\xba\n\x00\x00\x00\x00\x00\x00' -tRp12037 -sVvideos -p12038 -g24 -(g26 -S"'$\x00\x00\x00\x00\x00\x00" -tRp12039 -sVrapids -p12040 -g24 -(g26 -S'`\x1b\x00\x00\x00\x00\x00\x00' -tRp12041 -sVcitation -p12042 -g24 -(g26 -S'\x16\x06\x00\x00\x00\x00\x00\x00' -tRp12043 -sVdeer -p12044 -g24 -(g26 -S'\x01\t\x00\x00\x00\x00\x00\x00' -tRp12045 -sVdeep -p12046 -g24 -(g26 -S'\xfe\x08\x00\x00\x00\x00\x00\x00' -tRp12047 -sVgeneral -p12048 -g24 -(g26 -S'U\x0e\x00\x00\x00\x00\x00\x00' -tRp12049 -sVimagination -p12050 -g24 -(g26 -S'\x98\x10\x00\x00\x00\x00\x00\x00' -tRp12051 -sVexamine -p12052 -g24 -(g26 -S'\x05\x0c\x00\x00\x00\x00\x00\x00' -tRp12053 -sVfile -p12054 -g24 -(g26 -S'\x06\r\x00\x00\x00\x00\x00\x00' -tRp12055 -sVfreeware -p12056 -g24 -(g26 -S'\xd9\r\x00\x00\x00\x00\x00\x00' -tRp12057 -sVgirlfriend -p12058 -g24 -(g26 -S'\x8b\x0e\x00\x00\x00\x00\x00\x00' -tRp12059 -sVlifetime -p12060 -g24 -(g26 -S'{\x13\x00\x00\x00\x00\x00\x00' -tRp12061 -sVcables -p12062 -g24 -(g26 -S'\xb6\x04\x00\x00\x00\x00\x00\x00' -tRp12063 -sVfilm -p12064 -g24 -(g26 -S'\r\r\x00\x00\x00\x00\x00\x00' -tRp12065 -sVamendments -p12066 -g24 -(g26 -S'>\x01\x00\x00\x00\x00\x00\x00' -tRp12067 -sVassessing -p12068 -g24 -(g26 -S'&\x02\x00\x00\x00\x00\x00\x00' -tRp12069 -sVistanbul -p12070 -g24 -(g26 -S'\xd7\x11\x00\x00\x00\x00\x00\x00' -tRp12071 -sVpersonnel -p12072 -g24 -(g26 -S'\xcc\x18\x00\x00\x00\x00\x00\x00' -tRp12073 -sVdrivers -p12074 -g24 -(g26 -S'\x92\n\x00\x00\x00\x00\x00\x00' -tRp12075 -sVhybrid -p12076 -g24 -(g26 -S'd\x10\x00\x00\x00\x00\x00\x00' -tRp12077 -sVfield -p12078 -g24 -(g26 -S'\xfa\x0c\x00\x00\x00\x00\x00\x00' -tRp12079 -sVcleanup -p12080 -g24 -(g26 -S'>\x06\x00\x00\x00\x00\x00\x00' -tRp12081 -sVboc -p12082 -g24 -(g26 -S'\xd4\x03\x00\x00\x00\x00\x00\x00' -tRp12083 -sVweights -p12084 -g24 -(g26 -S'\xe8$\x00\x00\x00\x00\x00\x00' -tRp12085 -sVxanax -p12086 -g24 -(g26 -S'\x85%\x00\x00\x00\x00\x00\x00' -tRp12087 -sVstudents -p12088 -g24 -(g26 -S'\x88 \x00\x00\x00\x00\x00\x00' -tRp12089 -sVnarrative -p12090 -g24 -(g26 -S'W\x16\x00\x00\x00\x00\x00\x00' -tRp12091 -sVvertex -p12092 -g24 -(g26 -S'\x0f$\x00\x00\x00\x00\x00\x00' -tRp12093 -sVpackaging -p12094 -g24 -(g26 -S'\xf7\x17\x00\x00\x00\x00\x00\x00' -tRp12095 -sVimportant -p12096 -g24 -(g26 -S'\xaf\x10\x00\x00\x00\x00\x00\x00' -tRp12097 -sVtackle -p12098 -g24 -(g26 -S'O!\x00\x00\x00\x00\x00\x00' -tRp12099 -sVlegal -p12100 -g24 -(g26 -S'5\x13\x00\x00\x00\x00\x00\x00' -tRp12101 -sVremote -p12102 -g24 -(g26 -S'2\x1c\x00\x00\x00\x00\x00\x00' -tRp12103 -sVassets -p12104 -g24 -(g26 -S'*\x02\x00\x00\x00\x00\x00\x00' -tRp12105 -sVgod -p12106 -g24 -(g26 -S'\xa9\x0e\x00\x00\x00\x00\x00\x00' -tRp12107 -sVdeluxe -p12108 -g24 -(g26 -S'(\t\x00\x00\x00\x00\x00\x00' -tRp12109 -sVresolution -p12110 -g24 -(g26 -S'\x88\x1c\x00\x00\x00\x00\x00\x00' -tRp12111 -sVmotel -p12112 -g24 -(g26 -S'\xf6\x15\x00\x00\x00\x00\x00\x00' -tRp12113 -sVrepresent -p12114 -g24 -(g26 -S'X\x1c\x00\x00\x00\x00\x00\x00' -tRp12115 -sVcolleges -p12116 -g24 -(g26 -S'\x9c\x06\x00\x00\x00\x00\x00\x00' -tRp12117 -sVforget -p12118 -g24 -(g26 -S'\x9d\r\x00\x00\x00\x00\x00\x00' -tRp12119 -sVfounder -p12120 -g24 -(g26 -S'\xbb\r\x00\x00\x00\x00\x00\x00' -tRp12121 -sVaids -p12122 -g24 -(g26 -S'\xe5\x00\x00\x00\x00\x00\x00\x00' -tRp12123 -sVsuburban -p12124 -g24 -(g26 -S'\xb6 \x00\x00\x00\x00\x00\x00' -tRp12125 -sVallergy -p12126 -g24 -(g26 -S'\x18\x01\x00\x00\x00\x00\x00\x00' -tRp12127 -sVdollar -p12128 -g24 -(g26 -S'I\n\x00\x00\x00\x00\x00\x00' -tRp12129 -sVfounded -p12130 -g24 -(g26 -S'\xba\r\x00\x00\x00\x00\x00\x00' -tRp12131 -sVbrowsers -p12132 -g24 -(g26 -S'a\x04\x00\x00\x00\x00\x00\x00' -tRp12133 -sVtrainers -p12134 -g24 -(g26 -S'\xad"\x00\x00\x00\x00\x00\x00' -tRp12135 -sVcooperative -p12136 -g24 -(g26 -S'\xd8\x07\x00\x00\x00\x00\x00\x00' -tRp12137 -sVtalks -p12138 -g24 -(g26 -S'a!\x00\x00\x00\x00\x00\x00' -tRp12139 -sVexpressions -p12140 -g24 -(g26 -S'i\x0c\x00\x00\x00\x00\x00\x00' -tRp12141 -sVchildren -p12142 -g24 -(g26 -S'\xdd\x05\x00\x00\x00\x00\x00\x00' -tRp12143 -sVemily -p12144 -g24 -(g26 -S'>\x0b\x00\x00\x00\x00\x00\x00' -tRp12145 -sVmilf -p12146 -g24 -(g26 -S'h\x15\x00\x00\x00\x00\x00\x00' -tRp12147 -sVrwanda -p12148 -g24 -(g26 -S'n\x1d\x00\x00\x00\x00\x00\x00' -tRp12149 -sValberta -p12150 -g24 -(g26 -S'\xfd\x00\x00\x00\x00\x00\x00\x00' -tRp12151 -sVenjoying -p12152 -g24 -(g26 -S'\x82\x0b\x00\x00\x00\x00\x00\x00' -tRp12153 -sVpremium -p12154 -g24 -(g26 -S'\x08\x1a\x00\x00\x00\x00\x00\x00' -tRp12155 -sVparcel -p12156 -g24 -(g26 -S'.\x18\x00\x00\x00\x00\x00\x00' -tRp12157 -sVsitting -p12158 -g24 -(g26 -S'\x0f\x1f\x00\x00\x00\x00\x00\x00' -tRp12159 -sVtranslations -p12160 -g24 -(g26 -S'\xc5"\x00\x00\x00\x00\x00\x00' -tRp12161 -sVscout -p12162 -g24 -(g26 -S'\xec\x1d\x00\x00\x00\x00\x00\x00' -tRp12163 -sVhewlett -p12164 -g24 -(g26 -S'\xc1\x0f\x00\x00\x00\x00\x00\x00' -tRp12165 -sVfall -p12166 -g24 -(g26 -S'\x9e\x0c\x00\x00\x00\x00\x00\x00' -tRp12167 -sVwinning -p12168 -g24 -(g26 -S'#%\x00\x00\x00\x00\x00\x00' -tRp12169 -sVdifference -p12170 -g24 -(g26 -S'\xb9\t\x00\x00\x00\x00\x00\x00' -tRp12171 -sVnewly -p12172 -g24 -(g26 -S'\xa7\x16\x00\x00\x00\x00\x00\x00' -tRp12173 -sVsyracuse -p12174 -g24 -(g26 -S'C!\x00\x00\x00\x00\x00\x00' -tRp12175 -sVsteve -p12176 -g24 -(g26 -S'= \x00\x00\x00\x00\x00\x00' -tRp12177 -sVnorfolk -p12178 -g24 -(g26 -S'\xdd\x16\x00\x00\x00\x00\x00\x00' -tRp12179 -sVmothers -p12180 -g24 -(g26 -S'\xfa\x15\x00\x00\x00\x00\x00\x00' -tRp12181 -sVcelebrity -p12182 -g24 -(g26 -S'\\\x05\x00\x00\x00\x00\x00\x00' -tRp12183 -sVapplicable -p12184 -g24 -(g26 -S'\xae\x01\x00\x00\x00\x00\x00\x00' -tRp12185 -sVmoldova -p12186 -g24 -(g26 -S'\xc8\x15\x00\x00\x00\x00\x00\x00' -tRp12187 -sVgd -p12188 -g24 -(g26 -S'J\x0e\x00\x00\x00\x00\x00\x00' -tRp12189 -sVsaudi -p12190 -g24 -(g26 -S'\xb1\x1d\x00\x00\x00\x00\x00\x00' -tRp12191 -sVbiological -p12192 -g24 -(g26 -S'\x8d\x03\x00\x00\x00\x00\x00\x00' -tRp12193 -sVgang -p12194 -g24 -(g26 -S'+\x0e\x00\x00\x00\x00\x00\x00' -tRp12195 -sVneighborhood -p12196 -g24 -(g26 -S'\x8c\x16\x00\x00\x00\x00\x00\x00' -tRp12197 -sVportable -p12198 -g24 -(g26 -S'\xa8\x19\x00\x00\x00\x00\x00\x00' -tRp12199 -sVhitachi -p12200 -g24 -(g26 -S'\xe4\x0f\x00\x00\x00\x00\x00\x00' -tRp12201 -sVzero -p12202 -g24 -(g26 -S'\xb9%\x00\x00\x00\x00\x00\x00' -tRp12203 -sVtitles -p12204 -g24 -(g26 -S'K"\x00\x00\x00\x00\x00\x00' -tRp12205 -sVquebec -p12206 -g24 -(g26 -S'\x17\x1b\x00\x00\x00\x00\x00\x00' -tRp12207 -sVlawyer -p12208 -g24 -(g26 -S'\x0c\x13\x00\x00\x00\x00\x00\x00' -tRp12209 -sVplugins -p12210 -g24 -(g26 -S'i\x19\x00\x00\x00\x00\x00\x00' -tRp12211 -sVribbon -p12212 -g24 -(g26 -S'\xe0\x1c\x00\x00\x00\x00\x00\x00' -tRp12213 -sVcreatures -p12214 -g24 -(g26 -S'G\x08\x00\x00\x00\x00\x00\x00' -tRp12215 -sVdial -p12216 -g24 -(g26 -S'\xa0\t\x00\x00\x00\x00\x00\x00' -tRp12217 -sVdefence -p12218 -g24 -(g26 -S'\x06\t\x00\x00\x00\x00\x00\x00' -tRp12219 -sVstood -p12220 -g24 -(g26 -S'N \x00\x00\x00\x00\x00\x00' -tRp12221 -sVabs -p12222 -g24 -(g26 -S'\x0e\x00\x00\x00\x00\x00\x00\x00' -tRp12223 -sVabu -p12224 -g24 -(g26 -S'\x16\x00\x00\x00\x00\x00\x00\x00' -tRp12225 -sVtribute -p12226 -g24 -(g26 -S'\xf7"\x00\x00\x00\x00\x00\x00' -tRp12227 -sVpublic -p12228 -g24 -(g26 -S'\xd4\x1a\x00\x00\x00\x00\x00\x00' -tRp12229 -sVmovement -p12230 -g24 -(g26 -S'\x0c\x16\x00\x00\x00\x00\x00\x00' -tRp12231 -sVcompilation -p12232 -g24 -(g26 -S'\xf4\x06\x00\x00\x00\x00\x00\x00' -tRp12233 -sVcomponent -p12234 -g24 -(g26 -S'\x08\x07\x00\x00\x00\x00\x00\x00' -tRp12235 -sVranges -p12236 -g24 -(g26 -S'U\x1b\x00\x00\x00\x00\x00\x00' -tRp12237 -sVranger -p12238 -g24 -(g26 -S'S\x1b\x00\x00\x00\x00\x00\x00' -tRp12239 -sVthreads -p12240 -g24 -(g26 -S'\r"\x00\x00\x00\x00\x00\x00' -tRp12241 -sVpublisher -p12242 -g24 -(g26 -S'\xdb\x1a\x00\x00\x00\x00\x00\x00' -tRp12243 -sVsearch -p12244 -g24 -(g26 -S'\x04\x1e\x00\x00\x00\x00\x00\x00' -tRp12245 -sVbible -p12246 -g24 -(g26 -S'p\x03\x00\x00\x00\x00\x00\x00' -tRp12247 -sVfwd -p12248 -g24 -(g26 -S'\x16\x0e\x00\x00\x00\x00\x00\x00' -tRp12249 -sVmargin -p12250 -g24 -(g26 -S'\x91\x14\x00\x00\x00\x00\x00\x00' -tRp12251 -sVjackie -p12252 -g24 -(g26 -S'\xe7\x11\x00\x00\x00\x00\x00\x00' -tRp12253 -sVairport -p12254 -g24 -(g26 -S'\xef\x00\x00\x00\x00\x00\x00\x00' -tRp12255 -sVdisputes -p12256 -g24 -(g26 -S'\x11\n\x00\x00\x00\x00\x00\x00' -tRp12257 -sVpublished -p12258 -g24 -(g26 -S'\xda\x1a\x00\x00\x00\x00\x00\x00' -tRp12259 -sVnarrow -p12260 -g24 -(g26 -S'X\x16\x00\x00\x00\x00\x00\x00' -tRp12261 -sValexandria -p12262 -g24 -(g26 -S'\x06\x01\x00\x00\x00\x00\x00\x00' -tRp12263 -sVbuses -p12264 -g24 -(g26 -S'\x99\x04\x00\x00\x00\x00\x00\x00' -tRp12265 -sVtransit -p12266 -g24 -(g26 -S'\xc0"\x00\x00\x00\x00\x00\x00' -tRp12267 -sVafrica -p12268 -g24 -(g26 -S'\xca\x00\x00\x00\x00\x00\x00\x00' -tRp12269 -sVestablish -p12270 -g24 -(g26 -S'\xd1\x0b\x00\x00\x00\x00\x00\x00' -tRp12271 -sVreadily -p12272 -g24 -(g26 -S'~\x1b\x00\x00\x00\x00\x00\x00' -tRp12273 -sVshareholders -p12274 -g24 -(g26 -S'\x94\x1e\x00\x00\x00\x00\x00\x00' -tRp12275 -sVeye -p12276 -g24 -(g26 -S'|\x0c\x00\x00\x00\x00\x00\x00' -tRp12277 -sVdistinct -p12278 -g24 -(g26 -S'\x16\n\x00\x00\x00\x00\x00\x00' -tRp12279 -sVdestination -p12280 -g24 -(g26 -S'p\t\x00\x00\x00\x00\x00\x00' -tRp12281 -sVgovernance -p12282 -g24 -(g26 -S'\xc0\x0e\x00\x00\x00\x00\x00\x00' -tRp12283 -sVdamaged -p12284 -g24 -(g26 -S'\xa7\x08\x00\x00\x00\x00\x00\x00' -tRp12285 -sVcomparing -p12286 -g24 -(g26 -S'\xe7\x06\x00\x00\x00\x00\x00\x00' -tRp12287 -sVamenities -p12288 -g24 -(g26 -S'?\x01\x00\x00\x00\x00\x00\x00' -tRp12289 -sVachieving -p12290 -g24 -(g26 -S'H\x00\x00\x00\x00\x00\x00\x00' -tRp12291 -sVbulgarian -p12292 -g24 -(g26 -S'\x84\x04\x00\x00\x00\x00\x00\x00' -tRp12293 -sVexpedia -p12294 -g24 -(g26 -S'B\x0c\x00\x00\x00\x00\x00\x00' -tRp12295 -sVengaged -p12296 -g24 -(g26 -S'q\x0b\x00\x00\x00\x00\x00\x00' -tRp12297 -sVmozilla -p12298 -g24 -(g26 -S'\x14\x16\x00\x00\x00\x00\x00\x00' -tRp12299 -sVleonard -p12300 -g24 -(g26 -S'J\x13\x00\x00\x00\x00\x00\x00' -tRp12301 -sVadmissions -p12302 -g24 -(g26 -S'\x92\x00\x00\x00\x00\x00\x00\x00' -tRp12303 -sVcontrolling -p12304 -g24 -(g26 -S'\xb9\x07\x00\x00\x00\x00\x00\x00' -tRp12305 -sVparticular -p12306 -g24 -(g26 -S'E\x18\x00\x00\x00\x00\x00\x00' -tRp12307 -sVkaraoke -p12308 -g24 -(g26 -S'd\x12\x00\x00\x00\x00\x00\x00' -tRp12309 -sVtown -p12310 -g24 -(g26 -S'\x87"\x00\x00\x00\x00\x00\x00' -tRp12311 -sVhour -p12312 -g24 -(g26 -S'1\x10\x00\x00\x00\x00\x00\x00' -tRp12313 -sVmiddle -p12314 -g24 -(g26 -S'Z\x15\x00\x00\x00\x00\x00\x00' -tRp12315 -sVrecall -p12316 -g24 -(g26 -S'\x99\x1b\x00\x00\x00\x00\x00\x00' -tRp12317 -sVder -p12318 -g24 -(g26 -S'S\t\x00\x00\x00\x00\x00\x00' -tRp12319 -sVcreated -p12320 -g24 -(g26 -S'>\x08\x00\x00\x00\x00\x00\x00' -tRp12321 -sVsucks -p12322 -g24 -(g26 -S'\xbd \x00\x00\x00\x00\x00\x00' -tRp12323 -sVdev -p12324 -g24 -(g26 -S'\x86\t\x00\x00\x00\x00\x00\x00' -tRp12325 -sVguards -p12326 -g24 -(g26 -S'\x19\x0f\x00\x00\x00\x00\x00\x00' -tRp12327 -sVremain -p12328 -g24 -(g26 -S'#\x1c\x00\x00\x00\x00\x00\x00' -tRp12329 -sVparagraph -p12330 -g24 -(g26 -S'(\x18\x00\x00\x00\x00\x00\x00' -tRp12331 -sVdel -p12332 -g24 -(g26 -S'\x16\t\x00\x00\x00\x00\x00\x00' -tRp12333 -sVdem -p12334 -g24 -(g26 -S')\t\x00\x00\x00\x00\x00\x00' -tRp12335 -sVden -p12336 -g24 -(g26 -S'7\t\x00\x00\x00\x00\x00\x00' -tRp12337 -sVstrategies -p12338 -g24 -(g26 -S'b \x00\x00\x00\x00\x00\x00' -tRp12339 -sVdec -p12340 -g24 -(g26 -S'\xe6\x08\x00\x00\x00\x00\x00\x00' -tRp12341 -sVspecialized -p12342 -g24 -(g26 -S'\xac\x1f\x00\x00\x00\x00\x00\x00' -tRp12343 -sVmarble -p12344 -g24 -(g26 -S'\x8a\x14\x00\x00\x00\x00\x00\x00' -tRp12345 -sVdef -p12346 -g24 -(g26 -S'\x02\t\x00\x00\x00\x00\x00\x00' -tRp12347 -sVpurchases -p12348 -g24 -(g26 -S'\xee\x1a\x00\x00\x00\x00\x00\x00' -tRp12349 -sVcompare -p12350 -g24 -(g26 -S'\xe5\x06\x00\x00\x00\x00\x00\x00' -tRp12351 -sVgalleries -p12352 -g24 -(g26 -S'"\x0e\x00\x00\x00\x00\x00\x00' -tRp12353 -sVshare -p12354 -g24 -(g26 -S'\x92\x1e\x00\x00\x00\x00\x00\x00' -tRp12355 -sVps -p12356 -g24 -(g26 -S'\xc9\x1a\x00\x00\x00\x00\x00\x00' -tRp12357 -sVsphere -p12358 -g24 -(g26 -S'\xc9\x1f\x00\x00\x00\x00\x00\x00' -tRp12359 -sVminimum -p12360 -g24 -(g26 -S'\x7f\x15\x00\x00\x00\x00\x00\x00' -tRp12361 -sVtwiki -p12362 -g24 -(g26 -S';#\x00\x00\x00\x00\x00\x00' -tRp12363 -sVpurchased -p12364 -g24 -(g26 -S'\xed\x1a\x00\x00\x00\x00\x00\x00' -tRp12365 -sVsharp -p12366 -g24 -(g26 -S'\x9a\x1e\x00\x00\x00\x00\x00\x00' -tRp12367 -sVrobinson -p12368 -g24 -(g26 -S'\x11\x1d\x00\x00\x00\x00\x00\x00' -tRp12369 -sVbiography -p12370 -g24 -(g26 -S'\x8b\x03\x00\x00\x00\x00\x00\x00' -tRp12371 -sVneeds -p12372 -g24 -(g26 -S'\x87\x16\x00\x00\x00\x00\x00\x00' -tRp12373 -sVascii -p12374 -g24 -(g26 -S'\x11\x02\x00\x00\x00\x00\x00\x00' -tRp12375 -sVcomfort -p12376 -g24 -(g26 -S'\xb8\x06\x00\x00\x00\x00\x00\x00' -tRp12377 -sVpressing -p12378 -g24 -(g26 -S' \x1a\x00\x00\x00\x00\x00\x00' -tRp12379 -sVresponsibilities -p12380 -g24 -(g26 -S'\x9c\x1c\x00\x00\x00\x00\x00\x00' -tRp12381 -sVmaps -p12382 -g24 -(g26 -S'\x87\x14\x00\x00\x00\x00\x00\x00' -tRp12383 -sVsacred -p12384 -g24 -(g26 -S's\x1d\x00\x00\x00\x00\x00\x00' -tRp12385 -sVcst -p12386 -g24 -(g26 -S'h\x08\x00\x00\x00\x00\x00\x00' -tRp12387 -sVensemble -p12388 -g24 -(g26 -S'\x8a\x0b\x00\x00\x00\x00\x00\x00' -tRp12389 -sVcss -p12390 -g24 -(g26 -S'g\x08\x00\x00\x00\x00\x00\x00' -tRp12391 -sVdisney -p12392 -g24 -(g26 -S'\x05\n\x00\x00\x00\x00\x00\x00' -tRp12393 -sVcharms -p12394 -g24 -(g26 -S'\xb3\x05\x00\x00\x00\x00\x00\x00' -tRp12395 -sVpetite -p12396 -g24 -(g26 -S'\xd8\x18\x00\x00\x00\x00\x00\x00' -tRp12397 -sVadvice -p12398 -g24 -(g26 -S'\xaf\x00\x00\x00\x00\x00\x00\x00' -tRp12399 -sVdifferent -p12400 -g24 -(g26 -S'\xbb\t\x00\x00\x00\x00\x00\x00' -tRp12401 -sVconnectivity -p12402 -g24 -(g26 -S'V\x07\x00\x00\x00\x00\x00\x00' -tRp12403 -sVblood -p12404 -g24 -(g26 -S'\xbe\x03\x00\x00\x00\x00\x00\x00' -tRp12405 -sVfaculty -p12406 -g24 -(g26 -S'\x91\x0c\x00\x00\x00\x00\x00\x00' -tRp12407 -sVbloom -p12408 -g24 -(g26 -S'\xc0\x03\x00\x00\x00\x00\x00\x00' -tRp12409 -sVresponse -p12410 -g24 -(g26 -S'\x9a\x1c\x00\x00\x00\x00\x00\x00' -tRp12411 -sVcoat -p12412 -g24 -(g26 -S'v\x06\x00\x00\x00\x00\x00\x00' -tRp12413 -sVdragon -p12414 -g24 -(g26 -S'w\n\x00\x00\x00\x00\x00\x00' -tRp12415 -sVcoal -p12416 -g24 -(g26 -S'r\x06\x00\x00\x00\x00\x00\x00' -tRp12417 -sVresponsibility -p12418 -g24 -(g26 -S'\x9d\x1c\x00\x00\x00\x00\x00\x00' -tRp12419 -sVpowerseller -p12420 -g24 -(g26 -S'\xe1\x19\x00\x00\x00\x00\x00\x00' -tRp12421 -sVpleasure -p12422 -g24 -(g26 -S'b\x19\x00\x00\x00\x00\x00\x00' -tRp12423 -sVplaying -p12424 -g24 -(g26 -S'Z\x19\x00\x00\x00\x00\x00\x00' -tRp12425 -sVinfant -p12426 -g24 -(g26 -S'\x00\x11\x00\x00\x00\x00\x00\x00' -tRp12427 -sVazerbaijan -p12428 -g24 -(g26 -S'\xae\x02\x00\x00\x00\x00\x00\x00' -tRp12429 -sVradar -p12430 -g24 -(g26 -S'8\x1b\x00\x00\x00\x00\x00\x00' -tRp12431 -sVindustrial -p12432 -g24 -(g26 -S'\xfb\x10\x00\x00\x00\x00\x00\x00' -tRp12433 -sVfilters -p12434 -g24 -(g26 -S'\x12\r\x00\x00\x00\x00\x00\x00' -tRp12435 -sVindicating -p12436 -g24 -(g26 -S'\xeb\x10\x00\x00\x00\x00\x00\x00' -tRp12437 -sVexistence -p12438 -g24 -(g26 -S'3\x0c\x00\x00\x00\x00\x00\x00' -tRp12439 -sVsuffer -p12440 -g24 -(g26 -S'\xc2 \x00\x00\x00\x00\x00\x00' -tRp12441 -sVpens -p12442 -g24 -(g26 -S'\xa0\x18\x00\x00\x00\x00\x00\x00' -tRp12443 -sVsodium -p12444 -g24 -(g26 -S'\\\x1f\x00\x00\x00\x00\x00\x00' -tRp12445 -sVpcs -p12446 -g24 -(g26 -S'\x81\x18\x00\x00\x00\x00\x00\x00' -tRp12447 -sVenquiries -p12448 -g24 -(g26 -S'\x86\x0b\x00\x00\x00\x00\x00\x00' -tRp12449 -sVhandheld -p12450 -g24 -(g26 -S'J\x0f\x00\x00\x00\x00\x00\x00' -tRp12451 -sVlate -p12452 -g24 -(g26 -S'\xf3\x12\x00\x00\x00\x00\x00\x00' -tRp12453 -sVdetected -p12454 -g24 -(g26 -S'y\t\x00\x00\x00\x00\x00\x00' -tRp12455 -sVpci -p12456 -g24 -(g26 -S'\x80\x18\x00\x00\x00\x00\x00\x00' -tRp12457 -sVattractions -p12458 -g24 -(g26 -S'l\x02\x00\x00\x00\x00\x00\x00' -tRp12459 -sVzoophilia -p12460 -g24 -(g26 -S'\xc3%\x00\x00\x00\x00\x00\x00' -tRp12461 -sVpad -p12462 -g24 -(g26 -S'\xfe\x17\x00\x00\x00\x00\x00\x00' -tRp12463 -sVdolls -p12464 -g24 -(g26 -S'K\n\x00\x00\x00\x00\x00\x00' -tRp12465 -sVgood -p12466 -g24 -(g26 -S'\xb2\x0e\x00\x00\x00\x00\x00\x00' -tRp12467 -sVseeking -p12468 -g24 -(g26 -S"'\x1e\x00\x00\x00\x00\x00\x00" -tRp12469 -sVmales -p12470 -g24 -(g26 -S'g\x14\x00\x00\x00\x00\x00\x00' -tRp12471 -sVprimary -p12472 -g24 -(g26 -S'3\x1a\x00\x00\x00\x00\x00\x00' -tRp12473 -sVwalls -p12474 -g24 -(g26 -S'\x92$\x00\x00\x00\x00\x00\x00' -tRp12475 -sVcompound -p12476 -g24 -(g26 -S'\x0e\x07\x00\x00\x00\x00\x00\x00' -tRp12477 -sVoxford -p12478 -g24 -(g26 -S'\xeb\x17\x00\x00\x00\x00\x00\x00' -tRp12479 -sVassociation -p12480 -g24 -(g26 -S'7\x02\x00\x00\x00\x00\x00\x00' -tRp12481 -sVmystery -p12482 -g24 -(g26 -S'I\x16\x00\x00\x00\x00\x00\x00' -tRp12483 -sVeasily -p12484 -g24 -(g26 -S'\xd3\n\x00\x00\x00\x00\x00\x00' -tRp12485 -sVrobbie -p12486 -g24 -(g26 -S'\x0c\x1d\x00\x00\x00\x00\x00\x00' -tRp12487 -sVpregnant -p12488 -g24 -(g26 -S'\x03\x1a\x00\x00\x00\x00\x00\x00' -tRp12489 -sVpal -p12490 -g24 -(g26 -S'\r\x18\x00\x00\x00\x00\x00\x00' -tRp12491 -sVspy -p12492 -g24 -(g26 -S'\xea\x1f\x00\x00\x00\x00\x00\x00' -tRp12493 -sVmicro -p12494 -g24 -(g26 -S'U\x15\x00\x00\x00\x00\x00\x00' -tRp12495 -sVtoken -p12496 -g24 -(g26 -S'X"\x00\x00\x00\x00\x00\x00' -tRp12497 -sVhabits -p12498 -g24 -(g26 -S'5\x0f\x00\x00\x00\x00\x00\x00' -tRp12499 -sVnamibia -p12500 -g24 -(g26 -S'S\x16\x00\x00\x00\x00\x00\x00' -tRp12501 -sVgender -p12502 -g24 -(g26 -S'R\x0e\x00\x00\x00\x00\x00\x00' -tRp12503 -sVports -p12504 -g24 -(g26 -S'\xb1\x19\x00\x00\x00\x00\x00\x00' -tRp12505 -sVbreakdown -p12506 -g24 -(g26 -S'*\x04\x00\x00\x00\x00\x00\x00' -tRp12507 -sVharm -p12508 -g24 -(g26 -S'i\x0f\x00\x00\x00\x00\x00\x00' -tRp12509 -sVmental -p12510 -g24 -(g26 -S'\x1b\x15\x00\x00\x00\x00\x00\x00' -tRp12511 -sVhouse -p12512 -g24 -(g26 -S'4\x10\x00\x00\x00\x00\x00\x00' -tRp12513 -sVenergy -p12514 -g24 -(g26 -S'm\x0b\x00\x00\x00\x00\x00\x00' -tRp12515 -sVhard -p12516 -g24 -(g26 -S'a\x0f\x00\x00\x00\x00\x00\x00' -tRp12517 -sVidea -p12518 -g24 -(g26 -S'z\x10\x00\x00\x00\x00\x00\x00' -tRp12519 -sVengaging -p12520 -g24 -(g26 -S's\x0b\x00\x00\x00\x00\x00\x00' -tRp12521 -sVkatrina -p12522 -g24 -(g26 -S'k\x12\x00\x00\x00\x00\x00\x00' -tRp12523 -sVconnect -p12524 -g24 -(g26 -S'P\x07\x00\x00\x00\x00\x00\x00' -tRp12525 -sVfist -p12526 -g24 -(g26 -S';\r\x00\x00\x00\x00\x00\x00' -tRp12527 -sVportland -p12528 -g24 -(g26 -S'\xae\x19\x00\x00\x00\x00\x00\x00' -tRp12529 -sVhart -p12530 -g24 -(g26 -S'q\x0f\x00\x00\x00\x00\x00\x00' -tRp12531 -sVinsurance -p12532 -g24 -(g26 -S'X\x11\x00\x00\x00\x00\x00\x00' -tRp12533 -sVinitiatives -p12534 -g24 -(g26 -S'\x1c\x11\x00\x00\x00\x00\x00\x00' -tRp12535 -sVperry -p12536 -g24 -(g26 -S'\xc3\x18\x00\x00\x00\x00\x00\x00' -tRp12537 -sVfunding -p12538 -g24 -(g26 -S'\x05\x0e\x00\x00\x00\x00\x00\x00' -tRp12539 -sVprojected -p12540 -g24 -(g26 -S'\x82\x1a\x00\x00\x00\x00\x00\x00' -tRp12541 -sVparticipants -p12542 -g24 -(g26 -S'>\x18\x00\x00\x00\x00\x00\x00' -tRp12543 -sVprint -p12544 -g24 -(g26 -S';\x1a\x00\x00\x00\x00\x00\x00' -tRp12545 -sVlearners -p12546 -g24 -(g26 -S'$\x13\x00\x00\x00\x00\x00\x00' -tRp12547 -sVevaluation -p12548 -g24 -(g26 -S'\xf0\x0b\x00\x00\x00\x00\x00\x00' -tRp12549 -sVlawrence -p12550 -g24 -(g26 -S'\t\x13\x00\x00\x00\x00\x00\x00' -tRp12551 -sVpleasant -p12552 -g24 -(g26 -S'`\x19\x00\x00\x00\x00\x00\x00' -tRp12553 -sVdifficulty -p12554 -g24 -(g26 -S'\xc0\t\x00\x00\x00\x00\x00\x00' -tRp12555 -sVterminals -p12556 -g24 -(g26 -S'\xba!\x00\x00\x00\x00\x00\x00' -tRp12557 -sVmembers -p12558 -g24 -(g26 -S'\x0f\x15\x00\x00\x00\x00\x00\x00' -tRp12559 -sVbacked -p12560 -g24 -(g26 -S'\xb5\x02\x00\x00\x00\x00\x00\x00' -tRp12561 -sVbeginning -p12562 -g24 -(g26 -S'6\x03\x00\x00\x00\x00\x00\x00' -tRp12563 -sVcheers -p12564 -g24 -(g26 -S'\xc5\x05\x00\x00\x00\x00\x00\x00' -tRp12565 -sVbenefits -p12566 -g24 -(g26 -S'V\x03\x00\x00\x00\x00\x00\x00' -tRp12567 -sVinspection -p12568 -g24 -(g26 -S'9\x11\x00\x00\x00\x00\x00\x00' -tRp12569 -sVfinland -p12570 -g24 -(g26 -S'*\r\x00\x00\x00\x00\x00\x00' -tRp12571 -sVconducted -p12572 -g24 -(g26 -S'4\x07\x00\x00\x00\x00\x00\x00' -tRp12573 -sVedges -p12574 -g24 -(g26 -S'\xf0\n\x00\x00\x00\x00\x00\x00' -tRp12575 -sVshareware -p12576 -g24 -(g26 -S'\x96\x1e\x00\x00\x00\x00\x00\x00' -tRp12577 -sVcopper -p12578 -g24 -(g26 -S'\xe2\x07\x00\x00\x00\x00\x00\x00' -tRp12579 -sVtrembl -p12580 -g24 -(g26 -S'\xe9"\x00\x00\x00\x00\x00\x00' -tRp12581 -sVdont -p12582 -g24 -(g26 -S'\\\n\x00\x00\x00\x00\x00\x00' -tRp12583 -sVvalentine -p12584 -g24 -(g26 -S'\xc9#\x00\x00\x00\x00\x00\x00' -tRp12585 -sVinstances -p12586 -g24 -(g26 -S'D\x11\x00\x00\x00\x00\x00\x00' -tRp12587 -sVpop -p12588 -g24 -(g26 -S'\x9b\x19\x00\x00\x00\x00\x00\x00' -tRp12589 -sVwages -p12590 -g24 -(g26 -S'\x7f$\x00\x00\x00\x00\x00\x00' -tRp12591 -sVfiction -p12592 -g24 -(g26 -S'\xf9\x0c\x00\x00\x00\x00\x00\x00' -tRp12593 -sVdivorce -p12594 -g24 -(g26 -S'-\n\x00\x00\x00\x00\x00\x00' -tRp12595 -sVconstruct -p12596 -g24 -(g26 -S'\x80\x07\x00\x00\x00\x00\x00\x00' -tRp12597 -sVpaint -p12598 -g24 -(g26 -S'\x05\x18\x00\x00\x00\x00\x00\x00' -tRp12599 -sVregulation -p12600 -g24 -(g26 -S'\xfd\x1b\x00\x00\x00\x00\x00\x00' -tRp12601 -sVassumption -p12602 -g24 -(g26 -S'=\x02\x00\x00\x00\x00\x00\x00' -tRp12603 -sVstatement -p12604 -g24 -(g26 -S'\x1b \x00\x00\x00\x00\x00\x00' -tRp12605 -sVcompromise -p12606 -g24 -(g26 -S'\x13\x07\x00\x00\x00\x00\x00\x00' -tRp12607 -sVlease -p12608 -g24 -(g26 -S'&\x13\x00\x00\x00\x00\x00\x00' -tRp12609 -sVmuscles -p12610 -g24 -(g26 -S'3\x16\x00\x00\x00\x00\x00\x00' -tRp12611 -sVpara -p12612 -g24 -(g26 -S'%\x18\x00\x00\x00\x00\x00\x00' -tRp12613 -sVneedle -p12614 -g24 -(g26 -S'\x86\x16\x00\x00\x00\x00\x00\x00' -tRp12615 -sVpark -p12616 -g24 -(g26 -S'5\x18\x00\x00\x00\x00\x00\x00' -tRp12617 -sVdoctors -p12618 -g24 -(g26 -S':\n\x00\x00\x00\x00\x00\x00' -tRp12619 -sVqld -p12620 -g24 -(g26 -S'\x04\x1b\x00\x00\x00\x00\x00\x00' -tRp12621 -sVbelieve -p12622 -g24 -(g26 -S'C\x03\x00\x00\x00\x00\x00\x00' -tRp12623 -sVpercentage -p12624 -g24 -(g26 -S'\xa9\x18\x00\x00\x00\x00\x00\x00' -tRp12625 -sVfarming -p12626 -g24 -(g26 -S'\xb5\x0c\x00\x00\x00\x00\x00\x00' -tRp12627 -sVgotten -p12628 -g24 -(g26 -S'\xbe\x0e\x00\x00\x00\x00\x00\x00' -tRp12629 -sVyouth -p12630 -g24 -(g26 -S'\xae%\x00\x00\x00\x00\x00\x00' -tRp12631 -sVheaders -p12632 -g24 -(g26 -S'\x8b\x0f\x00\x00\x00\x00\x00\x00' -tRp12633 -sVcontrary -p12634 -g24 -(g26 -S'\xac\x07\x00\x00\x00\x00\x00\x00' -tRp12635 -sVsupposed -p12636 -g24 -(g26 -S'\xf7 \x00\x00\x00\x00\x00\x00' -tRp12637 -sVtoe -p12638 -g24 -(g26 -S'V"\x00\x00\x00\x00\x00\x00' -tRp12639 -sVtreated -p12640 -g24 -(g26 -S'\xe1"\x00\x00\x00\x00\x00\x00' -tRp12641 -sVdeclare -p12642 -g24 -(g26 -S'\xf2\x08\x00\x00\x00\x00\x00\x00' -tRp12643 -sVinteractive -p12644 -g24 -(g26 -S'r\x11\x00\x00\x00\x00\x00\x00' -tRp12645 -sVages -p12646 -g24 -(g26 -S'\xd5\x00\x00\x00\x00\x00\x00\x00' -tRp12647 -sVwellington -p12648 -g24 -(g26 -S'\xed$\x00\x00\x00\x00\x00\x00' -tRp12649 -sVshowers -p12650 -g24 -(g26 -S'\xce\x1e\x00\x00\x00\x00\x00\x00' -tRp12651 -sVaged -p12652 -g24 -(g26 -S'\xcf\x00\x00\x00\x00\x00\x00\x00' -tRp12653 -sVorders -p12654 -g24 -(g26 -S'\xab\x17\x00\x00\x00\x00\x00\x00' -tRp12655 -sVmountain -p12656 -g24 -(g26 -S'\x04\x16\x00\x00\x00\x00\x00\x00' -tRp12657 -sVbuilt -p12658 -g24 -(g26 -S'\x81\x04\x00\x00\x00\x00\x00\x00' -tRp12659 -sVdepending -p12660 -g24 -(g26 -S'I\t\x00\x00\x00\x00\x00\x00' -tRp12661 -sVhonors -p12662 -g24 -(g26 -S'\x0f\x10\x00\x00\x00\x00\x00\x00' -tRp12663 -sVmajority -p12664 -g24 -(g26 -S'\\\x14\x00\x00\x00\x00\x00\x00' -tRp12665 -sVbuild -p12666 -g24 -(g26 -S'{\x04\x00\x00\x00\x00\x00\x00' -tRp12667 -sVcommentary -p12668 -g24 -(g26 -S'\xc2\x06\x00\x00\x00\x00\x00\x00' -tRp12669 -sVcameroon -p12670 -g24 -(g26 -S'\xdb\x04\x00\x00\x00\x00\x00\x00' -tRp12671 -sVtool -p12672 -g24 -(g26 -S'k"\x00\x00\x00\x00\x00\x00' -tRp12673 -sVprovince -p12674 -g24 -(g26 -S'\xc2\x1a\x00\x00\x00\x00\x00\x00' -tRp12675 -sVdayton -p12676 -g24 -(g26 -S'\xcc\x08\x00\x00\x00\x00\x00\x00' -tRp12677 -sVprogrammers -p12678 -g24 -(g26 -S'z\x1a\x00\x00\x00\x00\x00\x00' -tRp12679 -sVcarolina -p12680 -g24 -(g26 -S'\x18\x05\x00\x00\x00\x00\x00\x00' -tRp12681 -sVeggs -p12682 -g24 -(g26 -S'\x11\x0b\x00\x00\x00\x00\x00\x00' -tRp12683 -sVsalmon -p12684 -g24 -(g26 -S'\x8b\x1d\x00\x00\x00\x00\x00\x00' -tRp12685 -sVchart -p12686 -g24 -(g26 -S'\xb4\x05\x00\x00\x00\x00\x00\x00' -tRp12687 -sVcharm -p12688 -g24 -(g26 -S'\xb1\x05\x00\x00\x00\x00\x00\x00' -tRp12689 -sVsignificant -p12690 -g24 -(g26 -S'\xe6\x1e\x00\x00\x00\x00\x00\x00' -tRp12691 -sVservices -p12692 -g24 -(g26 -S'i\x1e\x00\x00\x00\x00\x00\x00' -tRp12693 -sVextremely -p12694 -g24 -(g26 -S'{\x0c\x00\x00\x00\x00\x00\x00' -tRp12695 -sVrefrigerator -p12696 -g24 -(g26 -S'\xe3\x1b\x00\x00\x00\x00\x00\x00' -tRp12697 -sVcompaq -p12698 -g24 -(g26 -S'\xe2\x06\x00\x00\x00\x00\x00\x00' -tRp12699 -sVsouthampton -p12700 -g24 -(g26 -S'\x8e\x1f\x00\x00\x00\x00\x00\x00' -tRp12701 -sVka -p12702 -g24 -(g26 -S'a\x12\x00\x00\x00\x00\x00\x00' -tRp12703 -sVkg -p12704 -g24 -(g26 -S'\x88\x12\x00\x00\x00\x00\x00\x00' -tRp12705 -sVvsnet -p12706 -g24 -(g26 -S'y$\x00\x00\x00\x00\x00\x00' -tRp12707 -sVko -p12708 -g24 -(g26 -S'\xb5\x12\x00\x00\x00\x00\x00\x00' -tRp12709 -sVkm -p12710 -g24 -(g26 -S'\xa5\x12\x00\x00\x00\x00\x00\x00' -tRp12711 -sVks -p12712 -g24 -(g26 -S'\xbb\x12\x00\x00\x00\x00\x00\x00' -tRp12713 -sVcharitable -p12714 -g24 -(g26 -S'\xab\x05\x00\x00\x00\x00\x00\x00' -tRp12715 -sVliechtenstein -p12716 -g24 -(g26 -S'w\x13\x00\x00\x00\x00\x00\x00' -tRp12717 -sVkw -p12718 -g24 -(g26 -S'\xbe\x12\x00\x00\x00\x00\x00\x00' -tRp12719 -sVreflections -p12720 -g24 -(g26 -S'\xde\x1b\x00\x00\x00\x00\x00\x00' -tRp12721 -sVky -p12722 -g24 -(g26 -S'\xbf\x12\x00\x00\x00\x00\x00\x00' -tRp12723 -sVjoining -p12724 -g24 -(g26 -S'+\x12\x00\x00\x00\x00\x00\x00' -tRp12725 -sVsector -p12726 -g24 -(g26 -S'\x1a\x1e\x00\x00\x00\x00\x00\x00' -tRp12727 -sVthomas -p12728 -g24 -(g26 -S'\xff!\x00\x00\x00\x00\x00\x00' -tRp12729 -sVparticularly -p12730 -g24 -(g26 -S'F\x18\x00\x00\x00\x00\x00\x00' -tRp12731 -sVobligations -p12732 -g24 -(g26 -S'.\x17\x00\x00\x00\x00\x00\x00' -tRp12733 -sVcommissions -p12734 -g24 -(g26 -S'\xca\x06\x00\x00\x00\x00\x00\x00' -tRp12735 -sVdetection -p12736 -g24 -(g26 -S'z\t\x00\x00\x00\x00\x00\x00' -tRp12737 -sVoutdoor -p12738 -g24 -(g26 -S'\xcf\x17\x00\x00\x00\x00\x00\x00' -tRp12739 -sVbusinesses -p12740 -g24 -(g26 -S'\x9c\x04\x00\x00\x00\x00\x00\x00' -tRp12741 -sVcarefully -p12742 -g24 -(g26 -S'\r\x05\x00\x00\x00\x00\x00\x00' -tRp12743 -sVheadlines -p12744 -g24 -(g26 -S'\x8e\x0f\x00\x00\x00\x00\x00\x00' -tRp12745 -sVfine -p12746 -g24 -(g26 -S'!\r\x00\x00\x00\x00\x00\x00' -tRp12747 -sVnetworks -p12748 -g24 -(g26 -S'\x9c\x16\x00\x00\x00\x00\x00\x00' -tRp12749 -sVgiant -p12750 -g24 -(g26 -S'\x81\x0e\x00\x00\x00\x00\x00\x00' -tRp12751 -sVmerger -p12752 -g24 -(g26 -S'*\x15\x00\x00\x00\x00\x00\x00' -tRp12753 -sVnervous -p12754 -g24 -(g26 -S'\x94\x16\x00\x00\x00\x00\x00\x00' -tRp12755 -sVdistributed -p12756 -g24 -(g26 -S'\x1a\n\x00\x00\x00\x00\x00\x00' -tRp12757 -sVgenerators -p12758 -g24 -(g26 -S'^\x0e\x00\x00\x00\x00\x00\x00' -tRp12759 -sVboulder -p12760 -g24 -(g26 -S'\x01\x04\x00\x00\x00\x00\x00\x00' -tRp12761 -sVpermission -p12762 -g24 -(g26 -S'\xbe\x18\x00\x00\x00\x00\x00\x00' -tRp12763 -sVluke -p12764 -g24 -(g26 -S'%\x14\x00\x00\x00\x00\x00\x00' -tRp12765 -sVexpress -p12766 -g24 -(g26 -S'f\x0c\x00\x00\x00\x00\x00\x00' -tRp12767 -sVcheaper -p12768 -g24 -(g26 -S'\xbb\x05\x00\x00\x00\x00\x00\x00' -tRp12769 -sVcourage -p12770 -g24 -(g26 -S'\x1f\x08\x00\x00\x00\x00\x00\x00' -tRp12771 -sVbreast -p12772 -g24 -(g26 -S'.\x04\x00\x00\x00\x00\x00\x00' -tRp12773 -sVtheft -p12774 -g24 -(g26 -S'\xe6!\x00\x00\x00\x00\x00\x00' -tRp12775 -sVsilk -p12776 -g24 -(g26 -S'\xee\x1e\x00\x00\x00\x00\x00\x00' -tRp12777 -sVblogging -p12778 -g24 -(g26 -S'\xba\x03\x00\x00\x00\x00\x00\x00' -tRp12779 -sVmerchandise -p12780 -g24 -(g26 -S'"\x15\x00\x00\x00\x00\x00\x00' -tRp12781 -sVnicholas -p12782 -g24 -(g26 -S'\xba\x16\x00\x00\x00\x00\x00\x00' -tRp12783 -sVmotorcycles -p12784 -g24 -(g26 -S'\x00\x16\x00\x00\x00\x00\x00\x00' -tRp12785 -sVremove -p12786 -g24 -(g26 -S'5\x1c\x00\x00\x00\x00\x00\x00' -tRp12787 -sVgarcia -p12788 -g24 -(g26 -S'1\x0e\x00\x00\x00\x00\x00\x00' -tRp12789 -sVcommon -p12790 -g24 -(g26 -S'\xd3\x06\x00\x00\x00\x00\x00\x00' -tRp12791 -sVgospel -p12792 -g24 -(g26 -S'\xb8\x0e\x00\x00\x00\x00\x00\x00' -tRp12793 -sVph -p12794 -g24 -(g26 -S'\xdf\x18\x00\x00\x00\x00\x00\x00' -tRp12795 -sVcreator -p12796 -g24 -(g26 -S'E\x08\x00\x00\x00\x00\x00\x00' -tRp12797 -sVrestaurants -p12798 -g24 -(g26 -S'\xa1\x1c\x00\x00\x00\x00\x00\x00' -tRp12799 -sVlion -p12800 -g24 -(g26 -S'\xa0\x13\x00\x00\x00\x00\x00\x00' -tRp12801 -sVindividual -p12802 -g24 -(g26 -S'\xf3\x10\x00\x00\x00\x00\x00\x00' -tRp12803 -sVleslie -p12804 -g24 -(g26 -S'O\x13\x00\x00\x00\x00\x00\x00' -tRp12805 -sVtender -p12806 -g24 -(g26 -S'\xb3!\x00\x00\x00\x00\x00\x00' -tRp12807 -sVbiodiversity -p12808 -g24 -(g26 -S'\x89\x03\x00\x00\x00\x00\x00\x00' -tRp12809 -sVjelsoft -p12810 -g24 -(g26 -S'\x08\x12\x00\x00\x00\x00\x00\x00' -tRp12811 -sVrepairs -p12812 -g24 -(g26 -S'E\x1c\x00\x00\x00\x00\x00\x00' -tRp12813 -sVexpert -p12814 -g24 -(g26 -S'O\x0c\x00\x00\x00\x00\x00\x00' -tRp12815 -sVvisiting -p12816 -g24 -(g26 -S'Q$\x00\x00\x00\x00\x00\x00' -tRp12817 -sVburner -p12818 -g24 -(g26 -S'\x93\x04\x00\x00\x00\x00\x00\x00' -tRp12819 -sVfans -p12820 -g24 -(g26 -S'\xaa\x0c\x00\x00\x00\x00\x00\x00' -tRp12821 -sVsmallest -p12822 -g24 -(g26 -S'@\x1f\x00\x00\x00\x00\x00\x00' -tRp12823 -sVflame -p12824 -g24 -(g26 -S'I\r\x00\x00\x00\x00\x00\x00' -tRp12825 -sVdonate -p12826 -g24 -(g26 -S'U\n\x00\x00\x00\x00\x00\x00' -tRp12827 -sViron -p12828 -g24 -(g26 -S'\xc1\x11\x00\x00\x00\x00\x00\x00' -tRp12829 -sVcomplement -p12830 -g24 -(g26 -S'\xfa\x06\x00\x00\x00\x00\x00\x00' -tRp12831 -sVnashville -p12832 -g24 -(g26 -S'\\\x16\x00\x00\x00\x00\x00\x00' -tRp12833 -sVaircraft -p12834 -g24 -(g26 -S'\xea\x00\x00\x00\x00\x00\x00\x00' -tRp12835 -sVmarilyn -p12836 -g24 -(g26 -S'\x96\x14\x00\x00\x00\x00\x00\x00' -tRp12837 -sVfolding -p12838 -g24 -(g26 -S'~\r\x00\x00\x00\x00\x00\x00' -tRp12839 -sVreverse -p12840 -g24 -(g26 -S'\xcb\x1c\x00\x00\x00\x00\x00\x00' -tRp12841 -sVrestaurant -p12842 -g24 -(g26 -S'\xa0\x1c\x00\x00\x00\x00\x00\x00' -tRp12843 -sVsolely -p12844 -g24 -(g26 -S'i\x1f\x00\x00\x00\x00\x00\x00' -tRp12845 -sVannual -p12846 -g24 -(g26 -S'|\x01\x00\x00\x00\x00\x00\x00' -tRp12847 -sVforeign -p12848 -g24 -(g26 -S'\x97\r\x00\x00\x00\x00\x00\x00' -tRp12849 -sValot -p12850 -g24 -(g26 -S'#\x01\x00\x00\x00\x00\x00\x00' -tRp12851 -sVmean -p12852 -g24 -(g26 -S'\xe3\x14\x00\x00\x00\x00\x00\x00' -tRp12853 -sVbaltimore -p12854 -g24 -(g26 -S'\xd1\x02\x00\x00\x00\x00\x00\x00' -tRp12855 -sVcakes -p12856 -g24 -(g26 -S'\xbe\x04\x00\x00\x00\x00\x00\x00' -tRp12857 -sVnextel -p12858 -g24 -(g26 -S'\xb0\x16\x00\x00\x00\x00\x00\x00' -tRp12859 -sVpoint -p12860 -g24 -(g26 -S'{\x19\x00\x00\x00\x00\x00\x00' -tRp12861 -sVsimple -p12862 -g24 -(g26 -S'\xf5\x1e\x00\x00\x00\x00\x00\x00' -tRp12863 -sVdeposit -p12864 -g24 -(g26 -S'L\t\x00\x00\x00\x00\x00\x00' -tRp12865 -sVtennessee -p12866 -g24 -(g26 -S'\xb4!\x00\x00\x00\x00\x00\x00' -tRp12867 -sVsimply -p12868 -g24 -(g26 -S'\xf7\x1e\x00\x00\x00\x00\x00\x00' -tRp12869 -sVupgrades -p12870 -g24 -(g26 -S'\x91#\x00\x00\x00\x00\x00\x00' -tRp12871 -sVexpensive -p12872 -g24 -(g26 -S'G\x0c\x00\x00\x00\x00\x00\x00' -tRp12873 -sVplatinum -p12874 -g24 -(g26 -S'S\x19\x00\x00\x00\x00\x00\x00' -tRp12875 -sVensures -p12876 -g24 -(g26 -S'\x8c\x0b\x00\x00\x00\x00\x00\x00' -tRp12877 -sVraise -p12878 -g24 -(g26 -S'E\x1b\x00\x00\x00\x00\x00\x00' -tRp12879 -sVcreate -p12880 -g24 -(g26 -S'=\x08\x00\x00\x00\x00\x00\x00' -tRp12881 -sVcreativity -p12882 -g24 -(g26 -S'D\x08\x00\x00\x00\x00\x00\x00' -tRp12883 -sVsecret -p12884 -g24 -(g26 -S'\x14\x1e\x00\x00\x00\x00\x00\x00' -tRp12885 -sVireland -p12886 -g24 -(g26 -S'\xbf\x11\x00\x00\x00\x00\x00\x00' -tRp12887 -sVportraits -p12888 -g24 -(g26 -S'\xb0\x19\x00\x00\x00\x00\x00\x00' -tRp12889 -sVmeeting -p12890 -g24 -(g26 -S'\x05\x15\x00\x00\x00\x00\x00\x00' -tRp12891 -sVkathy -p12892 -g24 -(g26 -S'i\x12\x00\x00\x00\x00\x00\x00' -tRp12893 -sVgay -p12894 -g24 -(g26 -S'B\x0e\x00\x00\x00\x00\x00\x00' -tRp12895 -sVgas -p12896 -g24 -(g26 -S'8\x0e\x00\x00\x00\x00\x00\x00' -tRp12897 -sVgap -p12898 -g24 -(g26 -S'-\x0e\x00\x00\x00\x00\x00\x00' -tRp12899 -sVunderstand -p12900 -g24 -(g26 -S'a#\x00\x00\x00\x00\x00\x00' -tRp12901 -sVprices -p12902 -g24 -(g26 -S'.\x1a\x00\x00\x00\x00\x00\x00' -tRp12903 -sVpierce -p12904 -g24 -(g26 -S'\x1a\x19\x00\x00\x00\x00\x00\x00' -tRp12905 -sVfur -p12906 -g24 -(g26 -S'\x0c\x0e\x00\x00\x00\x00\x00\x00' -tRp12907 -sVmetro -p12908 -g24 -(g26 -S'C\x15\x00\x00\x00\x00\x00\x00' -tRp12909 -sVtalking -p12910 -g24 -(g26 -S'`!\x00\x00\x00\x00\x00\x00' -tRp12911 -sVsolid -p12912 -g24 -(g26 -S'j\x1f\x00\x00\x00\x00\x00\x00' -tRp12913 -sVelections -p12914 -g24 -(g26 -S'\x1c\x0b\x00\x00\x00\x00\x00\x00' -tRp12915 -sVkodak -p12916 -g24 -(g26 -S'\xb6\x12\x00\x00\x00\x00\x00\x00' -tRp12917 -sVcluster -p12918 -g24 -(g26 -S'h\x06\x00\x00\x00\x00\x00\x00' -tRp12919 -sVdeferred -p12920 -g24 -(g26 -S'\x0b\t\x00\x00\x00\x00\x00\x00' -tRp12921 -sVsexuality -p12922 -g24 -(g26 -S'}\x1e\x00\x00\x00\x00\x00\x00' -tRp12923 -sVreplaced -p12924 -g24 -(g26 -S'I\x1c\x00\x00\x00\x00\x00\x00' -tRp12925 -sVfun -p12926 -g24 -(g26 -S'\xfb\r\x00\x00\x00\x00\x00\x00' -tRp12927 -sVportugal -p12928 -g24 -(g26 -S'\xb3\x19\x00\x00\x00\x00\x00\x00' -tRp12929 -sVcentury -p12930 -g24 -(g26 -S'n\x05\x00\x00\x00\x00\x00\x00' -tRp12931 -sVcents -p12932 -g24 -(g26 -S'l\x05\x00\x00\x00\x00\x00\x00' -tRp12933 -sVencountered -p12934 -g24 -(g26 -S'[\x0b\x00\x00\x00\x00\x00\x00' -tRp12935 -sVmonroe -p12936 -g24 -(g26 -S'\xdd\x15\x00\x00\x00\x00\x00\x00' -tRp12937 -sVitaly -p12938 -g24 -(g26 -S'\xdc\x11\x00\x00\x00\x00\x00\x00' -tRp12939 -sVtextile -p12940 -g24 -(g26 -S'\xd4!\x00\x00\x00\x00\x00\x00' -tRp12941 -sVcomplaints -p12942 -g24 -(g26 -S'\xf9\x06\x00\x00\x00\x00\x00\x00' -tRp12943 -sVcopying -p12944 -g24 -(g26 -S'\xe4\x07\x00\x00\x00\x00\x00\x00' -tRp12945 -sVruth -p12946 -g24 -(g26 -S'k\x1d\x00\x00\x00\x00\x00\x00' -tRp12947 -sVdevelopment -p12948 -g24 -(g26 -S'\x8d\t\x00\x00\x00\x00\x00\x00' -tRp12949 -sVstrips -p12950 -g24 -(g26 -S'x \x00\x00\x00\x00\x00\x00' -tRp12951 -sVkeys -p12952 -g24 -(g26 -S'\x85\x12\x00\x00\x00\x00\x00\x00' -tRp12953 -sVassignment -p12954 -g24 -(g26 -S'-\x02\x00\x00\x00\x00\x00\x00' -tRp12955 -sVyesterday -p12956 -g24 -(g26 -S'\xa4%\x00\x00\x00\x00\x00\x00' -tRp12957 -sVsys -p12958 -g24 -(g26 -S'E!\x00\x00\x00\x00\x00\x00' -tRp12959 -sVmoment -p12960 -g24 -(g26 -S'\xcc\x15\x00\x00\x00\x00\x00\x00' -tRp12961 -sVpurpose -p12962 -g24 -(g26 -S'\xf2\x1a\x00\x00\x00\x00\x00\x00' -tRp12963 -sVaggregate -p12964 -g24 -(g26 -S'\xd6\x00\x00\x00\x00\x00\x00\x00' -tRp12965 -sVrealm -p12966 -g24 -(g26 -S'\x89\x1b\x00\x00\x00\x00\x00\x00' -tRp12967 -sVtask -p12968 -g24 -(g26 -S'q!\x00\x00\x00\x00\x00\x00' -tRp12969 -sVspent -p12970 -g24 -(g26 -S'\xc7\x1f\x00\x00\x00\x00\x00\x00' -tRp12971 -sVflags -p12972 -g24 -(g26 -S'H\r\x00\x00\x00\x00\x00\x00' -tRp12973 -sVswiss -p12974 -g24 -(g26 -S',!\x00\x00\x00\x00\x00\x00' -tRp12975 -sVorganization -p12976 -g24 -(g26 -S'\xb5\x17\x00\x00\x00\x00\x00\x00' -tRp12977 -sVchemistry -p12978 -g24 -(g26 -S'\xcc\x05\x00\x00\x00\x00\x00\x00' -tRp12979 -sVspend -p12980 -g24 -(g26 -S'\xc5\x1f\x00\x00\x00\x00\x00\x00' -tRp12981 -sVprevention -p12982 -g24 -(g26 -S"'\x1a\x00\x00\x00\x00\x00\x00" -tRp12983 -sVlottery -p12984 -g24 -(g26 -S'\x06\x14\x00\x00\x00\x00\x00\x00' -tRp12985 -sVceo -p12986 -g24 -(g26 -S'o\x05\x00\x00\x00\x00\x00\x00' -tRp12987 -sVsnow -p12988 -g24 -(g26 -S'P\x1f\x00\x00\x00\x00\x00\x00' -tRp12989 -sVshape -p12990 -g24 -(g26 -S'\x8f\x1e\x00\x00\x00\x00\x00\x00' -tRp12991 -sVatomic -p12992 -g24 -(g26 -S'U\x02\x00\x00\x00\x00\x00\x00' -tRp12993 -sValternative -p12994 -g24 -(g26 -S'+\x01\x00\x00\x00\x00\x00\x00' -tRp12995 -sVinjuries -p12996 -g24 -(g26 -S'\x1f\x11\x00\x00\x00\x00\x00\x00' -tRp12997 -sValignment -p12998 -g24 -(g26 -S'\x11\x01\x00\x00\x00\x00\x00\x00' -tRp12999 -sVtimber -p13000 -g24 -(g26 -S'4"\x00\x00\x00\x00\x00\x00' -tRp13001 -sVdiscipline -p13002 -g24 -(g26 -S'\xe8\t\x00\x00\x00\x00\x00\x00' -tRp13003 -sVcut -p13004 -g24 -(g26 -S'\x8d\x08\x00\x00\x00\x00\x00\x00' -tRp13005 -sVcup -p13006 -g24 -(g26 -S'y\x08\x00\x00\x00\x00\x00\x00' -tRp13007 -sVdisappointed -p13008 -g24 -(g26 -S'\xe3\t\x00\x00\x00\x00\x00\x00' -tRp13009 -sVdeputy -p13010 -g24 -(g26 -S'R\t\x00\x00\x00\x00\x00\x00' -tRp13011 -sVsource -p13012 -g24 -(g26 -S'\x8b\x1f\x00\x00\x00\x00\x00\x00' -tRp13013 -sVsubjects -p13014 -g24 -(g26 -S'\x9e \x00\x00\x00\x00\x00\x00' -tRp13015 -sVsnap -p13016 -g24 -(g26 -S'N\x1f\x00\x00\x00\x00\x00\x00' -tRp13017 -sVbridal -p13018 -g24 -(g26 -S'7\x04\x00\x00\x00\x00\x00\x00' -tRp13019 -sVeaster -p13020 -g24 -(g26 -S'\xd5\n\x00\x00\x00\x00\x00\x00' -tRp13021 -sVexcited -p13022 -g24 -(g26 -S'\x18\x0c\x00\x00\x00\x00\x00\x00' -tRp13023 -sVbin -p13024 -g24 -(g26 -S'\x83\x03\x00\x00\x00\x00\x00\x00' -tRp13025 -sVbio -p13026 -g24 -(g26 -S'\x88\x03\x00\x00\x00\x00\x00\x00' -tRp13027 -sVbig -p13028 -g24 -(g26 -S'y\x03\x00\x00\x00\x00\x00\x00' -tRp13029 -sVrebound -p13030 -g24 -(g26 -S'\x97\x1b\x00\x00\x00\x00\x00\x00' -tRp13031 -sVmatters -p13032 -g24 -(g26 -S'\xd0\x14\x00\x00\x00\x00\x00\x00' -tRp13033 -sVredeem -p13034 -g24 -(g26 -S'\xc3\x1b\x00\x00\x00\x00\x00\x00' -tRp13035 -sVbiz -p13036 -g24 -(g26 -S'\x9b\x03\x00\x00\x00\x00\x00\x00' -tRp13037 -sVbit -p13038 -g24 -(g26 -S'\x97\x03\x00\x00\x00\x00\x00\x00' -tRp13039 -sVprecipitation -p13040 -g24 -(g26 -S'\xf4\x19\x00\x00\x00\x00\x00\x00' -tRp13041 -sVknock -p13042 -g24 -(g26 -S'\xae\x12\x00\x00\x00\x00\x00\x00' -tRp13043 -sVcognitive -p13044 -g24 -(g26 -S'\x81\x06\x00\x00\x00\x00\x00\x00' -tRp13045 -sVsemi -p13046 -g24 -(g26 -S';\x1e\x00\x00\x00\x00\x00\x00' -tRp13047 -sVfollows -p13048 -g24 -(g26 -S'\x84\r\x00\x00\x00\x00\x00\x00' -tRp13049 -sVdisks -p13050 -g24 -(g26 -S'\x04\n\x00\x00\x00\x00\x00\x00' -tRp13051 -sVaustria -p13052 -g24 -(g26 -S'\x82\x02\x00\x00\x00\x00\x00\x00' -tRp13053 -sVflux -p13054 -g24 -(g26 -S'n\r\x00\x00\x00\x00\x00\x00' -tRp13055 -sVzoloft -p13056 -g24 -(g26 -S'\xbd%\x00\x00\x00\x00\x00\x00' -tRp13057 -sVwit -p13058 -g24 -(g26 -S'3%\x00\x00\x00\x00\x00\x00' -tRp13059 -sVindication -p13060 -g24 -(g26 -S'\xec\x10\x00\x00\x00\x00\x00\x00' -tRp13061 -sVgoogle -p13062 -g24 -(g26 -S'\xb4\x0e\x00\x00\x00\x00\x00\x00' -tRp13063 -sVgardening -p13064 -g24 -(g26 -S'3\x0e\x00\x00\x00\x00\x00\x00' -tRp13065 -sVcollectors -p13066 -g24 -(g26 -S'\x9a\x06\x00\x00\x00\x00\x00\x00' -tRp13067 -sVabsolutely -p13068 -g24 -(g26 -S'\x12\x00\x00\x00\x00\x00\x00\x00' -tRp13069 -sVcolumnists -p13070 -g24 -(g26 -S'\xaa\x06\x00\x00\x00\x00\x00\x00' -tRp13071 -sVmagnificent -p13072 -g24 -(g26 -S'G\x14\x00\x00\x00\x00\x00\x00' -tRp13073 -sVhandjob -p13074 -g24 -(g26 -S'L\x0f\x00\x00\x00\x00\x00\x00' -tRp13075 -sVdelegation -p13076 -g24 -(g26 -S'\x1b\t\x00\x00\x00\x00\x00\x00' -tRp13077 -sVmartial -p13078 -g24 -(g26 -S'\xae\x14\x00\x00\x00\x00\x00\x00' -tRp13079 -sVpricing -p13080 -g24 -(g26 -S'/\x1a\x00\x00\x00\x00\x00\x00' -tRp13081 -sVmirror -p13082 -g24 -(g26 -S'\x90\x15\x00\x00\x00\x00\x00\x00' -tRp13083 -sVcandle -p13084 -g24 -(g26 -S'\xee\x04\x00\x00\x00\x00\x00\x00' -tRp13085 -sVlightning -p13086 -g24 -(g26 -S'\x81\x13\x00\x00\x00\x00\x00\x00' -tRp13087 -sVnicaragua -p13088 -g24 -(g26 -S'\xb8\x16\x00\x00\x00\x00\x00\x00' -tRp13089 -sVscale -p13090 -g24 -(g26 -S'\xc1\x1d\x00\x00\x00\x00\x00\x00' -tRp13091 -sVjewelry -p13092 -g24 -(g26 -S'\x16\x12\x00\x00\x00\x00\x00\x00' -tRp13093 -sVcontacts -p13094 -g24 -(g26 -S'\x8f\x07\x00\x00\x00\x00\x00\x00' -tRp13095 -sVpet -p13096 -g24 -(g26 -S'\xd3\x18\x00\x00\x00\x00\x00\x00' -tRp13097 -sVaffects -p13098 -g24 -(g26 -S'\xc1\x00\x00\x00\x00\x00\x00\x00' -tRp13099 -sVdecision -p13100 -g24 -(g26 -S'\xee\x08\x00\x00\x00\x00\x00\x00' -tRp13101 -sVintegration -p13102 -g24 -(g26 -S'a\x11\x00\x00\x00\x00\x00\x00' -tRp13103 -sVcast -p13104 -g24 -(g26 -S'4\x05\x00\x00\x00\x00\x00\x00' -tRp13105 -sVnewark -p13106 -g24 -(g26 -S'\xa1\x16\x00\x00\x00\x00\x00\x00' -tRp13107 -sVpen -p13108 -g24 -(g26 -S'\x93\x18\x00\x00\x00\x00\x00\x00' -tRp13109 -sVswaziland -p13110 -g24 -(g26 -S'#!\x00\x00\x00\x00\x00\x00' -tRp13111 -sVconnecting -p13112 -g24 -(g26 -S'S\x07\x00\x00\x00\x00\x00\x00' -tRp13113 -sVeliminate -p13114 -g24 -(g26 -S'-\x0b\x00\x00\x00\x00\x00\x00' -tRp13115 -sVpee -p13116 -g24 -(g26 -S'\x8f\x18\x00\x00\x00\x00\x00\x00' -tRp13117 -sVepic -p13118 -g24 -(g26 -S'\xa9\x0b\x00\x00\x00\x00\x00\x00' -tRp13119 -sVlaughing -p13120 -g24 -(g26 -S'\x00\x13\x00\x00\x00\x00\x00\x00' -tRp13121 -sVpatient -p13122 -g24 -(g26 -S'j\x18\x00\x00\x00\x00\x00\x00' -tRp13123 -sVremembered -p13124 -g24 -(g26 -S'.\x1c\x00\x00\x00\x00\x00\x00' -tRp13125 -sVcontinuing -p13126 -g24 -(g26 -S'\xa3\x07\x00\x00\x00\x00\x00\x00' -tRp13127 -sVcostumes -p13128 -g24 -(g26 -S'\x08\x08\x00\x00\x00\x00\x00\x00' -tRp13129 -sVusd -p13130 -g24 -(g26 -S'\xa7#\x00\x00\x00\x00\x00\x00' -tRp13131 -sVoem -p13132 -g24 -(g26 -S'O\x17\x00\x00\x00\x00\x00\x00' -tRp13133 -sVusc -p13134 -g24 -(g26 -S'\xa6#\x00\x00\x00\x00\x00\x00' -tRp13135 -sVoptimize -p13136 -g24 -(g26 -S'\x9e\x17\x00\x00\x00\x00\x00\x00' -tRp13137 -sVusb -p13138 -g24 -(g26 -S'\xa5#\x00\x00\x00\x00\x00\x00' -tRp13139 -sVgoods -p13140 -g24 -(g26 -S'\xb3\x0e\x00\x00\x00\x00\x00\x00' -tRp13141 -sVada -p13142 -g24 -(g26 -S'k\x00\x00\x00\x00\x00\x00\x00' -tRp13143 -sVconstraint -p13144 -g24 -(g26 -S'~\x07\x00\x00\x00\x00\x00\x00' -tRp13145 -sVgraduation -p13146 -g24 -(g26 -S'\xd3\x0e\x00\x00\x00\x00\x00\x00' -tRp13147 -sVbritannica -p13148 -g24 -(g26 -S'H\x04\x00\x00\x00\x00\x00\x00' -tRp13149 -sVdrama -p13150 -g24 -(g26 -S'z\n\x00\x00\x00\x00\x00\x00' -tRp13151 -sVextensions -p13152 -g24 -(g26 -S'p\x0c\x00\x00\x00\x00\x00\x00' -tRp13153 -sVconsequently -p13154 -g24 -(g26 -S'a\x07\x00\x00\x00\x00\x00\x00' -tRp13155 -sVpollution -p13156 -g24 -(g26 -S'\x90\x19\x00\x00\x00\x00\x00\x00' -tRp13157 -sVjimmy -p13158 -g24 -(g26 -S'\x1b\x12\x00\x00\x00\x00\x00\x00' -tRp13159 -sVretailer -p13160 -g24 -(g26 -S'\xb1\x1c\x00\x00\x00\x00\x00\x00' -tRp13161 -sVsatisfactory -p13162 -g24 -(g26 -S'\xab\x1d\x00\x00\x00\x00\x00\x00' -tRp13163 -sVframed -p13164 -g24 -(g26 -S'\xc5\r\x00\x00\x00\x00\x00\x00' -tRp13165 -sVexercises -p13166 -g24 -(g26 -S'+\x0c\x00\x00\x00\x00\x00\x00' -tRp13167 -sVsteven -p13168 -g24 -(g26 -S'> \x00\x00\x00\x00\x00\x00' -tRp13169 -sVframes -p13170 -g24 -(g26 -S'\xc6\r\x00\x00\x00\x00\x00\x00' -tRp13171 -sVlesson -p13172 -g24 -(g26 -S'Q\x13\x00\x00\x00\x00\x00\x00' -tRp13173 -sVnsw -p13174 -g24 -(g26 -S'\x02\x17\x00\x00\x00\x00\x00\x00' -tRp13175 -sVontario -p13176 -g24 -(g26 -S'|\x17\x00\x00\x00\x00\x00\x00' -tRp13177 -sVpharmaceuticals -p13178 -g24 -(g26 -S'\xe2\x18\x00\x00\x00\x00\x00\x00' -tRp13179 -sVinfected -p13180 -g24 -(g26 -S'\x02\x11\x00\x00\x00\x00\x00\x00' -tRp13181 -sVforward -p13182 -g24 -(g26 -S'\xb0\r\x00\x00\x00\x00\x00\x00' -tRp13183 -sVbored -p13184 -g24 -(g26 -S'\xf5\x03\x00\x00\x00\x00\x00\x00' -tRp13185 -sVopponent -p13186 -g24 -(g26 -S'\x92\x17\x00\x00\x00\x00\x00\x00' -tRp13187 -sVinvite -p13188 -g24 -(g26 -S'\xaa\x11\x00\x00\x00\x00\x00\x00' -tRp13189 -sVmurphy -p13190 -g24 -(g26 -S'0\x16\x00\x00\x00\x00\x00\x00' -tRp13191 -sVimmigration -p13192 -g24 -(g26 -S'\x9f\x10\x00\x00\x00\x00\x00\x00' -tRp13193 -sVhoped -p13194 -g24 -(g26 -S'\x14\x10\x00\x00\x00\x00\x00\x00' -tRp13195 -sVboys -p13196 -g24 -(g26 -S'\x10\x04\x00\x00\x00\x00\x00\x00' -tRp13197 -sVhopes -p13198 -g24 -(g26 -S'\x16\x10\x00\x00\x00\x00\x00\x00' -tRp13199 -sVsubsidiary -p13200 -g24 -(g26 -S'\xaf \x00\x00\x00\x00\x00\x00' -tRp13201 -sVdirected -p13202 -g24 -(g26 -S'\xd2\t\x00\x00\x00\x00\x00\x00' -tRp13203 -sVrequesting -p13204 -g24 -(g26 -S'l\x1c\x00\x00\x00\x00\x00\x00' -tRp13205 -sVclips -p13206 -g24 -(g26 -S'T\x06\x00\x00\x00\x00\x00\x00' -tRp13207 -sVexploration -p13208 -g24 -(g26 -S'\\\x0c\x00\x00\x00\x00\x00\x00' -tRp13209 -sVplanes -p13210 -g24 -(g26 -S'B\x19\x00\x00\x00\x00\x00\x00' -tRp13211 -sVgroove -p13212 -g24 -(g26 -S'\x01\x0f\x00\x00\x00\x00\x00\x00' -tRp13213 -sVsort -p13214 -g24 -(g26 -S'\x81\x1f\x00\x00\x00\x00\x00\x00' -tRp13215 -sVconstant -p13216 -g24 -(g26 -S'x\x07\x00\x00\x00\x00\x00\x00' -tRp13217 -sVmetal -p13218 -g24 -(g26 -S'8\x15\x00\x00\x00\x00\x00\x00' -tRp13219 -sVsingle -p13220 -g24 -(g26 -S'\x04\x1f\x00\x00\x00\x00\x00\x00' -tRp13221 -sVcure -p13222 -g24 -(g26 -S'{\x08\x00\x00\x00\x00\x00\x00' -tRp13223 -sVorganizational -p13224 -g24 -(g26 -S'\xb6\x17\x00\x00\x00\x00\x00\x00' -tRp13225 -sVcafe -p13226 -g24 -(g26 -S'\xbb\x04\x00\x00\x00\x00\x00\x00' -tRp13227 -sVhumanities -p13228 -g24 -(g26 -S'Q\x10\x00\x00\x00\x00\x00\x00' -tRp13229 -sVorganizing -p13230 -g24 -(g26 -S'\xbb\x17\x00\x00\x00\x00\x00\x00' -tRp13231 -sVkirk -p13232 -g24 -(g26 -S'\x9d\x12\x00\x00\x00\x00\x00\x00' -tRp13233 -sVreputation -p13234 -g24 -(g26 -S'i\x1c\x00\x00\x00\x00\x00\x00' -tRp13235 -sVfunctionality -p13236 -g24 -(g26 -S'\xfe\r\x00\x00\x00\x00\x00\x00' -tRp13237 -sVellen -p13238 -g24 -(g26 -S'1\x0b\x00\x00\x00\x00\x00\x00' -tRp13239 -sVproposal -p13240 -g24 -(g26 -S'\x9e\x1a\x00\x00\x00\x00\x00\x00' -tRp13241 -sVexplaining -p13242 -g24 -(g26 -S'W\x0c\x00\x00\x00\x00\x00\x00' -tRp13243 -sVprepared -p13244 -g24 -(g26 -S'\r\x1a\x00\x00\x00\x00\x00\x00' -tRp13245 -sVlens -p13246 -g24 -(g26 -S'F\x13\x00\x00\x00\x00\x00\x00' -tRp13247 -sVscreensaver -p13248 -g24 -(g26 -S'\xf1\x1d\x00\x00\x00\x00\x00\x00' -tRp13249 -sVrestoration -p13250 -g24 -(g26 -S'\xa2\x1c\x00\x00\x00\x00\x00\x00' -tRp13251 -sVfisher -p13252 -g24 -(g26 -S'8\r\x00\x00\x00\x00\x00\x00' -tRp13253 -sVcharming -p13254 -g24 -(g26 -S'\xb2\x05\x00\x00\x00\x00\x00\x00' -tRp13255 -sVdesert -p13256 -g24 -(g26 -S'^\t\x00\x00\x00\x00\x00\x00' -tRp13257 -sVmaldives -p13258 -g24 -(g26 -S'e\x14\x00\x00\x00\x00\x00\x00' -tRp13259 -sVimplies -p13260 -g24 -(g26 -S'\xac\x10\x00\x00\x00\x00\x00\x00' -tRp13261 -sVvehicles -p13262 -g24 -(g26 -S'\xf7#\x00\x00\x00\x00\x00\x00' -tRp13263 -sVresponded -p13264 -g24 -(g26 -S'\x96\x1c\x00\x00\x00\x00\x00\x00' -tRp13265 -sVcooked -p13266 -g24 -(g26 -S'\xcf\x07\x00\x00\x00\x00\x00\x00' -tRp13267 -sVimplied -p13268 -g24 -(g26 -S'\xab\x10\x00\x00\x00\x00\x00\x00' -tRp13269 -sVpresenting -p13270 -g24 -(g26 -S'\x17\x1a\x00\x00\x00\x00\x00\x00' -tRp13271 -sVddr -p13272 -g24 -(g26 -S'\xd0\x08\x00\x00\x00\x00\x00\x00' -tRp13273 -sVfailures -p13274 -g24 -(g26 -S'\x97\x0c\x00\x00\x00\x00\x00\x00' -tRp13275 -sVnoon -p13276 -g24 -(g26 -S'\xdc\x16\x00\x00\x00\x00\x00\x00' -tRp13277 -sVvalves -p13278 -g24 -(g26 -S'\xd5#\x00\x00\x00\x00\x00\x00' -tRp13279 -sVjason -p13280 -g24 -(g26 -S'\xfa\x11\x00\x00\x00\x00\x00\x00' -tRp13281 -sVhist -p13282 -g24 -(g26 -S'\xdf\x0f\x00\x00\x00\x00\x00\x00' -tRp13283 -sVamplifier -p13284 -g24 -(g26 -S'H\x01\x00\x00\x00\x00\x00\x00' -tRp13285 -sVbrochure -p13286 -g24 -(g26 -S'Q\x04\x00\x00\x00\x00\x00\x00' -tRp13287 -sVquery -p13288 -g24 -(g26 -S'\x1c\x1b\x00\x00\x00\x00\x00\x00' -tRp13289 -sVpope -p13290 -g24 -(g26 -S'\x9c\x19\x00\x00\x00\x00\x00\x00' -tRp13291 -sVvietnamese -p13292 -g24 -(g26 -S'+$\x00\x00\x00\x00\x00\x00' -tRp13293 -sVintensive -p13294 -g24 -(g26 -S'k\x11\x00\x00\x00\x00\x00\x00' -tRp13295 -sVcritical -p13296 -g24 -(g26 -S'T\x08\x00\x00\x00\x00\x00\x00' -tRp13297 -sVhelps -p13298 -g24 -(g26 -S'\xb5\x0f\x00\x00\x00\x00\x00\x00' -tRp13299 -sVquarterly -p13300 -g24 -(g26 -S'\x14\x1b\x00\x00\x00\x00\x00\x00' -tRp13301 -sVmaryland -p13302 -g24 -(g26 -S'\xb2\x14\x00\x00\x00\x00\x00\x00' -tRp13303 -sVfatal -p13304 -g24 -(g26 -S'\xbd\x0c\x00\x00\x00\x00\x00\x00' -tRp13305 -sVstaffing -p13306 -g24 -(g26 -S'\xfd\x1f\x00\x00\x00\x00\x00\x00' -tRp13307 -sVlabels -p13308 -g24 -(g26 -S'\xc5\x12\x00\x00\x00\x00\x00\x00' -tRp13309 -sVpresently -p13310 -g24 -(g26 -S'\x18\x1a\x00\x00\x00\x00\x00\x00' -tRp13311 -sVautomotive -p13312 -g24 -(g26 -S'\x92\x02\x00\x00\x00\x00\x00\x00' -tRp13313 -sVputting -p13314 -g24 -(g26 -S'\xfd\x1a\x00\x00\x00\x00\x00\x00' -tRp13315 -sVsurgeon -p13316 -g24 -(g26 -S'\x01!\x00\x00\x00\x00\x00\x00' -tRp13317 -sVarrange -p13318 -g24 -(g26 -S'\xf7\x01\x00\x00\x00\x00\x00\x00' -tRp13319 -sVentire -p13320 -g24 -(g26 -S'\x97\x0b\x00\x00\x00\x00\x00\x00' -tRp13321 -sVrecreation -p13322 -g24 -(g26 -S'\xbd\x1b\x00\x00\x00\x00\x00\x00' -tRp13323 -sVknight -p13324 -g24 -(g26 -S'\xa9\x12\x00\x00\x00\x00\x00\x00' -tRp13325 -sVjoel -p13326 -g24 -(g26 -S'#\x12\x00\x00\x00\x00\x00\x00' -tRp13327 -sVshock -p13328 -g24 -(g26 -S'\xb7\x1e\x00\x00\x00\x00\x00\x00' -tRp13329 -sVmarried -p13330 -g24 -(g26 -S'\xa7\x14\x00\x00\x00\x00\x00\x00' -tRp13331 -sVbizarre -p13332 -g24 -(g26 -S'\x9c\x03\x00\x00\x00\x00\x00\x00' -tRp13333 -sVoptics -p13334 -g24 -(g26 -S'\x9b\x17\x00\x00\x00\x00\x00\x00' -tRp13335 -sVeducators -p13336 -g24 -(g26 -S'\x01\x0b\x00\x00\x00\x00\x00\x00' -tRp13337 -sVbleeding -p13338 -g24 -(g26 -S'\xad\x03\x00\x00\x00\x00\x00\x00' -tRp13339 -sVcrop -p13340 -g24 -(g26 -S'Y\x08\x00\x00\x00\x00\x00\x00' -tRp13341 -sVrivers -p13342 -g24 -(g26 -S'\x01\x1d\x00\x00\x00\x00\x00\x00' -tRp13343 -sVinsertion -p13344 -g24 -(g26 -S'4\x11\x00\x00\x00\x00\x00\x00' -tRp13345 -sVcarlo -p13346 -g24 -(g26 -S'\x13\x05\x00\x00\x00\x00\x00\x00' -tRp13347 -sVdepression -p13348 -g24 -(g26 -S'O\t\x00\x00\x00\x00\x00\x00' -tRp13349 -sVooo -p13350 -g24 -(g26 -S'~\x17\x00\x00\x00\x00\x00\x00' -tRp13351 -sVchicago -p13352 -g24 -(g26 -S'\xd6\x05\x00\x00\x00\x00\x00\x00' -tRp13353 -sVgiving -p13354 -g24 -(g26 -S'\x90\x0e\x00\x00\x00\x00\x00\x00' -tRp13355 -sVpipes -p13356 -g24 -(g26 -S'*\x19\x00\x00\x00\x00\x00\x00' -tRp13357 -sVintimate -p13358 -g24 -(g26 -S'\x8c\x11\x00\x00\x00\x00\x00\x00' -tRp13359 -sVpractices -p13360 -g24 -(g26 -S'\xe8\x19\x00\x00\x00\x00\x00\x00' -tRp13361 -sVaccess -p13362 -g24 -(g26 -S'$\x00\x00\x00\x00\x00\x00\x00' -tRp13363 -sVpayday -p13364 -g24 -(g26 -S'w\x18\x00\x00\x00\x00\x00\x00' -tRp13365 -sVshemale -p13366 -g24 -(g26 -S'\xa6\x1e\x00\x00\x00\x00\x00\x00' -tRp13367 -sVexercise -p13368 -g24 -(g26 -S'*\x0c\x00\x00\x00\x00\x00\x00' -tRp13369 -sVbody -p13370 -g24 -(g26 -S'\xd6\x03\x00\x00\x00\x00\x00\x00' -tRp13371 -sVbibliographic -p13372 -g24 -(g26 -S'r\x03\x00\x00\x00\x00\x00\x00' -tRp13373 -sVexchange -p13374 -g24 -(g26 -S'\x16\x0c\x00\x00\x00\x00\x00\x00' -tRp13375 -sVbroker -p13376 -g24 -(g26 -S'U\x04\x00\x00\x00\x00\x00\x00' -tRp13377 -sVpacking -p13378 -g24 -(g26 -S'\xfc\x17\x00\x00\x00\x00\x00\x00' -tRp13379 -sVobjects -p13380 -g24 -(g26 -S',\x17\x00\x00\x00\x00\x00\x00' -tRp13381 -sVsink -p13382 -g24 -(g26 -S'\x06\x1f\x00\x00\x00\x00\x00\x00' -tRp13383 -sVsing -p13384 -g24 -(g26 -S'\xff\x1e\x00\x00\x00\x00\x00\x00' -tRp13385 -sVsafer -p13386 -g24 -(g26 -S'z\x1d\x00\x00\x00\x00\x00\x00' -tRp13387 -sVextreme -p13388 -g24 -(g26 -S'z\x0c\x00\x00\x00\x00\x00\x00' -tRp13389 -sVremark -p13390 -g24 -(g26 -S'(\x1c\x00\x00\x00\x00\x00\x00' -tRp13391 -sVtalent -p13392 -g24 -(g26 -S'[!\x00\x00\x00\x00\x00\x00' -tRp13393 -sVbiographies -p13394 -g24 -(g26 -S'\x8a\x03\x00\x00\x00\x00\x00\x00' -tRp13395 -sValaska -p13396 -g24 -(g26 -S'\xf9\x00\x00\x00\x00\x00\x00\x00' -tRp13397 -sVgays -p13398 -g24 -(g26 -S'C\x0e\x00\x00\x00\x00\x00\x00' -tRp13399 -sVimplement -p13400 -g24 -(g26 -S'\xa6\x10\x00\x00\x00\x00\x00\x00' -tRp13401 -sVhonor -p13402 -g24 -(g26 -S'\x0e\x10\x00\x00\x00\x00\x00\x00' -tRp13403 -sVcomposed -p13404 -g24 -(g26 -S'\n\x07\x00\x00\x00\x00\x00\x00' -tRp13405 -sVnamed -p13406 -g24 -(g26 -S'P\x16\x00\x00\x00\x00\x00\x00' -tRp13407 -sVprivate -p13408 -g24 -(g26 -S'I\x1a\x00\x00\x00\x00\x00\x00' -tRp13409 -sVgordon -p13410 -g24 -(g26 -S'\xb5\x0e\x00\x00\x00\x00\x00\x00' -tRp13411 -sVdecrease -p13412 -g24 -(g26 -S'\xf9\x08\x00\x00\x00\x00\x00\x00' -tRp13413 -sVnames -p13414 -g24 -(g26 -S'Q\x16\x00\x00\x00\x00\x00\x00' -tRp13415 -sVcomposer -p13416 -g24 -(g26 -S'\x0b\x07\x00\x00\x00\x00\x00\x00' -tRp13417 -sVoval -p13418 -g24 -(g26 -S'\xdd\x17\x00\x00\x00\x00\x00\x00' -tRp13419 -sVproprietary -p13420 -g24 -(g26 -S'\xa3\x1a\x00\x00\x00\x00\x00\x00' -tRp13421 -sVresolutions -p13422 -g24 -(g26 -S'\x89\x1c\x00\x00\x00\x00\x00\x00' -tRp13423 -sVgateway -p13424 -g24 -(g26 -S'<\x0e\x00\x00\x00\x00\x00\x00' -tRp13425 -sVlime -p13426 -g24 -(g26 -S'\x8b\x13\x00\x00\x00\x00\x00\x00' -tRp13427 -sVchi -p13428 -g24 -(g26 -S'\xd5\x05\x00\x00\x00\x00\x00\x00' -tRp13429 -sVcho -p13430 -g24 -(g26 -S'\xe4\x05\x00\x00\x00\x00\x00\x00' -tRp13431 -sVoils -p13432 -g24 -(g26 -S'e\x17\x00\x00\x00\x00\x00\x00' -tRp13433 -sVbutler -p13434 -g24 -(g26 -S'\x9f\x04\x00\x00\x00\x00\x00\x00' -tRp13435 -sVdefendant -p13436 -g24 -(g26 -S'\x08\t\x00\x00\x00\x00\x00\x00' -tRp13437 -sVupcoming -p13438 -g24 -(g26 -S'\x8b#\x00\x00\x00\x00\x00\x00' -tRp13439 -sVtrail -p13440 -g24 -(g26 -S'\xa6"\x00\x00\x00\x00\x00\x00' -tRp13441 -sVtrain -p13442 -g24 -(g26 -S'\xaa"\x00\x00\x00\x00\x00\x00' -tRp13443 -sVprizes -p13444 -g24 -(g26 -S'N\x1a\x00\x00\x00\x00\x00\x00' -tRp13445 -sVharvest -p13446 -g24 -(g26 -S't\x0f\x00\x00\x00\x00\x00\x00' -tRp13447 -sVhints -p13448 -g24 -(g26 -S'\xd9\x0f\x00\x00\x00\x00\x00\x00' -tRp13449 -sVaccount -p13450 -g24 -(g26 -S'7\x00\x00\x00\x00\x00\x00\x00' -tRp13451 -sVorigins -p13452 -g24 -(g26 -S'\xc4\x17\x00\x00\x00\x00\x00\x00' -tRp13453 -sVbritney -p13454 -g24 -(g26 -S'J\x04\x00\x00\x00\x00\x00\x00' -tRp13455 -sVtunnel -p13456 -g24 -(g26 -S',#\x00\x00\x00\x00\x00\x00' -tRp13457 -sVgabriel -p13458 -g24 -(g26 -S'\x1a\x0e\x00\x00\x00\x00\x00\x00' -tRp13459 -sVhopkins -p13460 -g24 -(g26 -S'\x18\x10\x00\x00\x00\x00\x00\x00' -tRp13461 -sVtag -p13462 -g24 -(g26 -S'Q!\x00\x00\x00\x00\x00\x00' -tRp13463 -sVobvious -p13464 -g24 -(g26 -S'7\x17\x00\x00\x00\x00\x00\x00' -tRp13465 -sVpraise -p13466 -g24 -(g26 -S'\xed\x19\x00\x00\x00\x00\x00\x00' -tRp13467 -sVclosing -p13468 -g24 -(g26 -S'^\x06\x00\x00\x00\x00\x00\x00' -tRp13469 -sVdisabilities -p13470 -g24 -(g26 -S'\xde\t\x00\x00\x00\x00\x00\x00' -tRp13471 -sVviolence -p13472 -g24 -(g26 -S'?$\x00\x00\x00\x00\x00\x00' -tRp13473 -sVreserved -p13474 -g24 -(g26 -S'}\x1c\x00\x00\x00\x00\x00\x00' -tRp13475 -sVbestiality -p13476 -g24 -(g26 -S'a\x03\x00\x00\x00\x00\x00\x00' -tRp13477 -sVeffectively -p13478 -g24 -(g26 -S'\x08\x0b\x00\x00\x00\x00\x00\x00' -tRp13479 -sVreserves -p13480 -g24 -(g26 -S'~\x1c\x00\x00\x00\x00\x00\x00' -tRp13481 -sVbones -p13482 -g24 -(g26 -S'\xe0\x03\x00\x00\x00\x00\x00\x00' -tRp13483 -sVstories -p13484 -g24 -(g26 -S'W \x00\x00\x00\x00\x00\x00' -tRp13485 -sVserial -p13486 -g24 -(g26 -S'_\x1e\x00\x00\x00\x00\x00\x00' -tRp13487 -sVnative -p13488 -g24 -(g26 -S'e\x16\x00\x00\x00\x00\x00\x00' -tRp13489 -sVlamb -p13490 -g24 -(g26 -S'\xd4\x12\x00\x00\x00\x00\x00\x00' -tRp13491 -sVgcc -p13492 -g24 -(g26 -S'I\x0e\x00\x00\x00\x00\x00\x00' -tRp13493 -sVvaried -p13494 -g24 -(g26 -S'\xe0#\x00\x00\x00\x00\x00\x00' -tRp13495 -sVdemocracy -p13496 -g24 -(g26 -S'.\t\x00\x00\x00\x00\x00\x00' -tRp13497 -sVboxing -p13498 -g24 -(g26 -S'\x0e\x04\x00\x00\x00\x00\x00\x00' -tRp13499 -sVhampshire -p13500 -g24 -(g26 -S'D\x0f\x00\x00\x00\x00\x00\x00' -tRp13501 -sVregions -p13502 -g24 -(g26 -S'\xf3\x1b\x00\x00\x00\x00\x00\x00' -tRp13503 -sVlamp -p13504 -g24 -(g26 -S'\xd6\x12\x00\x00\x00\x00\x00\x00' -tRp13505 -sVwinners -p13506 -g24 -(g26 -S'"%\x00\x00\x00\x00\x00\x00' -tRp13507 -sVbrian -p13508 -g24 -(g26 -S'5\x04\x00\x00\x00\x00\x00\x00' -tRp13509 -sVforest -p13510 -g24 -(g26 -S'\x98\r\x00\x00\x00\x00\x00\x00' -tRp13511 -sVstock -p13512 -g24 -(g26 -S'F \x00\x00\x00\x00\x00\x00' -tRp13513 -sVprofile -p13514 -g24 -(g26 -S's\x1a\x00\x00\x00\x00\x00\x00' -tRp13515 -sVbuildings -p13516 -g24 -(g26 -S'\x7f\x04\x00\x00\x00\x00\x00\x00' -tRp13517 -sVspecifications -p13518 -g24 -(g26 -S'\xb6\x1f\x00\x00\x00\x00\x00\x00' -tRp13519 -sVhighs -p13520 -g24 -(g26 -S'\xd0\x0f\x00\x00\x00\x00\x00\x00' -tRp13521 -sVphilosophy -p13522 -g24 -(g26 -S'\xf2\x18\x00\x00\x00\x00\x00\x00' -tRp13523 -sVcollection -p13524 -g24 -(g26 -S'\x96\x06\x00\x00\x00\x00\x00\x00' -tRp13525 -sVunited -p13526 -g24 -(g26 -S't#\x00\x00\x00\x00\x00\x00' -tRp13527 -sVpreferred -p13528 -g24 -(g26 -S'\xff\x19\x00\x00\x00\x00\x00\x00' -tRp13529 -sVprostate -p13530 -g24 -(g26 -S'\xa8\x1a\x00\x00\x00\x00\x00\x00' -tRp13531 -sVbind -p13532 -g24 -(g26 -S'\x85\x03\x00\x00\x00\x00\x00\x00' -tRp13533 -sVsit -p13534 -g24 -(g26 -S'\x0b\x1f\x00\x00\x00\x00\x00\x00' -tRp13535 -sVlines -p13536 -g24 -(g26 -S'\x99\x13\x00\x00\x00\x00\x00\x00' -tRp13537 -sVamazon -p13538 -g24 -(g26 -S'5\x01\x00\x00\x00\x00\x00\x00' -tRp13539 -sVchief -p13540 -g24 -(g26 -S'\xda\x05\x00\x00\x00\x00\x00\x00' -tRp13541 -sVsubsequently -p13542 -g24 -(g26 -S'\xad \x00\x00\x00\x00\x00\x00' -tRp13543 -sVlined -p13544 -g24 -(g26 -S'\x98\x13\x00\x00\x00\x00\x00\x00' -tRp13545 -sVinstitutional -p13546 -g24 -(g26 -S'K\x11\x00\x00\x00\x00\x00\x00' -tRp13547 -sVwedding -p13548 -g24 -(g26 -S'\xdd$\x00\x00\x00\x00\x00\x00' -tRp13549 -sVmeter -p13550 -g24 -(g26 -S'<\x15\x00\x00\x00\x00\x00\x00' -tRp13551 -sVsymbols -p13552 -g24 -(g26 -S'6!\x00\x00\x00\x00\x00\x00' -tRp13553 -sVreferenced -p13554 -g24 -(g26 -S'\xd1\x1b\x00\x00\x00\x00\x00\x00' -tRp13555 -sVpaperbacks -p13556 -g24 -(g26 -S'!\x18\x00\x00\x00\x00\x00\x00' -tRp13557 -sVagricultural -p13558 -g24 -(g26 -S'\xdf\x00\x00\x00\x00\x00\x00\x00' -tRp13559 -sVhorny -p13560 -g24 -(g26 -S'\x1d\x10\x00\x00\x00\x00\x00\x00' -tRp13561 -sVgalaxy -p13562 -g24 -(g26 -S' \x0e\x00\x00\x00\x00\x00\x00' -tRp13563 -sVbunch -p13564 -g24 -(g26 -S'\x8a\x04\x00\x00\x00\x00\x00\x00' -tRp13565 -sVlf -p13566 -g24 -(g26 -S'a\x13\x00\x00\x00\x00\x00\x00' -tRp13567 -sVbridges -p13568 -g24 -(g26 -S':\x04\x00\x00\x00\x00\x00\x00' -tRp13569 -sVld -p13570 -g24 -(g26 -S'\x17\x13\x00\x00\x00\x00\x00\x00' -tRp13571 -sVle -p13572 -g24 -(g26 -S'\x18\x13\x00\x00\x00\x00\x00\x00' -tRp13573 -sVlb -p13574 -g24 -(g26 -S'\x13\x13\x00\x00\x00\x00\x00\x00' -tRp13575 -sVlc -p13576 -g24 -(g26 -S'\x15\x13\x00\x00\x00\x00\x00\x00' -tRp13577 -sVla -p13578 -g24 -(g26 -S'\xc1\x12\x00\x00\x00\x00\x00\x00' -tRp13579 -sVln -p13580 -g24 -(g26 -S'\xc6\x13\x00\x00\x00\x00\x00\x00' -tRp13581 -sVlo -p13582 -g24 -(g26 -S'\xc7\x13\x00\x00\x00\x00\x00\x00' -tRp13583 -sVll -p13584 -g24 -(g26 -S'\xc1\x13\x00\x00\x00\x00\x00\x00' -tRp13585 -sVlm -p13586 -g24 -(g26 -S'\xc5\x13\x00\x00\x00\x00\x00\x00' -tRp13587 -sVaccredited -p13588 -g24 -(g26 -S'<\x00\x00\x00\x00\x00\x00\x00' -tRp13589 -sVlabor -p13590 -g24 -(g26 -S'\xc6\x12\x00\x00\x00\x00\x00\x00' -tRp13591 -sVlt -p13592 -g24 -(g26 -S'\x1c\x14\x00\x00\x00\x00\x00\x00' -tRp13593 -sVlu -p13594 -g24 -(g26 -S'\x1d\x14\x00\x00\x00\x00\x00\x00' -tRp13595 -sVmarsh -p13596 -g24 -(g26 -S'\xaa\x14\x00\x00\x00\x00\x00\x00' -tRp13597 -sVls -p13598 -g24 -(g26 -S'\x1b\x14\x00\x00\x00\x00\x00\x00' -tRp13599 -sVlp -p13600 -g24 -(g26 -S'\x1a\x14\x00\x00\x00\x00\x00\x00' -tRp13601 -sVlatitude -p13602 -g24 -(g26 -S'\xfc\x12\x00\x00\x00\x00\x00\x00' -tRp13603 -sVcriminal -p13604 -g24 -(g26 -S'P\x08\x00\x00\x00\x00\x00\x00' -tRp13605 -sVeur -p13606 -g24 -(g26 -S'\xe5\x0b\x00\x00\x00\x00\x00\x00' -tRp13607 -sVdad -p13608 -g24 -(g26 -S'\x9d\x08\x00\x00\x00\x00\x00\x00' -tRp13609 -sVjunction -p13610 -g24 -(g26 -S'T\x12\x00\x00\x00\x00\x00\x00' -tRp13611 -sVgreater -p13612 -g24 -(g26 -S'\xec\x0e\x00\x00\x00\x00\x00\x00' -tRp13613 -sVdam -p13614 -g24 -(g26 -S'\xa5\x08\x00\x00\x00\x00\x00\x00' -tRp13615 -sVdan -p13616 -g24 -(g26 -S'\xab\x08\x00\x00\x00\x00\x00\x00' -tRp13617 -sVspell -p13618 -g24 -(g26 -S'\xc2\x1f\x00\x00\x00\x00\x00\x00' -tRp13619 -sVtoshiba -p13620 -g24 -(g26 -S'w"\x00\x00\x00\x00\x00\x00' -tRp13621 -sVdat -p13622 -g24 -(g26 -S'\xbb\x08\x00\x00\x00\x00\x00\x00' -tRp13623 -sVmention -p13624 -g24 -(g26 -S'\x1c\x15\x00\x00\x00\x00\x00\x00' -tRp13625 -sVcutting -p13626 -g24 -(g26 -S'\x90\x08\x00\x00\x00\x00\x00\x00' -tRp13627 -sVmandate -p13628 -g24 -(g26 -S'u\x14\x00\x00\x00\x00\x00\x00' -tRp13629 -sVday -p13630 -g24 -(g26 -S'\xca\x08\x00\x00\x00\x00\x00\x00' -tRp13631 -sVapplicants -p13632 -g24 -(g26 -S'\xb0\x01\x00\x00\x00\x00\x00\x00' -tRp13633 -sVfebruary -p13634 -g24 -(g26 -S'\xd6\x0c\x00\x00\x00\x00\x00\x00' -tRp13635 -sVairports -p13636 -g24 -(g26 -S'\xf0\x00\x00\x00\x00\x00\x00\x00' -tRp13637 -sVwarned -p13638 -g24 -(g26 -S'\xa4$\x00\x00\x00\x00\x00\x00' -tRp13639 -sVidentified -p13640 -g24 -(g26 -S'\x7f\x10\x00\x00\x00\x00\x00\x00' -tRp13641 -sVmorris -p13642 -g24 -(g26 -S'\xee\x15\x00\x00\x00\x00\x00\x00' -tRp13643 -sVlingerie -p13644 -g24 -(g26 -S'\x9a\x13\x00\x00\x00\x00\x00\x00' -tRp13645 -sVidentifies -p13646 -g24 -(g26 -S'\x81\x10\x00\x00\x00\x00\x00\x00' -tRp13647 -sVidentifier -p13648 -g24 -(g26 -S'\x80\x10\x00\x00\x00\x00\x00\x00' -tRp13649 -sVconstraints -p13650 -g24 -(g26 -S'\x7f\x07\x00\x00\x00\x00\x00\x00' -tRp13651 -sVjones -p13652 -g24 -(g26 -S'2\x12\x00\x00\x00\x00\x00\x00' -tRp13653 -sVtension -p13654 -g24 -(g26 -S'\xb6!\x00\x00\x00\x00\x00\x00' -tRp13655 -sVlexington -p13656 -g24 -(g26 -S'^\x13\x00\x00\x00\x00\x00\x00' -tRp13657 -sVtranny -p13658 -g24 -(g26 -S'\xb2"\x00\x00\x00\x00\x00\x00' -tRp13659 -sVhuntington -p13660 -g24 -(g26 -S'_\x10\x00\x00\x00\x00\x00\x00' -tRp13661 -sVprogrammes -p13662 -g24 -(g26 -S'{\x1a\x00\x00\x00\x00\x00\x00' -tRp13663 -sVsexual -p13664 -g24 -(g26 -S'|\x1e\x00\x00\x00\x00\x00\x00' -tRp13665 -sVmatt -p13666 -g24 -(g26 -S'\xce\x14\x00\x00\x00\x00\x00\x00' -tRp13667 -sVjerusalem -p13668 -g24 -(g26 -S'\x0e\x12\x00\x00\x00\x00\x00\x00' -tRp13669 -sVmats -p13670 -g24 -(g26 -S'\xcd\x14\x00\x00\x00\x00\x00\x00' -tRp13671 -sVannounces -p13672 -g24 -(g26 -S'z\x01\x00\x00\x00\x00\x00\x00' -tRp13673 -sVdefend -p13674 -g24 -(g26 -S'\x07\t\x00\x00\x00\x00\x00\x00' -tRp13675 -sVrev -p13676 -g24 -(g26 -S'\xc3\x1c\x00\x00\x00\x00\x00\x00' -tRp13677 -sVmate -p13678 -g24 -(g26 -S'\xc4\x14\x00\x00\x00\x00\x00\x00' -tRp13679 -sVarkansas -p13680 -g24 -(g26 -S'\xed\x01\x00\x00\x00\x00\x00\x00' -tRp13681 -sVstud -p13682 -g24 -(g26 -S'\x86 \x00\x00\x00\x00\x00\x00' -tRp13683 -sVrec -p13684 -g24 -(g26 -S'\x98\x1b\x00\x00\x00\x00\x00\x00' -tRp13685 -sVelectronics -p13686 -g24 -(g26 -S'$\x0b\x00\x00\x00\x00\x00\x00' -tRp13687 -sVref -p13688 -g24 -(g26 -S'\xce\x1b\x00\x00\x00\x00\x00\x00' -tRp13689 -sVreg -p13690 -g24 -(g26 -S'\xe9\x1b\x00\x00\x00\x00\x00\x00' -tRp13691 -sVred -p13692 -g24 -(g26 -S'\xc2\x1b\x00\x00\x00\x00\x00\x00' -tRp13693 -sVharold -p13694 -g24 -(g26 -S'l\x0f\x00\x00\x00\x00\x00\x00' -tRp13695 -sVjessica -p13696 -g24 -(g26 -S'\x10\x12\x00\x00\x00\x00\x00\x00' -tRp13697 -sVworkflow -p13698 -g24 -(g26 -S'Q%\x00\x00\x00\x00\x00\x00' -tRp13699 -sVretrieved -p13700 -g24 -(g26 -S'\xbb\x1c\x00\x00\x00\x00\x00\x00' -tRp13701 -sVpayroll -p13702 -g24 -(g26 -S'|\x18\x00\x00\x00\x00\x00\x00' -tRp13703 -sVapproaches -p13704 -g24 -(g26 -S'\xbf\x01\x00\x00\x00\x00\x00\x00' -tRp13705 -sVque -p13706 -g24 -(g26 -S'\x16\x1b\x00\x00\x00\x00\x00\x00' -tRp13707 -sVqui -p13708 -g24 -(g26 -S'"\x1b\x00\x00\x00\x00\x00\x00' -tRp13709 -sVlikelihood -p13710 -g24 -(g26 -S'\x86\x13\x00\x00\x00\x00\x00\x00' -tRp13711 -sVinteraction -p13712 -g24 -(g26 -S'p\x11\x00\x00\x00\x00\x00\x00' -tRp13713 -sVyard -p13714 -g24 -(g26 -S'\x96%\x00\x00\x00\x00\x00\x00' -tRp13715 -sVmidi -p13716 -g24 -(g26 -S'[\x15\x00\x00\x00\x00\x00\x00' -tRp13717 -sVautomatic -p13718 -g24 -(g26 -S'\x8d\x02\x00\x00\x00\x00\x00\x00' -tRp13719 -sVrecipes -p13720 -g24 -(g26 -S'\xa7\x1b\x00\x00\x00\x00\x00\x00' -tRp13721 -sVyarn -p13722 -g24 -(g26 -S'\x98%\x00\x00\x00\x00\x00\x00' -tRp13723 -sVallied -p13724 -g24 -(g26 -S'\x1a\x01\x00\x00\x00\x00\x00\x00' -tRp13725 -sVqualification -p13726 -g24 -(g26 -S'\x08\x1b\x00\x00\x00\x00\x00\x00' -tRp13727 -sVbarriers -p13728 -g24 -(g26 -S'\xf0\x02\x00\x00\x00\x00\x00\x00' -tRp13729 -sVretain -p13730 -g24 -(g26 -S'\xb3\x1c\x00\x00\x00\x00\x00\x00' -tRp13731 -sVretail -p13732 -g24 -(g26 -S'\xb0\x1c\x00\x00\x00\x00\x00\x00' -tRp13733 -sVfacilitate -p13734 -g24 -(g26 -S'\x88\x0c\x00\x00\x00\x00\x00\x00' -tRp13735 -sVstuck -p13736 -g24 -(g26 -S'\x85 \x00\x00\x00\x00\x00\x00' -tRp13737 -sVsouth -p13738 -g24 -(g26 -S'\x8d\x1f\x00\x00\x00\x00\x00\x00' -tRp13739 -sVplastics -p13740 -g24 -(g26 -S'N\x19\x00\x00\x00\x00\x00\x00' -tRp13741 -sVreaches -p13742 -g24 -(g26 -S'w\x1b\x00\x00\x00\x00\x00\x00' -tRp13743 -sVhey -p13744 -g24 -(g26 -S'\xc2\x0f\x00\x00\x00\x00\x00\x00' -tRp13745 -sVimprovements -p13746 -g24 -(g26 -S'\xbc\x10\x00\x00\x00\x00\x00\x00' -tRp13747 -sVpgp -p13748 -g24 -(g26 -S'\xde\x18\x00\x00\x00\x00\x00\x00' -tRp13749 -sVreached -p13750 -g24 -(g26 -S'v\x1b\x00\x00\x00\x00\x00\x00' -tRp13751 -sVreliable -p13752 -g24 -(g26 -S'\x19\x1c\x00\x00\x00\x00\x00\x00' -tRp13753 -sVancient -p13754 -g24 -(g26 -S'X\x01\x00\x00\x00\x00\x00\x00' -tRp13755 -sVmonkey -p13756 -g24 -(g26 -S'\xdb\x15\x00\x00\x00\x00\x00\x00' -tRp13757 -sVfirewire -p13758 -g24 -(g26 -S'2\r\x00\x00\x00\x00\x00\x00' -tRp13759 -sVvagina -p13760 -g24 -(g26 -S'\xc7#\x00\x00\x00\x00\x00\x00' -tRp13761 -sVintermediate -p13762 -g24 -(g26 -S'{\x11\x00\x00\x00\x00\x00\x00' -tRp13763 -sVpalestine -p13764 -g24 -(g26 -S'\x10\x18\x00\x00\x00\x00\x00\x00' -tRp13765 -sVitalia -p13766 -g24 -(g26 -S'\xd8\x11\x00\x00\x00\x00\x00\x00' -tRp13767 -sVcabin -p13768 -g24 -(g26 -S'\xb2\x04\x00\x00\x00\x00\x00\x00' -tRp13769 -sVitalic -p13770 -g24 -(g26 -S'\xdb\x11\x00\x00\x00\x00\x00\x00' -tRp13771 -sVcompleted -p13772 -g24 -(g26 -S'\xfc\x06\x00\x00\x00\x00\x00\x00' -tRp13773 -sVacquire -p13774 -g24 -(g26 -S'P\x00\x00\x00\x00\x00\x00\x00' -tRp13775 -sVtranssexual -p13776 -g24 -(g26 -S'\xce"\x00\x00\x00\x00\x00\x00' -tRp13777 -sVenvironmental -p13778 -g24 -(g26 -S'\xa3\x0b\x00\x00\x00\x00\x00\x00' -tRp13779 -sVwishlist -p13780 -g24 -(g26 -S'2%\x00\x00\x00\x00\x00\x00' -tRp13781 -sVloved -p13782 -g24 -(g26 -S'\x10\x14\x00\x00\x00\x00\x00\x00' -tRp13783 -sVfurnishings -p13784 -g24 -(g26 -S'\x0e\x0e\x00\x00\x00\x00\x00\x00' -tRp13785 -sVsweden -p13786 -g24 -(g26 -S'$!\x00\x00\x00\x00\x00\x00' -tRp13787 -sVipaq -p13788 -g24 -(g26 -S'\xb6\x11\x00\x00\x00\x00\x00\x00' -tRp13789 -sVloves -p13790 -g24 -(g26 -S'\x14\x14\x00\x00\x00\x00\x00\x00' -tRp13791 -sVlover -p13792 -g24 -(g26 -S'\x12\x14\x00\x00\x00\x00\x00\x00' -tRp13793 -sVvisited -p13794 -g24 -(g26 -S'P$\x00\x00\x00\x00\x00\x00' -tRp13795 -sVabstracts -p13796 -g24 -(g26 -S'\x15\x00\x00\x00\x00\x00\x00\x00' -tRp13797 -sVcurves -p13798 -g24 -(g26 -S'\x85\x08\x00\x00\x00\x00\x00\x00' -tRp13799 -sVcomfortable -p13800 -g24 -(g26 -S'\xb9\x06\x00\x00\x00\x00\x00\x00' -tRp13801 -sVtide -p13802 -g24 -(g26 -S'&"\x00\x00\x00\x00\x00\x00' -tRp13803 -sVconnectors -p13804 -g24 -(g26 -S'X\x07\x00\x00\x00\x00\x00\x00' -tRp13805 -sVunlikely -p13806 -g24 -(g26 -S'\x80#\x00\x00\x00\x00\x00\x00' -tRp13807 -sVuganda -p13808 -g24 -(g26 -S'J#\x00\x00\x00\x00\x00\x00' -tRp13809 -sVthroat -p13810 -g24 -(g26 -S'\x15"\x00\x00\x00\x00\x00\x00' -tRp13811 -sVdemonstration -p13812 -g24 -(g26 -S'6\t\x00\x00\x00\x00\x00\x00' -tRp13813 -sVmil -p13814 -g24 -(g26 -S'b\x15\x00\x00\x00\x00\x00\x00' -tRp13815 -sVmin -p13816 -g24 -(g26 -S'u\x15\x00\x00\x00\x00\x00\x00' -tRp13817 -sVmia -p13818 -g24 -(g26 -S'M\x15\x00\x00\x00\x00\x00\x00' -tRp13819 -sVmic -p13820 -g24 -(g26 -S'O\x15\x00\x00\x00\x00\x00\x00' -tRp13821 -sVgravity -p13822 -g24 -(g26 -S'\xe9\x0e\x00\x00\x00\x00\x00\x00' -tRp13823 -sVincentive -p13824 -g24 -(g26 -S'\xc0\x10\x00\x00\x00\x00\x00\x00' -tRp13825 -sVmontgomery -p13826 -g24 -(g26 -S'\xe2\x15\x00\x00\x00\x00\x00\x00' -tRp13827 -sVmix -p13828 -g24 -(g26 -S'\xa2\x15\x00\x00\x00\x00\x00\x00' -tRp13829 -sVconcerns -p13830 -g24 -(g26 -S'$\x07\x00\x00\x00\x00\x00\x00' -tRp13831 -sVmit -p13832 -g24 -(g26 -S'\x9f\x15\x00\x00\x00\x00\x00\x00' -tRp13833 -sVunless -p13834 -g24 -(g26 -S'~#\x00\x00\x00\x00\x00\x00' -tRp13835 -sVtransmit -p13836 -g24 -(g26 -S'\xc8"\x00\x00\x00\x00\x00\x00' -tRp13837 -sVuseful -p13838 -g24 -(g26 -S'\xab#\x00\x00\x00\x00\x00\x00' -tRp13839 -sVlogitech -p13840 -g24 -(g26 -S'\xe6\x13\x00\x00\x00\x00\x00\x00' -tRp13841 -sVprisoner -p13842 -g24 -(g26 -S'F\x1a\x00\x00\x00\x00\x00\x00' -tRp13843 -sVtranscript -p13844 -g24 -(g26 -S'\xb6"\x00\x00\x00\x00\x00\x00' -tRp13845 -sVpayment -p13846 -g24 -(g26 -S'y\x18\x00\x00\x00\x00\x00\x00' -tRp13847 -sVquotations -p13848 -g24 -(g26 -S'+\x1b\x00\x00\x00\x00\x00\x00' -tRp13849 -sVgather -p13850 -g24 -(g26 -S'=\x0e\x00\x00\x00\x00\x00\x00' -tRp13851 -sVfrederick -p13852 -g24 -(g26 -S'\xd3\r\x00\x00\x00\x00\x00\x00' -tRp13853 -sVdisease -p13854 -g24 -(g26 -S'\xff\t\x00\x00\x00\x00\x00\x00' -tRp13855 -sVgraphs -p13856 -g24 -(g26 -S'\xe2\x0e\x00\x00\x00\x00\x00\x00' -tRp13857 -sVoccasion -p13858 -g24 -(g26 -S':\x17\x00\x00\x00\x00\x00\x00' -tRp13859 -sVnormally -p13860 -g24 -(g26 -S'\xe0\x16\x00\x00\x00\x00\x00\x00' -tRp13861 -sVselection -p13862 -g24 -(g26 -S'1\x1e\x00\x00\x00\x00\x00\x00' -tRp13863 -sVtext -p13864 -g24 -(g26 -S'\xd1!\x00\x00\x00\x00\x00\x00' -tRp13865 -sVcharles -p13866 -g24 -(g26 -S'\xad\x05\x00\x00\x00\x00\x00\x00' -tRp13867 -sVvoyuer -p13868 -g24 -(g26 -S'u$\x00\x00\x00\x00\x00\x00' -tRp13869 -sVkits -p13870 -g24 -(g26 -S'\xa2\x12\x00\x00\x00\x00\x00\x00' -tRp13871 -sVportfolio -p13872 -g24 -(g26 -S'\xab\x19\x00\x00\x00\x00\x00\x00' -tRp13873 -sVtechnologies -p13874 -g24 -(g26 -S'\x92!\x00\x00\x00\x00\x00\x00' -tRp13875 -sVstaff -p13876 -g24 -(g26 -S'\xfc\x1f\x00\x00\x00\x00\x00\x00' -tRp13877 -sVknowledge -p13878 -g24 -(g26 -S'\xb1\x12\x00\x00\x00\x00\x00\x00' -tRp13879 -sVcatalogue -p13880 -g24 -(g26 -S';\x05\x00\x00\x00\x00\x00\x00' -tRp13881 -sVcontrols -p13882 -g24 -(g26 -S'\xba\x07\x00\x00\x00\x00\x00\x00' -tRp13883 -sVbernard -p13884 -g24 -(g26 -S'^\x03\x00\x00\x00\x00\x00\x00' -tRp13885 -sVcommunist -p13886 -g24 -(g26 -S'\xda\x06\x00\x00\x00\x00\x00\x00' -tRp13887 -sVupskirts -p13888 -g24 -(g26 -S'\x99#\x00\x00\x00\x00\x00\x00' -tRp13889 -sVequilibrium -p13890 -g24 -(g26 -S'\xb4\x0b\x00\x00\x00\x00\x00\x00' -tRp13891 -sVregularly -p13892 -g24 -(g26 -S'\xfb\x1b\x00\x00\x00\x00\x00\x00' -tRp13893 -sVpharmacology -p13894 -g24 -(g26 -S'\xe4\x18\x00\x00\x00\x00\x00\x00' -tRp13895 -sVexceptional -p13896 -g24 -(g26 -S'\x11\x0c\x00\x00\x00\x00\x00\x00' -tRp13897 -sVbeat -p13898 -g24 -(g26 -S'"\x03\x00\x00\x00\x00\x00\x00' -tRp13899 -sVphotography -p13900 -g24 -(g26 -S'\xfc\x18\x00\x00\x00\x00\x00\x00' -tRp13901 -sVstripes -p13902 -g24 -(g26 -S'w \x00\x00\x00\x00\x00\x00' -tRp13903 -sVbear -p13904 -g24 -(g26 -S'\x1c\x03\x00\x00\x00\x00\x00\x00' -tRp13905 -sVbeam -p13906 -g24 -(g26 -S'\x19\x03\x00\x00\x00\x00\x00\x00' -tRp13907 -sVbean -p13908 -g24 -(g26 -S'\x1a\x03\x00\x00\x00\x00\x00\x00' -tRp13909 -sVrichards -p13910 -g24 -(g26 -S'\xe5\x1c\x00\x00\x00\x00\x00\x00' -tRp13911 -sVkazakhstan -p13912 -g24 -(g26 -S'm\x12\x00\x00\x00\x00\x00\x00' -tRp13913 -sVareas -p13914 -g24 -(g26 -S'\xe2\x01\x00\x00\x00\x00\x00\x00' -tRp13915 -sVunauthorized -p13916 -g24 -(g26 -S'X#\x00\x00\x00\x00\x00\x00' -tRp13917 -sVcached -p13918 -g24 -(g26 -S'\xb8\x04\x00\x00\x00\x00\x00\x00' -tRp13919 -sVfixes -p13920 -g24 -(g26 -S'D\r\x00\x00\x00\x00\x00\x00' -tRp13921 -sVteams -p13922 -g24 -(g26 -S'\x88!\x00\x00\x00\x00\x00\x00' -tRp13923 -sVmercedes -p13924 -g24 -(g26 -S'!\x15\x00\x00\x00\x00\x00\x00' -tRp13925 -sVcycles -p13926 -g24 -(g26 -S'\x96\x08\x00\x00\x00\x00\x00\x00' -tRp13927 -sVgibson -p13928 -g24 -(g26 -S'\x84\x0e\x00\x00\x00\x00\x00\x00' -tRp13929 -sVexists -p13930 -g24 -(g26 -S'5\x0c\x00\x00\x00\x00\x00\x00' -tRp13931 -sVnational -p13932 -g24 -(g26 -S'a\x16\x00\x00\x00\x00\x00\x00' -tRp13933 -sVintensity -p13934 -g24 -(g26 -S'j\x11\x00\x00\x00\x00\x00\x00' -tRp13935 -sVenhanced -p13936 -g24 -(g26 -S'|\x0b\x00\x00\x00\x00\x00\x00' -tRp13937 -sVgreece -p13938 -g24 -(g26 -S'\xef\x0e\x00\x00\x00\x00\x00\x00' -tRp13939 -sVwc -p13940 -g24 -(g26 -S'\xc7$\x00\x00\x00\x00\x00\x00' -tRp13941 -sVphases -p13942 -g24 -(g26 -S'\xe7\x18\x00\x00\x00\x00\x00\x00' -tRp13943 -sVinterview -p13944 -g24 -(g26 -S'\x8a\x11\x00\x00\x00\x00\x00\x00' -tRp13945 -sVattempting -p13946 -g24 -(g26 -S'_\x02\x00\x00\x00\x00\x00\x00' -tRp13947 -sVclearing -p13948 -g24 -(g26 -S'B\x06\x00\x00\x00\x00\x00\x00' -tRp13949 -sVralph -p13950 -g24 -(g26 -S'K\x1b\x00\x00\x00\x00\x00\x00' -tRp13951 -sVdiscounts -p13952 -g24 -(g26 -S'\xf1\t\x00\x00\x00\x00\x00\x00' -tRp13953 -sVhelped -p13954 -g24 -(g26 -S'\xb2\x0f\x00\x00\x00\x00\x00\x00' -tRp13955 -sVdifficulties -p13956 -g24 -(g26 -S'\xbf\t\x00\x00\x00\x00\x00\x00' -tRp13957 -sVrouting -p13958 -g24 -(g26 -S'H\x1d\x00\x00\x00\x00\x00\x00' -tRp13959 -sVroutine -p13960 -g24 -(g26 -S'F\x1d\x00\x00\x00\x00\x00\x00' -tRp13961 -sVprogress -p13962 -g24 -(g26 -S'~\x1a\x00\x00\x00\x00\x00\x00' -tRp13963 -sVboundary -p13964 -g24 -(g26 -S'\x05\x04\x00\x00\x00\x00\x00\x00' -tRp13965 -sVthumbnail -p13966 -g24 -(g26 -S'\x1c"\x00\x00\x00\x00\x00\x00' -tRp13967 -sVreproduced -p13968 -g24 -(g26 -S'c\x1c\x00\x00\x00\x00\x00\x00' -tRp13969 -sVsuperior -p13970 -g24 -(g26 -S'\xe5 \x00\x00\x00\x00\x00\x00' -tRp13971 -sVdeliver -p13972 -g24 -(g26 -S'!\t\x00\x00\x00\x00\x00\x00' -tRp13973 -sVimplementing -p13974 -g24 -(g26 -S'\xa9\x10\x00\x00\x00\x00\x00\x00' -tRp13975 -sVarmenia -p13976 -g24 -(g26 -S'\xf1\x01\x00\x00\x00\x00\x00\x00' -tRp13977 -sVwatts -p13978 -g24 -(g26 -S'\xbe$\x00\x00\x00\x00\x00\x00' -tRp13979 -sVoptional -p13980 -g24 -(g26 -S'\xa1\x17\x00\x00\x00\x00\x00\x00' -tRp13981 -sVinstant -p13982 -g24 -(g26 -S'E\x11\x00\x00\x00\x00\x00\x00' -tRp13983 -sVplugin -p13984 -g24 -(g26 -S'h\x19\x00\x00\x00\x00\x00\x00' -tRp13985 -sVfreely -p13986 -g24 -(g26 -S'\xd8\r\x00\x00\x00\x00\x00\x00' -tRp13987 -sVtaking -p13988 -g24 -(g26 -S'Y!\x00\x00\x00\x00\x00\x00' -tRp13989 -sVdildos -p13990 -g24 -(g26 -S'\xc7\t\x00\x00\x00\x00\x00\x00' -tRp13991 -sVtrips -p13992 -g24 -(g26 -S'\x04#\x00\x00\x00\x00\x00\x00' -tRp13993 -sVassure -p13994 -g24 -(g26 -S'@\x02\x00\x00\x00\x00\x00\x00' -tRp13995 -sVmoderators -p13996 -g24 -(g26 -S'\xbb\x15\x00\x00\x00\x00\x00\x00' -tRp13997 -sVswim -p13998 -g24 -(g26 -S'(!\x00\x00\x00\x00\x00\x00' -tRp13999 -sVattributes -p14000 -g24 -(g26 -S'o\x02\x00\x00\x00\x00\x00\x00' -tRp14001 -sVpassing -p14002 -g24 -(g26 -S'X\x18\x00\x00\x00\x00\x00\x00' -tRp14003 -sVhighland -p14004 -g24 -(g26 -S'\xcb\x0f\x00\x00\x00\x00\x00\x00' -tRp14005 -sVwear -p14006 -g24 -(g26 -S'\xcc$\x00\x00\x00\x00\x00\x00' -tRp14007 -sVcomment -p14008 -g24 -(g26 -S'\xc1\x06\x00\x00\x00\x00\x00\x00' -tRp14009 -sVaa -p14010 -g24 -(g26 -S'\x00\x00\x00\x00\x00\x00\x00\x00' -tRp14011 -sVrelevant -p14012 -g24 -(g26 -S'\x17\x1c\x00\x00\x00\x00\x00\x00' -tRp14013 -sVbrook -p14014 -g24 -(g26 -S'X\x04\x00\x00\x00\x00\x00\x00' -tRp14015 -sVlaugh -p14016 -g24 -(g26 -S'\xff\x12\x00\x00\x00\x00\x00\x00' -tRp14017 -sVearning -p14018 -g24 -(g26 -S'\xcb\n\x00\x00\x00\x00\x00\x00' -tRp14019 -sVcitizenship -p14020 -g24 -(g26 -S'\x1d\x06\x00\x00\x00\x00\x00\x00' -tRp14021 -sVag -p14022 -g24 -(g26 -S'\xcd\x00\x00\x00\x00\x00\x00\x00' -tRp14023 -sVtremendous -p14024 -g24 -(g26 -S'\xea"\x00\x00\x00\x00\x00\x00' -tRp14025 -sVprince -p14026 -g24 -(g26 -S'5\x1a\x00\x00\x00\x00\x00\x00' -tRp14027 -sVcopies -p14028 -g24 -(g26 -S'\xe1\x07\x00\x00\x00\x00\x00\x00' -tRp14029 -sVpermanent -p14030 -g24 -(g26 -S'\xbd\x18\x00\x00\x00\x00\x00\x00' -tRp14031 -sVah -p14032 -g24 -(g26 -S'\xe1\x00\x00\x00\x00\x00\x00\x00' -tRp14033 -sVindicators -p14034 -g24 -(g26 -S'\xee\x10\x00\x00\x00\x00\x00\x00' -tRp14035 -sVcopied -p14036 -g24 -(g26 -S'\xe0\x07\x00\x00\x00\x00\x00\x00' -tRp14037 -sVwx -p14038 -g24 -(g26 -S'\x82%\x00\x00\x00\x00\x00\x00' -tRp14039 -sVdefine -p14040 -g24 -(g26 -S'\r\t\x00\x00\x00\x00\x00\x00' -tRp14041 -sVaj -p14042 -g24 -(g26 -S'\xf1\x00\x00\x00\x00\x00\x00\x00' -tRp14043 -sVcop -p14044 -g24 -(g26 -S'\xde\x07\x00\x00\x00\x00\x00\x00' -tRp14045 -sVwomens -p14046 -g24 -(g26 -S'@%\x00\x00\x00\x00\x00\x00' -tRp14047 -sVclimate -p14048 -g24 -(g26 -S'L\x06\x00\x00\x00\x00\x00\x00' -tRp14049 -sVbulk -p14050 -g24 -(g26 -S'\x85\x04\x00\x00\x00\x00\x00\x00' -tRp14051 -sVorange -p14052 -g24 -(g26 -S'\xa5\x17\x00\x00\x00\x00\x00\x00' -tRp14053 -sVfinished -p14054 -g24 -(g26 -S"'\r\x00\x00\x00\x00\x00\x00" -tRp14055 -sVbull -p14056 -g24 -(g26 -S'\x86\x04\x00\x00\x00\x00\x00\x00' -tRp14057 -sVassessments -p14058 -g24 -(g26 -S'(\x02\x00\x00\x00\x00\x00\x00' -tRp14059 -sVfellow -p14060 -g24 -(g26 -S'\xe6\x0c\x00\x00\x00\x00\x00\x00' -tRp14061 -sVvolunteer -p14062 -g24 -(g26 -S'j$\x00\x00\x00\x00\x00\x00' -tRp14063 -sVkenya -p14064 -g24 -(g26 -S'}\x12\x00\x00\x00\x00\x00\x00' -tRp14065 -sVdivisions -p14066 -g24 -(g26 -S',\n\x00\x00\x00\x00\x00\x00' -tRp14067 -sVmulti -p14068 -g24 -(g26 -S'(\x16\x00\x00\x00\x00\x00\x00' -tRp14069 -sVholiday -p14070 -g24 -(g26 -S'\xf7\x0f\x00\x00\x00\x00\x00\x00' -tRp14071 -sVatmospheric -p14072 -g24 -(g26 -S'S\x02\x00\x00\x00\x00\x00\x00' -tRp14073 -sVplain -p14074 -g24 -(g26 -S'=\x19\x00\x00\x00\x00\x00\x00' -tRp14075 -sVwidescreen -p14076 -g24 -(g26 -S'\x07%\x00\x00\x00\x00\x00\x00' -tRp14077 -sVappearance -p14078 -g24 -(g26 -S'\xa6\x01\x00\x00\x00\x00\x00\x00' -tRp14079 -sVvalue -p14080 -g24 -(g26 -S'\xd1#\x00\x00\x00\x00\x00\x00' -tRp14081 -sVpromotes -p14082 -g24 -(g26 -S'\x8f\x1a\x00\x00\x00\x00\x00\x00' -tRp14083 -sVpromoted -p14084 -g24 -(g26 -S'\x8e\x1a\x00\x00\x00\x00\x00\x00' -tRp14085 -sVplanets -p14086 -g24 -(g26 -S'D\x19\x00\x00\x00\x00\x00\x00' -tRp14087 -sVmanually -p14088 -g24 -(g26 -S'}\x14\x00\x00\x00\x00\x00\x00' -tRp14089 -sVwalks -p14090 -g24 -(g26 -S'\x8c$\x00\x00\x00\x00\x00\x00' -tRp14091 -sVrespected -p14092 -g24 -(g26 -S'\x91\x1c\x00\x00\x00\x00\x00\x00' -tRp14093 -sVarrangements -p14094 -g24 -(g26 -S'\xfa\x01\x00\x00\x00\x00\x00\x00' -tRp14095 -sVclaimed -p14096 -g24 -(g26 -S"'\x06\x00\x00\x00\x00\x00\x00" -tRp14097 -sVpartner -p14098 -g24 -(g26 -S'J\x18\x00\x00\x00\x00\x00\x00' -tRp14099 -sVinspector -p14100 -g24 -(g26 -S';\x11\x00\x00\x00\x00\x00\x00' -tRp14101 -sVregression -p14102 -g24 -(g26 -S'\xf9\x1b\x00\x00\x00\x00\x00\x00' -tRp14103 -sVproductivity -p14104 -g24 -(g26 -S'm\x1a\x00\x00\x00\x00\x00\x00' -tRp14105 -sVadministration -p14106 -g24 -(g26 -S'\x8d\x00\x00\x00\x00\x00\x00\x00' -tRp14107 -sVshuttle -p14108 -g24 -(g26 -S'\xd4\x1e\x00\x00\x00\x00\x00\x00' -tRp14109 -sVfinite -p14110 -g24 -(g26 -S')\r\x00\x00\x00\x00\x00\x00' -tRp14111 -sVpowell -p14112 -g24 -(g26 -S'\xdb\x19\x00\x00\x00\x00\x00\x00' -tRp14113 -sVinjured -p14114 -g24 -(g26 -S'\x1e\x11\x00\x00\x00\x00\x00\x00' -tRp14115 -sVmaterial -p14116 -g24 -(g26 -S'\xc5\x14\x00\x00\x00\x00\x00\x00' -tRp14117 -sVcubic -p14118 -g24 -(g26 -S'n\x08\x00\x00\x00\x00\x00\x00' -tRp14119 -sVreporting -p14120 -g24 -(g26 -S'U\x1c\x00\x00\x00\x00\x00\x00' -tRp14121 -sVgenres -p14122 -g24 -(g26 -S'i\x0e\x00\x00\x00\x00\x00\x00' -tRp14123 -sVion -p14124 -g24 -(g26 -S'\xb3\x11\x00\x00\x00\x00\x00\x00' -tRp14125 -sVsisters -p14126 -g24 -(g26 -S'\n\x1f\x00\x00\x00\x00\x00\x00' -tRp14127 -sVdevel -p14128 -g24 -(g26 -S'\x87\t\x00\x00\x00\x00\x00\x00' -tRp14129 -sVjudgment -p14130 -g24 -(g26 -S'H\x12\x00\x00\x00\x00\x00\x00' -tRp14131 -sVscholars -p14132 -g24 -(g26 -S'\xd7\x1d\x00\x00\x00\x00\x00\x00' -tRp14133 -sVcenter -p14134 -g24 -(g26 -S'f\x05\x00\x00\x00\x00\x00\x00' -tRp14135 -sVneural -p14136 -g24 -(g26 -S'\x9d\x16\x00\x00\x00\x00\x00\x00' -tRp14137 -sVweapon -p14138 -g24 -(g26 -S'\xca$\x00\x00\x00\x00\x00\x00' -tRp14139 -sVantonio -p14140 -g24 -(g26 -S'\x90\x01\x00\x00\x00\x00\x00\x00' -tRp14141 -sVthought -p14142 -g24 -(g26 -S'\x07"\x00\x00\x00\x00\x00\x00' -tRp14143 -sVprocurement -p14144 -g24 -(g26 -S'b\x1a\x00\x00\x00\x00\x00\x00' -tRp14145 -sVoops -p14146 -g24 -(g26 -S'\x7f\x17\x00\x00\x00\x00\x00\x00' -tRp14147 -sVsets -p14148 -g24 -(g26 -S'n\x1e\x00\x00\x00\x00\x00\x00' -tRp14149 -sVcomparisons -p14150 -g24 -(g26 -S'\xe9\x06\x00\x00\x00\x00\x00\x00' -tRp14151 -sVmuscle -p14152 -g24 -(g26 -S'2\x16\x00\x00\x00\x00\x00\x00' -tRp14153 -sVarising -p14154 -g24 -(g26 -S'\xeb\x01\x00\x00\x00\x00\x00\x00' -tRp14155 -sVlatest -p14156 -g24 -(g26 -S'\xf6\x12\x00\x00\x00\x00\x00\x00' -tRp14157 -sVstores -p14158 -g24 -(g26 -S'V \x00\x00\x00\x00\x00\x00' -tRp14159 -sVexecutive -p14160 -g24 -(g26 -S'&\x0c\x00\x00\x00\x00\x00\x00' -tRp14161 -sVwagner -p14162 -g24 -(g26 -S'\x80$\x00\x00\x00\x00\x00\x00' -tRp14163 -sVclinic -p14164 -g24 -(g26 -S'O\x06\x00\x00\x00\x00\x00\x00' -tRp14165 -sVinterim -p14166 -g24 -(g26 -S'y\x11\x00\x00\x00\x00\x00\x00' -tRp14167 -sVvoltage -p14168 -g24 -(g26 -S'f$\x00\x00\x00\x00\x00\x00' -tRp14169 -sVseats -p14170 -g24 -(g26 -S'\x0e\x1e\x00\x00\x00\x00\x00\x00' -tRp14171 -sVdakota -p14172 -g24 -(g26 -S'\xa2\x08\x00\x00\x00\x00\x00\x00' -tRp14173 -sVprotecting -p14174 -g24 -(g26 -S'\xad\x1a\x00\x00\x00\x00\x00\x00' -tRp14175 -sVads -p14176 -g24 -(g26 -S'\x9b\x00\x00\x00\x00\x00\x00\x00' -tRp14177 -sVgmc -p14178 -g24 -(g26 -S'\xa2\x0e\x00\x00\x00\x00\x00\x00' -tRp14179 -sVabsorption -p14180 -g24 -(g26 -S'\x13\x00\x00\x00\x00\x00\x00\x00' -tRp14181 -sVdemographic -p14182 -g24 -(g26 -S'2\t\x00\x00\x00\x00\x00\x00' -tRp14183 -sVlake -p14184 -g24 -(g26 -S'\xd2\x12\x00\x00\x00\x00\x00\x00' -tRp14185 -sVrebate -p14186 -g24 -(g26 -S'\x93\x1b\x00\x00\x00\x00\x00\x00' -tRp14187 -sVadd -p14188 -g24 -(g26 -S't\x00\x00\x00\x00\x00\x00\x00' -tRp14189 -sVforbes -p14190 -g24 -(g26 -S'\x8f\r\x00\x00\x00\x00\x00\x00' -tRp14191 -sVaruba -p14192 -g24 -(g26 -S'\x0f\x02\x00\x00\x00\x00\x00\x00' -tRp14193 -sVcitizen -p14194 -g24 -(g26 -S'\x1b\x06\x00\x00\x00\x00\x00\x00' -tRp14195 -sVmatch -p14196 -g24 -(g26 -S'\xc0\x14\x00\x00\x00\x00\x00\x00' -tRp14197 -sVgmt -p14198 -g24 -(g26 -S'\xa3\x0e\x00\x00\x00\x00\x00\x00' -tRp14199 -sVresolved -p14200 -g24 -(g26 -S'\x8b\x1c\x00\x00\x00\x00\x00\x00' -tRp14201 -sVtests -p14202 -g24 -(g26 -S'\xce!\x00\x00\x00\x00\x00\x00' -tRp14203 -sVorbit -p14204 -g24 -(g26 -S'\xa6\x17\x00\x00\x00\x00\x00\x00' -tRp14205 -sVarticles -p14206 -g24 -(g26 -S'\x08\x02\x00\x00\x00\x00\x00\x00' -tRp14207 -sVdryer -p14208 -g24 -(g26 -S'\x9f\n\x00\x00\x00\x00\x00\x00' -tRp14209 -sVdeployment -p14210 -g24 -(g26 -S'K\t\x00\x00\x00\x00\x00\x00' -tRp14211 -sVinsert -p14212 -g24 -(g26 -S'2\x11\x00\x00\x00\x00\x00\x00' -tRp14213 -sVdubai -p14214 -g24 -(g26 -S'\xa7\n\x00\x00\x00\x00\x00\x00' -tRp14215 -sVmotorola -p14216 -g24 -(g26 -S'\x01\x16\x00\x00\x00\x00\x00\x00' -tRp14217 -sVlike -p14218 -g24 -(g26 -S'\x84\x13\x00\x00\x00\x00\x00\x00' -tRp14219 -sVexcluding -p14220 -g24 -(g26 -S'\x1d\x0c\x00\x00\x00\x00\x00\x00' -tRp14221 -sVsofa -p14222 -g24 -(g26 -S']\x1f\x00\x00\x00\x00\x00\x00' -tRp14223 -sVjournalism -p14224 -g24 -(g26 -S'9\x12\x00\x00\x00\x00\x00\x00' -tRp14225 -sVadmitted -p14226 -g24 -(g26 -S'\x94\x00\x00\x00\x00\x00\x00\x00' -tRp14227 -sVozone -p14228 -g24 -(g26 -S'\xef\x17\x00\x00\x00\x00\x00\x00' -tRp14229 -sVjournalist -p14230 -g24 -(g26 -S':\x12\x00\x00\x00\x00\x00\x00' -tRp14231 -sVchick -p14232 -g24 -(g26 -S'\xd7\x05\x00\x00\x00\x00\x00\x00' -tRp14233 -sVworks -p14234 -g24 -(g26 -S'V%\x00\x00\x00\x00\x00\x00' -tRp14235 -sVsoft -p14236 -g24 -(g26 -S'^\x1f\x00\x00\x00\x00\x00\x00' -tRp14237 -sVsoviet -p14238 -g24 -(g26 -S'\x92\x1f\x00\x00\x00\x00\x00\x00' -tRp14239 -sVheel -p14240 -g24 -(g26 -S'\xa7\x0f\x00\x00\x00\x00\x00\x00' -tRp14241 -sVitalian -p14242 -g24 -(g26 -S'\xd9\x11\x00\x00\x00\x00\x00\x00' -tRp14243 -sVaccessible -p14244 -g24 -(g26 -S"'\x00\x00\x00\x00\x00\x00\x00" -tRp14245 -sVclassical -p14246 -g24 -(g26 -S'2\x06\x00\x00\x00\x00\x00\x00' -tRp14247 -sVjan -p14248 -g24 -(g26 -S'\xf3\x11\x00\x00\x00\x00\x00\x00' -tRp14249 -sVauthority -p14250 -g24 -(g26 -S'\x87\x02\x00\x00\x00\x00\x00\x00' -tRp14251 -sVhair -p14252 -g24 -(g26 -S'8\x0f\x00\x00\x00\x00\x00\x00' -tRp14253 -sVwider -p14254 -g24 -(g26 -S'\x06%\x00\x00\x00\x00\x00\x00' -tRp14255 -sVrecommendation -p14256 -g24 -(g26 -S'\xae\x1b\x00\x00\x00\x00\x00\x00' -tRp14257 -sVproper -p14258 -g24 -(g26 -S'\x98\x1a\x00\x00\x00\x00\x00\x00' -tRp14259 -sVhalifax -p14260 -g24 -(g26 -S'<\x0f\x00\x00\x00\x00\x00\x00' -tRp14261 -sVtmp -p14262 -g24 -(g26 -S'O"\x00\x00\x00\x00\x00\x00' -tRp14263 -sVest -p14264 -g24 -(g26 -S'\xd0\x0b\x00\x00\x00\x00\x00\x00' -tRp14265 -sVvocabulary -p14266 -g24 -(g26 -S'Z$\x00\x00\x00\x00\x00\x00' -tRp14267 -sVhurricane -p14268 -g24 -(g26 -S'`\x10\x00\x00\x00\x00\x00\x00' -tRp14269 -sVshelter -p14270 -g24 -(g26 -S'\xa5\x1e\x00\x00\x00\x00\x00\x00' -tRp14271 -sVdiscretion -p14272 -g24 -(g26 -S'\xf6\t\x00\x00\x00\x00\x00\x00' -tRp14273 -sVassuming -p14274 -g24 -(g26 -S'<\x02\x00\x00\x00\x00\x00\x00' -tRp14275 -sVchains -p14276 -g24 -(g26 -S'\x80\x05\x00\x00\x00\x00\x00\x00' -tRp14277 -sVconference -p14278 -g24 -(g26 -S'7\x07\x00\x00\x00\x00\x00\x00' -tRp14279 -sVpepper -p14280 -g24 -(g26 -S'\xa6\x18\x00\x00\x00\x00\x00\x00' -tRp14281 -sVhose -p14282 -g24 -(g26 -S'"\x10\x00\x00\x00\x00\x00\x00' -tRp14283 -sVproud -p14284 -g24 -(g26 -S'\xb6\x1a\x00\x00\x00\x00\x00\x00' -tRp14285 -sVslight -p14286 -g24 -(g26 -S'/\x1f\x00\x00\x00\x00\x00\x00' -tRp14287 -sVpools -p14288 -g24 -(g26 -S'\x99\x19\x00\x00\x00\x00\x00\x00' -tRp14289 -sVhost -p14290 -g24 -(g26 -S'&\x10\x00\x00\x00\x00\x00\x00' -tRp14291 -sVworthy -p14292 -g24 -(g26 -S'g%\x00\x00\x00\x00\x00\x00' -tRp14293 -sVperiodically -p14294 -g24 -(g26 -S'\xb7\x18\x00\x00\x00\x00\x00\x00' -tRp14295 -sVpanel -p14296 -g24 -(g26 -S'\x19\x18\x00\x00\x00\x00\x00\x00' -tRp14297 -sVactual -p14298 -g24 -(g26 -S'g\x00\x00\x00\x00\x00\x00\x00' -tRp14299 -sVjustin -p14300 -g24 -(g26 -S'^\x12\x00\x00\x00\x00\x00\x00' -tRp14301 -sVherbs -p14302 -g24 -(g26 -S'\xbd\x0f\x00\x00\x00\x00\x00\x00' -tRp14303 -sVintroduces -p14304 -g24 -(g26 -S'\x92\x11\x00\x00\x00\x00\x00\x00' -tRp14305 -sVlouisville -p14306 -g24 -(g26 -S'\r\x14\x00\x00\x00\x00\x00\x00' -tRp14307 -sVintroduced -p14308 -g24 -(g26 -S'\x91\x11\x00\x00\x00\x00\x00\x00' -tRp14309 -sVpowerpoint -p14310 -g24 -(g26 -S'\xdf\x19\x00\x00\x00\x00\x00\x00' -tRp14311 -sVseniors -p14312 -g24 -(g26 -S'I\x1e\x00\x00\x00\x00\x00\x00' -tRp14313 -sVrendered -p14314 -g24 -(g26 -S':\x1c\x00\x00\x00\x00\x00\x00' -tRp14315 -sVchildrens -p14316 -g24 -(g26 -S'\xde\x05\x00\x00\x00\x00\x00\x00' -tRp14317 -sVplanners -p14318 -g24 -(g26 -S'G\x19\x00\x00\x00\x00\x00\x00' -tRp14319 -sVfunctional -p14320 -g24 -(g26 -S'\xfd\r\x00\x00\x00\x00\x00\x00' -tRp14321 -sVsocks -p14322 -g24 -(g26 -S'[\x1f\x00\x00\x00\x00\x00\x00' -tRp14323 -sVchronic -p14324 -g24 -(g26 -S'\xf9\x05\x00\x00\x00\x00\x00\x00' -tRp14325 -sVguard -p14326 -g24 -(g26 -S'\x17\x0f\x00\x00\x00\x00\x00\x00' -tRp14327 -sVweekends -p14328 -g24 -(g26 -S'\xe3$\x00\x00\x00\x00\x00\x00' -tRp14329 -sVfemale -p14330 -g24 -(g26 -S'\xe9\x0c\x00\x00\x00\x00\x00\x00' -tRp14331 -sVridge -p14332 -g24 -(g26 -S'\xf0\x1c\x00\x00\x00\x00\x00\x00' -tRp14333 -sVlegends -p14334 -g24 -(g26 -S'9\x13\x00\x00\x00\x00\x00\x00' -tRp14335 -sVadolescent -p14336 -g24 -(g26 -S'\x96\x00\x00\x00\x00\x00\x00\x00' -tRp14337 -sVstainless -p14338 -g24 -(g26 -S'\x00 \x00\x00\x00\x00\x00\x00' -tRp14339 -sVvegetables -p14340 -g24 -(g26 -S'\xf3#\x00\x00\x00\x00\x00\x00' -tRp14341 -sVawarded -p14342 -g24 -(g26 -S'\xa4\x02\x00\x00\x00\x00\x00\x00' -tRp14343 -sVbiggest -p14344 -g24 -(g26 -S'{\x03\x00\x00\x00\x00\x00\x00' -tRp14345 -sVrca -p14346 -g24 -(g26 -S's\x1b\x00\x00\x00\x00\x00\x00' -tRp14347 -sVivory -p14348 -g24 -(g26 -S'\xe1\x11\x00\x00\x00\x00\x00\x00' -tRp14349 -sVbuy -p14350 -g24 -(g26 -S'\xa6\x04\x00\x00\x00\x00\x00\x00' -tRp14351 -sVbus -p14352 -g24 -(g26 -S'\x98\x04\x00\x00\x00\x00\x00\x00' -tRp14353 -sVbrand -p14354 -g24 -(g26 -S'\x1f\x04\x00\x00\x00\x00\x00\x00' -tRp14355 -sVextended -p14356 -g24 -(g26 -S'l\x0c\x00\x00\x00\x00\x00\x00' -tRp14357 -sVinsured -p14358 -g24 -(g26 -S'Y\x11\x00\x00\x00\x00\x00\x00' -tRp14359 -sVrepeated -p14360 -g24 -(g26 -S'G\x1c\x00\x00\x00\x00\x00\x00' -tRp14361 -sVsubdivision -p14362 -g24 -(g26 -S'\x9b \x00\x00\x00\x00\x00\x00' -tRp14363 -sVediting -p14364 -g24 -(g26 -S'\xf4\n\x00\x00\x00\x00\x00\x00' -tRp14365 -sVbuf -p14366 -g24 -(g26 -S'u\x04\x00\x00\x00\x00\x00\x00' -tRp14367 -sVbug -p14368 -g24 -(g26 -S'y\x04\x00\x00\x00\x00\x00\x00' -tRp14369 -sVpartially -p14370 -g24 -(g26 -S'<\x18\x00\x00\x00\x00\x00\x00' -tRp14371 -sVlynn -p14372 -g24 -(g26 -S'-\x14\x00\x00\x00\x00\x00\x00' -tRp14373 -sVwise -p14374 -g24 -(g26 -S'.%\x00\x00\x00\x00\x00\x00' -tRp14375 -sVglory -p14376 -g24 -(g26 -S'\x9b\x0e\x00\x00\x00\x00\x00\x00' -tRp14377 -sVwish -p14378 -g24 -(g26 -S'/%\x00\x00\x00\x00\x00\x00' -tRp14379 -sVvariations -p14380 -g24 -(g26 -S'\xdf#\x00\x00\x00\x00\x00\x00' -tRp14381 -sVflip -p14382 -g24 -(g26 -S'X\r\x00\x00\x00\x00\x00\x00' -tRp14383 -sVminutes -p14384 -g24 -(g26 -S'\x8e\x15\x00\x00\x00\x00\x00\x00' -tRp14385 -sVskating -p14386 -g24 -(g26 -S'\x18\x1f\x00\x00\x00\x00\x00\x00' -tRp14387 -sVsupreme -p14388 -g24 -(g26 -S'\xf8 \x00\x00\x00\x00\x00\x00' -tRp14389 -sVpin -p14390 -g24 -(g26 -S'"\x19\x00\x00\x00\x00\x00\x00' -tRp14391 -sVdeaths -p14392 -g24 -(g26 -S'\xdf\x08\x00\x00\x00\x00\x00\x00' -tRp14393 -sVbrochures -p14394 -g24 -(g26 -S'R\x04\x00\x00\x00\x00\x00\x00' -tRp14395 -sVcircus -p14396 -g24 -(g26 -S'\x14\x06\x00\x00\x00\x00\x00\x00' -tRp14397 -sVtopless -p14398 -g24 -(g26 -S's"\x00\x00\x00\x00\x00\x00' -tRp14399 -sVpig -p14400 -g24 -(g26 -S'\x1c\x19\x00\x00\x00\x00\x00\x00' -tRp14401 -sVpix -p14402 -g24 -(g26 -S'1\x19\x00\x00\x00\x00\x00\x00' -tRp14403 -sVperiods -p14404 -g24 -(g26 -S'\xb8\x18\x00\x00\x00\x00\x00\x00' -tRp14405 -sVparaguay -p14406 -g24 -(g26 -S'*\x18\x00\x00\x00\x00\x00\x00' -tRp14407 -sVshooting -p14408 -g24 -(g26 -S'\xbb\x1e\x00\x00\x00\x00\x00\x00' -tRp14409 -sVpit -p14410 -g24 -(g26 -S'.\x19\x00\x00\x00\x00\x00\x00' -tRp14411 -sVproceeds -p14412 -g24 -(g26 -S'[\x1a\x00\x00\x00\x00\x00\x00' -tRp14413 -sVdressed -p14414 -g24 -(g26 -S'\x85\n\x00\x00\x00\x00\x00\x00' -tRp14415 -sVoak -p14416 -g24 -(g26 -S'!\x17\x00\x00\x00\x00\x00\x00' -tRp14417 -sVvirtual -p14418 -g24 -(g26 -S'F$\x00\x00\x00\x00\x00\x00' -tRp14419 -sVforestry -p14420 -g24 -(g26 -S'\x99\r\x00\x00\x00\x00\x00\x00' -tRp14421 -sVsandy -p14422 -g24 -(g26 -S'\x9c\x1d\x00\x00\x00\x00\x00\x00' -tRp14423 -sVdresses -p14424 -g24 -(g26 -S'\x86\n\x00\x00\x00\x00\x00\x00' -tRp14425 -sVnelson -p14426 -g24 -(g26 -S'\x8f\x16\x00\x00\x00\x00\x00\x00' -tRp14427 -sVxxx -p14428 -g24 -(g26 -S'\x8f%\x00\x00\x00\x00\x00\x00' -tRp14429 -sVbundle -p14430 -g24 -(g26 -S'\x8b\x04\x00\x00\x00\x00\x00\x00' -tRp14431 -sVenlargement -p14432 -g24 -(g26 -S'\x84\x0b\x00\x00\x00\x00\x00\x00' -tRp14433 -sVecological -p14434 -g24 -(g26 -S'\xe3\n\x00\x00\x00\x00\x00\x00' -tRp14435 -sVcheque -p14436 -g24 -(g26 -S'\xce\x05\x00\x00\x00\x00\x00\x00' -tRp14437 -sVtrackback -p14438 -g24 -(g26 -S'\x92"\x00\x00\x00\x00\x00\x00' -tRp14439 -sVastronomy -p14440 -g24 -(g26 -S'D\x02\x00\x00\x00\x00\x00\x00' -tRp14441 -sVchristians -p14442 -g24 -(g26 -S'\xf3\x05\x00\x00\x00\x00\x00\x00' -tRp14443 -sVphilips -p14444 -g24 -(g26 -S'\xf0\x18\x00\x00\x00\x00\x00\x00' -tRp14445 -sVoral -p14446 -g24 -(g26 -S'\xa4\x17\x00\x00\x00\x00\x00\x00' -tRp14447 -sVbaker -p14448 -g24 -(g26 -S'\xc6\x02\x00\x00\x00\x00\x00\x00' -tRp14449 -sVcpu -p14450 -g24 -(g26 -S'0\x08\x00\x00\x00\x00\x00\x00' -tRp14451 -sVbiotechnology -p14452 -g24 -(g26 -S'\x90\x03\x00\x00\x00\x00\x00\x00' -tRp14453 -sVcookbook -p14454 -g24 -(g26 -S'\xce\x07\x00\x00\x00\x00\x00\x00' -tRp14455 -sVlimited -p14456 -g24 -(g26 -S'\x8f\x13\x00\x00\x00\x00\x00\x00' -tRp14457 -sVhats -p14458 -g24 -(g26 -S'y\x0f\x00\x00\x00\x00\x00\x00' -tRp14459 -sVfacilities -p14460 -g24 -(g26 -S'\x89\x0c\x00\x00\x00\x00\x00\x00' -tRp14461 -sVsleep -p14462 -g24 -(g26 -S'(\x1f\x00\x00\x00\x00\x00\x00' -tRp14463 -sVclimb -p14464 -g24 -(g26 -S'M\x06\x00\x00\x00\x00\x00\x00' -tRp14465 -sVhate -p14466 -g24 -(g26 -S'x\x0f\x00\x00\x00\x00\x00\x00' -tRp14467 -sVassembled -p14468 -g24 -(g26 -S'"\x02\x00\x00\x00\x00\x00\x00' -tRp14469 -sVfeeding -p14470 -g24 -(g26 -S'\xdd\x0c\x00\x00\x00\x00\x00\x00' -tRp14471 -sVpatches -p14472 -g24 -(g26 -S'd\x18\x00\x00\x00\x00\x00\x00' -tRp14473 -sVparis -p14474 -g24 -(g26 -S'3\x18\x00\x00\x00\x00\x00\x00' -tRp14475 -sVstationery -p14476 -g24 -(g26 -S'" \x00\x00\x00\x00\x00\x00' -tRp14477 -sVpride -p14478 -g24 -(g26 -S'0\x1a\x00\x00\x00\x00\x00\x00' -tRp14479 -sVforbidden -p14480 -g24 -(g26 -S'\x90\r\x00\x00\x00\x00\x00\x00' -tRp14481 -sVmerchant -p14482 -g24 -(g26 -S'#\x15\x00\x00\x00\x00\x00\x00' -tRp14483 -sVrisk -p14484 -g24 -(g26 -S'\xfe\x1c\x00\x00\x00\x00\x00\x00' -tRp14485 -sVrise -p14486 -g24 -(g26 -S'\xfc\x1c\x00\x00\x00\x00\x00\x00' -tRp14487 -sVjack -p14488 -g24 -(g26 -S'\xe4\x11\x00\x00\x00\x00\x00\x00' -tRp14489 -sVfireplace -p14490 -g24 -(g26 -S'/\r\x00\x00\x00\x00\x00\x00' -tRp14491 -sVencounter -p14492 -g24 -(g26 -S'Z\x0b\x00\x00\x00\x00\x00\x00' -tRp14493 -sVschool -p14494 -g24 -(g26 -S'\xda\x1d\x00\x00\x00\x00\x00\x00' -tRp14495 -sVsupports -p14496 -g24 -(g26 -S'\xf5 \x00\x00\x00\x00\x00\x00' -tRp14497 -sVvenue -p14498 -g24 -(g26 -S'\x00$\x00\x00\x00\x00\x00\x00' -tRp14499 -sVintegrated -p14500 -g24 -(g26 -S'_\x11\x00\x00\x00\x00\x00\x00' -tRp14501 -sVenjoy -p14502 -g24 -(g26 -S'\x80\x0b\x00\x00\x00\x00\x00\x00' -tRp14503 -sVbicycle -p14504 -g24 -(g26 -S't\x03\x00\x00\x00\x00\x00\x00' -tRp14505 -sVleaders -p14506 -g24 -(g26 -S'\x1b\x13\x00\x00\x00\x00\x00\x00' -tRp14507 -sVdisciplines -p14508 -g24 -(g26 -S'\xe9\t\x00\x00\x00\x00\x00\x00' -tRp14509 -sVconsistent -p14510 -g24 -(g26 -S'm\x07\x00\x00\x00\x00\x00\x00' -tRp14511 -sVweddings -p14512 -g24 -(g26 -S'\xde$\x00\x00\x00\x00\x00\x00' -tRp14513 -sVestimates -p14514 -g24 -(g26 -S'\xd9\x0b\x00\x00\x00\x00\x00\x00' -tRp14515 -sVdirect -p14516 -g24 -(g26 -S'\xd1\t\x00\x00\x00\x00\x00\x00' -tRp14517 -sVnail -p14518 -g24 -(g26 -S'L\x16\x00\x00\x00\x00\x00\x00' -tRp14519 -sVsurrounding -p14520 -g24 -(g26 -S'\r!\x00\x00\x00\x00\x00\x00' -tRp14521 -sVfabulous -p14522 -g24 -(g26 -S'\x83\x0c\x00\x00\x00\x00\x00\x00' -tRp14523 -sVestimated -p14524 -g24 -(g26 -S'\xd8\x0b\x00\x00\x00\x00\x00\x00' -tRp14525 -sVfixtures -p14526 -g24 -(g26 -S'E\r\x00\x00\x00\x00\x00\x00' -tRp14527 -sVblue -p14528 -g24 -(g26 -S'\xc6\x03\x00\x00\x00\x00\x00\x00' -tRp14529 -sVhide -p14530 -g24 -(g26 -S'\xc6\x0f\x00\x00\x00\x00\x00\x00' -tRp14531 -sVchrist -p14532 -g24 -(g26 -S'\xf0\x05\x00\x00\x00\x00\x00\x00' -tRp14533 -sVorganisms -p14534 -g24 -(g26 -S'\xb4\x17\x00\x00\x00\x00\x00\x00' -tRp14535 -sVspecification -p14536 -g24 -(g26 -S'\xb5\x1f\x00\x00\x00\x00\x00\x00' -tRp14537 -sVselected -p14538 -g24 -(g26 -S'/\x1e\x00\x00\x00\x00\x00\x00' -tRp14539 -sVliberty -p14540 -g24 -(g26 -S'j\x13\x00\x00\x00\x00\x00\x00' -tRp14541 -sVconduct -p14542 -g24 -(g26 -S'3\x07\x00\x00\x00\x00\x00\x00' -tRp14543 -sVsupplier -p14544 -g24 -(g26 -S'\xed \x00\x00\x00\x00\x00\x00' -tRp14545 -sVsupplies -p14546 -g24 -(g26 -S'\xef \x00\x00\x00\x00\x00\x00' -tRp14547 -sVseeks -p14548 -g24 -(g26 -S'(\x1e\x00\x00\x00\x00\x00\x00' -tRp14549 -sVhundreds -p14550 -g24 -(g26 -S'V\x10\x00\x00\x00\x00\x00\x00' -tRp14551 -sVstudio -p14552 -g24 -(g26 -S'\x8b \x00\x00\x00\x00\x00\x00' -tRp14553 -sVrepresented -p14554 -g24 -(g26 -S']\x1c\x00\x00\x00\x00\x00\x00' -tRp14555 -sVpath -p14556 -g24 -(g26 -S'g\x18\x00\x00\x00\x00\x00\x00' -tRp14557 -sVproperty -p14558 -g24 -(g26 -S'\x9b\x1a\x00\x00\x00\x00\x00\x00' -tRp14559 -sVtx -p14560 -g24 -(g26 -S'A#\x00\x00\x00\x00\x00\x00' -tRp14561 -sVforum -p14562 -g24 -(g26 -S'\xae\r\x00\x00\x00\x00\x00\x00' -tRp14563 -sVluggage -p14564 -g24 -(g26 -S'#\x14\x00\x00\x00\x00\x00\x00' -tRp14565 -sVauction -p14566 -g24 -(g26 -S's\x02\x00\x00\x00\x00\x00\x00' -tRp14567 -sVleaves -p14568 -g24 -(g26 -S'*\x13\x00\x00\x00\x00\x00\x00' -tRp14569 -sVchanged -p14570 -g24 -(g26 -S'\x94\x05\x00\x00\x00\x00\x00\x00' -tRp14571 -sVmuseums -p14572 -g24 -(g26 -S'5\x16\x00\x00\x00\x00\x00\x00' -tRp14573 -sVmentor -p14574 -g24 -(g26 -S'\x1e\x15\x00\x00\x00\x00\x00\x00' -tRp14575 -sVsettled -p14576 -g24 -(g26 -S'r\x1e\x00\x00\x00\x00\x00\x00' -tRp14577 -sVpunishment -p14578 -g24 -(g26 -S'\xe8\x1a\x00\x00\x00\x00\x00\x00' -tRp14579 -sVpendant -p14580 -g24 -(g26 -S'\x97\x18\x00\x00\x00\x00\x00\x00' -tRp14581 -sVprints -p14582 -g24 -(g26 -S'A\x1a\x00\x00\x00\x00\x00\x00' -tRp14583 -sVjulie -p14584 -g24 -(g26 -S'O\x12\x00\x00\x00\x00\x00\x00' -tRp14585 -sVjulia -p14586 -g24 -(g26 -S'M\x12\x00\x00\x00\x00\x00\x00' -tRp14587 -sVstrap -p14588 -g24 -(g26 -S'` \x00\x00\x00\x00\x00\x00' -tRp14589 -sVvisible -p14590 -g24 -(g26 -S'M$\x00\x00\x00\x00\x00\x00' -tRp14591 -sVactions -p14592 -g24 -(g26 -S'[\x00\x00\x00\x00\x00\x00\x00' -tRp14593 -sVforums -p14594 -g24 -(g26 -S'\xaf\r\x00\x00\x00\x00\x00\x00' -tRp14595 -sVpantyhose -p14596 -g24 -(g26 -S'\x1e\x18\x00\x00\x00\x00\x00\x00' -tRp14597 -sVhospital -p14598 -g24 -(g26 -S'#\x10\x00\x00\x00\x00\x00\x00' -tRp14599 -sVchargers -p14600 -g24 -(g26 -S'\xa8\x05\x00\x00\x00\x00\x00\x00' -tRp14601 -sVasset -p14602 -g24 -(g26 -S')\x02\x00\x00\x00\x00\x00\x00' -tRp14603 -sVpreview -p14604 -g24 -(g26 -S'(\x1a\x00\x00\x00\x00\x00\x00' -tRp14605 -sVassessment -p14606 -g24 -(g26 -S"'\x02\x00\x00\x00\x00\x00\x00" -tRp14607 -sVdressing -p14608 -g24 -(g26 -S'\x87\n\x00\x00\x00\x00\x00\x00' -tRp14609 -sVpic -p14610 -g24 -(g26 -S'\x0c\x19\x00\x00\x00\x00\x00\x00' -tRp14611 -sVphone -p14612 -g24 -(g26 -S'\xf4\x18\x00\x00\x00\x00\x00\x00' -tRp14613 -sVconnecticut -p14614 -g24 -(g26 -S'R\x07\x00\x00\x00\x00\x00\x00' -tRp14615 -sVexcellent -p14616 -g24 -(g26 -S'\x0f\x0c\x00\x00\x00\x00\x00\x00' -tRp14617 -sVvpn -p14618 -g24 -(g26 -S'w$\x00\x00\x00\x00\x00\x00' -tRp14619 -sVsupplemental -p14620 -g24 -(g26 -S'\xea \x00\x00\x00\x00\x00\x00' -tRp14621 -sVshoot -p14622 -g24 -(g26 -S'\xba\x1e\x00\x00\x00\x00\x00\x00' -tRp14623 -sVmd -p14624 -g24 -(g26 -S'\xe0\x14\x00\x00\x00\x00\x00\x00' -tRp14625 -sVmg -p14626 -g24 -(g26 -S'I\x15\x00\x00\x00\x00\x00\x00' -tRp14627 -sVmf -p14628 -g24 -(g26 -S'H\x15\x00\x00\x00\x00\x00\x00' -tRp14629 -sVma -p14630 -g24 -(g26 -S'0\x14\x00\x00\x00\x00\x00\x00' -tRp14631 -sVmc -p14632 -g24 -(g26 -S'\xde\x14\x00\x00\x00\x00\x00\x00' -tRp14633 -sVcheapest -p14634 -g24 -(g26 -S'\xbc\x05\x00\x00\x00\x00\x00\x00' -tRp14635 -sVmm -p14636 -g24 -(g26 -S'\xab\x15\x00\x00\x00\x00\x00\x00' -tRp14637 -sVtb -p14638 -g24 -(g26 -S'{!\x00\x00\x00\x00\x00\x00' -tRp14639 -sVmo -p14640 -g24 -(g26 -S'\xad\x15\x00\x00\x00\x00\x00\x00' -tRp14641 -sVmn -p14642 -g24 -(g26 -S'\xac\x15\x00\x00\x00\x00\x00\x00' -tRp14643 -sVmi -p14644 -g24 -(g26 -S'L\x15\x00\x00\x00\x00\x00\x00' -tRp14645 -sVmh -p14646 -g24 -(g26 -S'J\x15\x00\x00\x00\x00\x00\x00' -tRp14647 -sVadvocacy -p14648 -g24 -(g26 -S'\xb5\x00\x00\x00\x00\x00\x00\x00' -tRp14649 -sVmj -p14650 -g24 -(g26 -S'\xa7\x15\x00\x00\x00\x00\x00\x00' -tRp14651 -sVmu -p14652 -g24 -(g26 -S'%\x16\x00\x00\x00\x00\x00\x00' -tRp14653 -sVmt -p14654 -g24 -(g26 -S'#\x16\x00\x00\x00\x00\x00\x00' -tRp14655 -sVmw -p14656 -g24 -(g26 -S'@\x16\x00\x00\x00\x00\x00\x00' -tRp14657 -sVmv -p14658 -g24 -(g26 -S'?\x16\x00\x00\x00\x00\x00\x00' -tRp14659 -sVmp -p14660 -g24 -(g26 -S'\x15\x16\x00\x00\x00\x00\x00\x00' -tRp14661 -sVinstall -p14662 -g24 -(g26 -S'>\x11\x00\x00\x00\x00\x00\x00' -tRp14663 -sVhenry -p14664 -g24 -(g26 -S'\xb7\x0f\x00\x00\x00\x00\x00\x00' -tRp14665 -sVgrenada -p14666 -g24 -(g26 -S'\xf9\x0e\x00\x00\x00\x00\x00\x00' -tRp14667 -sVcarmen -p14668 -g24 -(g26 -S'\x15\x05\x00\x00\x00\x00\x00\x00' -tRp14669 -sVmx -p14670 -g24 -(g26 -S'A\x16\x00\x00\x00\x00\x00\x00' -tRp14671 -sVdecorative -p14672 -g24 -(g26 -S'\xf8\x08\x00\x00\x00\x00\x00\x00' -tRp14673 -sVtechrepublic -p14674 -g24 -(g26 -S'\x94!\x00\x00\x00\x00\x00\x00' -tRp14675 -sVestate -p14676 -g24 -(g26 -S'\xd5\x0b\x00\x00\x00\x00\x00\x00' -tRp14677 -sVgadgets -p14678 -g24 -(g26 -S'\x1b\x0e\x00\x00\x00\x00\x00\x00' -tRp14679 -sVscheduling -p14680 -g24 -(g26 -S'\xd2\x1d\x00\x00\x00\x00\x00\x00' -tRp14681 -sVattract -p14682 -g24 -(g26 -S'j\x02\x00\x00\x00\x00\x00\x00' -tRp14683 -sVguarantee -p14684 -g24 -(g26 -S'\x14\x0f\x00\x00\x00\x00\x00\x00' -tRp14685 -sVceremony -p14686 -g24 -(g26 -S'q\x05\x00\x00\x00\x00\x00\x00' -tRp14687 -sVenb -p14688 -g24 -(g26 -S'V\x0b\x00\x00\x00\x00\x00\x00' -tRp14689 -sVend -p14690 -g24 -(g26 -S'b\x0b\x00\x00\x00\x00\x00\x00' -tRp14691 -sVeng -p14692 -g24 -(g26 -S'o\x0b\x00\x00\x00\x00\x00\x00' -tRp14693 -sVenquiry -p14694 -g24 -(g26 -S'\x87\x0b\x00\x00\x00\x00\x00\x00' -tRp14695 -sVreturning -p14696 -g24 -(g26 -S'\xbf\x1c\x00\x00\x00\x00\x00\x00' -tRp14697 -sVwriters -p14698 -g24 -(g26 -S't%\x00\x00\x00\x00\x00\x00' -tRp14699 -sVent -p14700 -g24 -(g26 -S'\x8e\x0b\x00\x00\x00\x00\x00\x00' -tRp14701 -sVadjacent -p14702 -g24 -(g26 -S'\x85\x00\x00\x00\x00\x00\x00\x00' -tRp14703 -sVtoxic -p14704 -g24 -(g26 -S'\x8a"\x00\x00\x00\x00\x00\x00' -tRp14705 -sVgate -p14706 -g24 -(g26 -S':\x0e\x00\x00\x00\x00\x00\x00' -tRp14707 -sVwidespread -p14708 -g24 -(g26 -S'\x08%\x00\x00\x00\x00\x00\x00' -tRp14709 -sVcharging -p14710 -g24 -(g26 -S'\xaa\x05\x00\x00\x00\x00\x00\x00' -tRp14711 -sVbadly -p14712 -g24 -(g26 -S'\xbf\x02\x00\x00\x00\x00\x00\x00' -tRp14713 -sVpoker -p14714 -g24 -(g26 -S'\x82\x19\x00\x00\x00\x00\x00\x00' -tRp14715 -sVelizabeth -p14716 -g24 -(g26 -S'0\x0b\x00\x00\x00\x00\x00\x00' -tRp14717 -sVmess -p14718 -g24 -(g26 -S'/\x15\x00\x00\x00\x00\x00\x00' -tRp14719 -sVarthritis -p14720 -g24 -(g26 -S'\x05\x02\x00\x00\x00\x00\x00\x00' -tRp14721 -sVdemanding -p14722 -g24 -(g26 -S'+\t\x00\x00\x00\x00\x00\x00' -tRp14723 -sVjumping -p14724 -g24 -(g26 -S'R\x12\x00\x00\x00\x00\x00\x00' -tRp14725 -sVgibraltar -p14726 -g24 -(g26 -S'\x83\x0e\x00\x00\x00\x00\x00\x00' -tRp14727 -sVmesa -p14728 -g24 -(g26 -S'-\x15\x00\x00\x00\x00\x00\x00' -tRp14729 -sVparallel -p14730 -g24 -(g26 -S'+\x18\x00\x00\x00\x00\x00\x00' -tRp14731 -sVdanny -p14732 -g24 -(g26 -S'\xb3\x08\x00\x00\x00\x00\x00\x00' -tRp14733 -sVacknowledged -p14734 -g24 -(g26 -S'L\x00\x00\x00\x00\x00\x00\x00' -tRp14735 -sVharley -p14736 -g24 -(g26 -S'h\x0f\x00\x00\x00\x00\x00\x00' -tRp14737 -sVpatent -p14738 -g24 -(g26 -S'e\x18\x00\x00\x00\x00\x00\x00' -tRp14739 -sVcomplexity -p14740 -g24 -(g26 -S'\x01\x07\x00\x00\x00\x00\x00\x00' -tRp14741 -sValgorithms -p14742 -g24 -(g26 -S'\x0b\x01\x00\x00\x00\x00\x00\x00' -tRp14743 -sVjungle -p14744 -g24 -(g26 -S'V\x12\x00\x00\x00\x00\x00\x00' -tRp14745 -sVcorrelation -p14746 -g24 -(g26 -S'\xfd\x07\x00\x00\x00\x00\x00\x00' -tRp14747 -sVplumbing -p14748 -g24 -(g26 -S'j\x19\x00\x00\x00\x00\x00\x00' -tRp14749 -sVexecuted -p14750 -g24 -(g26 -S'$\x0c\x00\x00\x00\x00\x00\x00' -tRp14751 -sVinterpretation -p14752 -g24 -(g26 -S'\x81\x11\x00\x00\x00\x00\x00\x00' -tRp14753 -sVexpects -p14754 -g24 -(g26 -S'A\x0c\x00\x00\x00\x00\x00\x00' -tRp14755 -sVjpeg -p14756 -g24 -(g26 -S'A\x12\x00\x00\x00\x00\x00\x00' -tRp14757 -sVlondon -p14758 -g24 -(g26 -S'\xec\x13\x00\x00\x00\x00\x00\x00' -tRp14759 -sVoven -p14760 -g24 -(g26 -S'\xde\x17\x00\x00\x00\x00\x00\x00' -tRp14761 -sVdigest -p14762 -g24 -(g26 -S'\xc3\t\x00\x00\x00\x00\x00\x00' -tRp14763 -sVimg -p14764 -g24 -(g26 -S'\x9b\x10\x00\x00\x00\x00\x00\x00' -tRp14765 -sVexpectations -p14766 -g24 -(g26 -S'?\x0c\x00\x00\x00\x00\x00\x00' -tRp14767 -sVmongolia -p14768 -g24 -(g26 -S'\xd5\x15\x00\x00\x00\x00\x00\x00' -tRp14769 -sVwriting -p14770 -g24 -(g26 -S'v%\x00\x00\x00\x00\x00\x00' -tRp14771 -sVdestroyed -p14772 -g24 -(g26 -S't\t\x00\x00\x00\x00\x00\x00' -tRp14773 -sVstrand -p14774 -g24 -(g26 -S'] \x00\x00\x00\x00\x00\x00' -tRp14775 -sVeugene -p14776 -g24 -(g26 -S'\xe4\x0b\x00\x00\x00\x00\x00\x00' -tRp14777 -sViowa -p14778 -g24 -(g26 -S'\xb4\x11\x00\x00\x00\x00\x00\x00' -tRp14779 -sVtourist -p14780 -g24 -(g26 -S'\x81"\x00\x00\x00\x00\x00\x00' -tRp14781 -sVwashing -p14782 -g24 -(g26 -S'\xb1$\x00\x00\x00\x00\x00\x00' -tRp14783 -sVrental -p14784 -g24 -(g26 -S'A\x1c\x00\x00\x00\x00\x00\x00' -tRp14785 -sVshadows -p14786 -g24 -(g26 -S'\x86\x1e\x00\x00\x00\x00\x00\x00' -tRp14787 -sVnetherlands -p14788 -g24 -(g26 -S'\x98\x16\x00\x00\x00\x00\x00\x00' -tRp14789 -sValex -p14790 -g24 -(g26 -S'\x04\x01\x00\x00\x00\x00\x00\x00' -tRp14791 -sVbosnia -p14792 -g24 -(g26 -S'\xf9\x03\x00\x00\x00\x00\x00\x00' -tRp14793 -sVnotified -p14794 -g24 -(g26 -S'\xf4\x16\x00\x00\x00\x00\x00\x00' -tRp14795 -sVpotatoes -p14796 -g24 -(g26 -S'\xd0\x19\x00\x00\x00\x00\x00\x00' -tRp14797 -sVsanyo -p14798 -g24 -(g26 -S'\x9f\x1d\x00\x00\x00\x00\x00\x00' -tRp14799 -sVchuck -p14800 -g24 -(g26 -S'\xfe\x05\x00\x00\x00\x00\x00\x00' -tRp14801 -sVdetroit -p14802 -g24 -(g26 -S'\x82\t\x00\x00\x00\x00\x00\x00' -tRp14803 -sVchoir -p14804 -g24 -(g26 -S'\xe8\x05\x00\x00\x00\x00\x00\x00' -tRp14805 -sVfilling -p14806 -g24 -(g26 -S'\x0c\r\x00\x00\x00\x00\x00\x00' -tRp14807 -sVnewport -p14808 -g24 -(g26 -S'\xa9\x16\x00\x00\x00\x00\x00\x00' -tRp14809 -sVvictory -p14810 -g24 -(g26 -S'$$\x00\x00\x00\x00\x00\x00' -tRp14811 -sVfitness -p14812 -g24 -(g26 -S'>\r\x00\x00\x00\x00\x00\x00' -tRp14813 -sVlasting -p14814 -g24 -(g26 -S'\xf1\x12\x00\x00\x00\x00\x00\x00' -tRp14815 -sVsigning -p14816 -g24 -(g26 -S'\xe8\x1e\x00\x00\x00\x00\x00\x00' -tRp14817 -sVdiana -p14818 -g24 -(g26 -S'\xa6\t\x00\x00\x00\x00\x00\x00' -tRp14819 -sVdiane -p14820 -g24 -(g26 -S'\xa7\t\x00\x00\x00\x00\x00\x00' -tRp14821 -sVgroup -p14822 -g24 -(g26 -S'\x06\x0f\x00\x00\x00\x00\x00\x00' -tRp14823 -sVcombining -p14824 -g24 -(g26 -S'\xb3\x06\x00\x00\x00\x00\x00\x00' -tRp14825 -sVsaturday -p14826 -g24 -(g26 -S'\xae\x1d\x00\x00\x00\x00\x00\x00' -tRp14827 -sVrevisions -p14828 -g24 -(g26 -S'\xd3\x1c\x00\x00\x00\x00\x00\x00' -tRp14829 -sVdriving -p14830 -g24 -(g26 -S'\x94\n\x00\x00\x00\x00\x00\x00' -tRp14831 -sVkuwait -p14832 -g24 -(g26 -S'\xbd\x12\x00\x00\x00\x00\x00\x00' -tRp14833 -sVtried -p14834 -g24 -(g26 -S'\xfa"\x00\x00\x00\x00\x00\x00' -tRp14835 -sVlaid -p14836 -g24 -(g26 -S'\xd1\x12\x00\x00\x00\x00\x00\x00' -tRp14837 -sVmillennium -p14838 -g24 -(g26 -S'm\x15\x00\x00\x00\x00\x00\x00' -tRp14839 -sVgot -p14840 -g24 -(g26 -S'\xba\x0e\x00\x00\x00\x00\x00\x00' -tRp14841 -sVwasher -p14842 -g24 -(g26 -S'\xb0$\x00\x00\x00\x00\x00\x00' -tRp14843 -sVindependence -p14844 -g24 -(g26 -S'\xdd\x10\x00\x00\x00\x00\x00\x00' -tRp14845 -sVperception -p14846 -g24 -(g26 -S'\xaa\x18\x00\x00\x00\x00\x00\x00' -tRp14847 -sVassociate -p14848 -g24 -(g26 -S'4\x02\x00\x00\x00\x00\x00\x00' -tRp14849 -sVhang -p14850 -g24 -(g26 -S'U\x0f\x00\x00\x00\x00\x00\x00' -tRp14851 -sVeternal -p14852 -g24 -(g26 -S'\xdd\x0b\x00\x00\x00\x00\x00\x00' -tRp14853 -sVfree -p14854 -g24 -(g26 -S'\xd4\r\x00\x00\x00\x00\x00\x00' -tRp14855 -sVfred -p14856 -g24 -(g26 -S'\xd2\r\x00\x00\x00\x00\x00\x00' -tRp14857 -sVformation -p14858 -g24 -(g26 -S'\xa4\r\x00\x00\x00\x00\x00\x00' -tRp14859 -sVrain -p14860 -g24 -(g26 -S'C\x1b\x00\x00\x00\x00\x00\x00' -tRp14861 -sVwanted -p14862 -g24 -(g26 -S'\x9a$\x00\x00\x00\x00\x00\x00' -tRp14863 -sVacrobat -p14864 -g24 -(g26 -S'V\x00\x00\x00\x00\x00\x00\x00' -tRp14865 -sVinexpensive -p14866 -g24 -(g26 -S'\xfe\x10\x00\x00\x00\x00\x00\x00' -tRp14867 -sVdays -p14868 -g24 -(g26 -S'\xcb\x08\x00\x00\x00\x00\x00\x00' -tRp14869 -sVsyndication -p14870 -g24 -(g26 -S'=!\x00\x00\x00\x00\x00\x00' -tRp14871 -sVfilter -p14872 -g24 -(g26 -S'\x10\r\x00\x00\x00\x00\x00\x00' -tRp14873 -sVcorrections -p14874 -g24 -(g26 -S'\xfb\x07\x00\x00\x00\x00\x00\x00' -tRp14875 -sVrand -p14876 -g24 -(g26 -S'O\x1b\x00\x00\x00\x00\x00\x00' -tRp14877 -sVappeals -p14878 -g24 -(g26 -S'\xa4\x01\x00\x00\x00\x00\x00\x00' -tRp14879 -sVresearcher -p14880 -g24 -(g26 -S'w\x1c\x00\x00\x00\x00\x00\x00' -tRp14881 -sVnhl -p14882 -g24 -(g26 -S'\xb4\x16\x00\x00\x00\x00\x00\x00' -tRp14883 -sVcoding -p14884 -g24 -(g26 -S'\x7f\x06\x00\x00\x00\x00\x00\x00' -tRp14885 -sVencouraging -p14886 -g24 -(g26 -S'_\x0b\x00\x00\x00\x00\x00\x00' -tRp14887 -sVrank -p14888 -g24 -(g26 -S'W\x1b\x00\x00\x00\x00\x00\x00' -tRp14889 -sVhearing -p14890 -g24 -(g26 -S'\x99\x0f\x00\x00\x00\x00\x00\x00' -tRp14891 -sVrestrict -p14892 -g24 -(g26 -S'\xa5\x1c\x00\x00\x00\x00\x00\x00' -tRp14893 -sVfantasy -p14894 -g24 -(g26 -S'\xac\x0c\x00\x00\x00\x00\x00\x00' -tRp14895 -sVrelations -p14896 -g24 -(g26 -S'\n\x1c\x00\x00\x00\x00\x00\x00' -tRp14897 -sVnhs -p14898 -g24 -(g26 -S'\xb5\x16\x00\x00\x00\x00\x00\x00' -tRp14899 -sVinsulation -p14900 -g24 -(g26 -S'V\x11\x00\x00\x00\x00\x00\x00' -tRp14901 -sVtitled -p14902 -g24 -(g26 -S'J"\x00\x00\x00\x00\x00\x00' -tRp14903 -sVmercury -p14904 -g24 -(g26 -S'%\x15\x00\x00\x00\x00\x00\x00' -tRp14905 -sVtoy -p14906 -g24 -(g26 -S'\x8b"\x00\x00\x00\x00\x00\x00' -tRp14907 -sVattach -p14908 -g24 -(g26 -S'V\x02\x00\x00\x00\x00\x00\x00' -tRp14909 -sVantiques -p14910 -g24 -(g26 -S'\x8e\x01\x00\x00\x00\x00\x00\x00' -tRp14911 -sVheights -p14912 -g24 -(g26 -S'\xa9\x0f\x00\x00\x00\x00\x00\x00' -tRp14913 -sVton -p14914 -g24 -(g26 -S'b"\x00\x00\x00\x00\x00\x00' -tRp14915 -sVtom -p14916 -g24 -(g26 -S']"\x00\x00\x00\x00\x00\x00' -tRp14917 -sVswingers -p14918 -g24 -(g26 -S'+!\x00\x00\x00\x00\x00\x00' -tRp14919 -sVglucose -p14920 -g24 -(g26 -S'\x9f\x0e\x00\x00\x00\x00\x00\x00' -tRp14921 -sVurban -p14922 -g24 -(g26 -S'\x9b#\x00\x00\x00\x00\x00\x00' -tRp14923 -sVceiling -p14924 -g24 -(g26 -S'X\x05\x00\x00\x00\x00\x00\x00' -tRp14925 -sVmurder -p14926 -g24 -(g26 -S'/\x16\x00\x00\x00\x00\x00\x00' -tRp14927 -sVcentered -p14928 -g24 -(g26 -S'g\x05\x00\x00\x00\x00\x00\x00' -tRp14929 -sVsignup -p14930 -g24 -(g26 -S'\xea\x1e\x00\x00\x00\x00\x00\x00' -tRp14931 -sVserve -p14932 -g24 -(g26 -S'c\x1e\x00\x00\x00\x00\x00\x00' -tRp14933 -sVtook -p14934 -g24 -(g26 -S'j"\x00\x00\x00\x00\x00\x00' -tRp14935 -sVwestern -p14936 -g24 -(g26 -S'\xf5$\x00\x00\x00\x00\x00\x00' -tRp14937 -sVpostcards -p14938 -g24 -(g26 -S'\xc6\x19\x00\x00\x00\x00\x00\x00' -tRp14939 -sVscenario -p14940 -g24 -(g26 -S'\xca\x1d\x00\x00\x00\x00\x00\x00' -tRp14941 -sVroles -p14942 -g24 -(g26 -S'\x1f\x1d\x00\x00\x00\x00\x00\x00' -tRp14943 -sVimmigrants -p14944 -g24 -(g26 -S'\x9e\x10\x00\x00\x00\x00\x00\x00' -tRp14945 -sVclasses -p14946 -g24 -(g26 -S'0\x06\x00\x00\x00\x00\x00\x00' -tRp14947 -sVexpo -p14948 -g24 -(g26 -S'a\x0c\x00\x00\x00\x00\x00\x00' -tRp14949 -sVperspective -p14950 -g24 -(g26 -S'\xce\x18\x00\x00\x00\x00\x00\x00' -tRp14951 -sVbridge -p14952 -g24 -(g26 -S'9\x04\x00\x00\x00\x00\x00\x00' -tRp14953 -sVlbs -p14954 -g24 -(g26 -S'\x14\x13\x00\x00\x00\x00\x00\x00' -tRp14955 -sVfashion -p14956 -g24 -(g26 -S'\xb8\x0c\x00\x00\x00\x00\x00\x00' -tRp14957 -sVran -p14958 -g24 -(g26 -S'M\x1b\x00\x00\x00\x00\x00\x00' -tRp14959 -sVram -p14960 -g24 -(g26 -S'L\x1b\x00\x00\x00\x00\x00\x00' -tRp14961 -sVraw -p14962 -g24 -(g26 -S'm\x1b\x00\x00\x00\x00\x00\x00' -tRp14963 -sVrat -p14964 -g24 -(g26 -S'c\x1b\x00\x00\x00\x00\x00\x00' -tRp14965 -sVrap -p14966 -g24 -(g26 -S'\\\x1b\x00\x00\x00\x00\x00\x00' -tRp14967 -sVbotswana -p14968 -g24 -(g26 -S'\xfd\x03\x00\x00\x00\x00\x00\x00' -tRp14969 -sVseminar -p14970 -g24 -(g26 -S'=\x1e\x00\x00\x00\x00\x00\x00' -tRp14971 -sVray -p14972 -g24 -(g26 -S'n\x1b\x00\x00\x00\x00\x00\x00' -tRp14973 -sVtriangle -p14974 -g24 -(g26 -S'\xf1"\x00\x00\x00\x00\x00\x00' -tRp14975 -sVnipples -p14976 -g24 -(g26 -S'\xca\x16\x00\x00\x00\x00\x00\x00' -tRp14977 -sVcottages -p14978 -g24 -(g26 -S'\n\x08\x00\x00\x00\x00\x00\x00' -tRp14979 -sVharper -p14980 -g24 -(g26 -S'm\x0f\x00\x00\x00\x00\x00\x00' -tRp14981 -sVthoroughly -p14982 -g24 -(g26 -S'\x05"\x00\x00\x00\x00\x00\x00' -tRp14983 -sVfirmware -p14984 -g24 -(g26 -S'5\r\x00\x00\x00\x00\x00\x00' -tRp14985 -sVisolated -p14986 -g24 -(g26 -S'\xcd\x11\x00\x00\x00\x00\x00\x00' -tRp14987 -sVthorough -p14988 -g24 -(g26 -S'\x04"\x00\x00\x00\x00\x00\x00' -tRp14989 -sVbrandon -p14990 -g24 -(g26 -S' \x04\x00\x00\x00\x00\x00\x00' -tRp14991 -sVoriented -p14992 -g24 -(g26 -S'\xc0\x17\x00\x00\x00\x00\x00\x00' -tRp14993 -sVcontact -p14994 -g24 -(g26 -S'\x8c\x07\x00\x00\x00\x00\x00\x00' -tRp14995 -sVderek -p14996 -g24 -(g26 -S'U\t\x00\x00\x00\x00\x00\x00' -tRp14997 -sVshelf -p14998 -g24 -(g26 -S'\xa3\x1e\x00\x00\x00\x00\x00\x00' -tRp14999 -sVeffectiveness -p15000 -g24 -(g26 -S'\t\x0b\x00\x00\x00\x00\x00\x00' -tRp15001 -sVrides -p15002 -g24 -(g26 -S'\xef\x1c\x00\x00\x00\x00\x00\x00' -tRp15003 -sVrider -p15004 -g24 -(g26 -S'\xed\x1c\x00\x00\x00\x00\x00\x00' -tRp15005 -sVmonaco -p15006 -g24 -(g26 -S'\xd1\x15\x00\x00\x00\x00\x00\x00' -tRp15007 -sVabc -p15008 -g24 -(g26 -S'\x05\x00\x00\x00\x00\x00\x00\x00' -tRp15009 -sVplenty -p15010 -g24 -(g26 -S'd\x19\x00\x00\x00\x00\x00\x00' -tRp15011 -sVcoin -p15012 -g24 -(g26 -S'\x83\x06\x00\x00\x00\x00\x00\x00' -tRp15013 -sVjean -p15014 -g24 -(g26 -S'\x02\x12\x00\x00\x00\x00\x00\x00' -tRp15015 -sVglow -p15016 -g24 -(g26 -S'\x9e\x0e\x00\x00\x00\x00\x00\x00' -tRp15017 -sVpromotions -p15018 -g24 -(g26 -S'\x93\x1a\x00\x00\x00\x00\x00\x00' -tRp15019 -sVpeers -p15020 -g24 -(g26 -S'\x92\x18\x00\x00\x00\x00\x00\x00' -tRp15021 -sVrogers -p15022 -g24 -(g26 -S'\x1c\x1d\x00\x00\x00\x00\x00\x00' -tRp15023 -sVtanzania -p15024 -g24 -(g26 -S'h!\x00\x00\x00\x00\x00\x00' -tRp15025 -sVpartition -p15026 -g24 -(g26 -S'H\x18\x00\x00\x00\x00\x00\x00' -tRp15027 -sVflow -p15028 -g24 -(g26 -S'f\r\x00\x00\x00\x00\x00\x00' -tRp15029 -sVtreaty -p15030 -g24 -(g26 -S'\xe5"\x00\x00\x00\x00\x00\x00' -tRp15031 -sVyang -p15032 -g24 -(g26 -S'\x95%\x00\x00\x00\x00\x00\x00' -tRp15033 -sVenterprise -p15034 -g24 -(g26 -S'\x92\x0b\x00\x00\x00\x00\x00\x00' -tRp15035 -sVchris -p15036 -g24 -(g26 -S'\xef\x05\x00\x00\x00\x00\x00\x00' -tRp15037 -sVentertaining -p15038 -g24 -(g26 -S'\x95\x0b\x00\x00\x00\x00\x00\x00' -tRp15039 -sVdesktops -p15040 -g24 -(g26 -S'm\t\x00\x00\x00\x00\x00\x00' -tRp15041 -sVcontacted -p15042 -g24 -(g26 -S'\x8d\x07\x00\x00\x00\x00\x00\x00' -tRp15043 -sVreductions -p15044 -g24 -(g26 -S'\xca\x1b\x00\x00\x00\x00\x00\x00' -tRp15045 -sVqueen -p15046 -g24 -(g26 -S'\x18\x1b\x00\x00\x00\x00\x00\x00' -tRp15047 -sVsage -p15048 -g24 -(g26 -S'|\x1d\x00\x00\x00\x00\x00\x00' -tRp15049 -sVwheat -p15050 -g24 -(g26 -S'\xfa$\x00\x00\x00\x00\x00\x00' -tRp15051 -sVmediawiki -p15052 -g24 -(g26 -S'\xf7\x14\x00\x00\x00\x00\x00\x00' -tRp15053 -sVcolors -p15054 -g24 -(g26 -S'\xa6\x06\x00\x00\x00\x00\x00\x00' -tRp15055 -sVradio -p15056 -g24 -(g26 -S';\x1b\x00\x00\x00\x00\x00\x00' -tRp15057 -sVsolutions -p15058 -g24 -(g26 -S'n\x1f\x00\x00\x00\x00\x00\x00' -tRp15059 -sVearth -p15060 -g24 -(g26 -S'\xcf\n\x00\x00\x00\x00\x00\x00' -tRp15061 -sVavailability -p15062 -g24 -(g26 -S'\x96\x02\x00\x00\x00\x00\x00\x00' -tRp15063 -sVsituations -p15064 -g24 -(g26 -S'\x12\x1f\x00\x00\x00\x00\x00\x00' -tRp15065 -sVdelays -p15066 -g24 -(g26 -S'\x1a\t\x00\x00\x00\x00\x00\x00' -tRp15067 -sVminnesota -p15068 -g24 -(g26 -S'\x86\x15\x00\x00\x00\x00\x00\x00' -tRp15069 -sVgods -p15070 -g24 -(g26 -S'\xaa\x0e\x00\x00\x00\x00\x00\x00' -tRp15071 -sVlodge -p15072 -g24 -(g26 -S'\xdc\x13\x00\x00\x00\x00\x00\x00' -tRp15073 -sVannounce -p15074 -g24 -(g26 -S'v\x01\x00\x00\x00\x00\x00\x00' -tRp15075 -sVrss -p15076 -g24 -(g26 -S'U\x1d\x00\x00\x00\x00\x00\x00' -tRp15077 -sVoct -p15078 -g24 -(g26 -S'I\x17\x00\x00\x00\x00\x00\x00' -tRp15079 -sVcontinuity -p15080 -g24 -(g26 -S'\xa4\x07\x00\x00\x00\x00\x00\x00' -tRp15081 -sVmixture -p15082 -g24 -(g26 -S'\xa6\x15\x00\x00\x00\x00\x00\x00' -tRp15083 -sVsunglasses -p15084 -g24 -(g26 -S'\xdd \x00\x00\x00\x00\x00\x00' -tRp15085 -sVasbestos -p15086 -g24 -(g26 -S'\x10\x02\x00\x00\x00\x00\x00\x00' -tRp15087 -sVwatch -p15088 -g24 -(g26 -S'\xb4$\x00\x00\x00\x00\x00\x00' -tRp15089 -sVfluid -p15090 -g24 -(g26 -S'l\r\x00\x00\x00\x00\x00\x00' -tRp15091 -sVgeek -p15092 -g24 -(g26 -S'N\x0e\x00\x00\x00\x00\x00\x00' -tRp15093 -sVguatemala -p15094 -g24 -(g26 -S'\x1a\x0f\x00\x00\x00\x00\x00\x00' -tRp15095 -sVdespite -p15096 -g24 -(g26 -S'o\t\x00\x00\x00\x00\x00\x00' -tRp15097 -sVreport -p15098 -g24 -(g26 -S'Q\x1c\x00\x00\x00\x00\x00\x00' -tRp15099 -sVhaiti -p15100 -g24 -(g26 -S':\x0f\x00\x00\x00\x00\x00\x00' -tRp15101 -sVfabrics -p15102 -g24 -(g26 -S'\x82\x0c\x00\x00\x00\x00\x00\x00' -tRp15103 -sVholland -p15104 -g24 -(g26 -S'\xf9\x0f\x00\x00\x00\x00\x00\x00' -tRp15105 -sVbeads -p15106 -g24 -(g26 -S'\x18\x03\x00\x00\x00\x00\x00\x00' -tRp15107 -sVcountries -p15108 -g24 -(g26 -S'\x16\x08\x00\x00\x00\x00\x00\x00' -tRp15109 -sVscotia -p15110 -g24 -(g26 -S'\xe8\x1d\x00\x00\x00\x00\x00\x00' -tRp15111 -sVlicking -p15112 -g24 -(g26 -S't\x13\x00\x00\x00\x00\x00\x00' -tRp15113 -sVtwice -p15114 -g24 -(g26 -S':#\x00\x00\x00\x00\x00\x00' -tRp15115 -sVshots -p15116 -g24 -(g26 -S'\xc9\x1e\x00\x00\x00\x00\x00\x00' -tRp15117 -sVisolation -p15118 -g24 -(g26 -S'\xce\x11\x00\x00\x00\x00\x00\x00' -tRp15119 -sVadapters -p15120 -g24 -(g26 -S'q\x00\x00\x00\x00\x00\x00\x00' -tRp15121 -sVmotherboard -p15122 -g24 -(g26 -S'\xf9\x15\x00\x00\x00\x00\x00\x00' -tRp15123 -sVnut -p15124 -g24 -(g26 -S'\x15\x17\x00\x00\x00\x00\x00\x00' -tRp15125 -sVresist -p15126 -g24 -(g26 -S'\x85\x1c\x00\x00\x00\x00\x00\x00' -tRp15127 -sVbed -p15128 -g24 -(g26 -S')\x03\x00\x00\x00\x00\x00\x00' -tRp15129 -sVtommy -p15130 -g24 -(g26 -S'`"\x00\x00\x00\x00\x00\x00' -tRp15131 -sVcapacity -p15132 -g24 -(g26 -S'\xf9\x04\x00\x00\x00\x00\x00\x00' -tRp15133 -sVtransexuales -p15134 -g24 -(g26 -S'\xba"\x00\x00\x00\x00\x00\x00' -tRp15135 -sVcontinually -p15136 -g24 -(g26 -S'\x9f\x07\x00\x00\x00\x00\x00\x00' -tRp15137 -sVmud -p15138 -g24 -(g26 -S'&\x16\x00\x00\x00\x00\x00\x00' -tRp15139 -sVmug -p15140 -g24 -(g26 -S"'\x16\x00\x00\x00\x00\x00\x00" -tRp15141 -sVfinger -p15142 -g24 -(g26 -S'#\r\x00\x00\x00\x00\x00\x00' -tRp15143 -sVhopefully -p15144 -g24 -(g26 -S'\x15\x10\x00\x00\x00\x00\x00\x00' -tRp15145 -sVsemiconductor -p15146 -g24 -(g26 -S'<\x1e\x00\x00\x00\x00\x00\x00' -tRp15147 -sVapproach -p15148 -g24 -(g26 -S'\xbe\x01\x00\x00\x00\x00\x00\x00' -tRp15149 -sVberkeley -p15150 -g24 -(g26 -S'[\x03\x00\x00\x00\x00\x00\x00' -tRp15151 -sVdiscovery -p15152 -g24 -(g26 -S'\xf4\t\x00\x00\x00\x00\x00\x00' -tRp15153 -sVbargains -p15154 -g24 -(g26 -S'\xeb\x02\x00\x00\x00\x00\x00\x00' -tRp15155 -sVadding -p15156 -g24 -(g26 -S'w\x00\x00\x00\x00\x00\x00\x00' -tRp15157 -sVconfusion -p15158 -g24 -(g26 -S'J\x07\x00\x00\x00\x00\x00\x00' -tRp15159 -sVweak -p15160 -g24 -(g26 -S'\xc8$\x00\x00\x00\x00\x00\x00' -tRp15161 -sVboss -p15162 -g24 -(g26 -S'\xfa\x03\x00\x00\x00\x00\x00\x00' -tRp15163 -sVmazda -p15164 -g24 -(g26 -S'\xdb\x14\x00\x00\x00\x00\x00\x00' -tRp15165 -sVsoutheast -p15166 -g24 -(g26 -S'\x8f\x1f\x00\x00\x00\x00\x00\x00' -tRp15167 -sVaquarium -p15168 -g24 -(g26 -S'\xcd\x01\x00\x00\x00\x00\x00\x00' -tRp15169 -sVcontamination -p15170 -g24 -(g26 -S'\x96\x07\x00\x00\x00\x00\x00\x00' -tRp15171 -sVnews -p15172 -g24 -(g26 -S'\xaa\x16\x00\x00\x00\x00\x00\x00' -tRp15173 -sVcashiers -p15174 -g24 -(g26 -S'/\x05\x00\x00\x00\x00\x00\x00' -tRp15175 -sVimprove -p15176 -g24 -(g26 -S'\xb9\x10\x00\x00\x00\x00\x00\x00' -tRp15177 -sVfaced -p15178 -g24 -(g26 -S'\x85\x0c\x00\x00\x00\x00\x00\x00' -tRp15179 -sVprotect -p15180 -g24 -(g26 -S'\xab\x1a\x00\x00\x00\x00\x00\x00' -tRp15181 -sVreferral -p15182 -g24 -(g26 -S'\xd3\x1b\x00\x00\x00\x00\x00\x00' -tRp15183 -sVaccused -p15184 -g24 -(g26 -S'@\x00\x00\x00\x00\x00\x00\x00' -tRp15185 -sVfault -p15186 -g24 -(g26 -S'\xc2\x0c\x00\x00\x00\x00\x00\x00' -tRp15187 -sVparticipating -p15188 -g24 -(g26 -S'A\x18\x00\x00\x00\x00\x00\x00' -tRp15189 -sVplayers -p15190 -g24 -(g26 -S'Y\x19\x00\x00\x00\x00\x00\x00' -tRp15191 -sVgames -p15192 -g24 -(g26 -S"'\x0e\x00\x00\x00\x00\x00\x00" -tRp15193 -sVfaces -p15194 -g24 -(g26 -S'\x86\x0c\x00\x00\x00\x00\x00\x00' -tRp15195 -sVvariance -p15196 -g24 -(g26 -S'\xdd#\x00\x00\x00\x00\x00\x00' -tRp15197 -sVexpense -p15198 -g24 -(g26 -S'E\x0c\x00\x00\x00\x00\x00\x00' -tRp15199 -sVlenses -p15200 -g24 -(g26 -S'G\x13\x00\x00\x00\x00\x00\x00' -tRp15201 -sVstandings -p15202 -g24 -(g26 -S'\n \x00\x00\x00\x00\x00\x00' -tRp15203 -sVsullivan -p15204 -g24 -(g26 -S'\xd5 \x00\x00\x00\x00\x00\x00' -tRp15205 -sVbetting -p15206 -g24 -(g26 -S'g\x03\x00\x00\x00\x00\x00\x00' -tRp15207 -sVkaren -p15208 -g24 -(g26 -S'e\x12\x00\x00\x00\x00\x00\x00' -tRp15209 -sVviruses -p15210 -g24 -(g26 -S'J$\x00\x00\x00\x00\x00\x00' -tRp15211 -sVgenes -p15212 -g24 -(g26 -S'a\x0e\x00\x00\x00\x00\x00\x00' -tRp15213 -sVtrust -p15214 -g24 -(g26 -S'\x12#\x00\x00\x00\x00\x00\x00' -tRp15215 -sVbingo -p15216 -g24 -(g26 -S'\x87\x03\x00\x00\x00\x00\x00\x00' -tRp15217 -sVbathroom -p15218 -g24 -(g26 -S'\x06\x03\x00\x00\x00\x00\x00\x00' -tRp15219 -sVbeef -p15220 -g24 -(g26 -S'0\x03\x00\x00\x00\x00\x00\x00' -tRp15221 -sVquickly -p15222 -g24 -(g26 -S'$\x1b\x00\x00\x00\x00\x00\x00' -tRp15223 -sVconfident -p15224 -g24 -(g26 -S';\x07\x00\x00\x00\x00\x00\x00' -tRp15225 -sVbeer -p15226 -g24 -(g26 -S'1\x03\x00\x00\x00\x00\x00\x00' -tRp15227 -sVbelongs -p15228 -g24 -(g26 -S'L\x03\x00\x00\x00\x00\x00\x00' -tRp15229 -sVexpected -p15230 -g24 -(g26 -S'@\x0c\x00\x00\x00\x00\x00\x00' -tRp15231 -sVcontainers -p15232 -g24 -(g26 -S'\x93\x07\x00\x00\x00\x00\x00\x00' -tRp15233 -sVdiffs -p15234 -g24 -(g26 -S'\xc1\t\x00\x00\x00\x00\x00\x00' -tRp15235 -sVdrugs -p15236 -g24 -(g26 -S'\x9a\n\x00\x00\x00\x00\x00\x00' -tRp15237 -sVrepublicans -p15238 -g24 -(g26 -S'h\x1c\x00\x00\x00\x00\x00\x00' -tRp15239 -sVspeeches -p15240 -g24 -(g26 -S'\xbf\x1f\x00\x00\x00\x00\x00\x00' -tRp15241 -sVenterprises -p15242 -g24 -(g26 -S'\x93\x0b\x00\x00\x00\x00\x00\x00' -tRp15243 -sVcraft -p15244 -g24 -(g26 -S'4\x08\x00\x00\x00\x00\x00\x00' -tRp15245 -sVatlas -p15246 -g24 -(g26 -S'P\x02\x00\x00\x00\x00\x00\x00' -tRp15247 -sVcatch -p15248 -g24 -(g26 -S'=\x05\x00\x00\x00\x00\x00\x00' -tRp15249 -sVkentucky -p15250 -g24 -(g26 -S'|\x12\x00\x00\x00\x00\x00\x00' -tRp15251 -sVlesser -p15252 -g24 -(g26 -S'P\x13\x00\x00\x00\x00\x00\x00' -tRp15253 -sVdept -p15254 -g24 -(g26 -S'P\t\x00\x00\x00\x00\x00\x00' -tRp15255 -sVteachers -p15256 -g24 -(g26 -S'\x84!\x00\x00\x00\x00\x00\x00' -tRp15257 -sVstopping -p15258 -g24 -(g26 -S'Q \x00\x00\x00\x00\x00\x00' -tRp15259 -sVprocedure -p15260 -g24 -(g26 -S'V\x1a\x00\x00\x00\x00\x00\x00' -tRp15261 -sVtions -p15262 -g24 -(g26 -S'?"\x00\x00\x00\x00\x00\x00' -tRp15263 -sVaccessories -p15264 -g24 -(g26 -S')\x00\x00\x00\x00\x00\x00\x00' -tRp15265 -sVexpenses -p15266 -g24 -(g26 -S'F\x0c\x00\x00\x00\x00\x00\x00' -tRp15267 -sVexperts -p15268 -g24 -(g26 -S'Q\x0c\x00\x00\x00\x00\x00\x00' -tRp15269 -sVbrutal -p15270 -g24 -(g26 -S'i\x04\x00\x00\x00\x00\x00\x00' -tRp15271 -sVexterior -p15272 -g24 -(g26 -S's\x0c\x00\x00\x00\x00\x00\x00' -tRp15273 -sVpathology -p15274 -g24 -(g26 -S'h\x18\x00\x00\x00\x00\x00\x00' -tRp15275 -sVcontaining -p15276 -g24 -(g26 -S'\x94\x07\x00\x00\x00\x00\x00\x00' -tRp15277 -sVnike -p15278 -g24 -(g26 -S'\xc5\x16\x00\x00\x00\x00\x00\x00' -tRp15279 -sVsuggest -p15280 -g24 -(g26 -S'\xc8 \x00\x00\x00\x00\x00\x00' -tRp15281 -sVwound -p15282 -g24 -(g26 -S'h%\x00\x00\x00\x00\x00\x00' -tRp15283 -sVlatinas -p15284 -g24 -(g26 -S'\xfa\x12\x00\x00\x00\x00\x00\x00' -tRp15285 -sVcomplex -p15286 -g24 -(g26 -S'\x00\x07\x00\x00\x00\x00\x00\x00' -tRp15287 -sVinventory -p15288 -g24 -(g26 -S'\x99\x11\x00\x00\x00\x00\x00\x00' -tRp15289 -sVbands -p15290 -g24 -(g26 -S'\xd5\x02\x00\x00\x00\x00\x00\x00' -tRp15291 -sVsatellite -p15292 -g24 -(g26 -S'\xa8\x1d\x00\x00\x00\x00\x00\x00' -tRp15293 -sVinstrumentation -p15294 -g24 -(g26 -S'T\x11\x00\x00\x00\x00\x00\x00' -tRp15295 -sVwelsh -p15296 -g24 -(g26 -S'\xf0$\x00\x00\x00\x00\x00\x00' -tRp15297 -sVnumerical -p15298 -g24 -(g26 -S'\x0f\x17\x00\x00\x00\x00\x00\x00' -tRp15299 -sVportal -p15300 -g24 -(g26 -S'\xa9\x19\x00\x00\x00\x00\x00\x00' -tRp15301 -sVcharacters -p15302 -g24 -(g26 -S'\xa4\x05\x00\x00\x00\x00\x00\x00' -tRp15303 -sVcycle -p15304 -g24 -(g26 -S'\x95\x08\x00\x00\x00\x00\x00\x00' -tRp15305 -sVdylan -p15306 -g24 -(g26 -S'\xbe\n\x00\x00\x00\x00\x00\x00' -tRp15307 -sVshortly -p15308 -g24 -(g26 -S'\xc6\x1e\x00\x00\x00\x00\x00\x00' -tRp15309 -sVcharlie -p15310 -g24 -(g26 -S'\xaf\x05\x00\x00\x00\x00\x00\x00' -tRp15311 -sVfusion -p15312 -g24 -(g26 -S'\x11\x0e\x00\x00\x00\x00\x00\x00' -tRp15313 -sVocean -p15314 -g24 -(g26 -S'G\x17\x00\x00\x00\x00\x00\x00' -tRp15315 -sVsavings -p15316 -g24 -(g26 -S'\xb9\x1d\x00\x00\x00\x00\x00\x00' -tRp15317 -sVgreatest -p15318 -g24 -(g26 -S'\xed\x0e\x00\x00\x00\x00\x00\x00' -tRp15319 -sVmother -p15320 -g24 -(g26 -S'\xf8\x15\x00\x00\x00\x00\x00\x00' -tRp15321 -sVhearts -p15322 -g24 -(g26 -S'\x9c\x0f\x00\x00\x00\x00\x00\x00' -tRp15323 -sValabama -p15324 -g24 -(g26 -S'\xf6\x00\x00\x00\x00\x00\x00\x00' -tRp15325 -sVspencer -p15326 -g24 -(g26 -S'\xc4\x1f\x00\x00\x00\x00\x00\x00' -tRp15327 -sVseasonal -p15328 -g24 -(g26 -S'\n\x1e\x00\x00\x00\x00\x00\x00' -tRp15329 -sVproposed -p15330 -g24 -(g26 -S'\xa1\x1a\x00\x00\x00\x00\x00\x00' -tRp15331 -sVunemployment -p15332 -g24 -(g26 -S'i#\x00\x00\x00\x00\x00\x00' -tRp15333 -sVlaptop -p15334 -g24 -(g26 -S'\xe8\x12\x00\x00\x00\x00\x00\x00' -tRp15335 -sVstarting -p15336 -g24 -(g26 -S'\x15 \x00\x00\x00\x00\x00\x00' -tRp15337 -sVgrades -p15338 -g24 -(g26 -S'\xce\x0e\x00\x00\x00\x00\x00\x00' -tRp15339 -sVthumbs -p15340 -g24 -(g26 -S'\x1e"\x00\x00\x00\x00\x00\x00' -tRp15341 -sVcampbell -p15342 -g24 -(g26 -S'\xdf\x04\x00\x00\x00\x00\x00\x00' -tRp15343 -sVdining -p15344 -g24 -(g26 -S'\xcc\t\x00\x00\x00\x00\x00\x00' -tRp15345 -sVmonitored -p15346 -g24 -(g26 -S'\xd8\x15\x00\x00\x00\x00\x00\x00' -tRp15347 -sVadidas -p15348 -g24 -(g26 -S'\x83\x00\x00\x00\x00\x00\x00\x00' -tRp15349 -sVbhutan -p15350 -g24 -(g26 -S'm\x03\x00\x00\x00\x00\x00\x00' -tRp15351 -sVcherry -p15352 -g24 -(g26 -S'\xcf\x05\x00\x00\x00\x00\x00\x00' -tRp15353 -sVpharmacy -p15354 -g24 -(g26 -S'\xe5\x18\x00\x00\x00\x00\x00\x00' -tRp15355 -sVtechnological -p15356 -g24 -(g26 -S'\x91!\x00\x00\x00\x00\x00\x00' -tRp15357 -sVhumanity -p15358 -g24 -(g26 -S'R\x10\x00\x00\x00\x00\x00\x00' -tRp15359 -sVgave -p15360 -g24 -(g26 -S'A\x0e\x00\x00\x00\x00\x00\x00' -tRp15361 -sVcasting -p15362 -g24 -(g26 -S'5\x05\x00\x00\x00\x00\x00\x00' -tRp15363 -sVadvances -p15364 -g24 -(g26 -S'\xa2\x00\x00\x00\x00\x00\x00\x00' -tRp15365 -sVbreaks -p15366 -g24 -(g26 -S'-\x04\x00\x00\x00\x00\x00\x00' -tRp15367 -sVsussex -p15368 -g24 -(g26 -S'\x1b!\x00\x00\x00\x00\x00\x00' -tRp15369 -sVcultural -p15370 -g24 -(g26 -S'q\x08\x00\x00\x00\x00\x00\x00' -tRp15371 -sVdescending -p15372 -g24 -(g26 -S'X\t\x00\x00\x00\x00\x00\x00' -tRp15373 -sVnewcastle -p15374 -g24 -(g26 -S'\xa3\x16\x00\x00\x00\x00\x00\x00' -tRp15375 -sVjudge -p15376 -g24 -(g26 -S'F\x12\x00\x00\x00\x00\x00\x00' -tRp15377 -sVburns -p15378 -g24 -(g26 -S'\x95\x04\x00\x00\x00\x00\x00\x00' -tRp15379 -sVsingh -p15380 -g24 -(g26 -S'\x02\x1f\x00\x00\x00\x00\x00\x00' -tRp15381 -sVadvanced -p15382 -g24 -(g26 -S'\xa0\x00\x00\x00\x00\x00\x00\x00' -tRp15383 -sVapart -p15384 -g24 -(g26 -S'\x98\x01\x00\x00\x00\x00\x00\x00' -tRp15385 -sVmartha -p15386 -g24 -(g26 -S'\xad\x14\x00\x00\x00\x00\x00\x00' -tRp15387 -sVappearing -p15388 -g24 -(g26 -S'\xa8\x01\x00\x00\x00\x00\x00\x00' -tRp15389 -sVgift -p15390 -g24 -(g26 -S'\x86\x0e\x00\x00\x00\x00\x00\x00' -tRp15391 -sVhunt -p15392 -g24 -(g26 -S'\\\x10\x00\x00\x00\x00\x00\x00' -tRp15393 -sVorlando -p15394 -g24 -(g26 -S'\xc5\x17\x00\x00\x00\x00\x00\x00' -tRp15395 -sVzoom -p15396 -g24 -(g26 -S'\xc2%\x00\x00\x00\x00\x00\x00' -tRp15397 -sVspecific -p15398 -g24 -(g26 -S'\xb3\x1f\x00\x00\x00\x00\x00\x00' -tRp15399 -sVinformative -p15400 -g24 -(g26 -S'\x10\x11\x00\x00\x00\x00\x00\x00' -tRp15401 -sVoffices -p15402 -g24 -(g26 -S'Z\x17\x00\x00\x00\x00\x00\x00' -tRp15403 -sVofficer -p15404 -g24 -(g26 -S'X\x17\x00\x00\x00\x00\x00\x00' -tRp15405 -sVarbitrary -p15406 -g24 -(g26 -S'\xd3\x01\x00\x00\x00\x00\x00\x00' -tRp15407 -sVhung -p15408 -g24 -(g26 -S'W\x10\x00\x00\x00\x00\x00\x00' -tRp15409 -sVsuccessfully -p15410 -g24 -(g26 -S'\xba \x00\x00\x00\x00\x00\x00' -tRp15411 -sVexcerpt -p15412 -g24 -(g26 -S'\x13\x0c\x00\x00\x00\x00\x00\x00' -tRp15413 -sVjennifer -p15414 -g24 -(g26 -S'\t\x12\x00\x00\x00\x00\x00\x00' -tRp15415 -sVmalaysia -p15416 -g24 -(g26 -S'd\x14\x00\x00\x00\x00\x00\x00' -tRp15417 -sVdonald -p15418 -g24 -(g26 -S'T\n\x00\x00\x00\x00\x00\x00' -tRp15419 -sVmeters -p15420 -g24 -(g26 -S'=\x15\x00\x00\x00\x00\x00\x00' -tRp15421 -sVelection -p15422 -g24 -(g26 -S'\x1b\x0b\x00\x00\x00\x00\x00\x00' -tRp15423 -sVaccreditation -p15424 -g24 -(g26 -S';\x00\x00\x00\x00\x00\x00\x00' -tRp15425 -sVescape -p15426 -g24 -(g26 -S'\xc4\x0b\x00\x00\x00\x00\x00\x00' -tRp15427 -sVadvertise -p15428 -g24 -(g26 -S'\xa9\x00\x00\x00\x00\x00\x00\x00' -tRp15429 -sVcontests -p15430 -g24 -(g26 -S'\x9b\x07\x00\x00\x00\x00\x00\x00' -tRp15431 -sVtutorial -p15432 -g24 -(g26 -S'6#\x00\x00\x00\x00\x00\x00' -tRp15433 -sVproceeding -p15434 -g24 -(g26 -S'Y\x1a\x00\x00\x00\x00\x00\x00' -tRp15435 -sVarmed -p15436 -g24 -(g26 -S'\xf0\x01\x00\x00\x00\x00\x00\x00' -tRp15437 -sVice -p15438 -g24 -(g26 -S'q\x10\x00\x00\x00\x00\x00\x00' -tRp15439 -sVtotals -p15440 -g24 -(g26 -S'z"\x00\x00\x00\x00\x00\x00' -tRp15441 -sVcnn -p15442 -g24 -(g26 -S'n\x06\x00\x00\x00\x00\x00\x00' -tRp15443 -sVicq -p15444 -g24 -(g26 -S'u\x10\x00\x00\x00\x00\x00\x00' -tRp15445 -sVchristmas -p15446 -g24 -(g26 -S'\xf6\x05\x00\x00\x00\x00\x00\x00' -tRp15447 -sVbooking -p15448 -g24 -(g26 -S'\xe5\x03\x00\x00\x00\x00\x00\x00' -tRp15449 -sVavatar -p15450 -g24 -(g26 -S'\x98\x02\x00\x00\x00\x00\x00\x00' -tRp15451 -sVcord -p15452 -g24 -(g26 -S'\xe9\x07\x00\x00\x00\x00\x00\x00' -tRp15453 -sVcore -p15454 -g24 -(g26 -S'\xeb\x07\x00\x00\x00\x00\x00\x00' -tRp15455 -sVsewing -p15456 -g24 -(g26 -S'x\x1e\x00\x00\x00\x00\x00\x00' -tRp15457 -sVdeleted -p15458 -g24 -(g26 -S'\x1d\t\x00\x00\x00\x00\x00\x00' -tRp15459 -sVcorn -p15460 -g24 -(g26 -S'\xed\x07\x00\x00\x00\x00\x00\x00' -tRp15461 -sVapnic -p15462 -g24 -(g26 -S'\x9c\x01\x00\x00\x00\x00\x00\x00' -tRp15463 -sVcork -p15464 -g24 -(g26 -S'\xec\x07\x00\x00\x00\x00\x00\x00' -tRp15465 -sVdiscount -p15466 -g24 -(g26 -S'\xef\t\x00\x00\x00\x00\x00\x00' -tRp15467 -sVlamps -p15468 -g24 -(g26 -S'\xd7\x12\x00\x00\x00\x00\x00\x00' -tRp15469 -sVerotica -p15470 -g24 -(g26 -S'\xbf\x0b\x00\x00\x00\x00\x00\x00' -tRp15471 -sVpermitted -p15472 -g24 -(g26 -S'\xc2\x18\x00\x00\x00\x00\x00\x00' -tRp15473 -sVmeyer -p15474 -g24 -(g26 -S'G\x15\x00\x00\x00\x00\x00\x00' -tRp15475 -sVchapter -p15476 -g24 -(g26 -S'\x9c\x05\x00\x00\x00\x00\x00\x00' -tRp15477 -sVlimitation -p15478 -g24 -(g26 -S'\x8d\x13\x00\x00\x00\x00\x00\x00' -tRp15479 -sVcensus -p15480 -g24 -(g26 -S'd\x05\x00\x00\x00\x00\x00\x00' -tRp15481 -sVcowboy -p15482 -g24 -(g26 -S'-\x08\x00\x00\x00\x00\x00\x00' -tRp15483 -sVattacks -p15484 -g24 -(g26 -S'\\\x02\x00\x00\x00\x00\x00\x00' -tRp15485 -sVsurround -p15486 -g24 -(g26 -S'\x0b!\x00\x00\x00\x00\x00\x00' -tRp15487 -sVdinner -p15488 -g24 -(g26 -S'\xcd\t\x00\x00\x00\x00\x00\x00' -tRp15489 -sVensure -p15490 -g24 -(g26 -S'\x8b\x0b\x00\x00\x00\x00\x00\x00' -tRp15491 -sVefforts -p15492 -g24 -(g26 -S'\x0f\x0b\x00\x00\x00\x00\x00\x00' -tRp15493 -sVruntime -p15494 -g24 -(g26 -S'e\x1d\x00\x00\x00\x00\x00\x00' -tRp15495 -sVsept -p15496 -g24 -(g26 -S'X\x1e\x00\x00\x00\x00\x00\x00' -tRp15497 -sVppc -p15498 -g24 -(g26 -S'\xe3\x19\x00\x00\x00\x00\x00\x00' -tRp15499 -sVduke -p15500 -g24 -(g26 -S'\xac\n\x00\x00\x00\x00\x00\x00' -tRp15501 -sVrespondent -p15502 -g24 -(g26 -S'\x97\x1c\x00\x00\x00\x00\x00\x00' -tRp15503 -sVpresence -p15504 -g24 -(g26 -S'\x12\x1a\x00\x00\x00\x00\x00\x00' -tRp15505 -sVcivil -p15506 -g24 -(g26 -S'!\x06\x00\x00\x00\x00\x00\x00' -tRp15507 -sVpuzzle -p15508 -g24 -(g26 -S'\xfe\x1a\x00\x00\x00\x00\x00\x00' -tRp15509 -sVobtaining -p15510 -g24 -(g26 -S'6\x17\x00\x00\x00\x00\x00\x00' -tRp15511 -sVppm -p15512 -g24 -(g26 -S'\xe4\x19\x00\x00\x00\x00\x00\x00' -tRp15513 -sVbath -p15514 -g24 -(g26 -S'\x05\x03\x00\x00\x00\x00\x00\x00' -tRp15515 -sVaccommodate -p15516 -g24 -(g26 -S'-\x00\x00\x00\x00\x00\x00\x00' -tRp15517 -sVentrepreneur -p15518 -g24 -(g26 -S'\x9d\x0b\x00\x00\x00\x00\x00\x00' -tRp15519 -sVtribune -p15520 -g24 -(g26 -S'\xf6"\x00\x00\x00\x00\x00\x00' -tRp15521 -sVcoastal -p15522 -g24 -(g26 -S'u\x06\x00\x00\x00\x00\x00\x00' -tRp15523 -sVrounds -p15524 -g24 -(g26 -S'A\x1d\x00\x00\x00\x00\x00\x00' -tRp15525 -sVexisted -p15526 -g24 -(g26 -S'2\x0c\x00\x00\x00\x00\x00\x00' -tRp15527 -sVrely -p15528 -g24 -(g26 -S'!\x1c\x00\x00\x00\x00\x00\x00' -tRp15529 -sVgis -p15530 -g24 -(g26 -S'\x8d\x0e\x00\x00\x00\x00\x00\x00' -tRp15531 -sVtransform -p15532 -g24 -(g26 -S'\xbe"\x00\x00\x00\x00\x00\x00' -tRp15533 -sVdiseases -p15534 -g24 -(g26 -S'\x00\n\x00\x00\x00\x00\x00\x00' -tRp15535 -sVgig -p15536 -g24 -(g26 -S'\x88\x0e\x00\x00\x00\x00\x00\x00' -tRp15537 -sVgif -p15538 -g24 -(g26 -S'\x85\x0e\x00\x00\x00\x00\x00\x00' -tRp15539 -sVanderson -p15540 -g24 -(g26 -S'Z\x01\x00\x00\x00\x00\x00\x00' -tRp15541 -sVseeker -p15542 -g24 -(g26 -S'%\x1e\x00\x00\x00\x00\x00\x00' -tRp15543 -sVmetabolism -p15544 -g24 -(g26 -S'6\x15\x00\x00\x00\x00\x00\x00' -tRp15545 -sVsynthesis -p15546 -g24 -(g26 -S'A!\x00\x00\x00\x00\x00\x00' -tRp15547 -sVhead -p15548 -g24 -(g26 -S'\x88\x0f\x00\x00\x00\x00\x00\x00' -tRp15549 -sVmedium -p15550 -g24 -(g26 -S'\x02\x15\x00\x00\x00\x00\x00\x00' -tRp15551 -sVamateur -p15552 -g24 -(g26 -S'3\x01\x00\x00\x00\x00\x00\x00' -tRp15553 -sVstatute -p15554 -g24 -(g26 -S'( \x00\x00\x00\x00\x00\x00' -tRp15555 -sVattempted -p15556 -g24 -(g26 -S'^\x02\x00\x00\x00\x00\x00\x00' -tRp15557 -sVdifferences -p15558 -g24 -(g26 -S'\xba\t\x00\x00\x00\x00\x00\x00' -tRp15559 -sVdeny -p15560 -g24 -(g26 -S'A\t\x00\x00\x00\x00\x00\x00' -tRp15561 -sVwireless -p15562 -g24 -(g26 -S')%\x00\x00\x00\x00\x00\x00' -tRp15563 -sVpayable -p15564 -g24 -(g26 -S'v\x18\x00\x00\x00\x00\x00\x00' -tRp15565 -sVheat -p15566 -g24 -(g26 -S'\x9d\x0f\x00\x00\x00\x00\x00\x00' -tRp15567 -sVhear -p15568 -g24 -(g26 -S'\x97\x0f\x00\x00\x00\x00\x00\x00' -tRp15569 -sVsolar -p15570 -g24 -(g26 -S'c\x1f\x00\x00\x00\x00\x00\x00' -tRp15571 -sVsustained -p15572 -g24 -(g26 -S'\x1e!\x00\x00\x00\x00\x00\x00' -tRp15573 -sVremoved -p15574 -g24 -(g26 -S'6\x1c\x00\x00\x00\x00\x00\x00' -tRp15575 -sVcounsel -p15576 -g24 -(g26 -S'\x0e\x08\x00\x00\x00\x00\x00\x00' -tRp15577 -sVportions -p15578 -g24 -(g26 -S'\xad\x19\x00\x00\x00\x00\x00\x00' -tRp15579 -sVversions -p15580 -g24 -(g26 -S'\r$\x00\x00\x00\x00\x00\x00' -tRp15581 -sVbids -p15582 -g24 -(g26 -S'x\x03\x00\x00\x00\x00\x00\x00' -tRp15583 -sVclubs -p15584 -g24 -(g26 -S'g\x06\x00\x00\x00\x00\x00\x00' -tRp15585 -sVsupplied -p15586 -g24 -(g26 -S'\xec \x00\x00\x00\x00\x00\x00' -tRp15587 -sVsubmitting -p15588 -g24 -(g26 -S'\xa5 \x00\x00\x00\x00\x00\x00' -tRp15589 -sVshakira -p15590 -g24 -(g26 -S'\x8a\x1e\x00\x00\x00\x00\x00\x00' -tRp15591 -sVtrim -p15592 -g24 -(g26 -S'\xfd"\x00\x00\x00\x00\x00\x00' -tRp15593 -sVtrio -p15594 -g24 -(g26 -S'\x00#\x00\x00\x00\x00\x00\x00' -tRp15595 -sVestonia -p15596 -g24 -(g26 -S'\xdb\x0b\x00\x00\x00\x00\x00\x00' -tRp15597 -sVpasswords -p15598 -g24 -(g26 -S']\x18\x00\x00\x00\x00\x00\x00' -tRp15599 -sVdiamond -p15600 -g24 -(g26 -S'\xa4\t\x00\x00\x00\x00\x00\x00' -tRp15601 -sVsimulations -p15602 -g24 -(g26 -S'\xfc\x1e\x00\x00\x00\x00\x00\x00' -tRp15603 -sVannoying -p15604 -g24 -(g26 -S'{\x01\x00\x00\x00\x00\x00\x00' -tRp15605 -sVcheck -p15606 -g24 -(g26 -S'\xbf\x05\x00\x00\x00\x00\x00\x00' -tRp15607 -sVconstructed -p15608 -g24 -(g26 -S'\x81\x07\x00\x00\x00\x00\x00\x00' -tRp15609 -sVnh -p15610 -g24 -(g26 -S'\xb3\x16\x00\x00\x00\x00\x00\x00' -tRp15611 -sVni -p15612 -g24 -(g26 -S'\xb6\x16\x00\x00\x00\x00\x00\x00' -tRp15613 -sVnj -p15614 -g24 -(g26 -S'\xce\x16\x00\x00\x00\x00\x00\x00' -tRp15615 -sVnl -p15616 -g24 -(g26 -S'\xcf\x16\x00\x00\x00\x00\x00\x00' -tRp15617 -sVnm -p15618 -g24 -(g26 -S'\xd0\x16\x00\x00\x00\x00\x00\x00' -tRp15619 -sVnn -p15620 -g24 -(g26 -S'\xd1\x16\x00\x00\x00\x00\x00\x00' -tRp15621 -sVtit -p15622 -g24 -(g26 -S'F"\x00\x00\x00\x00\x00\x00' -tRp15623 -sVna -p15624 -g24 -(g26 -S'K\x16\x00\x00\x00\x00\x00\x00' -tRp15625 -sVnb -p15626 -g24 -(g26 -S'r\x16\x00\x00\x00\x00\x00\x00' -tRp15627 -sVnc -p15628 -g24 -(g26 -S'u\x16\x00\x00\x00\x00\x00\x00' -tRp15629 -sVtip -p15630 -g24 -(g26 -S'@"\x00\x00\x00\x00\x00\x00' -tRp15631 -sVne -p15632 -g24 -(g26 -S'x\x16\x00\x00\x00\x00\x00\x00' -tRp15633 -sVng -p15634 -g24 -(g26 -S'\xb2\x16\x00\x00\x00\x00\x00\x00' -tRp15635 -sVtil -p15636 -g24 -(g26 -S'/"\x00\x00\x00\x00\x00\x00' -tRp15637 -sVny -p15638 -g24 -(g26 -S'\x1d\x17\x00\x00\x00\x00\x00\x00' -tRp15639 -sVnz -p15640 -g24 -(g26 -S' \x17\x00\x00\x00\x00\x00\x00' -tRp15641 -sVsetting -p15642 -g24 -(g26 -S'o\x1e\x00\x00\x00\x00\x00\x00' -tRp15643 -sVpapers -p15644 -g24 -(g26 -S'"\x18\x00\x00\x00\x00\x00\x00' -tRp15645 -sVnp -p15646 -g24 -(g26 -S'\xff\x16\x00\x00\x00\x00\x00\x00' -tRp15647 -sVtie -p15648 -g24 -(g26 -S'\'"\x00\x00\x00\x00\x00\x00' -tRp15649 -sVnr -p15650 -g24 -(g26 -S'\x00\x17\x00\x00\x00\x00\x00\x00' -tRp15651 -sVns -p15652 -g24 -(g26 -S'\x01\x17\x00\x00\x00\x00\x00\x00' -tRp15653 -sVnt -p15654 -g24 -(g26 -S'\x03\x17\x00\x00\x00\x00\x00\x00' -tRp15655 -sVnu -p15656 -g24 -(g26 -S'\x05\x17\x00\x00\x00\x00\x00\x00' -tRp15657 -sVnv -p15658 -g24 -(g26 -S'\x1a\x17\x00\x00\x00\x00\x00\x00' -tRp15659 -sVnw -p15660 -g24 -(g26 -S'\x1c\x17\x00\x00\x00\x00\x00\x00' -tRp15661 -sVnode -p15662 -g24 -(g26 -S'\xd3\x16\x00\x00\x00\x00\x00\x00' -tRp15663 -sVpicture -p15664 -g24 -(g26 -S'\x15\x19\x00\x00\x00\x00\x00\x00' -tRp15665 -sVphoenix -p15666 -g24 -(g26 -S'\xf3\x18\x00\x00\x00\x00\x00\x00' -tRp15667 -sVpreceding -p15668 -g24 -(g26 -S'\xf2\x19\x00\x00\x00\x00\x00\x00' -tRp15669 -sVfootball -p15670 -g24 -(g26 -S'\x8d\r\x00\x00\x00\x00\x00\x00' -tRp15671 -sVmiscellaneous -p15672 -g24 -(g26 -S'\x93\x15\x00\x00\x00\x00\x00\x00' -tRp15673 -sVtrailers -p15674 -g24 -(g26 -S'\xa8"\x00\x00\x00\x00\x00\x00' -tRp15675 -sVbrief -p15676 -g24 -(g26 -S';\x04\x00\x00\x00\x00\x00\x00' -tRp15677 -sVrising -p15678 -g24 -(g26 -S'\xfd\x1c\x00\x00\x00\x00\x00\x00' -tRp15679 -sVsql -p15680 -g24 -(g26 -S'\xed\x1f\x00\x00\x00\x00\x00\x00' -tRp15681 -sVcooper -p15682 -g24 -(g26 -S'\xd6\x07\x00\x00\x00\x00\x00\x00' -tRp15683 -sVyounger -p15684 -g24 -(g26 -S'\xad%\x00\x00\x00\x00\x00\x00' -tRp15685 -sVlonger -p15686 -g24 -(g26 -S'\xf0\x13\x00\x00\x00\x00\x00\x00' -tRp15687 -sVbullet -p15688 -g24 -(g26 -S'\x87\x04\x00\x00\x00\x00\x00\x00' -tRp15689 -sVcorresponding -p15690 -g24 -(g26 -S'\xff\x07\x00\x00\x00\x00\x00\x00' -tRp15691 -sVgreetings -p15692 -g24 -(g26 -S'\xf6\x0e\x00\x00\x00\x00\x00\x00' -tRp15693 -sVvietnam -p15694 -g24 -(g26 -S'*$\x00\x00\x00\x00\x00\x00' -tRp15695 -sVneighbors -p15696 -g24 -(g26 -S'\x8d\x16\x00\x00\x00\x00\x00\x00' -tRp15697 -sVcoach -p15698 -g24 -(g26 -S'o\x06\x00\x00\x00\x00\x00\x00' -tRp15699 -sVrom -p15700 -g24 -(g26 -S'%\x1d\x00\x00\x00\x00\x00\x00' -tRp15701 -sVron -p15702 -g24 -(g26 -S'+\x1d\x00\x00\x00\x00\x00\x00' -tRp15703 -sVaffair -p15704 -g24 -(g26 -S'\xbc\x00\x00\x00\x00\x00\x00\x00' -tRp15705 -sVrob -p15706 -g24 -(g26 -S'\x0b\x1d\x00\x00\x00\x00\x00\x00' -tRp15707 -sVllp -p15708 -g24 -(g26 -S'\xc4\x13\x00\x00\x00\x00\x00\x00' -tRp15709 -sVrod -p15710 -g24 -(g26 -S'\x1a\x1d\x00\x00\x00\x00\x00\x00' -tRp15711 -sVfocus -p15712 -g24 -(g26 -S'v\r\x00\x00\x00\x00\x00\x00' -tRp15713 -sVleads -p15714 -g24 -(g26 -S'\x1e\x13\x00\x00\x00\x00\x00\x00' -tRp15715 -sVroy -p15716 -g24 -(g26 -S'L\x1d\x00\x00\x00\x00\x00\x00' -tRp15717 -sVmarion -p15718 -g24 -(g26 -S'\x9a\x14\x00\x00\x00\x00\x00\x00' -tRp15719 -sVcomputation -p15720 -g24 -(g26 -S'\x14\x07\x00\x00\x00\x00\x00\x00' -tRp15721 -sVllc -p15722 -g24 -(g26 -S'\xc2\x13\x00\x00\x00\x00\x00\x00' -tRp15723 -sVdisplaying -p15724 -g24 -(g26 -S'\x0c\n\x00\x00\x00\x00\x00\x00' -tRp15725 -sVrow -p15726 -g24 -(g26 -S'J\x1d\x00\x00\x00\x00\x00\x00' -tRp15727 -sVessentials -p15728 -g24 -(g26 -S'\xce\x0b\x00\x00\x00\x00\x00\x00' -tRp15729 -sVstarsmerchant -p15730 -g24 -(g26 -S'\x11 \x00\x00\x00\x00\x00\x00' -tRp15731 -sVpassage -p15732 -g24 -(g26 -S'S\x18\x00\x00\x00\x00\x00\x00' -tRp15733 -sVenvironment -p15734 -g24 -(g26 -S'\xa2\x0b\x00\x00\x00\x00\x00\x00' -tRp15735 -sVcharge -p15736 -g24 -(g26 -S'\xa5\x05\x00\x00\x00\x00\x00\x00' -tRp15737 -sVtrustees -p15738 -g24 -(g26 -S'\x15#\x00\x00\x00\x00\x00\x00' -tRp15739 -sVpromoting -p15740 -g24 -(g26 -S'\x90\x1a\x00\x00\x00\x00\x00\x00' -tRp15741 -sVhenderson -p15742 -g24 -(g26 -S'\xb6\x0f\x00\x00\x00\x00\x00\x00' -tRp15743 -sVfederation -p15744 -g24 -(g26 -S'\xd9\x0c\x00\x00\x00\x00\x00\x00' -tRp15745 -sVadvantage -p15746 -g24 -(g26 -S'\xa3\x00\x00\x00\x00\x00\x00\x00' -tRp15747 -sVfrequencies -p15748 -g24 -(g26 -S'\xdd\r\x00\x00\x00\x00\x00\x00' -tRp15749 -sVfleece -p15750 -g24 -(g26 -S'O\r\x00\x00\x00\x00\x00\x00' -tRp15751 -sVspanking -p15752 -g24 -(g26 -S'\x9d\x1f\x00\x00\x00\x00\x00\x00' -tRp15753 -sVtanks -p15754 -g24 -(g26 -S'g!\x00\x00\x00\x00\x00\x00' -tRp15755 -sVartwork -p15756 -g24 -(g26 -S'\x0e\x02\x00\x00\x00\x00\x00\x00' -tRp15757 -sVcook -p15758 -g24 -(g26 -S'\xcd\x07\x00\x00\x00\x00\x00\x00' -tRp15759 -sVli -p15760 -g24 -(g26 -S'c\x13\x00\x00\x00\x00\x00\x00' -tRp15761 -sVzope -p15762 -g24 -(g26 -S'\xc4%\x00\x00\x00\x00\x00\x00' -tRp15763 -sVcool -p15764 -g24 -(g26 -S'\xd3\x07\x00\x00\x00\x00\x00\x00' -tRp15765 -sVclouds -p15766 -g24 -(g26 -S'd\x06\x00\x00\x00\x00\x00\x00' -tRp15767 -sVimpressive -p15768 -g24 -(g26 -S'\xb8\x10\x00\x00\x00\x00\x00\x00' -tRp15769 -sVlevel -p15770 -g24 -(g26 -S'Y\x13\x00\x00\x00\x00\x00\x00' -tRp15771 -sVphilippines -p15772 -g24 -(g26 -S'\xef\x18\x00\x00\x00\x00\x00\x00' -tRp15773 -sVposts -p15774 -g24 -(g26 -S'\xcd\x19\x00\x00\x00\x00\x00\x00' -tRp15775 -sVbrother -p15776 -g24 -(g26 -S'[\x04\x00\x00\x00\x00\x00\x00' -tRp15777 -sVcloudy -p15778 -g24 -(g26 -S'e\x06\x00\x00\x00\x00\x00\x00' -tRp15779 -sVstandards -p15780 -g24 -(g26 -S'\x08 \x00\x00\x00\x00\x00\x00' -tRp15781 -sVyale -p15782 -g24 -(g26 -S'\x93%\x00\x00\x00\x00\x00\x00' -tRp15783 -sVquick -p15784 -g24 -(g26 -S'#\x1b\x00\x00\x00\x00\x00\x00' -tRp15785 -sVict -p15786 -g24 -(g26 -S'v\x10\x00\x00\x00\x00\x00\x00' -tRp15787 -sVpork -p15788 -g24 -(g26 -S'\xa3\x19\x00\x00\x00\x00\x00\x00' -tRp15789 -sVdes -p15790 -g24 -(g26 -S'W\t\x00\x00\x00\x00\x00\x00' -tRp15791 -sVsays -p15792 -g24 -(g26 -S'\xbd\x1d\x00\x00\x00\x00\x00\x00' -tRp15793 -sVporn -p15794 -g24 -(g26 -S'\xa4\x19\x00\x00\x00\x00\x00\x00' -tRp15795 -sVtrend -p15796 -g24 -(g26 -S'\xeb"\x00\x00\x00\x00\x00\x00' -tRp15797 -sVcyber -p15798 -g24 -(g26 -S'\x94\x08\x00\x00\x00\x00\x00\x00' -tRp15799 -sVcolin -p15800 -g24 -(g26 -S'\x89\x06\x00\x00\x00\x00\x00\x00' -tRp15801 -sVdried -p15802 -g24 -(g26 -S'\x89\n\x00\x00\x00\x00\x00\x00' -tRp15803 -sVpmc -p15804 -g24 -(g26 -S'n\x19\x00\x00\x00\x00\x00\x00' -tRp15805 -sVport -p15806 -g24 -(g26 -S'\xa7\x19\x00\x00\x00\x00\x00\x00' -tRp15807 -sVsubstitute -p15808 -g24 -(g26 -S'\xb4 \x00\x00\x00\x00\x00\x00' -tRp15809 -sVdrinks -p15810 -g24 -(g26 -S'\x8e\n\x00\x00\x00\x00\x00\x00' -tRp15811 -sVconstitution -p15812 -g24 -(g26 -S'|\x07\x00\x00\x00\x00\x00\x00' -tRp15813 -sVdebate -p15814 -g24 -(g26 -S'\xe0\x08\x00\x00\x00\x00\x00\x00' -tRp15815 -sVmalpractice -p15816 -g24 -(g26 -S'j\x14\x00\x00\x00\x00\x00\x00' -tRp15817 -sVgoes -p15818 -g24 -(g26 -S'\xab\x0e\x00\x00\x00\x00\x00\x00' -tRp15819 -sVreply -p15820 -g24 -(g26 -S'P\x1c\x00\x00\x00\x00\x00\x00' -tRp15821 -sVhairy -p15822 -g24 -(g26 -S'9\x0f\x00\x00\x00\x00\x00\x00' -tRp15823 -sVmali -p15824 -g24 -(g26 -S'h\x14\x00\x00\x00\x00\x00\x00' -tRp15825 -sVwater -p15826 -g24 -(g26 -S'\xb8$\x00\x00\x00\x00\x00\x00' -tRp15827 -sVbaseball -p15828 -g24 -(g26 -S'\xf4\x02\x00\x00\x00\x00\x00\x00' -tRp15829 -sVgroups -p15830 -g24 -(g26 -S'\x07\x0f\x00\x00\x00\x00\x00\x00' -tRp15831 -sVtoolbar -p15832 -g24 -(g26 -S'l"\x00\x00\x00\x00\x00\x00' -tRp15833 -sVsheriff -p15834 -g24 -(g26 -S'\xa9\x1e\x00\x00\x00\x00\x00\x00' -tRp15835 -sVthirty -p15836 -g24 -(g26 -S'\xfe!\x00\x00\x00\x00\x00\x00' -tRp15837 -sVhealthy -p15838 -g24 -(g26 -S'\x96\x0f\x00\x00\x00\x00\x00\x00' -tRp15839 -sVneo -p15840 -g24 -(g26 -S'\x90\x16\x00\x00\x00\x00\x00\x00' -tRp15841 -sVlancaster -p15842 -g24 -(g26 -S'\xd9\x12\x00\x00\x00\x00\x00\x00' -tRp15843 -sVdublin -p15844 -g24 -(g26 -S'\xa8\n\x00\x00\x00\x00\x00\x00' -tRp15845 -sVtherapeutic -p15846 -g24 -(g26 -S'\xef!\x00\x00\x00\x00\x00\x00' -tRp15847 -sVdee -p15848 -g24 -(g26 -S'\xfc\x08\x00\x00\x00\x00\x00\x00' -tRp15849 -sVmauritius -p15850 -g24 -(g26 -S'\xd5\x14\x00\x00\x00\x00\x00\x00' -tRp15851 -sVexams -p15852 -g24 -(g26 -S'\x0b\x0c\x00\x00\x00\x00\x00\x00' -tRp15853 -sVpediatric -p15854 -g24 -(g26 -S'\x8e\x18\x00\x00\x00\x00\x00\x00' -tRp15855 -sVhospitality -p15856 -g24 -(g26 -S'$\x10\x00\x00\x00\x00\x00\x00' -tRp15857 -sVweird -p15858 -g24 -(g26 -S'\xe9$\x00\x00\x00\x00\x00\x00' -tRp15859 -sVnavigation -p15860 -g24 -(g26 -S'o\x16\x00\x00\x00\x00\x00\x00' -tRp15861 -sVshark -p15862 -g24 -(g26 -S'\x98\x1e\x00\x00\x00\x00\x00\x00' -tRp15863 -sVgraduated -p15864 -g24 -(g26 -S'\xd1\x0e\x00\x00\x00\x00\x00\x00' -tRp15865 -sVdurham -p15866 -g24 -(g26 -S'\xb4\n\x00\x00\x00\x00\x00\x00' -tRp15867 -sVcrisis -p15868 -g24 -(g26 -S'Q\x08\x00\x00\x00\x00\x00\x00' -tRp15869 -sVtrinidad -p15870 -g24 -(g26 -S'\xfe"\x00\x00\x00\x00\x00\x00' -tRp15871 -sVhandled -p15872 -g24 -(g26 -S'O\x0f\x00\x00\x00\x00\x00\x00' -tRp15873 -sVstated -p15874 -g24 -(g26 -S'\x1a \x00\x00\x00\x00\x00\x00' -tRp15875 -sVathens -p15876 -g24 -(g26 -S'I\x02\x00\x00\x00\x00\x00\x00' -tRp15877 -sVsports -p15878 -g24 -(g26 -S'\xdd\x1f\x00\x00\x00\x00\x00\x00' -tRp15879 -sVmsn -p15880 -g24 -(g26 -S'"\x16\x00\x00\x00\x00\x00\x00' -tRp15881 -sVhandles -p15882 -g24 -(g26 -S'P\x0f\x00\x00\x00\x00\x00\x00' -tRp15883 -sVbases -p15884 -g24 -(g26 -S'\xf9\x02\x00\x00\x00\x00\x00\x00' -tRp15885 -sVandy -p15886 -g24 -(g26 -S'`\x01\x00\x00\x00\x00\x00\x00' -tRp15887 -sVmemory -p15888 -g24 -(g26 -S'\x16\x15\x00\x00\x00\x00\x00\x00' -tRp15889 -sVmsg -p15890 -g24 -(g26 -S'\x1e\x16\x00\x00\x00\x00\x00\x00' -tRp15891 -sVaustralian -p15892 -g24 -(g26 -S'\x81\x02\x00\x00\x00\x00\x00\x00' -tRp15893 -sVprev -p15894 -g24 -(g26 -S'$\x1a\x00\x00\x00\x00\x00\x00' -tRp15895 -sVencryption -p15896 -g24 -(g26 -S'`\x0b\x00\x00\x00\x00\x00\x00' -tRp15897 -sVtoday -p15898 -g24 -(g26 -S'S"\x00\x00\x00\x00\x00\x00' -tRp15899 -sVplug -p15900 -g24 -(g26 -S'g\x19\x00\x00\x00\x00\x00\x00' -tRp15901 -sVsymantec -p15902 -g24 -(g26 -S'4!\x00\x00\x00\x00\x00\x00' -tRp15903 -sVsessions -p15904 -g24 -(g26 -S'l\x1e\x00\x00\x00\x00\x00\x00' -tRp15905 -sVclicking -p15906 -g24 -(g26 -S'G\x06\x00\x00\x00\x00\x00\x00' -tRp15907 -sVoutputs -p15908 -g24 -(g26 -S'\xd8\x17\x00\x00\x00\x00\x00\x00' -tRp15909 -sVchocolate -p15910 -g24 -(g26 -S'\xe5\x05\x00\x00\x00\x00\x00\x00' -tRp15911 -sVcasey -p15912 -g24 -(g26 -S'-\x05\x00\x00\x00\x00\x00\x00' -tRp15913 -sVemployee -p15914 -g24 -(g26 -S'L\x0b\x00\x00\x00\x00\x00\x00' -tRp15915 -sVcases -p15916 -g24 -(g26 -S',\x05\x00\x00\x00\x00\x00\x00' -tRp15917 -sVinsights -p15918 -g24 -(g26 -S'8\x11\x00\x00\x00\x00\x00\x00' -tRp15919 -sVautumn -p15920 -g24 -(g26 -S'\x94\x02\x00\x00\x00\x00\x00\x00' -tRp15921 -sVthousands -p15922 -g24 -(g26 -S'\n"\x00\x00\x00\x00\x00\x00' -tRp15923 -sVlightbox -p15924 -g24 -(g26 -S'~\x13\x00\x00\x00\x00\x00\x00' -tRp15925 -sVmodified -p15926 -g24 -(g26 -S'\xc0\x15\x00\x00\x00\x00\x00\x00' -tRp15927 -sVlongitude -p15928 -g24 -(g26 -S'\xf2\x13\x00\x00\x00\x00\x00\x00' -tRp15929 -sVdistricts -p15930 -g24 -(g26 -S' \n\x00\x00\x00\x00\x00\x00' -tRp15931 -sVjudy -p15932 -g24 -(g26 -S'J\x12\x00\x00\x00\x00\x00\x00' -tRp15933 -sVmortality -p15934 -g24 -(g26 -S'\xf0\x15\x00\x00\x00\x00\x00\x00' -tRp15935 -sVferry -p15936 -g24 -(g26 -S'\xee\x0c\x00\x00\x00\x00\x00\x00' -tRp15937 -sVcoral -p15938 -g24 -(g26 -S'\xe8\x07\x00\x00\x00\x00\x00\x00' -tRp15939 -sVnumbers -p15940 -g24 -(g26 -S'\r\x17\x00\x00\x00\x00\x00\x00' -tRp15941 -sVperformer -p15942 -g24 -(g26 -S'\xb1\x18\x00\x00\x00\x00\x00\x00' -tRp15943 -sVnursing -p15944 -g24 -(g26 -S'\x14\x17\x00\x00\x00\x00\x00\x00' -tRp15945 -sVstream -p15946 -g24 -(g26 -S'd \x00\x00\x00\x00\x00\x00' -tRp15947 -sVnewsletters -p15948 -g24 -(g26 -S'\xac\x16\x00\x00\x00\x00\x00\x00' -tRp15949 -sVstroke -p15950 -g24 -(g26 -S'y \x00\x00\x00\x00\x00\x00' -tRp15951 -sVdropped -p15952 -g24 -(g26 -S'\x96\n\x00\x00\x00\x00\x00\x00' -tRp15953 -sVcounting -p15954 -g24 -(g26 -S'\x15\x08\x00\x00\x00\x00\x00\x00' -tRp15955 -sVhydrogen -p15956 -g24 -(g26 -S'g\x10\x00\x00\x00\x00\x00\x00' -tRp15957 -sVparliamentary -p15958 -g24 -(g26 -S':\x18\x00\x00\x00\x00\x00\x00' -tRp15959 -sVrequirements -p15960 -g24 -(g26 -S'q\x1c\x00\x00\x00\x00\x00\x00' -tRp15961 -sVsecured -p15962 -g24 -(g26 -S'\x1d\x1e\x00\x00\x00\x00\x00\x00' -tRp15963 -sVcuba -p15964 -g24 -(g26 -S'l\x08\x00\x00\x00\x00\x00\x00' -tRp15965 -sVvital -p15966 -g24 -(g26 -S'W$\x00\x00\x00\x00\x00\x00' -tRp15967 -sVfourth -p15968 -g24 -(g26 -S'\xbd\r\x00\x00\x00\x00\x00\x00' -tRp15969 -sVendorsement -p15970 -g24 -(g26 -S'i\x0b\x00\x00\x00\x00\x00\x00' -tRp15971 -sVplus -p15972 -g24 -(g26 -S'k\x19\x00\x00\x00\x00\x00\x00' -tRp15973 -sVspeaks -p15974 -g24 -(g26 -S'\xa6\x1f\x00\x00\x00\x00\x00\x00' -tRp15975 -sVspringfield -p15976 -g24 -(g26 -S'\xe7\x1f\x00\x00\x00\x00\x00\x00' -tRp15977 -sVlevy -p15978 -g24 -(g26 -S'\\\x13\x00\x00\x00\x00\x00\x00' -tRp15979 -sVcocktail -p15980 -g24 -(g26 -S'{\x06\x00\x00\x00\x00\x00\x00' -tRp15981 -sVinformation -p15982 -g24 -(g26 -S'\x0e\x11\x00\x00\x00\x00\x00\x00' -tRp15983 -sVclone -p15984 -g24 -(g26 -S'W\x06\x00\x00\x00\x00\x00\x00' -tRp15985 -sVislamic -p15986 -g24 -(g26 -S'\xc8\x11\x00\x00\x00\x00\x00\x00' -tRp15987 -sVboards -p15988 -g24 -(g26 -S'\xce\x03\x00\x00\x00\x00\x00\x00' -tRp15989 -sVfloral -p15990 -g24 -(g26 -S'`\r\x00\x00\x00\x00\x00\x00' -tRp15991 -sVrepresentations -p15992 -g24 -(g26 -S'Z\x1c\x00\x00\x00\x00\x00\x00' -tRp15993 -sVclassroom -p15994 -g24 -(g26 -S'7\x06\x00\x00\x00\x00\x00\x00' -tRp15995 -sVbranches -p15996 -g24 -(g26 -S'\x1e\x04\x00\x00\x00\x00\x00\x00' -tRp15997 -sVcommodity -p15998 -g24 -(g26 -S'\xd2\x06\x00\x00\x00\x00\x00\x00' -tRp15999 -sVinform -p16000 -g24 -(g26 -S'\x0c\x11\x00\x00\x00\x00\x00\x00' -tRp16001 -sVrepresentation -p16002 -g24 -(g26 -S'Y\x1c\x00\x00\x00\x00\x00\x00' -tRp16003 -sVrefund -p16004 -g24 -(g26 -S'\xe5\x1b\x00\x00\x00\x00\x00\x00' -tRp16005 -sVexclusive -p16006 -g24 -(g26 -S'\x1f\x0c\x00\x00\x00\x00\x00\x00' -tRp16007 -sVacts -p16008 -g24 -(g26 -S'f\x00\x00\x00\x00\x00\x00\x00' -tRp16009 -sVfurnished -p16010 -g24 -(g26 -S'\r\x0e\x00\x00\x00\x00\x00\x00' -tRp16011 -sVmidnight -p16012 -g24 -(g26 -S']\x15\x00\x00\x00\x00\x00\x00' -tRp16013 -sVtba -p16014 -g24 -(g26 -S'|!\x00\x00\x00\x00\x00\x00' -tRp16015 -sVcollectables -p16016 -g24 -(g26 -S'\x91\x06\x00\x00\x00\x00\x00\x00' -tRp16017 -sVworship -p16018 -g24 -(g26 -S'd%\x00\x00\x00\x00\x00\x00' -tRp16019 -sVblocked -p16020 -g24 -(g26 -S'\xb4\x03\x00\x00\x00\x00\x00\x00' -tRp16021 -sVwallace -p16022 -g24 -(g26 -S'\x8e$\x00\x00\x00\x00\x00\x00' -tRp16023 -sVorganisation -p16024 -g24 -(g26 -S'\xb2\x17\x00\x00\x00\x00\x00\x00' -tRp16025 -sVcivic -p16026 -g24 -(g26 -S' \x06\x00\x00\x00\x00\x00\x00' -tRp16027 -sVcoordinates -p16028 -g24 -(g26 -S'\xdb\x07\x00\x00\x00\x00\x00\x00' -tRp16029 -sVplatform -p16030 -g24 -(g26 -S'Q\x19\x00\x00\x00\x00\x00\x00' -tRp16031 -sVoffers -p16032 -g24 -(g26 -S'V\x17\x00\x00\x00\x00\x00\x00' -tRp16033 -sVfarmer -p16034 -g24 -(g26 -S'\xb3\x0c\x00\x00\x00\x00\x00\x00' -tRp16035 -sVcoordinated -p16036 -g24 -(g26 -S'\xda\x07\x00\x00\x00\x00\x00\x00' -tRp16037 -sVhappened -p16038 -g24 -(g26 -S'Z\x0f\x00\x00\x00\x00\x00\x00' -tRp16039 -sVlonely -p16040 -g24 -(g26 -S'\xee\x13\x00\x00\x00\x00\x00\x00' -tRp16041 -sVmoms -p16042 -g24 -(g26 -S'\xcf\x15\x00\x00\x00\x00\x00\x00' -tRp16043 -sVconversations -p16044 -g24 -(g26 -S'\xc4\x07\x00\x00\x00\x00\x00\x00' -tRp16045 -sVprocesses -p16046 -g24 -(g26 -S'^\x1a\x00\x00\x00\x00\x00\x00' -tRp16047 -sVbound -p16048 -g24 -(g26 -S'\x03\x04\x00\x00\x00\x00\x00\x00' -tRp16049 -sVqualified -p16050 -g24 -(g26 -S'\n\x1b\x00\x00\x00\x00\x00\x00' -tRp16051 -sVhamilton -p16052 -g24 -(g26 -S'B\x0f\x00\x00\x00\x00\x00\x00' -tRp16053 -sVpermissions -p16054 -g24 -(g26 -S'\xbf\x18\x00\x00\x00\x00\x00\x00' -tRp16055 -sVwagon -p16056 -g24 -(g26 -S'\x81$\x00\x00\x00\x00\x00\x00' -tRp16057 -sVterm -p16058 -g24 -(g26 -S'\xb8!\x00\x00\x00\x00\x00\x00' -tRp16059 -sVequality -p16060 -g24 -(g26 -S'\xb0\x0b\x00\x00\x00\x00\x00\x00' -tRp16061 -sVtrucks -p16062 -g24 -(g26 -S'\x0e#\x00\x00\x00\x00\x00\x00' -tRp16063 -sVopera -p16064 -g24 -(g26 -S'\x86\x17\x00\x00\x00\x00\x00\x00' -tRp16065 -sVcorners -p16066 -g24 -(g26 -S'\xf0\x07\x00\x00\x00\x00\x00\x00' -tRp16067 -sVpossibilities -p16068 -g24 -(g26 -S'\xbe\x19\x00\x00\x00\x00\x00\x00' -tRp16069 -sVrealistic -p16070 -g24 -(g26 -S'\x84\x1b\x00\x00\x00\x00\x00\x00' -tRp16071 -sVdonated -p16072 -g24 -(g26 -S'V\n\x00\x00\x00\x00\x00\x00' -tRp16073 -sVindividually -p16074 -g24 -(g26 -S'\xf4\x10\x00\x00\x00\x00\x00\x00' -tRp16075 -sVbusty -p16076 -g24 -(g26 -S'\x9d\x04\x00\x00\x00\x00\x00\x00' -tRp16077 -sVweighted -p16078 -g24 -(g26 -S'\xe7$\x00\x00\x00\x00\x00\x00' -tRp16079 -sVejaculation -p16080 -g24 -(g26 -S'\x15\x0b\x00\x00\x00\x00\x00\x00' -tRp16081 -sVgaps -p16082 -g24 -(g26 -S'.\x0e\x00\x00\x00\x00\x00\x00' -tRp16083 -sVbegun -p16084 -g24 -(g26 -S'8\x03\x00\x00\x00\x00\x00\x00' -tRp16085 -sVdistributor -p16086 -g24 -(g26 -S'\x1d\n\x00\x00\x00\x00\x00\x00' -tRp16087 -sVmyrtle -p16088 -g24 -(g26 -S'D\x16\x00\x00\x00\x00\x00\x00' -tRp16089 -sVsunrise -p16090 -g24 -(g26 -S'\xdf \x00\x00\x00\x00\x00\x00' -tRp16091 -sVplans -p16092 -g24 -(g26 -S'I\x19\x00\x00\x00\x00\x00\x00' -tRp16093 -sVhacker -p16094 -g24 -(g26 -S'7\x0f\x00\x00\x00\x00\x00\x00' -tRp16095 -sVultimately -p16096 -g24 -(g26 -S'R#\x00\x00\x00\x00\x00\x00' -tRp16097 -sVfactors -p16098 -g24 -(g26 -S'\x8e\x0c\x00\x00\x00\x00\x00\x00' -tRp16099 -sVprofit -p16100 -g24 -(g26 -S'u\x1a\x00\x00\x00\x00\x00\x00' -tRp16101 -sVoklahoma -p16102 -g24 -(g26 -S'h\x17\x00\x00\x00\x00\x00\x00' -tRp16103 -sVkeno -p16104 -g24 -(g26 -S'z\x12\x00\x00\x00\x00\x00\x00' -tRp16105 -sVkent -p16106 -g24 -(g26 -S'{\x12\x00\x00\x00\x00\x00\x00' -tRp16107 -sVbless -p16108 -g24 -(g26 -S'\xaf\x03\x00\x00\x00\x00\x00\x00' -tRp16109 -sVeagle -p16110 -g24 -(g26 -S'\xc2\n\x00\x00\x00\x00\x00\x00' -tRp16111 -sVattended -p16112 -g24 -(g26 -S'c\x02\x00\x00\x00\x00\x00\x00' -tRp16113 -sVtheory -p16114 -g24 -(g26 -S'\xee!\x00\x00\x00\x00\x00\x00' -tRp16115 -sVhull -p16116 -g24 -(g26 -S'N\x10\x00\x00\x00\x00\x00\x00' -tRp16117 -sVdispatched -p16118 -g24 -(g26 -S'\t\n\x00\x00\x00\x00\x00\x00' -tRp16119 -sVboobs -p16120 -g24 -(g26 -S'\xe3\x03\x00\x00\x00\x00\x00\x00' -tRp16121 -sValbuquerque -p16122 -g24 -(g26 -S'\x00\x01\x00\x00\x00\x00\x00\x00' -tRp16123 -sVpreviews -p16124 -g24 -(g26 -S')\x1a\x00\x00\x00\x00\x00\x00' -tRp16125 -sVoasis -p16126 -g24 -(g26 -S'$\x17\x00\x00\x00\x00\x00\x00' -tRp16127 -sVobituaries -p16128 -g24 -(g26 -S"'\x17\x00\x00\x00\x00\x00\x00" -tRp16129 -sVaccommodation -p16130 -g24 -(g26 -S'.\x00\x00\x00\x00\x00\x00\x00' -tRp16131 -sVsoftware -p16132 -g24 -(g26 -S'`\x1f\x00\x00\x00\x00\x00\x00' -tRp16133 -sVimpose -p16134 -g24 -(g26 -S'\xb3\x10\x00\x00\x00\x00\x00\x00' -tRp16135 -sVmotion -p16136 -g24 -(g26 -S'\xfb\x15\x00\x00\x00\x00\x00\x00' -tRp16137 -sVturn -p16138 -g24 -(g26 -S'0#\x00\x00\x00\x00\x00\x00' -tRp16139 -sVplace -p16140 -g24 -(g26 -S'8\x19\x00\x00\x00\x00\x00\x00' -tRp16141 -sVraleigh -p16142 -g24 -(g26 -S'I\x1b\x00\x00\x00\x00\x00\x00' -tRp16143 -sVswing -p16144 -g24 -(g26 -S'*!\x00\x00\x00\x00\x00\x00' -tRp16145 -sVcharleston -p16146 -g24 -(g26 -S'\xae\x05\x00\x00\x00\x00\x00\x00' -tRp16147 -sVchildhood -p16148 -g24 -(g26 -S'\xdc\x05\x00\x00\x00\x00\x00\x00' -tRp16149 -sVorigin -p16150 -g24 -(g26 -S'\xc1\x17\x00\x00\x00\x00\x00\x00' -tRp16151 -sVrevenue -p16152 -g24 -(g26 -S'\xc9\x1c\x00\x00\x00\x00\x00\x00' -tRp16153 -sVcoming -p16154 -g24 -(g26 -S'\xbc\x06\x00\x00\x00\x00\x00\x00' -tRp16155 -sVcommissioners -p16156 -g24 -(g26 -S'\xc9\x06\x00\x00\x00\x00\x00\x00' -tRp16157 -sVarray -p16158 -g24 -(g26 -S'\xfb\x01\x00\x00\x00\x00\x00\x00' -tRp16159 -sVcontinent -p16160 -g24 -(g26 -S'\x9d\x07\x00\x00\x00\x00\x00\x00' -tRp16161 -sVevaluations -p16162 -g24 -(g26 -S'\xf1\x0b\x00\x00\x00\x00\x00\x00' -tRp16163 -sVmillions -p16164 -g24 -(g26 -S'p\x15\x00\x00\x00\x00\x00\x00' -tRp16165 -sVsurveys -p16166 -g24 -(g26 -S'\x10!\x00\x00\x00\x00\x00\x00' -tRp16167 -sVnecessarily -p16168 -g24 -(g26 -S'\x7f\x16\x00\x00\x00\x00\x00\x00' -tRp16169 -sVdistrict -p16170 -g24 -(g26 -S'\x1f\n\x00\x00\x00\x00\x00\x00' -tRp16171 -sVvirgin -p16172 -g24 -(g26 -S'D$\x00\x00\x00\x00\x00\x00' -tRp16173 -sVauthentic -p16174 -g24 -(g26 -S'\x83\x02\x00\x00\x00\x00\x00\x00' -tRp16175 -sVeurope -p16176 -g24 -(g26 -S'\xe7\x0b\x00\x00\x00\x00\x00\x00' -tRp16177 -sVplastic -p16178 -g24 -(g26 -S'M\x19\x00\x00\x00\x00\x00\x00' -tRp16179 -sVbahamas -p16180 -g24 -(g26 -S'\xc3\x02\x00\x00\x00\x00\x00\x00' -tRp16181 -sVcooling -p16182 -g24 -(g26 -S'\xd5\x07\x00\x00\x00\x00\x00\x00' -tRp16183 -sVconservation -p16184 -g24 -(g26 -S'b\x07\x00\x00\x00\x00\x00\x00' -tRp16185 -sVconvention -p16186 -g24 -(g26 -S'\xbf\x07\x00\x00\x00\x00\x00\x00' -tRp16187 -sVlegally -p16188 -g24 -(g26 -S'6\x13\x00\x00\x00\x00\x00\x00' -tRp16189 -sVwhite -p16190 -g24 -(g26 -S'\xfe$\x00\x00\x00\x00\x00\x00' -tRp16191 -sVgives -p16192 -g24 -(g26 -S'\x8f\x0e\x00\x00\x00\x00\x00\x00' -tRp16193 -sVexploring -p16194 -g24 -(g26 -S'_\x0c\x00\x00\x00\x00\x00\x00' -tRp16195 -sVholdem -p16196 -g24 -(g26 -S'\xef\x0f\x00\x00\x00\x00\x00\x00' -tRp16197 -sVreleases -p16198 -g24 -(g26 -S'\x15\x1c\x00\x00\x00\x00\x00\x00' -tRp16199 -sVcope -p16200 -g24 -(g26 -S'\xdf\x07\x00\x00\x00\x00\x00\x00' -tRp16201 -sVhumans -p16202 -g24 -(g26 -S'S\x10\x00\x00\x00\x00\x00\x00' -tRp16203 -sValan -p16204 -g24 -(g26 -S'\xf7\x00\x00\x00\x00\x00\x00\x00' -tRp16205 -sVreleased -p16206 -g24 -(g26 -S'\x14\x1c\x00\x00\x00\x00\x00\x00' -tRp16207 -sVwav -p16208 -g24 -(g26 -S'\xbf$\x00\x00\x00\x00\x00\x00' -tRp16209 -sVfreeze -p16210 -g24 -(g26 -S'\xda\r\x00\x00\x00\x00\x00\x00' -tRp16211 -sVholder -p16212 -g24 -(g26 -S'\xf0\x0f\x00\x00\x00\x00\x00\x00' -tRp16213 -sVspecify -p16214 -g24 -(g26 -S'\xba\x1f\x00\x00\x00\x00\x00\x00' -tRp16215 -sVmilton -p16216 -g24 -(g26 -S'r\x15\x00\x00\x00\x00\x00\x00' -tRp16217 -sVwide -p16218 -g24 -(g26 -S'\x04%\x00\x00\x00\x00\x00\x00' -tRp16219 -sVnathan -p16220 -g24 -(g26 -S'_\x16\x00\x00\x00\x00\x00\x00' -tRp16221 -sVunfortunately -p16222 -g24 -(g26 -S'k#\x00\x00\x00\x00\x00\x00' -tRp16223 -sVrequire -p16224 -g24 -(g26 -S'n\x1c\x00\x00\x00\x00\x00\x00' -tRp16225 -sVofficials -p16226 -g24 -(g26 -S']\x17\x00\x00\x00\x00\x00\x00' -tRp16227 -sVcards -p16228 -g24 -(g26 -S'\x08\x05\x00\x00\x00\x00\x00\x00' -tRp16229 -sVoutcome -p16230 -g24 -(g26 -S'\xcd\x17\x00\x00\x00\x00\x00\x00' -tRp16231 -sVpre -p16232 -g24 -(g26 -S'\xf1\x19\x00\x00\x00\x00\x00\x00' -tRp16233 -sVana -p16234 -g24 -(g26 -S'K\x01\x00\x00\x00\x00\x00\x00' -tRp16235 -sVann -p16236 -g24 -(g26 -S'n\x01\x00\x00\x00\x00\x00\x00' -tRp16237 -sVworcester -p16238 -g24 -(g26 -S'I%\x00\x00\x00\x00\x00\x00' -tRp16239 -sVreno -p16240 -g24 -(g26 -S'?\x1c\x00\x00\x00\x00\x00\x00' -tRp16241 -sVant -p16242 -g24 -(g26 -S'\x83\x01\x00\x00\x00\x00\x00\x00' -tRp16243 -sVrent -p16244 -g24 -(g26 -S'@\x1c\x00\x00\x00\x00\x00\x00' -tRp16245 -sVsells -p16246 -g24 -(g26 -S'9\x1e\x00\x00\x00\x00\x00\x00' -tRp16247 -sVmarathon -p16248 -g24 -(g26 -S'\x89\x14\x00\x00\x00\x00\x00\x00' -tRp16249 -sVconversion -p16250 -g24 -(g26 -S'\xc5\x07\x00\x00\x00\x00\x00\x00' -tRp16251 -sVtranscription -p16252 -g24 -(g26 -S'\xb7"\x00\x00\x00\x00\x00\x00' -tRp16253 -sVideas -p16254 -g24 -(g26 -S'|\x10\x00\x00\x00\x00\x00\x00' -tRp16255 -sVmalta -p16256 -g24 -(g26 -S'k\x14\x00\x00\x00\x00\x00\x00' -tRp16257 -sVsciences -p16258 -g24 -(g26 -S'\xde\x1d\x00\x00\x00\x00\x00\x00' -tRp16259 -sVideal -p16260 -g24 -(g26 -S'{\x10\x00\x00\x00\x00\x00\x00' -tRp16261 -sVanimation -p16262 -g24 -(g26 -S'l\x01\x00\x00\x00\x00\x00\x00' -tRp16263 -sVstrengths -p16264 -g24 -(g26 -S'l \x00\x00\x00\x00\x00\x00' -tRp16265 -sVsurf -p16266 -g24 -(g26 -S'\xfc \x00\x00\x00\x00\x00\x00' -tRp16267 -sVurge -p16268 -g24 -(g26 -S'\x9c#\x00\x00\x00\x00\x00\x00' -tRp16269 -sVpolyphonic -p16270 -g24 -(g26 -S'\x95\x19\x00\x00\x00\x00\x00\x00' -tRp16271 -sVmultiple -p16272 -g24 -(g26 -S'*\x16\x00\x00\x00\x00\x00\x00' -tRp16273 -sVprintable -p16274 -g24 -(g26 -S'<\x1a\x00\x00\x00\x00\x00\x00' -tRp16275 -sVsherman -p16276 -g24 -(g26 -S'\xaa\x1e\x00\x00\x00\x00\x00\x00' -tRp16277 -sVfalls -p16278 -g24 -(g26 -S'\xa1\x0c\x00\x00\x00\x00\x00\x00' -tRp16279 -sVvisitors -p16280 -g24 -(g26 -S'S$\x00\x00\x00\x00\x00\x00' -tRp16281 -sVdonation -p16282 -g24 -(g26 -S'W\n\x00\x00\x00\x00\x00\x00' -tRp16283 -sVfcc -p16284 -g24 -(g26 -S'\xca\x0c\x00\x00\x00\x00\x00\x00' -tRp16285 -sVlibrarian -p16286 -g24 -(g26 -S'k\x13\x00\x00\x00\x00\x00\x00' -tRp16287 -sVcleared -p16288 -g24 -(g26 -S'A\x06\x00\x00\x00\x00\x00\x00' -tRp16289 -sVicon -p16290 -g24 -(g26 -S's\x10\x00\x00\x00\x00\x00\x00' -tRp16291 -sVlatex -p16292 -g24 -(g26 -S'\xf7\x12\x00\x00\x00\x00\x00\x00' -tRp16293 -sVconsidered -p16294 -g24 -(g26 -S'h\x07\x00\x00\x00\x00\x00\x00' -tRp16295 -sVseafood -p16296 -g24 -(g26 -S'\x00\x1e\x00\x00\x00\x00\x00\x00' -tRp16297 -sVlater -p16298 -g24 -(g26 -S'\xf5\x12\x00\x00\x00\x00\x00\x00' -tRp16299 -sVhungry -p16300 -g24 -(g26 -S'[\x10\x00\x00\x00\x00\x00\x00' -tRp16301 -sVretrieval -p16302 -g24 -(g26 -S'\xb9\x1c\x00\x00\x00\x00\x00\x00' -tRp16303 -sVuncle -p16304 -g24 -(g26 -S'[#\x00\x00\x00\x00\x00\x00' -tRp16305 -sVsenior -p16306 -g24 -(g26 -S'H\x1e\x00\x00\x00\x00\x00\x00' -tRp16307 -sVmasturbation -p16308 -g24 -(g26 -S'\xbe\x14\x00\x00\x00\x00\x00\x00' -tRp16309 -sVdetective -p16310 -g24 -(g26 -S'{\t\x00\x00\x00\x00\x00\x00' -tRp16311 -sVcheat -p16312 -g24 -(g26 -S'\xbd\x05\x00\x00\x00\x00\x00\x00' -tRp16313 -sVworkshops -p16314 -g24 -(g26 -S'X%\x00\x00\x00\x00\x00\x00' -tRp16315 -sVcheap -p16316 -g24 -(g26 -S'\xba\x05\x00\x00\x00\x00\x00\x00' -tRp16317 -sVtroy -p16318 -g24 -(g26 -S'\x0c#\x00\x00\x00\x00\x00\x00' -tRp16319 -sVspaces -p16320 -g24 -(g26 -S'\x97\x1f\x00\x00\x00\x00\x00\x00' -tRp16321 -sVhack -p16322 -g24 -(g26 -S'6\x0f\x00\x00\x00\x00\x00\x00' -tRp16323 -sVgulf -p16324 -g24 -(g26 -S'*\x0f\x00\x00\x00\x00\x00\x00' -tRp16325 -sVgenius -p16326 -g24 -(g26 -S'f\x0e\x00\x00\x00\x00\x00\x00' -tRp16327 -sVwritten -p16328 -g24 -(g26 -S'x%\x00\x00\x00\x00\x00\x00' -tRp16329 -sVcrime -p16330 -g24 -(g26 -S'N\x08\x00\x00\x00\x00\x00\x00' -tRp16331 -sVexplicitly -p16332 -g24 -(g26 -S'[\x0c\x00\x00\x00\x00\x00\x00' -tRp16333 -sVwool -p16334 -g24 -(g26 -S'H%\x00\x00\x00\x00\x00\x00' -tRp16335 -sVjazz -p16336 -g24 -(g26 -S'\xfe\x11\x00\x00\x00\x00\x00\x00' -tRp16337 -sVssl -p16338 -g24 -(g26 -S'\xf6\x1f\x00\x00\x00\x00\x00\x00' -tRp16339 -sVresponding -p16340 -g24 -(g26 -S'\x99\x1c\x00\x00\x00\x00\x00\x00' -tRp16341 -sVlighter -p16342 -g24 -(g26 -S'\x7f\x13\x00\x00\x00\x00\x00\x00' -tRp16343 -sVtrade -p16344 -g24 -(g26 -S'\x9b"\x00\x00\x00\x00\x00\x00' -tRp16345 -sVandale -p16346 -g24 -(g26 -S'Y\x01\x00\x00\x00\x00\x00\x00' -tRp16347 -sVclosure -p16348 -g24 -(g26 -S'_\x06\x00\x00\x00\x00\x00\x00' -tRp16349 -sVreveal -p16350 -g24 -(g26 -S'\xc4\x1c\x00\x00\x00\x00\x00\x00' -tRp16351 -sVregarding -p16352 -g24 -(g26 -S'\xec\x1b\x00\x00\x00\x00\x00\x00' -tRp16353 -sValuminum -p16354 -g24 -(g26 -S'0\x01\x00\x00\x00\x00\x00\x00' -tRp16355 -sVnaked -p16356 -g24 -(g26 -S'N\x16\x00\x00\x00\x00\x00\x00' -tRp16357 -sVjokes -p16358 -g24 -(g26 -S'/\x12\x00\x00\x00\x00\x00\x00' -tRp16359 -sVembassy -p16360 -g24 -(g26 -S'9\x0b\x00\x00\x00\x00\x00\x00' -tRp16361 -sVeuro -p16362 -g24 -(g26 -S'\xe6\x0b\x00\x00\x00\x00\x00\x00' -tRp16363 -sVpredicted -p16364 -g24 -(g26 -S'\xf9\x19\x00\x00\x00\x00\x00\x00' -tRp16365 -sVregistry -p16366 -g24 -(g26 -S'\xf8\x1b\x00\x00\x00\x00\x00\x00' -tRp16367 -sVpants -p16368 -g24 -(g26 -S'\x1d\x18\x00\x00\x00\x00\x00\x00' -tRp16369 -sVdiscussing -p16370 -g24 -(g26 -S'\xfc\t\x00\x00\x00\x00\x00\x00' -tRp16371 -sVreveals -p16372 -g24 -(g26 -S'\xc6\x1c\x00\x00\x00\x00\x00\x00' -tRp16373 -sVpicnic -p16374 -g24 -(g26 -S'\x13\x19\x00\x00\x00\x00\x00\x00' -tRp16375 -sVencourages -p16376 -g24 -(g26 -S'^\x0b\x00\x00\x00\x00\x00\x00' -tRp16377 -sVreplies -p16378 -g24 -(g26 -S'O\x1c\x00\x00\x00\x00\x00\x00' -tRp16379 -sVbargain -p16380 -g24 -(g26 -S'\xea\x02\x00\x00\x00\x00\x00\x00' -tRp16381 -sVconnections -p16382 -g24 -(g26 -S'U\x07\x00\x00\x00\x00\x00\x00' -tRp16383 -sVcollege -p16384 -g24 -(g26 -S'\x9b\x06\x00\x00\x00\x00\x00\x00' -tRp16385 -sVparking -p16386 -g24 -(g26 -S'7\x18\x00\x00\x00\x00\x00\x00' -tRp16387 -sVstanley -p16388 -g24 -(g26 -S'\r \x00\x00\x00\x00\x00\x00' -tRp16389 -sVsublimedirectory -p16390 -g24 -(g26 -S'\xa0 \x00\x00\x00\x00\x00\x00' -tRp16391 -sVencouraged -p16392 -g24 -(g26 -S']\x0b\x00\x00\x00\x00\x00\x00' -tRp16393 -sVsurfaces -p16394 -g24 -(g26 -S'\xfe \x00\x00\x00\x00\x00\x00' -tRp16395 -sVmadison -p16396 -g24 -(g26 -S';\x14\x00\x00\x00\x00\x00\x00' -tRp16397 -sVdetect -p16398 -g24 -(g26 -S'x\t\x00\x00\x00\x00\x00\x00' -tRp16399 -sVvoluntary -p16400 -g24 -(g26 -S'i$\x00\x00\x00\x00\x00\x00' -tRp16401 -sVmortgage -p16402 -g24 -(g26 -S'\xf1\x15\x00\x00\x00\x00\x00\x00' -tRp16403 -sVfarmers -p16404 -g24 -(g26 -S'\xb4\x0c\x00\x00\x00\x00\x00\x00' -tRp16405 -sVways -p16406 -g24 -(g26 -S'\xc5$\x00\x00\x00\x00\x00\x00' -tRp16407 -sVsubsequent -p16408 -g24 -(g26 -S'\xac \x00\x00\x00\x00\x00\x00' -tRp16409 -sVreview -p16410 -g24 -(g26 -S'\xcc\x1c\x00\x00\x00\x00\x00\x00' -tRp16411 -sVcommitments -p16412 -g24 -(g26 -S'\xcd\x06\x00\x00\x00\x00\x00\x00' -tRp16413 -sVweapons -p16414 -g24 -(g26 -S'\xcb$\x00\x00\x00\x00\x00\x00' -tRp16415 -sVoutside -p16416 -g24 -(g26 -S'\xda\x17\x00\x00\x00\x00\x00\x00' -tRp16417 -sVarrival -p16418 -g24 -(g26 -S'\xfe\x01\x00\x00\x00\x00\x00\x00' -tRp16419 -sVreceivers -p16420 -g24 -(g26 -S'\x9e\x1b\x00\x00\x00\x00\x00\x00' -tRp16421 -sVcomp -p16422 -g24 -(g26 -S'\xdd\x06\x00\x00\x00\x00\x00\x00' -tRp16423 -sVguitar -p16424 -g24 -(g26 -S'(\x0f\x00\x00\x00\x00\x00\x00' -tRp16425 -sVcomm -p16426 -g24 -(g26 -S'\xbd\x06\x00\x00\x00\x00\x00\x00' -tRp16427 -sVcities -p16428 -g24 -(g26 -S'\x1a\x06\x00\x00\x00\x00\x00\x00' -tRp16429 -sVcome -p16430 -g24 -(g26 -S'\xb5\x06\x00\x00\x00\x00\x00\x00' -tRp16431 -sVpostage -p16432 -g24 -(g26 -S'\xc3\x19\x00\x00\x00\x00\x00\x00' -tRp16433 -sVreaction -p16434 -g24 -(g26 -S'y\x1b\x00\x00\x00\x00\x00\x00' -tRp16435 -sVmobiles -p16436 -g24 -(g26 -S'\xaf\x15\x00\x00\x00\x00\x00\x00' -tRp16437 -sVmissions -p16438 -g24 -(g26 -S'\x99\x15\x00\x00\x00\x00\x00\x00' -tRp16439 -sVregion -p16440 -g24 -(g26 -S'\xf1\x1b\x00\x00\x00\x00\x00\x00' -tRp16441 -sVquiet -p16442 -g24 -(g26 -S'%\x1b\x00\x00\x00\x00\x00\x00' -tRp16443 -sVcontract -p16444 -g24 -(g26 -S'\xa7\x07\x00\x00\x00\x00\x00\x00' -tRp16445 -sVberry -p16446 -g24 -(g26 -S'_\x03\x00\x00\x00\x00\x00\x00' -tRp16447 -sVsenator -p16448 -g24 -(g26 -S'A\x1e\x00\x00\x00\x00\x00\x00' -tRp16449 -sVrailway -p16450 -g24 -(g26 -S'B\x1b\x00\x00\x00\x00\x00\x00' -tRp16451 -sVntsc -p16452 -g24 -(g26 -S'\x04\x17\x00\x00\x00\x00\x00\x00' -tRp16453 -sVduty -p16454 -g24 -(g26 -S'\xb8\n\x00\x00\x00\x00\x00\x00' -tRp16455 -sVpakistan -p16456 -g24 -(g26 -S'\x0c\x18\x00\x00\x00\x00\x00\x00' -tRp16457 -sVfiltering -p16458 -g24 -(g26 -S'\x11\r\x00\x00\x00\x00\x00\x00' -tRp16459 -sVmerry -p16460 -g24 -(g26 -S',\x15\x00\x00\x00\x00\x00\x00' -tRp16461 -sVcolor -p16462 -g24 -(g26 -S'\xa3\x06\x00\x00\x00\x00\x00\x00' -tRp16463 -sVpot -p16464 -g24 -(g26 -S'\xce\x19\x00\x00\x00\x00\x00\x00' -tRp16465 -sVcolony -p16466 -g24 -(g26 -S'\xa2\x06\x00\x00\x00\x00\x00\x00' -tRp16467 -sVpos -p16468 -g24 -(g26 -S'\xb5\x19\x00\x00\x00\x00\x00\x00' -tRp16469 -sVpoly -p16470 -g24 -(g26 -S'\x92\x19\x00\x00\x00\x00\x00\x00' -tRp16471 -sVsampling -p16472 -g24 -(g26 -S'\x95\x1d\x00\x00\x00\x00\x00\x00' -tRp16473 -sVsatisfaction -p16474 -g24 -(g26 -S'\xaa\x1d\x00\x00\x00\x00\x00\x00' -tRp16475 -sVpole -p16476 -g24 -(g26 -S'\x85\x19\x00\x00\x00\x00\x00\x00' -tRp16477 -sVcolon -p16478 -g24 -(g26 -S'\xa0\x06\x00\x00\x00\x00\x00\x00' -tRp16479 -sVpct -p16480 -g24 -(g26 -S'\x82\x18\x00\x00\x00\x00\x00\x00' -tRp16481 -sVpolo -p16482 -g24 -(g26 -S'\x91\x19\x00\x00\x00\x00\x00\x00' -tRp16483 -sVpod -p16484 -g24 -(g26 -S't\x19\x00\x00\x00\x00\x00\x00' -tRp16485 -sVpoll -p16486 -g24 -(g26 -S'\x8e\x19\x00\x00\x00\x00\x00\x00' -tRp16487 -sVnicole -p16488 -g24 -(g26 -S'\xbe\x16\x00\x00\x00\x00\x00\x00' -tRp16489 -sVturkey -p16490 -g24 -(g26 -S'.#\x00\x00\x00\x00\x00\x00' -tRp16491 -sVhoward -p16492 -g24 -(g26 -S'<\x10\x00\x00\x00\x00\x00\x00' -tRp16493 -sVinclusive -p16494 -g24 -(g26 -S'\xce\x10\x00\x00\x00\x00\x00\x00' -tRp16495 -sVblend -p16496 -g24 -(g26 -S'\xae\x03\x00\x00\x00\x00\x00\x00' -tRp16497 -sVconsultancy -p16498 -g24 -(g26 -S'\x84\x07\x00\x00\x00\x00\x00\x00' -tRp16499 -sVsubscriber -p16500 -g24 -(g26 -S'\xa7 \x00\x00\x00\x00\x00\x00' -tRp16501 -sVreuters -p16502 -g24 -(g26 -S'\xc2\x1c\x00\x00\x00\x00\x00\x00' -tRp16503 -sVnudity -p16504 -g24 -(g26 -S'\t\x17\x00\x00\x00\x00\x00\x00' -tRp16505 -sVhelicopter -p16506 -g24 -(g26 -S'\xad\x0f\x00\x00\x00\x00\x00\x00' -tRp16507 -sVfeaturing -p16508 -g24 -(g26 -S'\xd4\x0c\x00\x00\x00\x00\x00\x00' -tRp16509 -sVhardly -p16510 -g24 -(g26 -S'e\x0f\x00\x00\x00\x00\x00\x00' -tRp16511 -sVengine -p16512 -g24 -(g26 -S't\x0b\x00\x00\x00\x00\x00\x00' -tRp16513 -sVdirection -p16514 -g24 -(g26 -S'\xd3\t\x00\x00\x00\x00\x00\x00' -tRp16515 -sVindirect -p16516 -g24 -(g26 -S'\xf2\x10\x00\x00\x00\x00\x00\x00' -tRp16517 -sVandrew -p16518 -g24 -(g26 -S'^\x01\x00\x00\x00\x00\x00\x00' -tRp16519 -sVtiger -p16520 -g24 -(g26 -S',"\x00\x00\x00\x00\x00\x00' -tRp16521 -sVminister -p16522 -g24 -(g26 -S'\x81\x15\x00\x00\x00\x00\x00\x00' -tRp16523 -sVpenn -p16524 -g24 -(g26 -S'\x9d\x18\x00\x00\x00\x00\x00\x00' -tRp16525 -sVandrea -p16526 -g24 -(g26 -S'\\\x01\x00\x00\x00\x00\x00\x00' -tRp16527 -sVtamil -p16528 -g24 -(g26 -S'c!\x00\x00\x00\x00\x00\x00' -tRp16529 -sVchampions -p16530 -g24 -(g26 -S'\x8c\x05\x00\x00\x00\x00\x00\x00' -tRp16531 -sVprotocols -p16532 -g24 -(g26 -S'\xb4\x1a\x00\x00\x00\x00\x00\x00' -tRp16533 -sVpilot -p16534 -g24 -(g26 -S'!\x19\x00\x00\x00\x00\x00\x00' -tRp16535 -sVpaying -p16536 -g24 -(g26 -S'x\x18\x00\x00\x00\x00\x00\x00' -tRp16537 -sVshaft -p16538 -g24 -(g26 -S'\x87\x1e\x00\x00\x00\x00\x00\x00' -tRp16539 -sVhughes -p16540 -g24 -(g26 -S'L\x10\x00\x00\x00\x00\x00\x00' -tRp16541 -sVcasa -p16542 -g24 -(g26 -S'*\x05\x00\x00\x00\x00\x00\x00' -tRp16543 -sVamend -p16544 -g24 -(g26 -S';\x01\x00\x00\x00\x00\x00\x00' -tRp16545 -sVmount -p16546 -g24 -(g26 -S'\x03\x16\x00\x00\x00\x00\x00\x00' -tRp16547 -sVcash -p16548 -g24 -(g26 -S'.\x05\x00\x00\x00\x00\x00\x00' -tRp16549 -sVarnold -p16550 -g24 -(g26 -S'\xf6\x01\x00\x00\x00\x00\x00\x00' -tRp16551 -sVadmin -p16552 -g24 -(g26 -S'\x8b\x00\x00\x00\x00\x00\x00\x00' -tRp16553 -sVshops -p16554 -g24 -(g26 -S'\xc0\x1e\x00\x00\x00\x00\x00\x00' -tRp16555 -sVcoupled -p16556 -g24 -(g26 -S'\x1b\x08\x00\x00\x00\x00\x00\x00' -tRp16557 -sVtelephone -p16558 -g24 -(g26 -S'\xa0!\x00\x00\x00\x00\x00\x00' -tRp16559 -sVcouples -p16560 -g24 -(g26 -S'\x1c\x08\x00\x00\x00\x00\x00\x00' -tRp16561 -sVtelephony -p16562 -g24 -(g26 -S'\xa1!\x00\x00\x00\x00\x00\x00' -tRp16563 -sVminds -p16564 -g24 -(g26 -S'w\x15\x00\x00\x00\x00\x00\x00' -tRp16565 -sVhelmet -p16566 -g24 -(g26 -S'\xb0\x0f\x00\x00\x00\x00\x00\x00' -tRp16567 -sVparticipant -p16568 -g24 -(g26 -S'=\x18\x00\x00\x00\x00\x00\x00' -tRp16569 -sVprojector -p16570 -g24 -(g26 -S'\x84\x1a\x00\x00\x00\x00\x00\x00' -tRp16571 -sVauthor -p16572 -g24 -(g26 -S'\x85\x02\x00\x00\x00\x00\x00\x00' -tRp16573 -sVmold -p16574 -g24 -(g26 -S'\xc7\x15\x00\x00\x00\x00\x00\x00' -tRp16575 -sVgranted -p16576 -g24 -(g26 -S'\xdc\x0e\x00\x00\x00\x00\x00\x00' -tRp16577 -sVlocking -p16578 -g24 -(g26 -S'\xda\x13\x00\x00\x00\x00\x00\x00' -tRp16579 -sVtrip -p16580 -g24 -(g26 -S'\x01#\x00\x00\x00\x00\x00\x00' -tRp16581 -sVethiopia -p16582 -g24 -(g26 -S'\xe1\x0b\x00\x00\x00\x00\x00\x00' -tRp16583 -sVbermuda -p16584 -g24 -(g26 -S']\x03\x00\x00\x00\x00\x00\x00' -tRp16585 -sVbuys -p16586 -g24 -(g26 -S'\xaa\x04\x00\x00\x00\x00\x00\x00' -tRp16587 -sVreminder -p16588 -g24 -(g26 -S'0\x1c\x00\x00\x00\x00\x00\x00' -tRp16589 -sVregime -p16590 -g24 -(g26 -S'\xf0\x1b\x00\x00\x00\x00\x00\x00' -tRp16591 -sVisle -p16592 -g24 -(g26 -S'\xcb\x11\x00\x00\x00\x00\x00\x00' -tRp16593 -sVstatus -p16594 -g24 -(g26 -S"' \x00\x00\x00\x00\x00\x00" -tRp16595 -sVscreenshot -p16596 -g24 -(g26 -S'\xf3\x1d\x00\x00\x00\x00\x00\x00' -tRp16597 -sVdownloads -p16598 -g24 -(g26 -S'n\n\x00\x00\x00\x00\x00\x00' -tRp16599 -sVdriver -p16600 -g24 -(g26 -S'\x91\n\x00\x00\x00\x00\x00\x00' -tRp16601 -sVdrives -p16602 -g24 -(g26 -S'\x93\n\x00\x00\x00\x00\x00\x00' -tRp16603 -sVweed -p16604 -g24 -(g26 -S'\xe0$\x00\x00\x00\x00\x00\x00' -tRp16605 -sVdirector -p16606 -g24 -(g26 -S'\xd7\t\x00\x00\x00\x00\x00\x00' -tRp16607 -sVpersons -p16608 -g24 -(g26 -S'\xcd\x18\x00\x00\x00\x00\x00\x00' -tRp16609 -sVstatutory -p16610 -g24 -(g26 -S'* \x00\x00\x00\x00\x00\x00' -tRp16611 -sVchanging -p16612 -g24 -(g26 -S'\x97\x05\x00\x00\x00\x00\x00\x00' -tRp16613 -sVcartoon -p16614 -g24 -(g26 -S'%\x05\x00\x00\x00\x00\x00\x00' -tRp16615 -sVantibodies -p16616 -g24 -(g26 -S'\x89\x01\x00\x00\x00\x00\x00\x00' -tRp16617 -sVthreaded -p16618 -g24 -(g26 -S'\x0c"\x00\x00\x00\x00\x00\x00' -tRp16619 -sVmodes -p16620 -g24 -(g26 -S'\xbd\x15\x00\x00\x00\x00\x00\x00' -tRp16621 -sVminimize -p16622 -g24 -(g26 -S'~\x15\x00\x00\x00\x00\x00\x00' -tRp16623 -sVranch -p16624 -g24 -(g26 -S'N\x1b\x00\x00\x00\x00\x00\x00' -tRp16625 -sVmagical -p16626 -g24 -(g26 -S'D\x14\x00\x00\x00\x00\x00\x00' -tRp16627 -sVrelief -p16628 -g24 -(g26 -S'\x1b\x1c\x00\x00\x00\x00\x00\x00' -tRp16629 -sVcomponents -p16630 -g24 -(g26 -S'\t\x07\x00\x00\x00\x00\x00\x00' -tRp16631 -sVtermination -p16632 -g24 -(g26 -S'\xbb!\x00\x00\x00\x00\x00\x00' -tRp16633 -sVmodel -p16634 -g24 -(g26 -S'\xb3\x15\x00\x00\x00\x00\x00\x00' -tRp16635 -sVreward -p16636 -g24 -(g26 -S'\xd6\x1c\x00\x00\x00\x00\x00\x00' -tRp16637 -sVresearchers -p16638 -g24 -(g26 -S'x\x1c\x00\x00\x00\x00\x00\x00' -tRp16639 -sVjustify -p16640 -g24 -(g26 -S']\x12\x00\x00\x00\x00\x00\x00' -tRp16641 -sVjanet -p16642 -g24 -(g26 -S'\xf5\x11\x00\x00\x00\x00\x00\x00' -tRp16643 -sVbrisbane -p16644 -g24 -(g26 -S'E\x04\x00\x00\x00\x00\x00\x00' -tRp16645 -sVnd -p16646 -g24 -(g26 -S'w\x16\x00\x00\x00\x00\x00\x00' -tRp16647 -sVguided -p16648 -g24 -(g26 -S'"\x0f\x00\x00\x00\x00\x00\x00' -tRp16649 -sVactress -p16650 -g24 -(g26 -S'e\x00\x00\x00\x00\x00\x00\x00' -tRp16651 -sVviolent -p16652 -g24 -(g26 -S'@$\x00\x00\x00\x00\x00\x00' -tRp16653 -sVkill -p16654 -g24 -(g26 -S'\x8e\x12\x00\x00\x00\x00\x00\x00' -tRp16655 -sVharrison -p16656 -g24 -(g26 -S'o\x0f\x00\x00\x00\x00\x00\x00' -tRp16657 -sVpolish -p16658 -g24 -(g26 -S'\x89\x19\x00\x00\x00\x00\x00\x00' -tRp16659 -sVsatin -p16660 -g24 -(g26 -S'\xa9\x1d\x00\x00\x00\x00\x00\x00' -tRp16661 -sVguides -p16662 -g24 -(g26 -S'$\x0f\x00\x00\x00\x00\x00\x00' -tRp16663 -sVcaptured -p16664 -g24 -(g26 -S'\x00\x05\x00\x00\x00\x00\x00\x00' -tRp16665 -sVblow -p16666 -g24 -(g26 -S'\xc2\x03\x00\x00\x00\x00\x00\x00' -tRp16667 -sVannouncement -p16668 -g24 -(g26 -S'x\x01\x00\x00\x00\x00\x00\x00' -tRp16669 -sValphabetical -p16670 -g24 -(g26 -S'%\x01\x00\x00\x00\x00\x00\x00' -tRp16671 -sVsamba -p16672 -g24 -(g26 -S'\x91\x1d\x00\x00\x00\x00\x00\x00' -tRp16673 -sVhint -p16674 -g24 -(g26 -S'\xd8\x0f\x00\x00\x00\x00\x00\x00' -tRp16675 -sVrose -p16676 -g24 -(g26 -S'6\x1d\x00\x00\x00\x00\x00\x00' -tRp16677 -sVrosa -p16678 -g24 -(g26 -S'5\x1d\x00\x00\x00\x00\x00\x00' -tRp16679 -sVblog -p16680 -g24 -(g26 -S'\xb7\x03\x00\x00\x00\x00\x00\x00' -tRp16681 -sVwall -p16682 -g24 -(g26 -S'\x8d$\x00\x00\x00\x00\x00\x00' -tRp16683 -sVlets -p16684 -g24 -(g26 -S'T\x13\x00\x00\x00\x00\x00\x00' -tRp16685 -sVviewers -p16686 -g24 -(g26 -S'/$\x00\x00\x00\x00\x00\x00' -tRp16687 -sVsamples -p16688 -g24 -(g26 -S'\x94\x1d\x00\x00\x00\x00\x00\x00' -tRp16689 -sVflashing -p16690 -g24 -(g26 -S'L\r\x00\x00\x00\x00\x00\x00' -tRp16691 -sVross -p16692 -g24 -(g26 -S'8\x1d\x00\x00\x00\x00\x00\x00' -tRp16693 -sVkingdom -p16694 -g24 -(g26 -S'\x9a\x12\x00\x00\x00\x00\x00\x00' -tRp16695 -sVkills -p16696 -g24 -(g26 -S'\x92\x12\x00\x00\x00\x00\x00\x00' -tRp16697 -sVdelhi -p16698 -g24 -(g26 -S'\x1e\t\x00\x00\x00\x00\x00\x00' -tRp16699 -sVfridge -p16700 -g24 -(g26 -S'\xe4\r\x00\x00\x00\x00\x00\x00' -tRp16701 -sVinflation -p16702 -g24 -(g26 -S'\x07\x11\x00\x00\x00\x00\x00\x00' -tRp16703 -sVschedules -p16704 -g24 -(g26 -S'\xd1\x1d\x00\x00\x00\x00\x00\x00' -tRp16705 -sVaccepted -p16706 -g24 -(g26 -S'!\x00\x00\x00\x00\x00\x00\x00' -tRp16707 -sVfurniture -p16708 -g24 -(g26 -S'\x0f\x0e\x00\x00\x00\x00\x00\x00' -tRp16709 -sVacute -p16710 -g24 -(g26 -S'i\x00\x00\x00\x00\x00\x00\x00' -tRp16711 -sVdepot -p16712 -g24 -(g26 -S'N\t\x00\x00\x00\x00\x00\x00' -tRp16713 -sVparticle -p16714 -g24 -(g26 -S'C\x18\x00\x00\x00\x00\x00\x00' -tRp16715 -sVkennedy -p16716 -g24 -(g26 -S'w\x12\x00\x00\x00\x00\x00\x00' -tRp16717 -sVphotographs -p16718 -g24 -(g26 -S'\xfb\x18\x00\x00\x00\x00\x00\x00' -tRp16719 -sVpatrick -p16720 -g24 -(g26 -S'n\x18\x00\x00\x00\x00\x00\x00' -tRp16721 -sVreduces -p16722 -g24 -(g26 -S'\xc7\x1b\x00\x00\x00\x00\x00\x00' -tRp16723 -sVbracelet -p16724 -g24 -(g26 -S'\x14\x04\x00\x00\x00\x00\x00\x00' -tRp16725 -sVdonations -p16726 -g24 -(g26 -S'X\n\x00\x00\x00\x00\x00\x00' -tRp16727 -sVtower -p16728 -g24 -(g26 -S'\x85"\x00\x00\x00\x00\x00\x00' -tRp16729 -sVreduced -p16730 -g24 -(g26 -S'\xc6\x1b\x00\x00\x00\x00\x00\x00' -tRp16731 -sVjewellery -p16732 -g24 -(g26 -S'\x15\x12\x00\x00\x00\x00\x00\x00' -tRp16733 -sVmadrid -p16734 -g24 -(g26 -S'>\x14\x00\x00\x00\x00\x00\x00' -tRp16735 -sVpacific -p16736 -g24 -(g26 -S'\xf3\x17\x00\x00\x00\x00\x00\x00' -tRp16737 -sValt -p16738 -g24 -(g26 -S"'\x01\x00\x00\x00\x00\x00\x00" -tRp16739 -sVrespect -p16740 -g24 -(g26 -S'\x90\x1c\x00\x00\x00\x00\x00\x00' -tRp16741 -sVtreatments -p16742 -g24 -(g26 -S'\xe4"\x00\x00\x00\x00\x00\x00' -tRp16743 -sVdevelopmental -p16744 -g24 -(g26 -S'\x8e\t\x00\x00\x00\x00\x00\x00' -tRp16745 -sVcaribbean -p16746 -g24 -(g26 -S'\x10\x05\x00\x00\x00\x00\x00\x00' -tRp16747 -sVmood -p16748 -g24 -(g26 -S'\xe7\x15\x00\x00\x00\x00\x00\x00' -tRp16749 -sVluxembourg -p16750 -g24 -(g26 -S')\x14\x00\x00\x00\x00\x00\x00' -tRp16751 -sVmoon -p16752 -g24 -(g26 -S'\xe8\x15\x00\x00\x00\x00\x00\x00' -tRp16753 -sVprovides -p16754 -g24 -(g26 -S'\xc0\x1a\x00\x00\x00\x00\x00\x00' -tRp16755 -sVprovider -p16756 -g24 -(g26 -S'\xbe\x1a\x00\x00\x00\x00\x00\x00' -tRp16757 -sVporter -p16758 -g24 -(g26 -S'\xaa\x19\x00\x00\x00\x00\x00\x00' -tRp16759 -sVpoem -p16760 -g24 -(g26 -S'w\x19\x00\x00\x00\x00\x00\x00' -tRp16761 -sVnails -p16762 -g24 -(g26 -S'M\x16\x00\x00\x00\x00\x00\x00' -tRp16763 -sVcommunicate -p16764 -g24 -(g26 -S'\xd7\x06\x00\x00\x00\x00\x00\x00' -tRp16765 -sVnudist -p16766 -g24 -(g26 -S'\x08\x17\x00\x00\x00\x00\x00\x00' -tRp16767 -sVoutreach -p16768 -g24 -(g26 -S'\xd9\x17\x00\x00\x00\x00\x00\x00' -tRp16769 -sVpurse -p16770 -g24 -(g26 -S'\xf4\x1a\x00\x00\x00\x00\x00\x00' -tRp16771 -sVbeaches -p16772 -g24 -(g26 -S'\x17\x03\x00\x00\x00\x00\x00\x00' -tRp16773 -sVoo -p16774 -g24 -(g26 -S'}\x17\x00\x00\x00\x00\x00\x00' -tRp16775 -sVom -p16776 -g24 -(g26 -S'r\x17\x00\x00\x00\x00\x00\x00' -tRp16777 -sVol -p16778 -g24 -(g26 -S'i\x17\x00\x00\x00\x00\x00\x00' -tRp16779 -sVok -p16780 -g24 -(g26 -S'f\x17\x00\x00\x00\x00\x00\x00' -tRp16781 -sVoh -p16782 -g24 -(g26 -S'b\x17\x00\x00\x00\x00\x00\x00' -tRp16783 -sVog -p16784 -g24 -(g26 -S'a\x17\x00\x00\x00\x00\x00\x00' -tRp16785 -sVoe -p16786 -g24 -(g26 -S'M\x17\x00\x00\x00\x00\x00\x00' -tRp16787 -sVdiscussed -p16788 -g24 -(g26 -S'\xfa\t\x00\x00\x00\x00\x00\x00' -tRp16789 -sVob -p16790 -g24 -(g26 -S'%\x17\x00\x00\x00\x00\x00\x00' -tRp16791 -sVmedicare -p16792 -g24 -(g26 -S'\xfa\x14\x00\x00\x00\x00\x00\x00' -tRp16793 -sVstand -p16794 -g24 -(g26 -S'\x06 \x00\x00\x00\x00\x00\x00' -tRp16795 -sVdecent -p16796 -g24 -(g26 -S'\xea\x08\x00\x00\x00\x00\x00\x00' -tRp16797 -sVconcentrations -p16798 -g24 -(g26 -S'\x1d\x07\x00\x00\x00\x00\x00\x00' -tRp16799 -sVou -p16800 -g24 -(g26 -S'\xcb\x17\x00\x00\x00\x00\x00\x00' -tRp16801 -sVdiscusses -p16802 -g24 -(g26 -S'\xfb\t\x00\x00\x00\x00\x00\x00' -tRp16803 -sVos -p16804 -g24 -(g26 -S'\xc7\x17\x00\x00\x00\x00\x00\x00' -tRp16805 -sVop -p16806 -g24 -(g26 -S'\x80\x17\x00\x00\x00\x00\x00\x00' -tRp16807 -sVamber -p16808 -g24 -(g26 -S'7\x01\x00\x00\x00\x00\x00\x00' -tRp16809 -sVtribe -p16810 -g24 -(g26 -S'\xf3"\x00\x00\x00\x00\x00\x00' -tRp16811 -sVladies -p16812 -g24 -(g26 -S'\xce\x12\x00\x00\x00\x00\x00\x00' -tRp16813 -sVcambridge -p16814 -g24 -(g26 -S'\xd3\x04\x00\x00\x00\x00\x00\x00' -tRp16815 -sVreactions -p16816 -g24 -(g26 -S'z\x1b\x00\x00\x00\x00\x00\x00' -tRp16817 -sVinstruments -p16818 -g24 -(g26 -S'U\x11\x00\x00\x00\x00\x00\x00' -tRp16819 -sVaccounts -p16820 -g24 -(g26 -S':\x00\x00\x00\x00\x00\x00\x00' -tRp16821 -sVdetermine -p16822 -g24 -(g26 -S'~\t\x00\x00\x00\x00\x00\x00' -tRp16823 -sVdischarge -p16824 -g24 -(g26 -S'\xe6\t\x00\x00\x00\x00\x00\x00' -tRp16825 -sVburton -p16826 -g24 -(g26 -S'\x97\x04\x00\x00\x00\x00\x00\x00' -tRp16827 -sVmsgstr -p16828 -g24 -(g26 -S' \x16\x00\x00\x00\x00\x00\x00' -tRp16829 -sVstrictly -p16830 -g24 -(g26 -S'p \x00\x00\x00\x00\x00\x00' -tRp16831 -sVhazards -p16832 -g24 -(g26 -S'\x83\x0f\x00\x00\x00\x00\x00\x00' -tRp16833 -sValleged -p16834 -g24 -(g26 -S'\x16\x01\x00\x00\x00\x00\x00\x00' -tRp16835 -sVchristianity -p16836 -g24 -(g26 -S'\xf2\x05\x00\x00\x00\x00\x00\x00' -tRp16837 -sVstrict -p16838 -g24 -(g26 -S'o \x00\x00\x00\x00\x00\x00' -tRp16839 -sVcultures -p16840 -g24 -(g26 -S's\x08\x00\x00\x00\x00\x00\x00' -tRp16841 -sVvalley -p16842 -g24 -(g26 -S'\xce#\x00\x00\x00\x00\x00\x00' -tRp16843 -sVfish -p16844 -g24 -(g26 -S'7\r\x00\x00\x00\x00\x00\x00' -tRp16845 -sVmorrison -p16846 -g24 -(g26 -S'\xef\x15\x00\x00\x00\x00\x00\x00' -tRp16847 -sVfundamentals -p16848 -g24 -(g26 -S'\x03\x0e\x00\x00\x00\x00\x00\x00' -tRp16849 -sVregard -p16850 -g24 -(g26 -S'\xea\x1b\x00\x00\x00\x00\x00\x00' -tRp16851 -sVjun -p16852 -g24 -(g26 -S'S\x12\x00\x00\x00\x00\x00\x00' -tRp16853 -sVjul -p16854 -g24 -(g26 -S'L\x12\x00\x00\x00\x00\x00\x00' -tRp16855 -sVcabinet -p16856 -g24 -(g26 -S'\xb3\x04\x00\x00\x00\x00\x00\x00' -tRp16857 -sVpromote -p16858 -g24 -(g26 -S'\x8d\x1a\x00\x00\x00\x00\x00\x00' -tRp16859 -sVshannon -p16860 -g24 -(g26 -S'\x8e\x1e\x00\x00\x00\x00\x00\x00' -tRp16861 -sVfaster -p16862 -g24 -(g26 -S'\xba\x0c\x00\x00\x00\x00\x00\x00' -tRp16863 -sVapplying -p16864 -g24 -(g26 -S'\xb6\x01\x00\x00\x00\x00\x00\x00' -tRp16865 -sVwholesale -p16866 -g24 -(g26 -S'\xff$\x00\x00\x00\x00\x00\x00' -tRp16867 -sVnightlife -p16868 -g24 -(g26 -S'\xc2\x16\x00\x00\x00\x00\x00\x00' -tRp16869 -sVgrass -p16870 -g24 -(g26 -S'\xe4\x0e\x00\x00\x00\x00\x00\x00' -tRp16871 -sVstrongly -p16872 -g24 -(g26 -S'| \x00\x00\x00\x00\x00\x00' -tRp16873 -sVtoilet -p16874 -g24 -(g26 -S'W"\x00\x00\x00\x00\x00\x00' -tRp16875 -sVtaylor -p16876 -g24 -(g26 -S'z!\x00\x00\x00\x00\x00\x00' -tRp16877 -sVcontributors -p16878 -g24 -(g26 -S'\xb4\x07\x00\x00\x00\x00\x00\x00' -tRp16879 -sVcinema -p16880 -g24 -(g26 -S'\t\x06\x00\x00\x00\x00\x00\x00' -tRp16881 -sVtaste -p16882 -g24 -(g26 -S's!\x00\x00\x00\x00\x00\x00' -tRp16883 -sVyacht -p16884 -g24 -(g26 -S'\x91%\x00\x00\x00\x00\x00\x00' -tRp16885 -sVminneapolis -p16886 -g24 -(g26 -S'\x85\x15\x00\x00\x00\x00\x00\x00' -tRp16887 -sVcbs -p16888 -g24 -(g26 -S'O\x05\x00\x00\x00\x00\x00\x00' -tRp16889 -sVbritain -p16890 -g24 -(g26 -S'G\x04\x00\x00\x00\x00\x00\x00' -tRp16891 -sVintro -p16892 -g24 -(g26 -S'\x8f\x11\x00\x00\x00\x00\x00\x00' -tRp16893 -sVpolitics -p16894 -g24 -(g26 -S'\x8d\x19\x00\x00\x00\x00\x00\x00' -tRp16895 -sVadsl -p16896 -g24 -(g26 -S'\x9c\x00\x00\x00\x00\x00\x00\x00' -tRp16897 -sVbishop -p16898 -g24 -(g26 -S'\x96\x03\x00\x00\x00\x00\x00\x00' -tRp16899 -sVincorrect -p16900 -g24 -(g26 -S'\xd4\x10\x00\x00\x00\x00\x00\x00' -tRp16901 -sVproudly -p16902 -g24 -(g26 -S'\xb7\x1a\x00\x00\x00\x00\x00\x00' -tRp16903 -sVheather -p16904 -g24 -(g26 -S'\xa1\x0f\x00\x00\x00\x00\x00\x00' -tRp16905 -sVdeserve -p16906 -g24 -(g26 -S'_\t\x00\x00\x00\x00\x00\x00' -tRp16907 -sVrubber -p16908 -g24 -(g26 -S'X\x1d\x00\x00\x00\x00\x00\x00' -tRp16909 -sVroses -p16910 -g24 -(g26 -S'7\x1d\x00\x00\x00\x00\x00\x00' -tRp16911 -sVannouncements -p16912 -g24 -(g26 -S'y\x01\x00\x00\x00\x00\x00\x00' -tRp16913 -sVtrash -p16914 -g24 -(g26 -S'\xd0"\x00\x00\x00\x00\x00\x00' -tRp16915 -sVsufficient -p16916 -g24 -(g26 -S'\xc5 \x00\x00\x00\x00\x00\x00' -tRp16917 -sVdeviation -p16918 -g24 -(g26 -S'\x92\t\x00\x00\x00\x00\x00\x00' -tRp16919 -sVrequested -p16920 -g24 -(g26 -S'k\x1c\x00\x00\x00\x00\x00\x00' -tRp16921 -sVbriefly -p16922 -g24 -(g26 -S'=\x04\x00\x00\x00\x00\x00\x00' -tRp16923 -sVchampionship -p16924 -g24 -(g26 -S'\x8d\x05\x00\x00\x00\x00\x00\x00' -tRp16925 -sVcollaborative -p16926 -g24 -(g26 -S'\x8b\x06\x00\x00\x00\x00\x00\x00' -tRp16927 -sVseparate -p16928 -g24 -(g26 -S'T\x1e\x00\x00\x00\x00\x00\x00' -tRp16929 -sVsymbol -p16930 -g24 -(g26 -S'5!\x00\x00\x00\x00\x00\x00' -tRp16931 -sVcove -p16932 -g24 -(g26 -S'&\x08\x00\x00\x00\x00\x00\x00' -tRp16933 -sVcordless -p16934 -g24 -(g26 -S'\xea\x07\x00\x00\x00\x00\x00\x00' -tRp16935 -sVflower -p16936 -g24 -(g26 -S'g\r\x00\x00\x00\x00\x00\x00' -tRp16937 -sVhwy -p16938 -g24 -(g26 -S'c\x10\x00\x00\x00\x00\x00\x00' -tRp16939 -sVincluded -p16940 -g24 -(g26 -S'\xca\x10\x00\x00\x00\x00\x00\x00' -tRp16941 -sVbrass -p16942 -g24 -(g26 -S'#\x04\x00\x00\x00\x00\x00\x00' -tRp16943 -sVspouse -p16944 -g24 -(g26 -S'\xe1\x1f\x00\x00\x00\x00\x00\x00' -tRp16945 -sVfinals -p16946 -g24 -(g26 -S'\x16\r\x00\x00\x00\x00\x00\x00' -tRp16947 -sVpsychology -p16948 -g24 -(g26 -S'\xcf\x1a\x00\x00\x00\x00\x00\x00' -tRp16949 -sVfarms -p16950 -g24 -(g26 -S'\xb6\x0c\x00\x00\x00\x00\x00\x00' -tRp16951 -sVcalls -p16952 -g24 -(g26 -S'\xce\x04\x00\x00\x00\x00\x00\x00' -tRp16953 -sVwife -p16954 -g24 -(g26 -S'\n%\x00\x00\x00\x00\x00\x00' -tRp16955 -sVinvest -p16956 -g24 -(g26 -S'\x9a\x11\x00\x00\x00\x00\x00\x00' -tRp16957 -sVodds -p16958 -g24 -(g26 -S'L\x17\x00\x00\x00\x00\x00\x00' -tRp16959 -sVwifi -p16960 -g24 -(g26 -S'\x0b%\x00\x00\x00\x00\x00\x00' -tRp16961 -sVcurve -p16962 -g24 -(g26 -S'\x84\x08\x00\x00\x00\x00\x00\x00' -tRp16963 -sVbarcelona -p16964 -g24 -(g26 -S'\xe7\x02\x00\x00\x00\x00\x00\x00' -tRp16965 -sVdirectors -p16966 -g24 -(g26 -S'\xd9\t\x00\x00\x00\x00\x00\x00' -tRp16967 -sVoriental -p16968 -g24 -(g26 -S'\xbe\x17\x00\x00\x00\x00\x00\x00' -tRp16969 -sVmissouri -p16970 -g24 -(g26 -S'\x9b\x15\x00\x00\x00\x00\x00\x00' -tRp16971 -sVapparel -p16972 -g24 -(g26 -S'\xa0\x01\x00\x00\x00\x00\x00\x00' -tRp16973 -sVdist -p16974 -g24 -(g26 -S'\x12\n\x00\x00\x00\x00\x00\x00' -tRp16975 -sVlace -p16976 -g24 -(g26 -S'\xca\x12\x00\x00\x00\x00\x00\x00' -tRp16977 -sVchinese -p16978 -g24 -(g26 -S'\xe1\x05\x00\x00\x00\x00\x00\x00' -tRp16979 -sVali -p16980 -g24 -(g26 -S'\x0c\x01\x00\x00\x00\x00\x00\x00' -tRp16981 -sVhamburg -p16982 -g24 -(g26 -S'A\x0f\x00\x00\x00\x00\x00\x00' -tRp16983 -sVala -p16984 -g24 -(g26 -S'\xf5\x00\x00\x00\x00\x00\x00\x00' -tRp16985 -sVsurgical -p16986 -g24 -(g26 -S'\x04!\x00\x00\x00\x00\x00\x00' -tRp16987 -sVdisc -p16988 -g24 -(g26 -S'\xe5\t\x00\x00\x00\x00\x00\x00' -tRp16989 -sVpty -p16990 -g24 -(g26 -S'\xd2\x1a\x00\x00\x00\x00\x00\x00' -tRp16991 -sVdish -p16992 -g24 -(g26 -S'\x01\n\x00\x00\x00\x00\x00\x00' -tRp16993 -sVfollow -p16994 -g24 -(g26 -S'\x81\r\x00\x00\x00\x00\x00\x00' -tRp16995 -sVmeditation -p16996 -g24 -(g26 -S'\x00\x15\x00\x00\x00\x00\x00\x00' -tRp16997 -sVdisk -p16998 -g24 -(g26 -S'\x03\n\x00\x00\x00\x00\x00\x00' -tRp16999 -sVpts -p17000 -g24 -(g26 -S'\xd1\x1a\x00\x00\x00\x00\x00\x00' -tRp17001 -sVsynthetic -p17002 -g24 -(g26 -S'B!\x00\x00\x00\x00\x00\x00' -tRp17003 -sVapartment -p17004 -g24 -(g26 -S'\x99\x01\x00\x00\x00\x00\x00\x00' -tRp17005 -sVremarkable -p17006 -g24 -(g26 -S')\x1c\x00\x00\x00\x00\x00\x00' -tRp17007 -sVprovisions -p17008 -g24 -(g26 -S'\xc6\x1a\x00\x00\x00\x00\x00\x00' -tRp17009 -sVacting -p17010 -g24 -(g26 -S'Y\x00\x00\x00\x00\x00\x00\x00' -tRp17011 -sVopportunities -p17012 -g24 -(g26 -S'\x94\x17\x00\x00\x00\x00\x00\x00' -tRp17013 -sVremoval -p17014 -g24 -(g26 -S'4\x1c\x00\x00\x00\x00\x00\x00' -tRp17015 -sVaaron -p17016 -g24 -(g26 -S'\x02\x00\x00\x00\x00\x00\x00\x00' -tRp17017 -sVprogram -p17018 -g24 -(g26 -S'w\x1a\x00\x00\x00\x00\x00\x00' -tRp17019 -sVdairy -p17020 -g24 -(g26 -S'\xa0\x08\x00\x00\x00\x00\x00\x00' -tRp17021 -sVcrest -p17022 -g24 -(g26 -S'K\x08\x00\x00\x00\x00\x00\x00' -tRp17023 -sVcelebs -p17024 -g24 -(g26 -S']\x05\x00\x00\x00\x00\x00\x00' -tRp17025 -sVactivities -p17026 -g24 -(g26 -S'a\x00\x00\x00\x00\x00\x00\x00' -tRp17027 -sVfax -p17028 -g24 -(g26 -S'\xc7\x0c\x00\x00\x00\x00\x00\x00' -tRp17029 -sVwoman -p17030 -g24 -(g26 -S'>%\x00\x00\x00\x00\x00\x00' -tRp17031 -sVincorporate -p17032 -g24 -(g26 -S'\xd2\x10\x00\x00\x00\x00\x00\x00' -tRp17033 -sVworse -p17034 -g24 -(g26 -S'c%\x00\x00\x00\x00\x00\x00' -tRp17035 -sVegyptian -p17036 -g24 -(g26 -S'\x13\x0b\x00\x00\x00\x00\x00\x00' -tRp17037 -sVinfringement -p17038 -g24 -(g26 -S'\x14\x11\x00\x00\x00\x00\x00\x00' -tRp17039 -sValternatives -p17040 -g24 -(g26 -S'-\x01\x00\x00\x00\x00\x00\x00' -tRp17041 -sVfaq -p17042 -g24 -(g26 -S'\xad\x0c\x00\x00\x00\x00\x00\x00' -tRp17043 -sVfat -p17044 -g24 -(g26 -S'\xbc\x0c\x00\x00\x00\x00\x00\x00' -tRp17045 -sVsimpsons -p17046 -g24 -(g26 -S'\xf9\x1e\x00\x00\x00\x00\x00\x00' -tRp17047 -sVsons -p17048 -g24 -(g26 -S'{\x1f\x00\x00\x00\x00\x00\x00' -tRp17049 -sVfan -p17050 -g24 -(g26 -S'\xa8\x0c\x00\x00\x00\x00\x00\x00' -tRp17051 -sVawful -p17052 -g24 -(g26 -S'\xaa\x02\x00\x00\x00\x00\x00\x00' -tRp17053 -sVsony -p17054 -g24 -(g26 -S'|\x1f\x00\x00\x00\x00\x00\x00' -tRp17055 -sVticket -p17056 -g24 -(g26 -S'$"\x00\x00\x00\x00\x00\x00' -tRp17057 -sVenter -p17058 -g24 -(g26 -S'\x8f\x0b\x00\x00\x00\x00\x00\x00' -tRp17059 -sVtreating -p17060 -g24 -(g26 -S'\xe2"\x00\x00\x00\x00\x00\x00' -tRp17061 -sVlist -p17062 -g24 -(g26 -S'\xa6\x13\x00\x00\x00\x00\x00\x00' -tRp17063 -sVlesbians -p17064 -g24 -(g26 -S'N\x13\x00\x00\x00\x00\x00\x00' -tRp17065 -sVlisa -p17066 -g24 -(g26 -S'\xa5\x13\x00\x00\x00\x00\x00\x00' -tRp17067 -sValign -p17068 -g24 -(g26 -S'\x10\x01\x00\x00\x00\x00\x00\x00' -tRp17069 -sVprogramme -p17070 -g24 -(g26 -S'x\x1a\x00\x00\x00\x00\x00\x00' -tRp17071 -sVrats -p17072 -g24 -(g26 -S'l\x1b\x00\x00\x00\x00\x00\x00' -tRp17073 -sVtea -p17074 -g24 -(g26 -S'\x81!\x00\x00\x00\x00\x00\x00' -tRp17075 -sVted -p17076 -g24 -(g26 -S'\x95!\x00\x00\x00\x00\x00\x00' -tRp17077 -sVtee -p17078 -g24 -(g26 -S'\x97!\x00\x00\x00\x00\x00\x00' -tRp17079 -sVtex -p17080 -g24 -(g26 -S'\xcf!\x00\x00\x00\x00\x00\x00' -tRp17081 -sVrate -p17082 -g24 -(g26 -S'd\x1b\x00\x00\x00\x00\x00\x00' -tRp17083 -sVinvention -p17084 -g24 -(g26 -S'\x98\x11\x00\x00\x00\x00\x00\x00' -tRp17085 -sVdesign -p17086 -g24 -(g26 -S'`\t\x00\x00\x00\x00\x00\x00' -tRp17087 -sVnbc -p17088 -g24 -(g26 -S't\x16\x00\x00\x00\x00\x00\x00' -tRp17089 -sVnba -p17090 -g24 -(g26 -S's\x16\x00\x00\x00\x00\x00\x00' -tRp17091 -sVfunctioning -p17092 -g24 -(g26 -S'\xff\r\x00\x00\x00\x00\x00\x00' -tRp17093 -sVsue -p17094 -g24 -(g26 -S'\xc1 \x00\x00\x00\x00\x00\x00' -tRp17095 -sVimported -p17096 -g24 -(g26 -S'\xb1\x10\x00\x00\x00\x00\x00\x00' -tRp17097 -sVsub -p17098 -g24 -(g26 -S'\x98 \x00\x00\x00\x00\x00\x00' -tRp17099 -sVdeeply -p17100 -g24 -(g26 -S'\x00\t\x00\x00\x00\x00\x00\x00' -tRp17101 -sVsum -p17102 -g24 -(g26 -S'\xd6 \x00\x00\x00\x00\x00\x00' -tRp17103 -sVanniversary -p17104 -g24 -(g26 -S's\x01\x00\x00\x00\x00\x00\x00' -tRp17105 -sVversion -p17106 -g24 -(g26 -S'\x0c$\x00\x00\x00\x00\x00\x00' -tRp17107 -sVattitudes -p17108 -g24 -(g26 -S'g\x02\x00\x00\x00\x00\x00\x00' -tRp17109 -sVsur -p17110 -g24 -(g26 -S'\xf9 \x00\x00\x00\x00\x00\x00' -tRp17111 -sVracing -p17112 -g24 -(g26 -S'5\x1b\x00\x00\x00\x00\x00\x00' -tRp17113 -sVguns -p17114 -g24 -(g26 -S',\x0f\x00\x00\x00\x00\x00\x00' -tRp17115 -sVdevoted -p17116 -g24 -(g26 -S'\x97\t\x00\x00\x00\x00\x00\x00' -tRp17117 -sVchristian -p17118 -g24 -(g26 -S'\xf1\x05\x00\x00\x00\x00\x00\x00' -tRp17119 -sVtags -p17120 -g24 -(g26 -S'S!\x00\x00\x00\x00\x00\x00' -tRp17121 -sVeligibility -p17122 -g24 -(g26 -S'+\x0b\x00\x00\x00\x00\x00\x00' -tRp17123 -sVleeds -p17124 -g24 -(g26 -S'1\x13\x00\x00\x00\x00\x00\x00' -tRp17125 -sVandrews -p17126 -g24 -(g26 -S'_\x01\x00\x00\x00\x00\x00\x00' -tRp17127 -sVrelaxation -p17128 -g24 -(g26 -S'\x11\x1c\x00\x00\x00\x00\x00\x00' -tRp17129 -sVdirections -p17130 -g24 -(g26 -S'\xd4\t\x00\x00\x00\x00\x00\x00' -tRp17131 -sVequations -p17132 -g24 -(g26 -S'\xb3\x0b\x00\x00\x00\x00\x00\x00' -tRp17133 -sVtragedy -p17134 -g24 -(g26 -S'\xa5"\x00\x00\x00\x00\x00\x00' -tRp17135 -sVnaval -p17136 -g24 -(g26 -S'm\x16\x00\x00\x00\x00\x00\x00' -tRp17137 -sVextraordinary -p17138 -g24 -(g26 -S'x\x0c\x00\x00\x00\x00\x00\x00' -tRp17139 -sVbriefs -p17140 -g24 -(g26 -S'>\x04\x00\x00\x00\x00\x00\x00' -tRp17141 -sVallows -p17142 -g24 -(g26 -S'!\x01\x00\x00\x00\x00\x00\x00' -tRp17143 -sVminiature -p17144 -g24 -(g26 -S'|\x15\x00\x00\x00\x00\x00\x00' -tRp17145 -sVsupplements -p17146 -g24 -(g26 -S'\xeb \x00\x00\x00\x00\x00\x00' -tRp17147 -sVcamcorder -p17148 -g24 -(g26 -S'\xd4\x04\x00\x00\x00\x00\x00\x00' -tRp17149 -sVproxy -p17150 -g24 -(g26 -S'\xc7\x1a\x00\x00\x00\x00\x00\x00' -tRp17151 -sVdisposition -p17152 -g24 -(g26 -S'\x0f\n\x00\x00\x00\x00\x00\x00' -tRp17153 -sVsuddenly -p17154 -g24 -(g26 -S'\xc0 \x00\x00\x00\x00\x00\x00' -tRp17155 -sVscreens -p17156 -g24 -(g26 -S'\xf0\x1d\x00\x00\x00\x00\x00\x00' -tRp17157 -sVtexts -p17158 -g24 -(g26 -S'\xd6!\x00\x00\x00\x00\x00\x00' -tRp17159 -sVsemester -p17160 -g24 -(g26 -S':\x1e\x00\x00\x00\x00\x00\x00' -tRp17161 -sVfootwear -p17162 -g24 -(g26 -S'\x8e\r\x00\x00\x00\x00\x00\x00' -tRp17163 -sVappliances -p17164 -g24 -(g26 -S'\xad\x01\x00\x00\x00\x00\x00\x00' -tRp17165 -sVflorence -p17166 -g24 -(g26 -S'a\r\x00\x00\x00\x00\x00\x00' -tRp17167 -sVproceed -p17168 -g24 -(g26 -S'X\x1a\x00\x00\x00\x00\x00\x00' -tRp17169 -sVmarkets -p17170 -g24 -(g26 -S'\xa3\x14\x00\x00\x00\x00\x00\x00' -tRp17171 -sVminor -p17172 -g24 -(g26 -S'\x88\x15\x00\x00\x00\x00\x00\x00' -tRp17173 -sVhorses -p17174 -g24 -(g26 -S'!\x10\x00\x00\x00\x00\x00\x00' -tRp17175 -sVflat -p17176 -g24 -(g26 -S'M\r\x00\x00\x00\x00\x00\x00' -tRp17177 -sVisrael -p17178 -g24 -(g26 -S'\xd0\x11\x00\x00\x00\x00\x00\x00' -tRp17179 -sVknows -p17180 -g24 -(g26 -S'\xb4\x12\x00\x00\x00\x00\x00\x00' -tRp17181 -sVdefinition -p17182 -g24 -(g26 -S'\x12\t\x00\x00\x00\x00\x00\x00' -tRp17183 -sVoperators -p17184 -g24 -(g26 -S'\x8f\x17\x00\x00\x00\x00\x00\x00' -tRp17185 -sVpairs -p17186 -g24 -(g26 -S'\x0b\x18\x00\x00\x00\x00\x00\x00' -tRp17187 -sVjvc -p17188 -g24 -(g26 -S'`\x12\x00\x00\x00\x00\x00\x00' -tRp17189 -sVflag -p17190 -g24 -(g26 -S'G\r\x00\x00\x00\x00\x00\x00' -tRp17191 -sVfloyd -p17192 -g24 -(g26 -S'j\r\x00\x00\x00\x00\x00\x00' -tRp17193 -sVbasically -p17194 -g24 -(g26 -S'\xfb\x02\x00\x00\x00\x00\x00\x00' -tRp17195 -sVknown -p17196 -g24 -(g26 -S'\xb3\x12\x00\x00\x00\x00\x00\x00' -tRp17197 -sVglad -p17198 -g24 -(g26 -S'\x92\x0e\x00\x00\x00\x00\x00\x00' -tRp17199 -sVeden -p17200 -g24 -(g26 -S'\xed\n\x00\x00\x00\x00\x00\x00' -tRp17201 -sVequation -p17202 -g24 -(g26 -S'\xb2\x0b\x00\x00\x00\x00\x00\x00' -tRp17203 -sVprophet -p17204 -g24 -(g26 -S'\x9c\x1a\x00\x00\x00\x00\x00\x00' -tRp17205 -sVcomputers -p17206 -g24 -(g26 -S'\x19\x07\x00\x00\x00\x00\x00\x00' -tRp17207 -sVchallenging -p17208 -g24 -(g26 -S'\x87\x05\x00\x00\x00\x00\x00\x00' -tRp17209 -sVbrown -p17210 -g24 -(g26 -S'^\x04\x00\x00\x00\x00\x00\x00' -tRp17211 -sVprotective -p17212 -g24 -(g26 -S'\xaf\x1a\x00\x00\x00\x00\x00\x00' -tRp17213 -sVniagara -p17214 -g24 -(g26 -S'\xb7\x16\x00\x00\x00\x00\x00\x00' -tRp17215 -sVarise -p17216 -g24 -(g26 -S'\xea\x01\x00\x00\x00\x00\x00\x00' -tRp17217 -sVpond -p17218 -g24 -(g26 -S'\x96\x19\x00\x00\x00\x00\x00\x00' -tRp17219 -sVairplane -p17220 -g24 -(g26 -S'\xee\x00\x00\x00\x00\x00\x00\x00' -tRp17221 -sVinfluenced -p17222 -g24 -(g26 -S'\t\x11\x00\x00\x00\x00\x00\x00' -tRp17223 -sVcourt -p17224 -g24 -(g26 -S'#\x08\x00\x00\x00\x00\x00\x00' -tRp17225 -sVgoal -p17226 -g24 -(g26 -S'\xa6\x0e\x00\x00\x00\x00\x00\x00' -tRp17227 -sVordinance -p17228 -g24 -(g26 -S'\xac\x17\x00\x00\x00\x00\x00\x00' -tRp17229 -sVbreaking -p17230 -g24 -(g26 -S',\x04\x00\x00\x00\x00\x00\x00' -tRp17231 -sVoccasionally -p17232 -g24 -(g26 -S'<\x17\x00\x00\x00\x00\x00\x00' -tRp17233 -sVinfluences -p17234 -g24 -(g26 -S'\n\x11\x00\x00\x00\x00\x00\x00' -tRp17235 -sVmotels -p17236 -g24 -(g26 -S'\xf7\x15\x00\x00\x00\x00\x00\x00' -tRp17237 -sVexplains -p17238 -g24 -(g26 -S'X\x0c\x00\x00\x00\x00\x00\x00' -tRp17239 -sVgoat -p17240 -g24 -(g26 -S'\xa8\x0e\x00\x00\x00\x00\x00\x00' -tRp17241 -sVsandwich -p17242 -g24 -(g26 -S'\x9b\x1d\x00\x00\x00\x00\x00\x00' -tRp17243 -sVokay -p17244 -g24 -(g26 -S'g\x17\x00\x00\x00\x00\x00\x00' -tRp17245 -sValgebra -p17246 -g24 -(g26 -S'\x08\x01\x00\x00\x00\x00\x00\x00' -tRp17247 -sVsponsors -p17248 -g24 -(g26 -S'\xd9\x1f\x00\x00\x00\x00\x00\x00' -tRp17249 -sVreflect -p17250 -g24 -(g26 -S'\xdb\x1b\x00\x00\x00\x00\x00\x00' -tRp17251 -sVcatalog -p17252 -g24 -(g26 -S'9\x05\x00\x00\x00\x00\x00\x00' -tRp17253 -sVdisable -p17254 -g24 -(g26 -S'\xe0\t\x00\x00\x00\x00\x00\x00' -tRp17255 -sVbrands -p17256 -g24 -(g26 -S'!\x04\x00\x00\x00\x00\x00\x00' -tRp17257 -sVadventure -p17258 -g24 -(g26 -S'\xa5\x00\x00\x00\x00\x00\x00\x00' -tRp17259 -sVsoftball -p17260 -g24 -(g26 -S'_\x1f\x00\x00\x00\x00\x00\x00' -tRp17261 -sVtrademark -p17262 -g24 -(g26 -S'\x9c"\x00\x00\x00\x00\x00\x00' -tRp17263 -sVshort -p17264 -g24 -(g26 -S'\xc3\x1e\x00\x00\x00\x00\x00\x00' -tRp17265 -sVsusan -p17266 -g24 -(g26 -S'\x15!\x00\x00\x00\x00\x00\x00' -tRp17267 -sVprefers -p17268 -g24 -(g26 -S'\x00\x1a\x00\x00\x00\x00\x00\x00' -tRp17269 -sVdeparture -p17270 -g24 -(g26 -S'E\t\x00\x00\x00\x00\x00\x00' -tRp17271 -sVsupervision -p17272 -g24 -(g26 -S'\xe6 \x00\x00\x00\x00\x00\x00' -tRp17273 -sVheight -p17274 -g24 -(g26 -S'\xa8\x0f\x00\x00\x00\x00\x00\x00' -tRp17275 -sVshore -p17276 -g24 -(g26 -S'\xc2\x1e\x00\x00\x00\x00\x00\x00' -tRp17277 -sVgrande -p17278 -g24 -(g26 -S'\xd9\x0e\x00\x00\x00\x00\x00\x00' -tRp17279 -sVarizona -p17280 -g24 -(g26 -S'\xec\x01\x00\x00\x00\x00\x00\x00' -tRp17281 -sVrentals -p17282 -g24 -(g26 -S'B\x1c\x00\x00\x00\x00\x00\x00' -tRp17283 -sVballoon -p17284 -g24 -(g26 -S'\xce\x02\x00\x00\x00\x00\x00\x00' -tRp17285 -sVseptember -p17286 -g24 -(g26 -S'Y\x1e\x00\x00\x00\x00\x00\x00' -tRp17287 -sVessence -p17288 -g24 -(g26 -S'\xcb\x0b\x00\x00\x00\x00\x00\x00' -tRp17289 -sVmission -p17290 -g24 -(g26 -S'\x98\x15\x00\x00\x00\x00\x00\x00' -tRp17291 -sVdisabled -p17292 -g24 -(g26 -S'\xe1\t\x00\x00\x00\x00\x00\x00' -tRp17293 -sVlogan -p17294 -g24 -(g26 -S'\xdf\x13\x00\x00\x00\x00\x00\x00' -tRp17295 -sVscientist -p17296 -g24 -(g26 -S'\xe0\x1d\x00\x00\x00\x00\x00\x00' -tRp17297 -sVthomson -p17298 -g24 -(g26 -S'\x01"\x00\x00\x00\x00\x00\x00' -tRp17299 -sVmilwaukee -p17300 -g24 -(g26 -S's\x15\x00\x00\x00\x00\x00\x00' -tRp17301 -sVavenue -p17302 -g24 -(g26 -S'\x9a\x02\x00\x00\x00\x00\x00\x00' -tRp17303 -sVinquiries -p17304 -g24 -(g26 -S'.\x11\x00\x00\x00\x00\x00\x00' -tRp17305 -sVislam -p17306 -g24 -(g26 -S'\xc7\x11\x00\x00\x00\x00\x00\x00' -tRp17307 -sVstyle -p17308 -g24 -(g26 -S'\x93 \x00\x00\x00\x00\x00\x00' -tRp17309 -sVpray -p17310 -g24 -(g26 -S'\xee\x19\x00\x00\x00\x00\x00\x00' -tRp17311 -sVsale -p17312 -g24 -(g26 -S'\x87\x1d\x00\x00\x00\x00\x00\x00' -tRp17313 -sVmattress -p17314 -g24 -(g26 -S'\xd2\x14\x00\x00\x00\x00\x00\x00' -tRp17315 -sVresort -p17316 -g24 -(g26 -S'\x8c\x1c\x00\x00\x00\x00\x00\x00' -tRp17317 -sVparts -p17318 -g24 -(g26 -S'N\x18\x00\x00\x00\x00\x00\x00' -tRp17319 -sVstephen -p17320 -g24 -(g26 -S'9 \x00\x00\x00\x00\x00\x00' -tRp17321 -sVargentina -p17322 -g24 -(g26 -S'\xe5\x01\x00\x00\x00\x00\x00\x00' -tRp17323 -sVsoccer -p17324 -g24 -(g26 -S'U\x1f\x00\x00\x00\x00\x00\x00' -tRp17325 -sValter -p17326 -g24 -(g26 -S'(\x01\x00\x00\x00\x00\x00\x00' -tRp17327 -sVreturn -p17328 -g24 -(g26 -S'\xbd\x1c\x00\x00\x00\x00\x00\x00' -tRp17329 -sVsucking -p17330 -g24 -(g26 -S'\xbc \x00\x00\x00\x00\x00\x00' -tRp17331 -sVhunter -p17332 -g24 -(g26 -S']\x10\x00\x00\x00\x00\x00\x00' -tRp17333 -sVframework -p17334 -g24 -(g26 -S'\xc7\r\x00\x00\x00\x00\x00\x00' -tRp17335 -sVcasio -p17336 -g24 -(g26 -S'2\x05\x00\x00\x00\x00\x00\x00' -tRp17337 -sVcommunities -p17338 -g24 -(g26 -S'\xdb\x06\x00\x00\x00\x00\x00\x00' -tRp17339 -sVbigger -p17340 -g24 -(g26 -S'z\x03\x00\x00\x00\x00\x00\x00' -tRp17341 -sVinstructions -p17342 -g24 -(g26 -S'O\x11\x00\x00\x00\x00\x00\x00' -tRp17343 -sVmarcus -p17344 -g24 -(g26 -S'\x8e\x14\x00\x00\x00\x00\x00\x00' -tRp17345 -sVrefresh -p17346 -g24 -(g26 -S'\xe2\x1b\x00\x00\x00\x00\x00\x00' -tRp17347 -sVmastercard -p17348 -g24 -(g26 -S'\xbb\x14\x00\x00\x00\x00\x00\x00' -tRp17349 -sVletting -p17350 -g24 -(g26 -S'W\x13\x00\x00\x00\x00\x00\x00' -tRp17351 -sVathletics -p17352 -g24 -(g26 -S'L\x02\x00\x00\x00\x00\x00\x00' -tRp17353 -sVfriendship -p17354 -g24 -(g26 -S'\xe8\r\x00\x00\x00\x00\x00\x00' -tRp17355 -sVcharacterized -p17356 -g24 -(g26 -S'\xa3\x05\x00\x00\x00\x00\x00\x00' -tRp17357 -sVpirates -p17358 -g24 -(g26 -S'+\x19\x00\x00\x00\x00\x00\x00' -tRp17359 -sVweight -p17360 -g24 -(g26 -S'\xe6$\x00\x00\x00\x00\x00\x00' -tRp17361 -sVgeneration -p17362 -g24 -(g26 -S'[\x0e\x00\x00\x00\x00\x00\x00' -tRp17363 -sVinterviews -p17364 -g24 -(g26 -S'\x8b\x11\x00\x00\x00\x00\x00\x00' -tRp17365 -sVused -p17366 -g24 -(g26 -S'\xaa#\x00\x00\x00\x00\x00\x00' -tRp17367 -sVhawaii -p17368 -g24 -(g26 -S'|\x0f\x00\x00\x00\x00\x00\x00' -tRp17369 -sVflorist -p17370 -g24 -(g26 -S'c\r\x00\x00\x00\x00\x00\x00' -tRp17371 -sVexpect -p17372 -g24 -(g26 -S'>\x0c\x00\x00\x00\x00\x00\x00' -tRp17373 -sVundertake -p17374 -g24 -(g26 -S'd#\x00\x00\x00\x00\x00\x00' -tRp17375 -sVloops -p17376 -g24 -(g26 -S'\xfa\x13\x00\x00\x00\x00\x00\x00' -tRp17377 -sVpractitioner -p17378 -g24 -(g26 -S'\xe9\x19\x00\x00\x00\x00\x00\x00' -tRp17379 -sVcups -p17380 -g24 -(g26 -S'z\x08\x00\x00\x00\x00\x00\x00' -tRp17381 -sVdivide -p17382 -g24 -(g26 -S'&\n\x00\x00\x00\x00\x00\x00' -tRp17383 -sValcohol -p17384 -g24 -(g26 -S'\x01\x01\x00\x00\x00\x00\x00\x00' -tRp17385 -sVjoin -p17386 -g24 -(g26 -S')\x12\x00\x00\x00\x00\x00\x00' -tRp17387 -sVnepal -p17388 -g24 -(g26 -S'\x92\x16\x00\x00\x00\x00\x00\x00' -tRp17389 -sVhydraulic -p17390 -g24 -(g26 -S'e\x10\x00\x00\x00\x00\x00\x00' -tRp17391 -sVfaqs -p17392 -g24 -(g26 -S'\xae\x0c\x00\x00\x00\x00\x00\x00' -tRp17393 -sVhealth -p17394 -g24 -(g26 -S'\x94\x0f\x00\x00\x00\x00\x00\x00' -tRp17395 -sVhill -p17396 -g24 -(g26 -S'\xd4\x0f\x00\x00\x00\x00\x00\x00' -tRp17397 -sVshipment -p17398 -g24 -(g26 -S'\xaf\x1e\x00\x00\x00\x00\x00\x00' -tRp17399 -sVparadise -p17400 -g24 -(g26 -S"'\x18\x00\x00\x00\x00\x00\x00" -tRp17401 -sVinduced -p17402 -g24 -(g26 -S'\xf9\x10\x00\x00\x00\x00\x00\x00' -tRp17403 -sVbenjamin -p17404 -g24 -(g26 -S'W\x03\x00\x00\x00\x00\x00\x00' -tRp17405 -sVfiber -p17406 -g24 -(g26 -S'\xf7\x0c\x00\x00\x00\x00\x00\x00' -tRp17407 -sVwisconsin -p17408 -g24 -(g26 -S',%\x00\x00\x00\x00\x00\x00' -tRp17409 -sVfriday -p17410 -g24 -(g26 -S'\xe3\r\x00\x00\x00\x00\x00\x00' -tRp17411 -sVdiffer -p17412 -g24 -(g26 -S'\xb8\t\x00\x00\x00\x00\x00\x00' -tRp17413 -sVupc -p17414 -g24 -(g26 -S'\x8a#\x00\x00\x00\x00\x00\x00' -tRp17415 -sVcookie -p17416 -g24 -(g26 -S'\xd0\x07\x00\x00\x00\x00\x00\x00' -tRp17417 -sVteach -p17418 -g24 -(g26 -S'\x82!\x00\x00\x00\x00\x00\x00' -tRp17419 -sVgenerate -p17420 -g24 -(g26 -S'W\x0e\x00\x00\x00\x00\x00\x00' -tRp17421 -sVthrown -p17422 -g24 -(g26 -S'\x18"\x00\x00\x00\x00\x00\x00' -tRp17423 -sVpreliminary -p17424 -g24 -(g26 -S'\x04\x1a\x00\x00\x00\x00\x00\x00' -tRp17425 -sVthread -p17426 -g24 -(g26 -S'\x0b"\x00\x00\x00\x00\x00\x00' -tRp17427 -sVthreat -p17428 -g24 -(g26 -S'\x0e"\x00\x00\x00\x00\x00\x00' -tRp17429 -sVconsequence -p17430 -g24 -(g26 -S'_\x07\x00\x00\x00\x00\x00\x00' -tRp17431 -sVacdbentity -p17432 -g24 -(g26 -S'A\x00\x00\x00\x00\x00\x00\x00' -tRp17433 -sVfallen -p17434 -g24 -(g26 -S'\x9f\x0c\x00\x00\x00\x00\x00\x00' -tRp17435 -sVthrows -p17436 -g24 -(g26 -S'\x19"\x00\x00\x00\x00\x00\x00' -tRp17437 -sVfeed -p17438 -g24 -(g26 -S'\xdb\x0c\x00\x00\x00\x00\x00\x00' -tRp17439 -sVwebcams -p17440 -g24 -(g26 -S'\xd1$\x00\x00\x00\x00\x00\x00' -tRp17441 -sVusda -p17442 -g24 -(g26 -S'\xa8#\x00\x00\x00\x00\x00\x00' -tRp17443 -sVfeel -p17444 -g24 -(g26 -S'\xdf\x0c\x00\x00\x00\x00\x00\x00' -tRp17445 -sVradical -p17446 -g24 -(g26 -S':\x1b\x00\x00\x00\x00\x00\x00' -tRp17447 -sVshemales -p17448 -g24 -(g26 -S'\xa7\x1e\x00\x00\x00\x00\x00\x00' -tRp17449 -sVfancy -p17450 -g24 -(g26 -S'\xa9\x0c\x00\x00\x00\x00\x00\x00' -tRp17451 -sVlinking -p17452 -g24 -(g26 -S'\x9d\x13\x00\x00\x00\x00\x00\x00' -tRp17453 -sVfeet -p17454 -g24 -(g26 -S'\xe4\x0c\x00\x00\x00\x00\x00\x00' -tRp17455 -sVsympathy -p17456 -g24 -(g26 -S'7!\x00\x00\x00\x00\x00\x00' -tRp17457 -sVbrave -p17458 -g24 -(g26 -S'$\x04\x00\x00\x00\x00\x00\x00' -tRp17459 -sVnotify -p17460 -g24 -(g26 -S'\xf5\x16\x00\x00\x00\x00\x00\x00' -tRp17461 -sVcolombia -p17462 -g24 -(g26 -S'\x9f\x06\x00\x00\x00\x00\x00\x00' -tRp17463 -sVblank -p17464 -g24 -(g26 -S'\xaa\x03\x00\x00\x00\x00\x00\x00' -tRp17465 -sVtraveler -p17466 -g24 -(g26 -S'\xd3"\x00\x00\x00\x00\x00\x00' -tRp17467 -sVgpl -p17468 -g24 -(g26 -S'\xc7\x0e\x00\x00\x00\x00\x00\x00' -tRp17469 -sVpasses -p17470 -g24 -(g26 -S'W\x18\x00\x00\x00\x00\x00\x00' -tRp17471 -sVstory -p17472 -g24 -(g26 -S'Y \x00\x00\x00\x00\x00\x00' -tRp17473 -sVtemperature -p17474 -g24 -(g26 -S'\xa9!\x00\x00\x00\x00\x00\x00' -tRp17475 -sVutilization -p17476 -g24 -(g26 -S'\xbb#\x00\x00\x00\x00\x00\x00' -tRp17477 -sVgourmet -p17478 -g24 -(g26 -S'\xbf\x0e\x00\x00\x00\x00\x00\x00' -tRp17479 -sVautomobile -p17480 -g24 -(g26 -S'\x90\x02\x00\x00\x00\x00\x00\x00' -tRp17481 -sVinteract -p17482 -g24 -(g26 -S'o\x11\x00\x00\x00\x00\x00\x00' -tRp17483 -sVcollar -p17484 -g24 -(g26 -S'\x8d\x06\x00\x00\x00\x00\x00\x00' -tRp17485 -sVpassed -p17486 -g24 -(g26 -S'T\x18\x00\x00\x00\x00\x00\x00' -tRp17487 -sVfought -p17488 -g24 -(g26 -S'\xb6\r\x00\x00\x00\x00\x00\x00' -tRp17489 -sVfinances -p17490 -g24 -(g26 -S'\x18\r\x00\x00\x00\x00\x00\x00' -tRp17491 -sVrecovered -p17492 -g24 -(g26 -S'\xbb\x1b\x00\x00\x00\x00\x00\x00' -tRp17493 -sVgps -p17494 -g24 -(g26 -S'\xc8\x0e\x00\x00\x00\x00\x00\x00' -tRp17495 -sVcalculations -p17496 -g24 -(g26 -S'\xc4\x04\x00\x00\x00\x00\x00\x00' -tRp17497 -sVchecklist -p17498 -g24 -(g26 -S'\xc2\x05\x00\x00\x00\x00\x00\x00' -tRp17499 -sVhotel -p17500 -g24 -(g26 -S'-\x10\x00\x00\x00\x00\x00\x00' -tRp17501 -sVtreasurer -p17502 -g24 -(g26 -S'\xdd"\x00\x00\x00\x00\x00\x00' -tRp17503 -sVtreasures -p17504 -g24 -(g26 -S'\xde"\x00\x00\x00\x00\x00\x00' -tRp17505 -sVconvinced -p17506 -g24 -(g26 -S'\xcc\x07\x00\x00\x00\x00\x00\x00' -tRp17507 -sVking -p17508 -g24 -(g26 -S'\x99\x12\x00\x00\x00\x00\x00\x00' -tRp17509 -sVkind -p17510 -g24 -(g26 -S'\x96\x12\x00\x00\x00\x00\x00\x00' -tRp17511 -sVoccasional -p17512 -g24 -(g26 -S';\x17\x00\x00\x00\x00\x00\x00' -tRp17513 -sVexempt -p17514 -g24 -(g26 -S'(\x0c\x00\x00\x00\x00\x00\x00' -tRp17515 -sVinstruction -p17516 -g24 -(g26 -S'M\x11\x00\x00\x00\x00\x00\x00' -tRp17517 -sVdans -p17518 -g24 -(g26 -S'\xb4\x08\x00\x00\x00\x00\x00\x00' -tRp17519 -sVaims -p17520 -g24 -(g26 -S'\xe8\x00\x00\x00\x00\x00\x00\x00' -tRp17521 -sVprairie -p17522 -g24 -(g26 -S'\xec\x19\x00\x00\x00\x00\x00\x00' -tRp17523 -sVarchitect -p17524 -g24 -(g26 -S'\xd9\x01\x00\x00\x00\x00\x00\x00' -tRp17525 -sVrisks -p17526 -g24 -(g26 -S'\xff\x1c\x00\x00\x00\x00\x00\x00' -tRp17527 -sVoutdoors -p17528 -g24 -(g26 -S'\xd0\x17\x00\x00\x00\x00\x00\x00' -tRp17529 -sVscanners -p17530 -g24 -(g26 -S'\xc6\x1d\x00\x00\x00\x00\x00\x00' -tRp17531 -sVdana -p17532 -g24 -(g26 -S'\xac\x08\x00\x00\x00\x00\x00\x00' -tRp17533 -sVcleaner -p17534 -g24 -(g26 -S';\x06\x00\x00\x00\x00\x00\x00' -tRp17535 -sVmotivation -p17536 -g24 -(g26 -S'\xfd\x15\x00\x00\x00\x00\x00\x00' -tRp17537 -sVoutstanding -p17538 -g24 -(g26 -S'\xdc\x17\x00\x00\x00\x00\x00\x00' -tRp17539 -sVstrengthen -p17540 -g24 -(g26 -S'j \x00\x00\x00\x00\x00\x00' -tRp17541 -sVimports -p17542 -g24 -(g26 -S'\xb2\x10\x00\x00\x00\x00\x00\x00' -tRp17543 -sVgale -p17544 -g24 -(g26 -S'!\x0e\x00\x00\x00\x00\x00\x00' -tRp17545 -sValike -p17546 -g24 -(g26 -S'\x12\x01\x00\x00\x00\x00\x00\x00' -tRp17547 -sVrugs -p17548 -g24 -(g26 -S'\\\x1d\x00\x00\x00\x00\x00\x00' -tRp17549 -sVdefects -p17550 -g24 -(g26 -S'\x05\t\x00\x00\x00\x00\x00\x00' -tRp17551 -sVwilson -p17552 -g24 -(g26 -S'\x16%\x00\x00\x00\x00\x00\x00' -tRp17553 -sVnights -p17554 -g24 -(g26 -S'\xc4\x16\x00\x00\x00\x00\x00\x00' -tRp17555 -sVrochester -p17556 -g24 -(g26 -S'\x15\x1d\x00\x00\x00\x00\x00\x00' -tRp17557 -sVsecretariat -p17558 -g24 -(g26 -S'\x15\x1e\x00\x00\x00\x00\x00\x00' -tRp17559 -sVbacteria -p17560 -g24 -(g26 -S'\xbb\x02\x00\x00\x00\x00\x00\x00' -tRp17561 -sVchairman -p17562 -g24 -(g26 -S'\x82\x05\x00\x00\x00\x00\x00\x00' -tRp17563 -sVfinding -p17564 -g24 -(g26 -S'\x1d\r\x00\x00\x00\x00\x00\x00' -tRp17565 -sVdonor -p17566 -g24 -(g26 -S'Z\n\x00\x00\x00\x00\x00\x00' -tRp17567 -sVadded -p17568 -g24 -(g26 -S'u\x00\x00\x00\x00\x00\x00\x00' -tRp17569 -sVelectric -p17570 -g24 -(g26 -S'\x1e\x0b\x00\x00\x00\x00\x00\x00' -tRp17571 -sVexec -p17572 -g24 -(g26 -S'"\x0c\x00\x00\x00\x00\x00\x00' -tRp17573 -sVcustomize -p17574 -g24 -(g26 -S'\x8a\x08\x00\x00\x00\x00\x00\x00' -tRp17575 -sVmeasures -p17576 -g24 -(g26 -S'\xec\x14\x00\x00\x00\x00\x00\x00' -tRp17577 -sVlivecam -p17578 -g24 -(g26 -S'\xb8\x13\x00\x00\x00\x00\x00\x00' -tRp17579 -sVarchitects -p17580 -g24 -(g26 -S'\xda\x01\x00\x00\x00\x00\x00\x00' -tRp17581 -sVcigarette -p17582 -g24 -(g26 -S'\x05\x06\x00\x00\x00\x00\x00\x00' -tRp17583 -sVsandra -p17584 -g24 -(g26 -S'\x9a\x1d\x00\x00\x00\x00\x00\x00' -tRp17585 -sVseasons -p17586 -g24 -(g26 -S'\x0b\x1e\x00\x00\x00\x00\x00\x00' -tRp17587 -sVmeasured -p17588 -g24 -(g26 -S'\xe9\x14\x00\x00\x00\x00\x00\x00' -tRp17589 -sVachievement -p17590 -g24 -(g26 -S'F\x00\x00\x00\x00\x00\x00\x00' -tRp17591 -sVstands -p17592 -g24 -(g26 -S'\x0b \x00\x00\x00\x00\x00\x00' -tRp17593 -sVmineral -p17594 -g24 -(g26 -S'x\x15\x00\x00\x00\x00\x00\x00' -tRp17595 -sVwindows -p17596 -g24 -(g26 -S'\x1a%\x00\x00\x00\x00\x00\x00' -tRp17597 -sVcorpus -p17598 -g24 -(g26 -S'\xf7\x07\x00\x00\x00\x00\x00\x00' -tRp17599 -sVwichita -p17600 -g24 -(g26 -S'\x02%\x00\x00\x00\x00\x00\x00' -tRp17601 -sVtraditional -p17602 -g24 -(g26 -S'\xa2"\x00\x00\x00\x00\x00\x00' -tRp17603 -sVinstitutions -p17604 -g24 -(g26 -S'L\x11\x00\x00\x00\x00\x00\x00' -tRp17605 -sVlying -p17606 -g24 -(g26 -S',\x14\x00\x00\x00\x00\x00\x00' -tRp17607 -sVstones -p17608 -g24 -(g26 -S'M \x00\x00\x00\x00\x00\x00' -tRp17609 -sVadvertiser -p17610 -g24 -(g26 -S'\xac\x00\x00\x00\x00\x00\x00\x00' -tRp17611 -sVcdt -p17612 -g24 -(g26 -S'U\x05\x00\x00\x00\x00\x00\x00' -tRp17613 -sVcds -p17614 -g24 -(g26 -S'T\x05\x00\x00\x00\x00\x00\x00' -tRp17615 -sVfont -p17616 -g24 -(g26 -S'\x85\r\x00\x00\x00\x00\x00\x00' -tRp17617 -sVrocket -p17618 -g24 -(g26 -S'\x17\x1d\x00\x00\x00\x00\x00\x00' -tRp17619 -sVcamel -p17620 -g24 -(g26 -S'\xd7\x04\x00\x00\x00\x00\x00\x00' -tRp17621 -sVpenalty -p17622 -g24 -(g26 -S'\x95\x18\x00\x00\x00\x00\x00\x00' -tRp17623 -sVsavannah -p17624 -g24 -(g26 -S'\xb3\x1d\x00\x00\x00\x00\x00\x00' -tRp17625 -sVviagra -p17626 -g24 -(g26 -S'\x1a$\x00\x00\x00\x00\x00\x00' -tRp17627 -sVmoses -p17628 -g24 -(g26 -S'\xf4\x15\x00\x00\x00\x00\x00\x00' -tRp17629 -sVhip -p17630 -g24 -(g26 -S'\xda\x0f\x00\x00\x00\x00\x00\x00' -tRp17631 -sVshepherd -p17632 -g24 -(g26 -S'\xa8\x1e\x00\x00\x00\x00\x00\x00' -tRp17633 -sVpublicity -p17634 -g24 -(g26 -S'\xd7\x1a\x00\x00\x00\x00\x00\x00' -tRp17635 -sVgains -p17636 -g24 -(g26 -S'\x1f\x0e\x00\x00\x00\x00\x00\x00' -tRp17637 -sVhiv -p17638 -g24 -(g26 -S'\xe7\x0f\x00\x00\x00\x00\x00\x00' -tRp17639 -sVcompiled -p17640 -g24 -(g26 -S'\xf6\x06\x00\x00\x00\x00\x00\x00' -tRp17641 -sVlongest -p17642 -g24 -(g26 -S'\xf1\x13\x00\x00\x00\x00\x00\x00' -tRp17643 -sVdetermines -p17644 -g24 -(g26 -S'\x80\t\x00\x00\x00\x00\x00\x00' -tRp17645 -sVreprint -p17646 -g24 -(g26 -S'`\x1c\x00\x00\x00\x00\x00\x00' -tRp17647 -sVemails -p17648 -g24 -(g26 -S'8\x0b\x00\x00\x00\x00\x00\x00' -tRp17649 -sVcompiler -p17650 -g24 -(g26 -S'\xf7\x06\x00\x00\x00\x00\x00\x00' -tRp17651 -sVbudapest -p17652 -g24 -(g26 -S'q\x04\x00\x00\x00\x00\x00\x00' -tRp17653 -sVmedicines -p17654 -g24 -(g26 -S'\xfe\x14\x00\x00\x00\x00\x00\x00' -tRp17655 -sVinvestigate -p17656 -g24 -(g26 -S'\x9b\x11\x00\x00\x00\x00\x00\x00' -tRp17657 -sVcartoons -p17658 -g24 -(g26 -S'&\x05\x00\x00\x00\x00\x00\x00' -tRp17659 -sVactivity -p17660 -g24 -(g26 -S'b\x00\x00\x00\x00\x00\x00\x00' -tRp17661 -sVsustainable -p17662 -g24 -(g26 -S'\x1d!\x00\x00\x00\x00\x00\x00' -tRp17663 -sVvincent -p17664 -g24 -(g26 -S':$\x00\x00\x00\x00\x00\x00' -tRp17665 -sVvirginia -p17666 -g24 -(g26 -S'E$\x00\x00\x00\x00\x00\x00' -tRp17667 -sVbars -p17668 -g24 -(g26 -S'\xf2\x02\x00\x00\x00\x00\x00\x00' -tRp17669 -sVart -p17670 -g24 -(g26 -S'\x04\x02\x00\x00\x00\x00\x00\x00' -tRp17671 -sVdump -p17672 -g24 -(g26 -S'\xae\n\x00\x00\x00\x00\x00\x00' -tRp17673 -sVachieved -p17674 -g24 -(g26 -S'E\x00\x00\x00\x00\x00\x00\x00' -tRp17675 -sVintelligence -p17676 -g24 -(g26 -S'e\x11\x00\x00\x00\x00\x00\x00' -tRp17677 -sVpvc -p17678 -g24 -(g26 -S'\x00\x1b\x00\x00\x00\x00\x00\x00' -tRp17679 -sVdefense -p17680 -g24 -(g26 -S'\t\t\x00\x00\x00\x00\x00\x00' -tRp17681 -sVdumb -p17682 -g24 -(g26 -S'\xad\n\x00\x00\x00\x00\x00\x00' -tRp17683 -sVarg -p17684 -g24 -(g26 -S'\xe4\x01\x00\x00\x00\x00\x00\x00' -tRp17685 -sVchambers -p17686 -g24 -(g26 -S'\x89\x05\x00\x00\x00\x00\x00\x00' -tRp17687 -sVarm -p17688 -g24 -(g26 -S'\xef\x01\x00\x00\x00\x00\x00\x00' -tRp17689 -sVdeclined -p17690 -g24 -(g26 -S'\xf5\x08\x00\x00\x00\x00\x00\x00' -tRp17691 -sVbarn -p17692 -g24 -(g26 -S'\xec\x02\x00\x00\x00\x00\x00\x00' -tRp17693 -sVrecording -p17694 -g24 -(g26 -S'\xb7\x1b\x00\x00\x00\x00\x00\x00' -tRp17695 -sVthreats -p17696 -g24 -(g26 -S'\x11"\x00\x00\x00\x00\x00\x00' -tRp17697 -sVups -p17698 -g24 -(g26 -S'\x96#\x00\x00\x00\x00\x00\x00' -tRp17699 -sVlibraries -p17700 -g24 -(g26 -S'l\x13\x00\x00\x00\x00\x00\x00' -tRp17701 -sVunions -p17702 -g24 -(g26 -S'p#\x00\x00\x00\x00\x00\x00' -tRp17703 -sVvarious -p17704 -g24 -(g26 -S'\xe4#\x00\x00\x00\x00\x00\x00' -tRp17705 -sVuse -p17706 -g24 -(g26 -S'\xa9#\x00\x00\x00\x00\x00\x00' -tRp17707 -sVconsecutive -p17708 -g24 -(g26 -S'\\\x07\x00\x00\x00\x00\x00\x00' -tRp17709 -sVnumerous -p17710 -g24 -(g26 -S'\x10\x17\x00\x00\x00\x00\x00\x00' -tRp17711 -sVcorruption -p17712 -g24 -(g26 -S'\x00\x08\x00\x00\x00\x00\x00\x00' -tRp17713 -sVsolo -p17714 -g24 -(g26 -S'k\x1f\x00\x00\x00\x00\x00\x00' -tRp17715 -sVlatin -p17716 -g24 -(g26 -S'\xf8\x12\x00\x00\x00\x00\x00\x00' -tRp17717 -sVrecently -p17718 -g24 -(g26 -S'\xa2\x1b\x00\x00\x00\x00\x00\x00' -tRp17719 -sVcreating -p17720 -g24 -(g26 -S'@\x08\x00\x00\x00\x00\x00\x00' -tRp17721 -sVinitially -p17722 -g24 -(g26 -S'\x19\x11\x00\x00\x00\x00\x00\x00' -tRp17723 -sVsold -p17724 -g24 -(g26 -S'e\x1f\x00\x00\x00\x00\x00\x00' -tRp17725 -sVattention -p17726 -g24 -(g26 -S'e\x02\x00\x00\x00\x00\x00\x00' -tRp17727 -sVsucceed -p17728 -g24 -(g26 -S'\xb7 \x00\x00\x00\x00\x00\x00' -tRp17729 -sVopposition -p17730 -g24 -(g26 -S'\x98\x17\x00\x00\x00\x00\x00\x00' -tRp17731 -sVcompetent -p17732 -g24 -(g26 -S'\xee\x06\x00\x00\x00\x00\x00\x00' -tRp17733 -sVcondo -p17734 -g24 -(g26 -S'1\x07\x00\x00\x00\x00\x00\x00' -tRp17735 -sVlap -p17736 -g24 -(g26 -S'\xe7\x12\x00\x00\x00\x00\x00\x00' -tRp17737 -sVrelying -p17738 -g24 -(g26 -S'"\x1c\x00\x00\x00\x00\x00\x00' -tRp17739 -sVbronze -p17740 -g24 -(g26 -S'W\x04\x00\x00\x00\x00\x00\x00' -tRp17741 -sVprescription -p17742 -g24 -(g26 -S'\x11\x1a\x00\x00\x00\x00\x00\x00' -tRp17743 -sVlicense -p17744 -g24 -(g26 -S'p\x13\x00\x00\x00\x00\x00\x00' -tRp17745 -sVmovers -p17746 -g24 -(g26 -S'\x0e\x16\x00\x00\x00\x00\x00\x00' -tRp17747 -sVroman -p17748 -g24 -(g26 -S'&\x1d\x00\x00\x00\x00\x00\x00' -tRp17749 -sVoc -p17750 -g24 -(g26 -S'9\x17\x00\x00\x00\x00\x00\x00' -tRp17751 -sVannie -p17752 -g24 -(g26 -S'r\x01\x00\x00\x00\x00\x00\x00' -tRp17753 -sVwitch -p17754 -g24 -(g26 -S'4%\x00\x00\x00\x00\x00\x00' -tRp17755 -sVfinds -p17756 -g24 -(g26 -S' \r\x00\x00\x00\x00\x00\x00' -tRp17757 -sVtgp -p17758 -g24 -(g26 -S'\xda!\x00\x00\x00\x00\x00\x00' -tRp17759 -sVreasons -p17760 -g24 -(g26 -S'\x92\x1b\x00\x00\x00\x00\x00\x00' -tRp17761 -sVsweet -p17762 -g24 -(g26 -S'&!\x00\x00\x00\x00\x00\x00' -tRp17763 -sVdeposits -p17764 -g24 -(g26 -S'M\t\x00\x00\x00\x00\x00\x00' -tRp17765 -sVregulated -p17766 -g24 -(g26 -S'\xfc\x1b\x00\x00\x00\x00\x00\x00' -tRp17767 -sVvillage -p17768 -g24 -(g26 -S'7$\x00\x00\x00\x00\x00\x00' -tRp17769 -sVslots -p17770 -g24 -(g26 -S'5\x1f\x00\x00\x00\x00\x00\x00' -tRp17771 -sVpr -p17772 -g24 -(g26 -S'\xe5\x19\x00\x00\x00\x00\x00\x00' -tRp17773 -sVdui -p17774 -g24 -(g26 -S'\xab\n\x00\x00\x00\x00\x00\x00' -tRp17775 -sVpp -p17776 -g24 -(g26 -S'\xe2\x19\x00\x00\x00\x00\x00\x00' -tRp17777 -sVjava -p17778 -g24 -(g26 -S'\xfb\x11\x00\x00\x00\x00\x00\x00' -tRp17779 -sVenhancements -p17780 -g24 -(g26 -S'~\x0b\x00\x00\x00\x00\x00\x00' -tRp17781 -sVpt -p17782 -g24 -(g26 -S'\xd0\x1a\x00\x00\x00\x00\x00\x00' -tRp17783 -sVduo -p17784 -g24 -(g26 -S'\xb0\n\x00\x00\x00\x00\x00\x00' -tRp17785 -sVpolitical -p17786 -g24 -(g26 -S'\x8b\x19\x00\x00\x00\x00\x00\x00' -tRp17787 -sVstrategy -p17788 -g24 -(g26 -S'c \x00\x00\x00\x00\x00\x00' -tRp17789 -sVpb -p17790 -g24 -(g26 -S'~\x18\x00\x00\x00\x00\x00\x00' -tRp17791 -sVpc -p17792 -g24 -(g26 -S'\x7f\x18\x00\x00\x00\x00\x00\x00' -tRp17793 -sVreduction -p17794 -g24 -(g26 -S'\xc9\x1b\x00\x00\x00\x00\x00\x00' -tRp17795 -sVpa -p17796 -g24 -(g26 -S'\xf0\x17\x00\x00\x00\x00\x00\x00' -tRp17797 -sVpf -p17798 -g24 -(g26 -S'\xdc\x18\x00\x00\x00\x00\x00\x00' -tRp17799 -sVpg -p17800 -g24 -(g26 -S'\xdd\x18\x00\x00\x00\x00\x00\x00' -tRp17801 -sVpd -p17802 -g24 -(g26 -S'\x83\x18\x00\x00\x00\x00\x00\x00' -tRp17803 -sVpe -p17804 -g24 -(g26 -S'\x88\x18\x00\x00\x00\x00\x00\x00' -tRp17805 -sVpj -p17806 -g24 -(g26 -S'5\x19\x00\x00\x00\x00\x00\x00' -tRp17807 -sVnato -p17808 -g24 -(g26 -S'f\x16\x00\x00\x00\x00\x00\x00' -tRp17809 -sVbrick -p17810 -g24 -(g26 -S'6\x04\x00\x00\x00\x00\x00\x00' -tRp17811 -sVpi -p17812 -g24 -(g26 -S'\n\x19\x00\x00\x00\x00\x00\x00' -tRp17813 -sVpn -p17814 -g24 -(g26 -S'p\x19\x00\x00\x00\x00\x00\x00' -tRp17815 -sVpo -p17816 -g24 -(g26 -S'q\x19\x00\x00\x00\x00\x00\x00' -tRp17817 -sVpl -p17818 -g24 -(g26 -S'7\x19\x00\x00\x00\x00\x00\x00' -tRp17819 -sVpm -p17820 -g24 -(g26 -S'm\x19\x00\x00\x00\x00\x00\x00' -tRp17821 -sVflight -p17822 -g24 -(g26 -S'V\r\x00\x00\x00\x00\x00\x00' -tRp17823 -sValgeria -p17824 -g24 -(g26 -S'\t\x01\x00\x00\x00\x00\x00\x00' -tRp17825 -sVbuck -p17826 -g24 -(g26 -S'o\x04\x00\x00\x00\x00\x00\x00' -tRp17827 -sVslideshow -p17828 -g24 -(g26 -S'.\x1f\x00\x00\x00\x00\x00\x00' -tRp17829 -sVbrokers -p17830 -g24 -(g26 -S'V\x04\x00\x00\x00\x00\x00\x00' -tRp17831 -sVdemand -p17832 -g24 -(g26 -S'*\t\x00\x00\x00\x00\x00\x00' -tRp17833 -sVexemption -p17834 -g24 -(g26 -S')\x0c\x00\x00\x00\x00\x00\x00' -tRp17835 -sVinstructor -p17836 -g24 -(g26 -S'P\x11\x00\x00\x00\x00\x00\x00' -tRp17837 -sVplants -p17838 -g24 -(g26 -S'K\x19\x00\x00\x00\x00\x00\x00' -tRp17839 -sVstolen -p17840 -g24 -(g26 -S'J \x00\x00\x00\x00\x00\x00' -tRp17841 -sVfrozen -p17842 -g24 -(g26 -S'\xed\r\x00\x00\x00\x00\x00\x00' -tRp17843 -sVbatch -p17844 -g24 -(g26 -S'\x04\x03\x00\x00\x00\x00\x00\x00' -tRp17845 -sVevaluated -p17846 -g24 -(g26 -S'\xee\x0b\x00\x00\x00\x00\x00\x00' -tRp17847 -sVhomework -p17848 -g24 -(g26 -S'\x06\x10\x00\x00\x00\x00\x00\x00' -tRp17849 -sVbehavior -p17850 -g24 -(g26 -S':\x03\x00\x00\x00\x00\x00\x00' -tRp17851 -sVwelding -p17852 -g24 -(g26 -S'\xeb$\x00\x00\x00\x00\x00\x00' -tRp17853 -sVguilty -p17854 -g24 -(g26 -S'&\x0f\x00\x00\x00\x00\x00\x00' -tRp17855 -sVgel -p17856 -g24 -(g26 -S'O\x0e\x00\x00\x00\x00\x00\x00' -tRp17857 -sVrip -p17858 -g24 -(g26 -S'\xfa\x1c\x00\x00\x00\x00\x00\x00' -tRp17859 -sVrio -p17860 -g24 -(g26 -S'\xf9\x1c\x00\x00\x00\x00\x00\x00' -tRp17861 -sVrim -p17862 -g24 -(g26 -S'\xf4\x1c\x00\x00\x00\x00\x00\x00' -tRp17863 -sVrid -p17864 -g24 -(g26 -S'\xeb\x1c\x00\x00\x00\x00\x00\x00' -tRp17865 -sVpanasonic -p17866 -g24 -(g26 -S'\x18\x18\x00\x00\x00\x00\x00\x00' -tRp17867 -sVshirt -p17868 -g24 -(g26 -S'\xb4\x1e\x00\x00\x00\x00\x00\x00' -tRp17869 -sVwidely -p17870 -g24 -(g26 -S'\x05%\x00\x00\x00\x00\x00\x00' -tRp17871 -sVpeoples -p17872 -g24 -(g26 -S'\xa5\x18\x00\x00\x00\x00\x00\x00' -tRp17873 -sVadvise -p17874 -g24 -(g26 -S'\xb0\x00\x00\x00\x00\x00\x00\x00' -tRp17875 -sVspears -p17876 -g24 -(g26 -S'\xa7\x1f\x00\x00\x00\x00\x00\x00' -tRp17877 -sVdaughters -p17878 -g24 -(g26 -S'\xc4\x08\x00\x00\x00\x00\x00\x00' -tRp17879 -sVhigher -p17880 -g24 -(g26 -S'\xc9\x0f\x00\x00\x00\x00\x00\x00' -tRp17881 -sVarrives -p17882 -g24 -(g26 -S'\x02\x02\x00\x00\x00\x00\x00\x00' -tRp17883 -sVcartridge -p17884 -g24 -(g26 -S"'\x05\x00\x00\x00\x00\x00\x00" -tRp17885 -sVpaths -p17886 -g24 -(g26 -S'i\x18\x00\x00\x00\x00\x00\x00' -tRp17887 -sVhowto -p17888 -g24 -(g26 -S'=\x10\x00\x00\x00\x00\x00\x00' -tRp17889 -sVcement -p17890 -g24 -(g26 -S'b\x05\x00\x00\x00\x00\x00\x00' -tRp17891 -sVholidays -p17892 -g24 -(g26 -S'\xf8\x0f\x00\x00\x00\x00\x00\x00' -tRp17893 -sVdomains -p17894 -g24 -(g26 -S'N\n\x00\x00\x00\x00\x00\x00' -tRp17895 -sVarrived -p17896 -g24 -(g26 -S'\x01\x02\x00\x00\x00\x00\x00\x00' -tRp17897 -sVcontractors -p17898 -g24 -(g26 -S'\xaa\x07\x00\x00\x00\x00\x00\x00' -tRp17899 -sVrobust -p17900 -g24 -(g26 -S'\x14\x1d\x00\x00\x00\x00\x00\x00' -tRp17901 -sVlower -p17902 -g24 -(g26 -S'\x17\x14\x00\x00\x00\x00\x00\x00' -tRp17903 -sVdancing -p17904 -g24 -(g26 -S'\xae\x08\x00\x00\x00\x00\x00\x00' -tRp17905 -sVanybody -p17906 -g24 -(g26 -S'\x92\x01\x00\x00\x00\x00\x00\x00' -tRp17907 -sVanalysis -p17908 -g24 -(g26 -S'O\x01\x00\x00\x00\x00\x00\x00' -tRp17909 -sVdouble -p17910 -g24 -(g26 -S'd\n\x00\x00\x00\x00\x00\x00' -tRp17911 -sVedge -p17912 -g24 -(g26 -S'\xef\n\x00\x00\x00\x00\x00\x00' -tRp17913 -sVmachinery -p17914 -g24 -(g26 -S'4\x14\x00\x00\x00\x00\x00\x00' -tRp17915 -sVstating -p17916 -g24 -(g26 -S' \x00\x00\x00\x00\x00\x00' -tRp17917 -sVknow -p17918 -g24 -(g26 -S'\xaf\x12\x00\x00\x00\x00\x00\x00' -tRp17919 -sVabilities -p17920 -g24 -(g26 -S'\x07\x00\x00\x00\x00\x00\x00\x00' -tRp17921 -sVcompetitive -p17922 -g24 -(g26 -S'\xf2\x06\x00\x00\x00\x00\x00\x00' -tRp17923 -sVintervals -p17924 -g24 -(g26 -S'\x87\x11\x00\x00\x00\x00\x00\x00' -tRp17925 -sVquestions -p17926 -g24 -(g26 -S' \x1b\x00\x00\x00\x00\x00\x00' -tRp17927 -sVretired -p17928 -g24 -(g26 -S'\xb6\x1c\x00\x00\x00\x00\x00\x00' -tRp17929 -sVlexus -p17930 -g24 -(g26 -S'`\x13\x00\x00\x00\x00\x00\x00' -tRp17931 -sVnorthern -p17932 -g24 -(g26 -S'\xe4\x16\x00\x00\x00\x00\x00\x00' -tRp17933 -sVsummaries -p17934 -g24 -(g26 -S'\xd7 \x00\x00\x00\x00\x00\x00' -tRp17935 -sVtables -p17936 -g24 -(g26 -S'K!\x00\x00\x00\x00\x00\x00' -tRp17937 -sVloading -p17938 -g24 -(g26 -S'\xca\x13\x00\x00\x00\x00\x00\x00' -tRp17939 -sVtablet -p17940 -g24 -(g26 -S'L!\x00\x00\x00\x00\x00\x00' -tRp17941 -sVmsgid -p17942 -g24 -(g26 -S'\x1f\x16\x00\x00\x00\x00\x00\x00' -tRp17943 -sVnavigator -p17944 -g24 -(g26 -S'p\x16\x00\x00\x00\x00\x00\x00' -tRp17945 -sVexclusively -p17946 -g24 -(g26 -S' \x0c\x00\x00\x00\x00\x00\x00' -tRp17947 -sVcontractor -p17948 -g24 -(g26 -S'\xa9\x07\x00\x00\x00\x00\x00\x00' -tRp17949 -sVgovernmental -p17950 -g24 -(g26 -S'\xc3\x0e\x00\x00\x00\x00\x00\x00' -tRp17951 -sVexhibition -p17952 -g24 -(g26 -S'.\x0c\x00\x00\x00\x00\x00\x00' -tRp17953 -sVtheorem -p17954 -g24 -(g26 -S'\xeb!\x00\x00\x00\x00\x00\x00' -tRp17955 -sVviolations -p17956 -g24 -(g26 -S'>$\x00\x00\x00\x00\x00\x00' -tRp17957 -sVfinder -p17958 -g24 -(g26 -S'\x1c\r\x00\x00\x00\x00\x00\x00' -tRp17959 -sVassociations -p17960 -g24 -(g26 -S'8\x02\x00\x00\x00\x00\x00\x00' -tRp17961 -sVcustomers -p17962 -g24 -(g26 -S'\x89\x08\x00\x00\x00\x00\x00\x00' -tRp17963 -sVvendor -p17964 -g24 -(g26 -S'\xfa#\x00\x00\x00\x00\x00\x00' -tRp17965 -sVamended -p17966 -g24 -(g26 -S'<\x01\x00\x00\x00\x00\x00\x00' -tRp17967 -sVdvds -p17968 -g24 -(g26 -S'\xbb\n\x00\x00\x00\x00\x00\x00' -tRp17969 -sVambien -p17970 -g24 -(g26 -S'8\x01\x00\x00\x00\x00\x00\x00' -tRp17971 -sVadvocate -p17972 -g24 -(g26 -S'\xb6\x00\x00\x00\x00\x00\x00\x00' -tRp17973 -sVunlimited -p17974 -g24 -(g26 -S'\x81#\x00\x00\x00\x00\x00\x00' -tRp17975 -sVnecessary -p17976 -g24 -(g26 -S'\x80\x16\x00\x00\x00\x00\x00\x00' -tRp17977 -sVbuddy -p17978 -g24 -(g26 -S'r\x04\x00\x00\x00\x00\x00\x00' -tRp17979 -sVmariah -p17980 -g24 -(g26 -S'\x93\x14\x00\x00\x00\x00\x00\x00' -tRp17981 -sVmodifications -p17982 -g24 -(g26 -S'\xbf\x15\x00\x00\x00\x00\x00\x00' -tRp17983 -sVshaped -p17984 -g24 -(g26 -S'\x90\x1e\x00\x00\x00\x00\x00\x00' -tRp17985 -sVshapes -p17986 -g24 -(g26 -S'\x91\x1e\x00\x00\x00\x00\x00\x00' -tRp17987 -sVcollect -p17988 -g24 -(g26 -S'\x90\x06\x00\x00\x00\x00\x00\x00' -tRp17989 -sVarthur -p17990 -g24 -(g26 -S'\x06\x02\x00\x00\x00\x00\x00\x00' -tRp17991 -sVnipple -p17992 -g24 -(g26 -S'\xc9\x16\x00\x00\x00\x00\x00\x00' -tRp17993 -sVarmstrong -p17994 -g24 -(g26 -S'\xf4\x01\x00\x00\x00\x00\x00\x00' -tRp17995 -sVessential -p17996 -g24 -(g26 -S'\xcc\x0b\x00\x00\x00\x00\x00\x00' -tRp17997 -sVsitemap -p17998 -g24 -(g26 -S'\r\x1f\x00\x00\x00\x00\x00\x00' -tRp17999 -sVfolders -p18000 -g24 -(g26 -S'}\r\x00\x00\x00\x00\x00\x00' -tRp18001 -sVecology -p18002 -g24 -(g26 -S'\xe4\n\x00\x00\x00\x00\x00\x00' -tRp18003 -sVfucking -p18004 -g24 -(g26 -S'\xf6\r\x00\x00\x00\x00\x00\x00' -tRp18005 -sVpaxil -p18006 -g24 -(g26 -S't\x18\x00\x00\x00\x00\x00\x00' -tRp18007 -sVnewsletter -p18008 -g24 -(g26 -S'\xab\x16\x00\x00\x00\x00\x00\x00' -tRp18009 -sVsized -p18010 -g24 -(g26 -S'\x15\x1f\x00\x00\x00\x00\x00\x00' -tRp18011 -sVgradually -p18012 -g24 -(g26 -S'\xcf\x0e\x00\x00\x00\x00\x00\x00' -tRp18013 -sVprot -p18014 -g24 -(g26 -S'\xaa\x1a\x00\x00\x00\x00\x00\x00' -tRp18015 -sVpros -p18016 -g24 -(g26 -S'\xa4\x1a\x00\x00\x00\x00\x00\x00' -tRp18017 -sVseller -p18018 -g24 -(g26 -S'6\x1e\x00\x00\x00\x00\x00\x00' -tRp18019 -sVretro -p18020 -g24 -(g26 -S'\xbc\x1c\x00\x00\x00\x00\x00\x00' -tRp18021 -sVinnovation -p18022 -g24 -(g26 -S"'\x11\x00\x00\x00\x00\x00\x00" -tRp18023 -sVanne -p18024 -g24 -(g26 -S'p\x01\x00\x00\x00\x00\x00\x00' -tRp18025 -sVproc -p18026 -g24 -(g26 -S'U\x1a\x00\x00\x00\x00\x00\x00' -tRp18027 -sVanna -p18028 -g24 -(g26 -S'o\x01\x00\x00\x00\x00\x00\x00' -tRp18029 -sVpalmer -p18030 -g24 -(g26 -S'\x13\x18\x00\x00\x00\x00\x00\x00' -tRp18031 -sVrefused -p18032 -g24 -(g26 -S'\xe8\x1b\x00\x00\x00\x00\x00\x00' -tRp18033 -sVvbulletin -p18034 -g24 -(g26 -S'\xec#\x00\x00\x00\x00\x00\x00' -tRp18035 -sVintense -p18036 -g24 -(g26 -S'i\x11\x00\x00\x00\x00\x00\x00' -tRp18037 -sVvaccine -p18038 -g24 -(g26 -S'\xc5#\x00\x00\x00\x00\x00\x00' -tRp18039 -sVrussell -p18040 -g24 -(g26 -S'h\x1d\x00\x00\x00\x00\x00\x00' -tRp18041 -sVpipeline -p18042 -g24 -(g26 -S')\x19\x00\x00\x00\x00\x00\x00' -tRp18043 -sVentrepreneurs -p18044 -g24 -(g26 -S'\x9e\x0b\x00\x00\x00\x00\x00\x00' -tRp18045 -sVcompleting -p18046 -g24 -(g26 -S'\xfe\x06\x00\x00\x00\x00\x00\x00' -tRp18047 -sVplaza -p18048 -g24 -(g26 -S'^\x19\x00\x00\x00\x00\x00\x00' -tRp18049 -sVbrooklyn -p18050 -g24 -(g26 -S'Y\x04\x00\x00\x00\x00\x00\x00' -tRp18051 -sVrange -p18052 -g24 -(g26 -S'R\x1b\x00\x00\x00\x00\x00\x00' -tRp18053 -sVdialog -p18054 -g24 -(g26 -S'\xa1\t\x00\x00\x00\x00\x00\x00' -tRp18055 -sVcomplimentary -p18056 -g24 -(g26 -S'\x06\x07\x00\x00\x00\x00\x00\x00' -tRp18057 -sVwanna -p18058 -g24 -(g26 -S'\x98$\x00\x00\x00\x00\x00\x00' -tRp18059 -sVgamma -p18060 -g24 -(g26 -S'*\x0e\x00\x00\x00\x00\x00\x00' -tRp18061 -sVmoss -p18062 -g24 -(g26 -S'\xf5\x15\x00\x00\x00\x00\x00\x00' -tRp18063 -sVjohns -p18064 -g24 -(g26 -S'&\x12\x00\x00\x00\x00\x00\x00' -tRp18065 -sVmotors -p18066 -g24 -(g26 -S'\x02\x16\x00\x00\x00\x00\x00\x00' -tRp18067 -sVcanal -p18068 -g24 -(g26 -S'\xe6\x04\x00\x00\x00\x00\x00\x00' -tRp18069 -sVsuggestion -p18070 -g24 -(g26 -S'\xcb \x00\x00\x00\x00\x00\x00' -tRp18071 -sVmadagascar -p18072 -g24 -(g26 -S':\x14\x00\x00\x00\x00\x00\x00' -tRp18073 -sVrows -p18074 -g24 -(g26 -S'K\x1d\x00\x00\x00\x00\x00\x00' -tRp18075 -sVmasturbating -p18076 -g24 -(g26 -S'\xbd\x14\x00\x00\x00\x00\x00\x00' -tRp18077 -sVsequence -p18078 -g24 -(g26 -S'[\x1e\x00\x00\x00\x00\x00\x00' -tRp18079 -sVlone -p18080 -g24 -(g26 -S'\xed\x13\x00\x00\x00\x00\x00\x00' -tRp18081 -sVfast -p18082 -g24 -(g26 -S'\xb9\x0c\x00\x00\x00\x00\x00\x00' -tRp18083 -sVvendors -p18084 -g24 -(g26 -S'\xfb#\x00\x00\x00\x00\x00\x00' -tRp18085 -sVanalyze -p18086 -g24 -(g26 -S'S\x01\x00\x00\x00\x00\x00\x00' -tRp18087 -sVsections -p18088 -g24 -(g26 -S'\x19\x1e\x00\x00\x00\x00\x00\x00' -tRp18089 -sVvienna -p18090 -g24 -(g26 -S')$\x00\x00\x00\x00\x00\x00' -tRp18091 -sVfiles -p18092 -g24 -(g26 -S'\t\r\x00\x00\x00\x00\x00\x00' -tRp18093 -sVmountains -p18094 -g24 -(g26 -S'\x05\x16\x00\x00\x00\x00\x00\x00' -tRp18095 -sVconsumption -p18096 -g24 -(g26 -S'\x8b\x07\x00\x00\x00\x00\x00\x00' -tRp18097 -sVkb -p18098 -g24 -(g26 -S'n\x12\x00\x00\x00\x00\x00\x00' -tRp18099 -sVcriteria -p18100 -g24 -(g26 -S'R\x08\x00\x00\x00\x00\x00\x00' -tRp18101 -sVfisheries -p18102 -g24 -(g26 -S'9\r\x00\x00\x00\x00\x00\x00' -tRp18103 -sVbeans -p18104 -g24 -(g26 -S'\x1b\x03\x00\x00\x00\x00\x00\x00' -tRp18105 -sVfiled -p18106 -g24 -(g26 -S'\x07\r\x00\x00\x00\x00\x00\x00' -tRp18107 -sVjunior -p18108 -g24 -(g26 -S'W\x12\x00\x00\x00\x00\x00\x00' -tRp18109 -sVraising -p18110 -g24 -(g26 -S'H\x1b\x00\x00\x00\x00\x00\x00' -tRp18111 -sVpenguin -p18112 -g24 -(g26 -S'\x9a\x18\x00\x00\x00\x00\x00\x00' -tRp18113 -sVattribute -p18114 -g24 -(g26 -S'n\x02\x00\x00\x00\x00\x00\x00' -tRp18115 -sVconsist -p18116 -g24 -(g26 -S'k\x07\x00\x00\x00\x00\x00\x00' -tRp18117 -sVcharacteristic -p18118 -g24 -(g26 -S'\xa0\x05\x00\x00\x00\x00\x00\x00' -tRp18119 -sVsocial -p18120 -g24 -(g26 -S'V\x1f\x00\x00\x00\x00\x00\x00' -tRp18121 -sVprep -p18122 -g24 -(g26 -S'\t\x1a\x00\x00\x00\x00\x00\x00' -tRp18123 -sVguyana -p18124 -g24 -(g26 -S'/\x0f\x00\x00\x00\x00\x00\x00' -tRp18125 -sVhighlight -p18126 -g24 -(g26 -S'\xcc\x0f\x00\x00\x00\x00\x00\x00' -tRp18127 -sVlandscapes -p18128 -g24 -(g26 -S'\xdf\x12\x00\x00\x00\x00\x00\x00' -tRp18129 -sVcalled -p18130 -g24 -(g26 -S'\xcc\x04\x00\x00\x00\x00\x00\x00' -tRp18131 -sVhumanitarian -p18132 -g24 -(g26 -S'P\x10\x00\x00\x00\x00\x00\x00' -tRp18133 -sVassociated -p18134 -g24 -(g26 -S'5\x02\x00\x00\x00\x00\x00\x00' -tRp18135 -sVhobby -p18136 -g24 -(g26 -S'\xec\x0f\x00\x00\x00\x00\x00\x00' -tRp18137 -sVstick -p18138 -g24 -(g26 -S'A \x00\x00\x00\x00\x00\x00' -tRp18139 -sVshortcuts -p18140 -g24 -(g26 -S'\xc4\x1e\x00\x00\x00\x00\x00\x00' -tRp18141 -sVcommissioner -p18142 -g24 -(g26 -S'\xc8\x06\x00\x00\x00\x00\x00\x00' -tRp18143 -sVmidwest -p18144 -g24 -(g26 -S'^\x15\x00\x00\x00\x00\x00\x00' -tRp18145 -sVcoordinator -p18146 -g24 -(g26 -S'\xdd\x07\x00\x00\x00\x00\x00\x00' -tRp18147 -sVwarning -p18148 -g24 -(g26 -S'\xa6$\x00\x00\x00\x00\x00\x00' -tRp18149 -sVkerry -p18150 -g24 -(g26 -S'\x80\x12\x00\x00\x00\x00\x00\x00' -tRp18151 -sVgraham -p18152 -g24 -(g26 -S'\xd4\x0e\x00\x00\x00\x00\x00\x00' -tRp18153 -sVrainbow -p18154 -g24 -(g26 -S'D\x1b\x00\x00\x00\x00\x00\x00' -tRp18155 -sVfonts -p18156 -g24 -(g26 -S'\x86\r\x00\x00\x00\x00\x00\x00' -tRp18157 -sVlemon -p18158 -g24 -(g26 -S'@\x13\x00\x00\x00\x00\x00\x00' -tRp18159 -sVcamcorders -p18160 -g24 -(g26 -S'\xd5\x04\x00\x00\x00\x00\x00\x00' -tRp18161 -sVtone -p18162 -g24 -(g26 -S'c"\x00\x00\x00\x00\x00\x00' -tRp18163 -sVpeace -p18164 -g24 -(g26 -S'\x89\x18\x00\x00\x00\x00\x00\x00' -tRp18165 -sVtowers -p18166 -g24 -(g26 -S'\x86"\x00\x00\x00\x00\x00\x00' -tRp18167 -sVincome -p18168 -g24 -(g26 -S'\xcf\x10\x00\x00\x00\x00\x00\x00' -tRp18169 -sVchester -p18170 -g24 -(g26 -S'\xd2\x05\x00\x00\x00\x00\x00\x00' -tRp18171 -sVdale -p18172 -g24 -(g26 -S'\xa3\x08\x00\x00\x00\x00\x00\x00' -tRp18173 -sVgenerates -p18174 -g24 -(g26 -S'Y\x0e\x00\x00\x00\x00\x00\x00' -tRp18175 -sVbangbus -p18176 -g24 -(g26 -S'\xd8\x02\x00\x00\x00\x00\x00\x00' -tRp18177 -sVproblems -p18178 -g24 -(g26 -S'T\x1a\x00\x00\x00\x00\x00\x00' -tRp18179 -sVbreasts -p18180 -g24 -(g26 -S'/\x04\x00\x00\x00\x00\x00\x00' -tRp18181 -sVhelping -p18182 -g24 -(g26 -S'\xb4\x0f\x00\x00\x00\x00\x00\x00' -tRp18183 -sVdevelops -p18184 -g24 -(g26 -S'\x90\t\x00\x00\x00\x00\x00\x00' -tRp18185 -sVallowing -p18186 -g24 -(g26 -S' \x01\x00\x00\x00\x00\x00\x00' -tRp18187 -sVposters -p18188 -g24 -(g26 -S'\xc9\x19\x00\x00\x00\x00\x00\x00' -tRp18189 -sVguestbook -p18190 -g24 -(g26 -S'\x1d\x0f\x00\x00\x00\x00\x00\x00' -tRp18191 -sVpottery -p18192 -g24 -(g26 -S'\xd4\x19\x00\x00\x00\x00\x00\x00' -tRp18193 -sVremix -p18194 -g24 -(g26 -S'1\x1c\x00\x00\x00\x00\x00\x00' -tRp18195 -sVlead -p18196 -g24 -(g26 -S'\x19\x13\x00\x00\x00\x00\x00\x00' -tRp18197 -sVvice -p18198 -g24 -(g26 -S'\x1e$\x00\x00\x00\x00\x00\x00' -tRp18199 -sVmb -p18200 -g24 -(g26 -S'\xdc\x14\x00\x00\x00\x00\x00\x00' -tRp18201 -sVdepartments -p18202 -g24 -(g26 -S'D\t\x00\x00\x00\x00\x00\x00' -tRp18203 -sVmicrosoft -p18204 -g24 -(g26 -S'W\x15\x00\x00\x00\x00\x00\x00' -tRp18205 -sVnasa -p18206 -g24 -(g26 -S'Y\x16\x00\x00\x00\x00\x00\x00' -tRp18207 -sVlafayette -p18208 -g24 -(g26 -S'\xd0\x12\x00\x00\x00\x00\x00\x00' -tRp18209 -sVkarma -p18210 -g24 -(g26 -S'g\x12\x00\x00\x00\x00\x00\x00' -tRp18211 -sVdemonstrates -p18212 -g24 -(g26 -S'5\t\x00\x00\x00\x00\x00\x00' -tRp18213 -sVbuffalo -p18214 -g24 -(g26 -S'v\x04\x00\x00\x00\x00\x00\x00' -tRp18215 -sVscroll -p18216 -g24 -(g26 -S'\xf9\x1d\x00\x00\x00\x00\x00\x00' -tRp18217 -sVcir -p18218 -g24 -(g26 -S'\x0c\x06\x00\x00\x00\x00\x00\x00' -tRp18219 -sVmardi -p18220 -g24 -(g26 -S'\x8f\x14\x00\x00\x00\x00\x00\x00' -tRp18221 -sVissued -p18222 -g24 -(g26 -S'\xd4\x11\x00\x00\x00\x00\x00\x00' -tRp18223 -sVresistance -p18224 -g24 -(g26 -S'\x86\x1c\x00\x00\x00\x00\x00\x00' -tRp18225 -sValien -p18226 -g24 -(g26 -S'\x0f\x01\x00\x00\x00\x00\x00\x00' -tRp18227 -sVeds -p18228 -g24 -(g26 -S'\xfc\n\x00\x00\x00\x00\x00\x00' -tRp18229 -sVmilfhunter -p18230 -g24 -(g26 -S'i\x15\x00\x00\x00\x00\x00\x00' -tRp18231 -sVministers -p18232 -g24 -(g26 -S'\x82\x15\x00\x00\x00\x00\x00\x00' -tRp18233 -sVedt -p18234 -g24 -(g26 -S'\xfd\n\x00\x00\x00\x00\x00\x00' -tRp18235 -sVwinds -p18236 -g24 -(g26 -S'\x1b%\x00\x00\x00\x00\x00\x00' -tRp18237 -sVadjustment -p18238 -g24 -(g26 -S'\x89\x00\x00\x00\x00\x00\x00\x00' -tRp18239 -sVcontributions -p18240 -g24 -(g26 -S'\xb2\x07\x00\x00\x00\x00\x00\x00' -tRp18241 -sVissues -p18242 -g24 -(g26 -S'\xd5\x11\x00\x00\x00\x00\x00\x00' -tRp18243 -sVsimon -p18244 -g24 -(g26 -S'\xf4\x1e\x00\x00\x00\x00\x00\x00' -tRp18245 -sVdisposal -p18246 -g24 -(g26 -S'\x0e\n\x00\x00\x00\x00\x00\x00' -tRp18247 -sVshanghai -p18248 -g24 -(g26 -S'\x8d\x1e\x00\x00\x00\x00\x00\x00' -tRp18249 -sVlanguages -p18250 -g24 -(g26 -S'\xe4\x12\x00\x00\x00\x00\x00\x00' -tRp18251 -sVstable -p18252 -g24 -(g26 -S'\xf9\x1f\x00\x00\x00\x00\x00\x00' -tRp18253 -sVbreach -p18254 -g24 -(g26 -S"'\x04\x00\x00\x00\x00\x00\x00" -tRp18255 -sVinclude -p18256 -g24 -(g26 -S'\xc9\x10\x00\x00\x00\x00\x00\x00' -tRp18257 -sVdramatically -p18258 -g24 -(g26 -S'|\n\x00\x00\x00\x00\x00\x00' -tRp18259 -sVbreathing -p18260 -g24 -(g26 -S'1\x04\x00\x00\x00\x00\x00\x00' -tRp18261 -sVmainstream -p18262 -g24 -(g26 -S'U\x14\x00\x00\x00\x00\x00\x00' -tRp18263 -sVtribunal -p18264 -g24 -(g26 -S'\xf5"\x00\x00\x00\x00\x00\x00' -tRp18265 -sVbedrooms -p18266 -g24 -(g26 -S'-\x03\x00\x00\x00\x00\x00\x00' -tRp18267 -sVelectron -p18268 -g24 -(g26 -S'"\x0b\x00\x00\x00\x00\x00\x00' -tRp18269 -sVwishes -p18270 -g24 -(g26 -S'0%\x00\x00\x00\x00\x00\x00' -tRp18271 -sVdrinking -p18272 -g24 -(g26 -S'\x8d\n\x00\x00\x00\x00\x00\x00' -tRp18273 -sVbryant -p18274 -g24 -(g26 -S'k\x04\x00\x00\x00\x00\x00\x00' -tRp18275 -sVfisting -p18276 -g24 -(g26 -S'<\r\x00\x00\x00\x00\x00\x00' -tRp18277 -sVnotes -p18278 -g24 -(g26 -S'\xee\x16\x00\x00\x00\x00\x00\x00' -tRp18279 -sVdeals -p18280 -g24 -(g26 -S'\xd9\x08\x00\x00\x00\x00\x00\x00' -tRp18281 -sVwarranties -p18282 -g24 -(g26 -S'\xa9$\x00\x00\x00\x00\x00\x00' -tRp18283 -sVdealt -p18284 -g24 -(g26 -S'\xda\x08\x00\x00\x00\x00\x00\x00' -tRp18285 -sVrelation -p18286 -g24 -(g26 -S'\t\x1c\x00\x00\x00\x00\x00\x00' -tRp18287 -sVdealers -p18288 -g24 -(g26 -S'\xd7\x08\x00\x00\x00\x00\x00\x00' -tRp18289 -sVnoted -p18290 -g24 -(g26 -S'\xed\x16\x00\x00\x00\x00\x00\x00' -tRp18291 -sVdisclaimer -p18292 -g24 -(g26 -S'\xea\t\x00\x00\x00\x00\x00\x00' -tRp18293 -sVconcluded -p18294 -g24 -(g26 -S'(\x07\x00\x00\x00\x00\x00\x00' -tRp18295 -sVsmaller -p18296 -g24 -(g26 -S'?\x1f\x00\x00\x00\x00\x00\x00' -tRp18297 -sVwrestling -p18298 -g24 -(g26 -S'o%\x00\x00\x00\x00\x00\x00' -tRp18299 -sVfold -p18300 -g24 -(g26 -S'{\r\x00\x00\x00\x00\x00\x00' -tRp18301 -sVgmbh -p18302 -g24 -(g26 -S'\xa1\x0e\x00\x00\x00\x00\x00\x00' -tRp18303 -sVtraveling -p18304 -g24 -(g26 -S'\xd5"\x00\x00\x00\x00\x00\x00' -tRp18305 -sVreunion -p18306 -g24 -(g26 -S'\xc1\x1c\x00\x00\x00\x00\x00\x00' -tRp18307 -sVacid -p18308 -g24 -(g26 -S'I\x00\x00\x00\x00\x00\x00\x00' -tRp18309 -sVcfr -p18310 -g24 -(g26 -S'z\x05\x00\x00\x00\x00\x00\x00' -tRp18311 -sVmakers -p18312 -g24 -(g26 -S'_\x14\x00\x00\x00\x00\x00\x00' -tRp18313 -sVfolk -p18314 -g24 -(g26 -S'\x7f\r\x00\x00\x00\x00\x00\x00' -tRp18315 -sVrrp -p18316 -g24 -(g26 -S'S\x1d\x00\x00\x00\x00\x00\x00' -tRp18317 -sVuniversities -p18318 -g24 -(g26 -S'z#\x00\x00\x00\x00\x00\x00' -tRp18319 -sVhourly -p18320 -g24 -(g26 -S'2\x10\x00\x00\x00\x00\x00\x00' -tRp18321 -sVunavailable -p18322 -g24 -(g26 -S'Y#\x00\x00\x00\x00\x00\x00' -tRp18323 -sVshowcase -p18324 -g24 -(g26 -S'\xcb\x1e\x00\x00\x00\x00\x00\x00' -tRp18325 -sVscreenshots -p18326 -g24 -(g26 -S'\xf4\x1d\x00\x00\x00\x00\x00\x00' -tRp18327 -sVreaching -p18328 -g24 -(g26 -S'x\x1b\x00\x00\x00\x00\x00\x00' -tRp18329 -sVwaiting -p18330 -g24 -(g26 -S'\x83$\x00\x00\x00\x00\x00\x00' -tRp18331 -sVcapital -p18332 -g24 -(g26 -S'\xfb\x04\x00\x00\x00\x00\x00\x00' -tRp18333 -sVchose -p18334 -g24 -(g26 -S'\xed\x05\x00\x00\x00\x00\x00\x00' -tRp18335 -sVdegree -p18336 -g24 -(g26 -S'\x14\t\x00\x00\x00\x00\x00\x00' -tRp18337 -sVonion -p18338 -g24 -(g26 -S'y\x17\x00\x00\x00\x00\x00\x00' -tRp18339 -sVpushing -p18340 -g24 -(g26 -S'\xfa\x1a\x00\x00\x00\x00\x00\x00' -tRp18341 -sVsexo -p18342 -g24 -(g26 -S'{\x1e\x00\x00\x00\x00\x00\x00' -tRp18343 -sVdesired -p18344 -g24 -(g26 -S'j\t\x00\x00\x00\x00\x00\x00' -tRp18345 -sVexplore -p18346 -g24 -(g26 -S']\x0c\x00\x00\x00\x00\x00\x00' -tRp18347 -sVseparation -p18348 -g24 -(g26 -S'W\x1e\x00\x00\x00\x00\x00\x00' -tRp18349 -sVsexy -p18350 -g24 -(g26 -S'\x7f\x1e\x00\x00\x00\x00\x00\x00' -tRp18351 -sVincredible -p18352 -g24 -(g26 -S'\xda\x10\x00\x00\x00\x00\x00\x00' -tRp18353 -sVukraine -p18354 -g24 -(g26 -S'O#\x00\x00\x00\x00\x00\x00' -tRp18355 -sVsurvivor -p18356 -g24 -(g26 -S'\x13!\x00\x00\x00\x00\x00\x00' -tRp18357 -sVzshops -p18358 -g24 -(g26 -S'\xc5%\x00\x00\x00\x00\x00\x00' -tRp18359 -sVlarger -p18360 -g24 -(g26 -S'\xec\x12\x00\x00\x00\x00\x00\x00' -tRp18361 -sVshades -p18362 -g24 -(g26 -S'\x84\x1e\x00\x00\x00\x00\x00\x00' -tRp18363 -sVcalvin -p18364 -g24 -(g26 -S'\xd0\x04\x00\x00\x00\x00\x00\x00' -tRp18365 -sVleaving -p18366 -g24 -(g26 -S'+\x13\x00\x00\x00\x00\x00\x00' -tRp18367 -sVsuggests -p18368 -g24 -(g26 -S'\xcd \x00\x00\x00\x00\x00\x00' -tRp18369 -sVbreeds -p18370 -g24 -(g26 -S'4\x04\x00\x00\x00\x00\x00\x00' -tRp18371 -sVexaminations -p18372 -g24 -(g26 -S'\x04\x0c\x00\x00\x00\x00\x00\x00' -tRp18373 -sVapple -p18374 -g24 -(g26 -S'\xab\x01\x00\x00\x00\x00\x00\x00' -tRp18375 -sVscales -p18376 -g24 -(g26 -S'\xc2\x1d\x00\x00\x00\x00\x00\x00' -tRp18377 -sVapr -p18378 -g24 -(g26 -S'\xc9\x01\x00\x00\x00\x00\x00\x00' -tRp18379 -sVapp -p18380 -g24 -(g26 -S'\x9e\x01\x00\x00\x00\x00\x00\x00' -tRp18381 -sVapt -p18382 -g24 -(g26 -S'\xcb\x01\x00\x00\x00\x00\x00\x00' -tRp18383 -sVvolt -p18384 -g24 -(g26 -S'e$\x00\x00\x00\x00\x00\x00' -tRp18385 -sVapi -p18386 -g24 -(g26 -S'\x9b\x01\x00\x00\x00\x00\x00\x00' -tRp18387 -sVmotor -p18388 -g24 -(g26 -S'\xfe\x15\x00\x00\x00\x00\x00\x00' -tRp18389 -sVduck -p18390 -g24 -(g26 -S'\xa9\n\x00\x00\x00\x00\x00\x00' -tRp18391 -sVapply -p18392 -g24 -(g26 -S'\xb5\x01\x00\x00\x00\x00\x00\x00' -tRp18393 -sVnest -p18394 -g24 -(g26 -S'\x95\x16\x00\x00\x00\x00\x00\x00' -tRp18395 -sVfed -p18396 -g24 -(g26 -S'\xd7\x0c\x00\x00\x00\x00\x00\x00' -tRp18397 -sVfee -p18398 -g24 -(g26 -S'\xda\x0c\x00\x00\x00\x00\x00\x00' -tRp18399 -sVfeb -p18400 -g24 -(g26 -S'\xd5\x0c\x00\x00\x00\x00\x00\x00' -tRp18401 -sVfigure -p18402 -g24 -(g26 -S'\x02\r\x00\x00\x00\x00\x00\x00' -tRp18403 -sVusa -p18404 -g24 -(g26 -S'\xa3#\x00\x00\x00\x00\x00\x00' -tRp18405 -sVfrog -p18406 -g24 -(g26 -S'\xe9\r\x00\x00\x00\x00\x00\x00' -tRp18407 -sVexamination -p18408 -g24 -(g26 -S'\x03\x0c\x00\x00\x00\x00\x00\x00' -tRp18409 -sVusr -p18410 -g24 -(g26 -S'\xb3#\x00\x00\x00\x00\x00\x00' -tRp18411 -sVdecember -p18412 -g24 -(g26 -S'\xe9\x08\x00\x00\x00\x00\x00\x00' -tRp18413 -sVtiming -p18414 -g24 -(g26 -S':"\x00\x00\x00\x00\x00\x00' -tRp18415 -sVeagles -p18416 -g24 -(g26 -S'\xc3\n\x00\x00\x00\x00\x00\x00' -tRp18417 -sVpossession -p18418 -g24 -(g26 -S'\xbd\x19\x00\x00\x00\x00\x00\x00' -tRp18419 -sVparliament -p18420 -g24 -(g26 -S'9\x18\x00\x00\x00\x00\x00\x00' -tRp18421 -sVjournalists -p18422 -g24 -(g26 -S';\x12\x00\x00\x00\x00\x00\x00' -tRp18423 -sVmusician -p18424 -g24 -(g26 -S'8\x16\x00\x00\x00\x00\x00\x00' -tRp18425 -sVinfection -p18426 -g24 -(g26 -S'\x03\x11\x00\x00\x00\x00\x00\x00' -tRp18427 -sVrabbit -p18428 -g24 -(g26 -S'0\x1b\x00\x00\x00\x00\x00\x00' -tRp18429 -sVpenis -p18430 -g24 -(g26 -S'\x9c\x18\x00\x00\x00\x00\x00\x00' -tRp18431 -sVwomen -p18432 -g24 -(g26 -S'?%\x00\x00\x00\x00\x00\x00' -tRp18433 -sVproof -p18434 -g24 -(g26 -S'\x96\x1a\x00\x00\x00\x00\x00\x00' -tRp18435 -sVpatrol -p18436 -g24 -(g26 -S'o\x18\x00\x00\x00\x00\x00\x00' -tRp18437 -sVtar -p18438 -g24 -(g26 -S'l!\x00\x00\x00\x00\x00\x00' -tRp18439 -sVcalculation -p18440 -g24 -(g26 -S'\xc3\x04\x00\x00\x00\x00\x00\x00' -tRp18441 -sVtax -p18442 -g24 -(g26 -S'v!\x00\x00\x00\x00\x00\x00' -tRp18443 -sVassumptions -p18444 -g24 -(g26 -S'>\x02\x00\x00\x00\x00\x00\x00' -tRp18445 -sVhilton -p18446 -g24 -(g26 -S'\xd6\x0f\x00\x00\x00\x00\x00\x00' -tRp18447 -sVtab -p18448 -g24 -(g26 -S'I!\x00\x00\x00\x00\x00\x00' -tRp18449 -sVtan -p18450 -g24 -(g26 -S'e!\x00\x00\x00\x00\x00\x00' -tRp18451 -sVrape -p18452 -g24 -(g26 -S']\x1b\x00\x00\x00\x00\x00\x00' -tRp18453 -sVsir -p18454 -g24 -(g26 -S'\x08\x1f\x00\x00\x00\x00\x00\x00' -tRp18455 -sVsip -p18456 -g24 -(g26 -S'\x07\x1f\x00\x00\x00\x00\x00\x00' -tRp18457 -sVsyndrome -p18458 -g24 -(g26 -S'>!\x00\x00\x00\x00\x00\x00' -tRp18459 -sVguru -p18460 -g24 -(g26 -S'-\x0f\x00\x00\x00\x00\x00\x00' -tRp18461 -sVserum -p18462 -g24 -(g26 -S'b\x1e\x00\x00\x00\x00\x00\x00' -tRp18463 -sVsic -p18464 -g24 -(g26 -S'\xd6\x1e\x00\x00\x00\x00\x00\x00' -tRp18465 -sVdependent -p18466 -g24 -(g26 -S'H\t\x00\x00\x00\x00\x00\x00' -tRp18467 -sVsig -p18468 -g24 -(g26 -S'\xdc\x1e\x00\x00\x00\x00\x00\x00' -tRp18469 -sVsie -p18470 -g24 -(g26 -S'\xd9\x1e\x00\x00\x00\x00\x00\x00' -tRp18471 -sVinstead -p18472 -g24 -(g26 -S'G\x11\x00\x00\x00\x00\x00\x00' -tRp18473 -sVtoddler -p18474 -g24 -(g26 -S'U"\x00\x00\x00\x00\x00\x00' -tRp18475 -sVpanic -p18476 -g24 -(g26 -S'\x1b\x18\x00\x00\x00\x00\x00\x00' -tRp18477 -sVsin -p18478 -g24 -(g26 -S'\xfe\x1e\x00\x00\x00\x00\x00\x00' -tRp18479 -sVsim -p18480 -g24 -(g26 -S'\xf1\x1e\x00\x00\x00\x00\x00\x00' -tRp18481 -sVswedish -p18482 -g24 -(g26 -S'%!\x00\x00\x00\x00\x00\x00' -tRp18483 -sVadministrator -p18484 -g24 -(g26 -S'\x8f\x00\x00\x00\x00\x00\x00\x00' -tRp18485 -sVattend -p18486 -g24 -(g26 -S'a\x02\x00\x00\x00\x00\x00\x00' -tRp18487 -sVbestsellers -p18488 -g24 -(g26 -S'b\x03\x00\x00\x00\x00\x00\x00' -tRp18489 -sVhazard -p18490 -g24 -(g26 -S'\x81\x0f\x00\x00\x00\x00\x00\x00' -tRp18491 -sVabuse -p18492 -g24 -(g26 -S'\x17\x00\x00\x00\x00\x00\x00\x00' -tRp18493 -sVdistances -p18494 -g24 -(g26 -S'\x14\n\x00\x00\x00\x00\x00\x00' -tRp18495 -sVethnic -p18496 -g24 -(g26 -S'\xe2\x0b\x00\x00\x00\x00\x00\x00' -tRp18497 -sVtiles -p18498 -g24 -(g26 -S'1"\x00\x00\x00\x00\x00\x00' -tRp18499 -sVlight -p18500 -g24 -(g26 -S'}\x13\x00\x00\x00\x00\x00\x00' -tRp18501 -sVvillas -p18502 -g24 -(g26 -S'9$\x00\x00\x00\x00\x00\x00' -tRp18503 -sVfreebsd -p18504 -g24 -(g26 -S'\xd5\r\x00\x00\x00\x00\x00\x00' -tRp18505 -sVnecklace -p18506 -g24 -(g26 -S'\x83\x16\x00\x00\x00\x00\x00\x00' -tRp18507 -sVventures -p18508 -g24 -(g26 -S'\xff#\x00\x00\x00\x00\x00\x00' -tRp18509 -sVinterpreted -p18510 -g24 -(g26 -S'\x82\x11\x00\x00\x00\x00\x00\x00' -tRp18511 -sVwhilst -p18512 -g24 -(g26 -S'\xfd$\x00\x00\x00\x00\x00\x00' -tRp18513 -sVspank -p18514 -g24 -(g26 -S'\x9c\x1f\x00\x00\x00\x00\x00\x00' -tRp18515 -sVlooks -p18516 -g24 -(g26 -S'\xf6\x13\x00\x00\x00\x00\x00\x00' -tRp18517 -sVglen -p18518 -g24 -(g26 -S'\x97\x0e\x00\x00\x00\x00\x00\x00' -tRp18519 -sVwrite -p18520 -g24 -(g26 -S'r%\x00\x00\x00\x00\x00\x00' -tRp18521 -sVships -p18522 -g24 -(g26 -S'\xb3\x1e\x00\x00\x00\x00\x00\x00' -tRp18523 -sVtyler -p18524 -g24 -(g26 -S'C#\x00\x00\x00\x00\x00\x00' -tRp18525 -sVchoose -p18526 -g24 -(g26 -S'\xea\x05\x00\x00\x00\x00\x00\x00' -tRp18527 -sVredhead -p18528 -g24 -(g26 -S'\xc4\x1b\x00\x00\x00\x00\x00\x00' -tRp18529 -sVcovered -p18530 -g24 -(g26 -S')\x08\x00\x00\x00\x00\x00\x00' -tRp18531 -sVbye -p18532 -g24 -(g26 -S'\xad\x04\x00\x00\x00\x00\x00\x00' -tRp18533 -sVdefining -p18534 -g24 -(g26 -S'\x10\t\x00\x00\x00\x00\x00\x00' -tRp18535 -sVpending -p18536 -g24 -(g26 -S'\x98\x18\x00\x00\x00\x00\x00\x00' -tRp18537 -sVflex -p18538 -g24 -(g26 -S'R\r\x00\x00\x00\x00\x00\x00' -tRp18539 -sVcrash -p18540 -g24 -(g26 -S'9\x08\x00\x00\x00\x00\x00\x00' -tRp18541 -sVflour -p18542 -g24 -(g26 -S'e\r\x00\x00\x00\x00\x00\x00' -tRp18543 -sVpractice -p18544 -g24 -(g26 -S'\xe7\x19\x00\x00\x00\x00\x00\x00' -tRp18545 -sVinvitations -p18546 -g24 -(g26 -S'\xa9\x11\x00\x00\x00\x00\x00\x00' -tRp18547 -sVresolve -p18548 -g24 -(g26 -S'\x8a\x1c\x00\x00\x00\x00\x00\x00' -tRp18549 -sVemerald -p18550 -g24 -(g26 -S';\x0b\x00\x00\x00\x00\x00\x00' -tRp18551 -sVimpaired -p18552 -g24 -(g26 -S'\xa4\x10\x00\x00\x00\x00\x00\x00' -tRp18553 -sVrepublican -p18554 -g24 -(g26 -S'g\x1c\x00\x00\x00\x00\x00\x00' -tRp18555 -sVinvestor -p18556 -g24 -(g26 -S'\xa4\x11\x00\x00\x00\x00\x00\x00' -tRp18557 -sVworlds -p18558 -g24 -(g26 -S'\\%\x00\x00\x00\x00\x00\x00' -tRp18559 -sVsubsidiaries -p18560 -g24 -(g26 -S'\xae \x00\x00\x00\x00\x00\x00' -tRp18561 -sVsleeve -p18562 -g24 -(g26 -S'+\x1f\x00\x00\x00\x00\x00\x00' -tRp18563 -sVedit -p18564 -g24 -(g26 -S'\xf2\n\x00\x00\x00\x00\x00\x00' -tRp18565 -sVnfl -p18566 -g24 -(g26 -S'\xb1\x16\x00\x00\x00\x00\x00\x00' -tRp18567 -sVbilly -p18568 -g24 -(g26 -S'\x82\x03\x00\x00\x00\x00\x00\x00' -tRp18569 -sVlatvia -p18570 -g24 -(g26 -S'\xfd\x12\x00\x00\x00\x00\x00\x00' -tRp18571 -sVtransmitted -p18572 -g24 -(g26 -S'\xc9"\x00\x00\x00\x00\x00\x00' -tRp18573 -sVtrap -p18574 -g24 -(g26 -S'\xcf"\x00\x00\x00\x00\x00\x00' -tRp18575 -sVsoc -p18576 -g24 -(g26 -S'T\x1f\x00\x00\x00\x00\x00\x00' -tRp18577 -sVbills -p18578 -g24 -(g26 -S'\x81\x03\x00\x00\x00\x00\x00\x00' -tRp18579 -sVtray -p18580 -g24 -(g26 -S'\xdb"\x00\x00\x00\x00\x00\x00' -tRp18581 -sVstudios -p18582 -g24 -(g26 -S'\x8c \x00\x00\x00\x00\x00\x00' -tRp18583 -sVcingular -p18584 -g24 -(g26 -S'\n\x06\x00\x00\x00\x00\x00\x00' -tRp18585 -sVrelated -p18586 -g24 -(g26 -S'\x06\x1c\x00\x00\x00\x00\x00\x00' -tRp18587 -sVrelates -p18588 -g24 -(g26 -S'\x07\x1c\x00\x00\x00\x00\x00\x00' -tRp18589 -sVebooks -p18590 -g24 -(g26 -S'\xde\n\x00\x00\x00\x00\x00\x00' -tRp18591 -sVcategory -p18592 -g24 -(g26 -S'?\x05\x00\x00\x00\x00\x00\x00' -tRp18593 -sVfrontier -p18594 -g24 -(g26 -S'\xea\r\x00\x00\x00\x00\x00\x00' -tRp18595 -sVchaos -p18596 -g24 -(g26 -S'\x9a\x05\x00\x00\x00\x00\x00\x00' -tRp18597 -sVsettlement -p18598 -g24 -(g26 -S's\x1e\x00\x00\x00\x00\x00\x00' -tRp18599 -sVvcr -p18600 -g24 -(g26 -S'\xee#\x00\x00\x00\x00\x00\x00' -tRp18601 -sVperforms -p18602 -g24 -(g26 -S'\xb3\x18\x00\x00\x00\x00\x00\x00' -tRp18603 -sVinduction -p18604 -g24 -(g26 -S'\xfa\x10\x00\x00\x00\x00\x00\x00' -tRp18605 -sVsacrifice -p18606 -g24 -(g26 -S't\x1d\x00\x00\x00\x00\x00\x00' -tRp18607 -sVdisclose -p18608 -g24 -(g26 -S'\xec\t\x00\x00\x00\x00\x00\x00' -tRp18609 -sVdictionary -p18610 -g24 -(g26 -S'\xae\t\x00\x00\x00\x00\x00\x00' -tRp18611 -sVipod -p18612 -g24 -(g26 -S'\xb7\x11\x00\x00\x00\x00\x00\x00' -tRp18613 -sVmaintains -p18614 -g24 -(g26 -S'Y\x14\x00\x00\x00\x00\x00\x00' -tRp18615 -sVpromptly -p18616 -g24 -(g26 -S'\x95\x1a\x00\x00\x00\x00\x00\x00' -tRp18617 -sVyork -p18618 -g24 -(g26 -S'\xaa%\x00\x00\x00\x00\x00\x00' -tRp18619 -sVconflicts -p18620 -g24 -(g26 -S'H\x07\x00\x00\x00\x00\x00\x00' -tRp18621 -sVphilip -p18622 -g24 -(g26 -S'\xee\x18\x00\x00\x00\x00\x00\x00' -tRp18623 -sVtenant -p18624 -g24 -(g26 -S'\xb1!\x00\x00\x00\x00\x00\x00' -tRp18625 -sVorganic -p18626 -g24 -(g26 -S'\xb1\x17\x00\x00\x00\x00\x00\x00' -tRp18627 -sVval -p18628 -g24 -(g26 -S'\xc8#\x00\x00\x00\x00\x00\x00' -tRp18629 -sVphrases -p18630 -g24 -(g26 -S'\x02\x19\x00\x00\x00\x00\x00\x00' -tRp18631 -sVconversation -p18632 -g24 -(g26 -S'\xc3\x07\x00\x00\x00\x00\x00\x00' -tRp18633 -sVbirthday -p18634 -g24 -(g26 -S'\x95\x03\x00\x00\x00\x00\x00\x00' -tRp18635 -sVadrian -p18636 -g24 -(g26 -S'\x9a\x00\x00\x00\x00\x00\x00\x00' -tRp18637 -sVdevon -p18638 -g24 -(g26 -S'\x96\t\x00\x00\x00\x00\x00\x00' -tRp18639 -sVisbn -p18640 -g24 -(g26 -S'\xc6\x11\x00\x00\x00\x00\x00\x00' -tRp18641 -sVbouquet -p18642 -g24 -(g26 -S'\x06\x04\x00\x00\x00\x00\x00\x00' -tRp18643 -sVdivx -p18644 -g24 -(g26 -S'.\n\x00\x00\x00\x00\x00\x00' -tRp18645 -sVrealtors -p18646 -g24 -(g26 -S'\x8b\x1b\x00\x00\x00\x00\x00\x00' -tRp18647 -sVecho -p18648 -g24 -(g26 -S'\xe0\n\x00\x00\x00\x00\x00\x00' -tRp18649 -sVimperial -p18650 -g24 -(g26 -S'\xa5\x10\x00\x00\x00\x00\x00\x00' -tRp18651 -sVdestinations -p18652 -g24 -(g26 -S'q\t\x00\x00\x00\x00\x00\x00' -tRp18653 -sVpublication -p18654 -g24 -(g26 -S'\xd5\x1a\x00\x00\x00\x00\x00\x00' -tRp18655 -sVunknown -p18656 -g24 -(g26 -S'}#\x00\x00\x00\x00\x00\x00' -tRp18657 -sVmyspace -p18658 -g24 -(g26 -S'F\x16\x00\x00\x00\x00\x00\x00' -tRp18659 -sVaccent -p18660 -g24 -(g26 -S'\x1d\x00\x00\x00\x00\x00\x00\x00' -tRp18661 -sVannotation -p18662 -g24 -(g26 -S'u\x01\x00\x00\x00\x00\x00\x00' -tRp18663 -sVpriority -p18664 -g24 -(g26 -S'D\x1a\x00\x00\x00\x00\x00\x00' -tRp18665 -sVxnxx -p18666 -g24 -(g26 -S'\x8c%\x00\x00\x00\x00\x00\x00' -tRp18667 -sVshell -p18668 -g24 -(g26 -S'\xa4\x1e\x00\x00\x00\x00\x00\x00' -tRp18669 -sVacademy -p18670 -g24 -(g26 -S'\x1b\x00\x00\x00\x00\x00\x00\x00' -tRp18671 -sVslides -p18672 -g24 -(g26 -S'-\x1f\x00\x00\x00\x00\x00\x00' -tRp18673 -sVregards -p18674 -g24 -(g26 -S'\xee\x1b\x00\x00\x00\x00\x00\x00' -tRp18675 -sVjuly -p18676 -g24 -(g26 -S'P\x12\x00\x00\x00\x00\x00\x00' -tRp18677 -sVinstitution -p18678 -g24 -(g26 -S'J\x11\x00\x00\x00\x00\x00\x00' -tRp18679 -sVhearings -p18680 -g24 -(g26 -S'\x9a\x0f\x00\x00\x00\x00\x00\x00' -tRp18681 -sVliquid -p18682 -g24 -(g26 -S'\xa4\x13\x00\x00\x00\x00\x00\x00' -tRp18683 -sVboring -p18684 -g24 -(g26 -S'\xf6\x03\x00\x00\x00\x00\x00\x00' -tRp18685 -sVinfectious -p18686 -g24 -(g26 -S'\x05\x11\x00\x00\x00\x00\x00\x00' -tRp18687 -sVlimiting -p18688 -g24 -(g26 -S'\x90\x13\x00\x00\x00\x00\x00\x00' -tRp18689 -sVpatients -p18690 -g24 -(g26 -S'k\x18\x00\x00\x00\x00\x00\x00' -tRp18691 -sVsculpture -p18692 -g24 -(g26 -S'\xfc\x1d\x00\x00\x00\x00\x00\x00' -tRp18693 -sVclip -p18694 -g24 -(g26 -S'S\x06\x00\x00\x00\x00\x00\x00' -tRp18695 -sVcohen -p18696 -g24 -(g26 -S'\x82\x06\x00\x00\x00\x00\x00\x00' -tRp18697 -sVlinked -p18698 -g24 -(g26 -S'\x9c\x13\x00\x00\x00\x00\x00\x00' -tRp18699 -sVcatholic -p18700 -g24 -(g26 -S'C\x05\x00\x00\x00\x00\x00\x00' -tRp18701 -sVafraid -p18702 -g24 -(g26 -S'\xc9\x00\x00\x00\x00\x00\x00\x00' -tRp18703 -sVangle -p18704 -g24 -(g26 -S'f\x01\x00\x00\x00\x00\x00\x00' -tRp18705 -sVpupils -p18706 -g24 -(g26 -S'\xea\x1a\x00\x00\x00\x00\x00\x00' -tRp18707 -sVagency -p18708 -g24 -(g26 -S'\xd1\x00\x00\x00\x00\x00\x00\x00' -tRp18709 -sVnasty -p18710 -g24 -(g26 -S']\x16\x00\x00\x00\x00\x00\x00' -tRp18711 -sVtrivia -p18712 -g24 -(g26 -S'\x06#\x00\x00\x00\x00\x00\x00' -tRp18713 -sVhp -p18714 -g24 -(g26 -S'>\x10\x00\x00\x00\x00\x00\x00' -tRp18715 -sVvegetation -p18716 -g24 -(g26 -S'\xf5#\x00\x00\x00\x00\x00\x00' -tRp18717 -sVcombat -p18718 -g24 -(g26 -S'\xad\x06\x00\x00\x00\x00\x00\x00' -tRp18719 -sVcentre -p18720 -g24 -(g26 -S'j\x05\x00\x00\x00\x00\x00\x00' -tRp18721 -sVcollaboration -p18722 -g24 -(g26 -S'\x8a\x06\x00\x00\x00\x00\x00\x00' -tRp18723 -sVharmful -p18724 -g24 -(g26 -S'j\x0f\x00\x00\x00\x00\x00\x00' -tRp18725 -sVclass -p18726 -g24 -(g26 -S'/\x06\x00\x00\x00\x00\x00\x00' -tRp18727 -sVspirits -p18728 -g24 -(g26 -S'\xd0\x1f\x00\x00\x00\x00\x00\x00' -tRp18729 -sVrealtor -p18730 -g24 -(g26 -S'\x8a\x1b\x00\x00\x00\x00\x00\x00' -tRp18731 -sVadministrators -p18732 -g24 -(g26 -S'\x90\x00\x00\x00\x00\x00\x00\x00' -tRp18733 -sVpolyester -p18734 -g24 -(g26 -S'\x93\x19\x00\x00\x00\x00\x00\x00' -tRp18735 -sVnissan -p18736 -g24 -(g26 -S'\xcc\x16\x00\x00\x00\x00\x00\x00' -tRp18737 -sVhh -p18738 -g24 -(g26 -S'\xc3\x0f\x00\x00\x00\x00\x00\x00' -tRp18739 -sVlooked -p18740 -g24 -(g26 -S'\xf4\x13\x00\x00\x00\x00\x00\x00' -tRp18741 -sVfujitsu -p18742 -g24 -(g26 -S'\xf9\r\x00\x00\x00\x00\x00\x00' -tRp18743 -sVmovie -p18744 -g24 -(g26 -S'\x10\x16\x00\x00\x00\x00\x00\x00' -tRp18745 -sVho -p18746 -g24 -(g26 -S'\xea\x0f\x00\x00\x00\x00\x00\x00' -tRp18747 -sVhl -p18748 -g24 -(g26 -S'\xe9\x0f\x00\x00\x00\x00\x00\x00' -tRp18749 -sVchances -p18750 -g24 -(g26 -S'\x92\x05\x00\x00\x00\x00\x00\x00' -tRp18751 -sVelectoral -p18752 -g24 -(g26 -S'\x1d\x0b\x00\x00\x00\x00\x00\x00' -tRp18753 -sVagreed -p18754 -g24 -(g26 -S'\xdb\x00\x00\x00\x00\x00\x00\x00' -tRp18755 -sVautomated -p18756 -g24 -(g26 -S'\x8c\x02\x00\x00\x00\x00\x00\x00' -tRp18757 -sVapprox -p18758 -g24 -(g26 -S'\xc5\x01\x00\x00\x00\x00\x00\x00' -tRp18759 -sVchapters -p18760 -g24 -(g26 -S'\x9d\x05\x00\x00\x00\x00\x00\x00' -tRp18761 -sVtechnician -p18762 -g24 -(g26 -S'\x8d!\x00\x00\x00\x00\x00\x00' -tRp18763 -sVsenegal -p18764 -g24 -(g26 -S'G\x1e\x00\x00\x00\x00\x00\x00' -tRp18765 -sVplanning -p18766 -g24 -(g26 -S'H\x19\x00\x00\x00\x00\x00\x00' -tRp18767 -sVdemocrats -p18768 -g24 -(g26 -S'1\t\x00\x00\x00\x00\x00\x00' -tRp18769 -sVchicken -p18770 -g24 -(g26 -S'\xd8\x05\x00\x00\x00\x00\x00\x00' -tRp18771 -sVfeat -p18772 -g24 -(g26 -S'\xd0\x0c\x00\x00\x00\x00\x00\x00' -tRp18773 -sVagrees -p18774 -g24 -(g26 -S'\xde\x00\x00\x00\x00\x00\x00\x00' -tRp18775 -sVlitigation -p18776 -g24 -(g26 -S'\xb5\x13\x00\x00\x00\x00\x00\x00' -tRp18777 -sVhighest -p18778 -g24 -(g26 -S'\xca\x0f\x00\x00\x00\x00\x00\x00' -tRp18779 -sVmumbai -p18780 -g24 -(g26 -S'+\x16\x00\x00\x00\x00\x00\x00' -tRp18781 -sVcache -p18782 -g24 -(g26 -S'\xb7\x04\x00\x00\x00\x00\x00\x00' -tRp18783 -sVoperational -p18784 -g24 -(g26 -S'\x8c\x17\x00\x00\x00\x00\x00\x00' -tRp18785 -sVcandidates -p18786 -g24 -(g26 -S'\xed\x04\x00\x00\x00\x00\x00\x00' -tRp18787 -sVcombo -p18788 -g24 -(g26 -S'\xb4\x06\x00\x00\x00\x00\x00\x00' -tRp18789 -sVherald -p18790 -g24 -(g26 -S'\xba\x0f\x00\x00\x00\x00\x00\x00' -tRp18791 -sVpiano -p18792 -g24 -(g26 -S'\x0b\x19\x00\x00\x00\x00\x00\x00' -tRp18793 -sVroughly -p18794 -g24 -(g26 -S'>\x1d\x00\x00\x00\x00\x00\x00' -tRp18795 -sVlocal -p18796 -g24 -(g26 -S'\xd0\x13\x00\x00\x00\x00\x00\x00' -tRp18797 -sVcube -p18798 -g24 -(g26 -S'm\x08\x00\x00\x00\x00\x00\x00' -tRp18799 -sVwatching -p18800 -g24 -(g26 -S'\xb7$\x00\x00\x00\x00\x00\x00' -tRp18801 -sVplaintiff -p18802 -g24 -(g26 -S'?\x19\x00\x00\x00\x00\x00\x00' -tRp18803 -sVmainly -p18804 -g24 -(g26 -S'T\x14\x00\x00\x00\x00\x00\x00' -tRp18805 -sVones -p18806 -g24 -(g26 -S'w\x17\x00\x00\x00\x00\x00\x00' -tRp18807 -sVwords -p18808 -g24 -(g26 -S'L%\x00\x00\x00\x00\x00\x00' -tRp18809 -sVchips -p18810 -g24 -(g26 -S'\xe3\x05\x00\x00\x00\x00\x00\x00' -tRp18811 -sVchampagne -p18812 -g24 -(g26 -S'\x8a\x05\x00\x00\x00\x00\x00\x00' -tRp18813 -sVqt -p18814 -g24 -(g26 -S'\x05\x1b\x00\x00\x00\x00\x00\x00' -tRp18815 -sVbelts -p18816 -g24 -(g26 -S'N\x03\x00\x00\x00\x00\x00\x00' -tRp18817 -sVdifferential -p18818 -g24 -(g26 -S'\xbc\t\x00\x00\x00\x00\x00\x00' -tRp18819 -sVqc -p18820 -g24 -(g26 -S'\x03\x1b\x00\x00\x00\x00\x00\x00' -tRp18821 -sVqueries -p18822 -g24 -(g26 -S'\x1b\x1b\x00\x00\x00\x00\x00\x00' -tRp18823 -sVgenerations -p18824 -g24 -(g26 -S'\\\x0e\x00\x00\x00\x00\x00\x00' -tRp18825 -sVview -p18826 -g24 -(g26 -S',$\x00\x00\x00\x00\x00\x00' -tRp18827 -sVknowing -p18828 -g24 -(g26 -S'\xb0\x12\x00\x00\x00\x00\x00\x00' -tRp18829 -sVrequirement -p18830 -g24 -(g26 -S'p\x1c\x00\x00\x00\x00\x00\x00' -tRp18831 -sVnitrogen -p18832 -g24 -(g26 -S'\xcd\x16\x00\x00\x00\x00\x00\x00' -tRp18833 -sVacquired -p18834 -g24 -(g26 -S'Q\x00\x00\x00\x00\x00\x00\x00' -tRp18835 -sVmodule -p18836 -g24 -(g26 -S'\xc4\x15\x00\x00\x00\x00\x00\x00' -tRp18837 -sVresponses -p18838 -g24 -(g26 -S'\x9b\x1c\x00\x00\x00\x00\x00\x00' -tRp18839 -sVcloser -p18840 -g24 -(g26 -S'[\x06\x00\x00\x00\x00\x00\x00' -tRp18841 -sVcloses -p18842 -g24 -(g26 -S'\\\x06\x00\x00\x00\x00\x00\x00' -tRp18843 -sVsuperb -p18844 -g24 -(g26 -S'\xe3 \x00\x00\x00\x00\x00\x00' -tRp18845 -sVpremises -p18846 -g24 -(g26 -S'\x07\x1a\x00\x00\x00\x00\x00\x00' -tRp18847 -sVidentification -p18848 -g24 -(g26 -S'~\x10\x00\x00\x00\x00\x00\x00' -tRp18849 -sVclosed -p18850 -g24 -(g26 -S'Y\x06\x00\x00\x00\x00\x00\x00' -tRp18851 -sVcrude -p18852 -g24 -(g26 -S'a\x08\x00\x00\x00\x00\x00\x00' -tRp18853 -sVtheta -p18854 -g24 -(g26 -S'\xf6!\x00\x00\x00\x00\x00\x00' -tRp18855 -sVinterfaces -p18856 -g24 -(g26 -S'w\x11\x00\x00\x00\x00\x00\x00' -tRp18857 -sVbought -p18858 -g24 -(g26 -S'\x00\x04\x00\x00\x00\x00\x00\x00' -tRp18859 -sVpublishers -p18860 -g24 -(g26 -S'\xdc\x1a\x00\x00\x00\x00\x00\x00' -tRp18861 -sVrecipe -p18862 -g24 -(g26 -S'\xa6\x1b\x00\x00\x00\x00\x00\x00' -tRp18863 -sVexam -p18864 -g24 -(g26 -S'\x02\x0c\x00\x00\x00\x00\x00\x00' -tRp18865 -sVopening -p18866 -g24 -(g26 -S'\x83\x17\x00\x00\x00\x00\x00\x00' -tRp18867 -sVjoy -p18868 -g24 -(g26 -S'>\x12\x00\x00\x00\x00\x00\x00' -tRp18869 -sVbeverages -p18870 -g24 -(g26 -S'j\x03\x00\x00\x00\x00\x00\x00' -tRp18871 -sVagencies -p18872 -g24 -(g26 -S'\xd0\x00\x00\x00\x00\x00\x00\x00' -tRp18873 -sVcake -p18874 -g24 -(g26 -S'\xbd\x04\x00\x00\x00\x00\x00\x00' -tRp18875 -sVjob -p18876 -g24 -(g26 -S' \x12\x00\x00\x00\x00\x00\x00' -tRp18877 -sVhypothesis -p18878 -g24 -(g26 -S'i\x10\x00\x00\x00\x00\x00\x00' -tRp18879 -sVjoe -p18880 -g24 -(g26 -S'"\x12\x00\x00\x00\x00\x00\x00' -tRp18881 -sVavon -p18882 -g24 -(g26 -S'\xa1\x02\x00\x00\x00\x00\x00\x00' -tRp18883 -sVswift -p18884 -g24 -(g26 -S"'!\x00\x00\x00\x00\x00\x00" -tRp18885 -sVjon -p18886 -g24 -(g26 -S'0\x12\x00\x00\x00\x00\x00\x00' -tRp18887 -sVcommands -p18888 -g24 -(g26 -S'\xc0\x06\x00\x00\x00\x00\x00\x00' -tRp18889 -sVpiece -p18890 -g24 -(g26 -S'\x18\x19\x00\x00\x00\x00\x00\x00' -tRp18891 -sVrespondents -p18892 -g24 -(g26 -S'\x98\x1c\x00\x00\x00\x00\x00\x00' -tRp18893 -sVapril -p18894 -g24 -(g26 -S'\xca\x01\x00\x00\x00\x00\x00\x00' -tRp18895 -sVgrain -p18896 -g24 -(g26 -S'\xd5\x0e\x00\x00\x00\x00\x00\x00' -tRp18897 -sVauctions -p18898 -g24 -(g26 -S't\x02\x00\x00\x00\x00\x00\x00' -tRp18899 -sVtiffany -p18900 -g24 -(g26 -S'+"\x00\x00\x00\x00\x00\x00' -tRp18901 -sVsafely -p18902 -g24 -(g26 -S'y\x1d\x00\x00\x00\x00\x00\x00' -tRp18903 -sVgrounds -p18904 -g24 -(g26 -S'\x04\x0f\x00\x00\x00\x00\x00\x00' -tRp18905 -sVgtk -p18906 -g24 -(g26 -S'\x12\x0f\x00\x00\x00\x00\x00\x00' -tRp18907 -sVtunisia -p18908 -g24 -(g26 -S'+#\x00\x00\x00\x00\x00\x00' -tRp18909 -sVenvironments -p18910 -g24 -(g26 -S'\xa4\x0b\x00\x00\x00\x00\x00\x00' -tRp18911 -sVwalk -p18912 -g24 -(g26 -S'\x88$\x00\x00\x00\x00\x00\x00' -tRp18913 -sVwalt -p18914 -g24 -(g26 -S'\x94$\x00\x00\x00\x00\x00\x00' -tRp18915 -sVsubscribe -p18916 -g24 -(g26 -S'\xa6 \x00\x00\x00\x00\x00\x00' -tRp18917 -sVmissile -p18918 -g24 -(g26 -S'\x96\x15\x00\x00\x00\x00\x00\x00' -tRp18919 -sVrpg -p18920 -g24 -(g26 -S'P\x1d\x00\x00\x00\x00\x00\x00' -tRp18921 -sVsequences -p18922 -g24 -(g26 -S'\\\x1e\x00\x00\x00\x00\x00\x00' -tRp18923 -sVtable -p18924 -g24 -(g26 -S'J!\x00\x00\x00\x00\x00\x00' -tRp18925 -sVzinc -p18926 -g24 -(g26 -S'\xbb%\x00\x00\x00\x00\x00\x00' -tRp18927 -sVrpm -p18928 -g24 -(g26 -S'Q\x1d\x00\x00\x00\x00\x00\x00' -tRp18929 -sVprovinces -p18930 -g24 -(g26 -S'\xc3\x1a\x00\x00\x00\x00\x00\x00' -tRp18931 -sVhindu -p18932 -g24 -(g26 -S'\xd7\x0f\x00\x00\x00\x00\x00\x00' -tRp18933 -sVbbc -p18934 -g24 -(g26 -S'\x10\x03\x00\x00\x00\x00\x00\x00' -tRp18935 -sVcharts -p18936 -g24 -(g26 -S'\xb6\x05\x00\x00\x00\x00\x00\x00' -tRp18937 -sVagreements -p18938 -g24 -(g26 -S'\xdd\x00\x00\x00\x00\x00\x00\x00' -tRp18939 -sVbbw -p18940 -g24 -(g26 -S'\x12\x03\x00\x00\x00\x00\x00\x00' -tRp18941 -sVbbs -p18942 -g24 -(g26 -S'\x11\x03\x00\x00\x00\x00\x00\x00' -tRp18943 -sVnaples -p18944 -g24 -(g26 -S'V\x16\x00\x00\x00\x00\x00\x00' -tRp18945 -sVremedies -p18946 -g24 -(g26 -S'+\x1c\x00\x00\x00\x00\x00\x00' -tRp18947 -sVmike -p18948 -g24 -(g26 -S'a\x15\x00\x00\x00\x00\x00\x00' -tRp18949 -sVliverpool -p18950 -g24 -(g26 -S'\xbb\x13\x00\x00\x00\x00\x00\x00' -tRp18951 -sVnickel -p18952 -g24 -(g26 -S'\xbc\x16\x00\x00\x00\x00\x00\x00' -tRp18953 -sVverizon -p18954 -g24 -(g26 -S'\x08$\x00\x00\x00\x00\x00\x00' -tRp18955 -sVpainted -p18956 -g24 -(g26 -S'\x07\x18\x00\x00\x00\x00\x00\x00' -tRp18957 -sVtap -p18958 -g24 -(g26 -S'i!\x00\x00\x00\x00\x00\x00' -tRp18959 -sVnominations -p18960 -g24 -(g26 -S'\xd9\x16\x00\x00\x00\x00\x00\x00' -tRp18961 -sVensuring -p18962 -g24 -(g26 -S'\x8d\x0b\x00\x00\x00\x00\x00\x00' -tRp18963 -sVessentially -p18964 -g24 -(g26 -S'\xcd\x0b\x00\x00\x00\x00\x00\x00' -tRp18965 -sVpresent -p18966 -g24 -(g26 -S'\x13\x1a\x00\x00\x00\x00\x00\x00' -tRp18967 -sVabandoned -p18968 -g24 -(g26 -S'\x04\x00\x00\x00\x00\x00\x00\x00' -tRp18969 -sVunlike -p18970 -g24 -(g26 -S'\x7f#\x00\x00\x00\x00\x00\x00' -tRp18971 -sVvanilla -p18972 -g24 -(g26 -S'\xd9#\x00\x00\x00\x00\x00\x00' -tRp18973 -sVappropriations -p18974 -g24 -(g26 -S'\xc1\x01\x00\x00\x00\x00\x00\x00' -tRp18975 -sVchoices -p18976 -g24 -(g26 -S'\xe7\x05\x00\x00\x00\x00\x00\x00' -tRp18977 -sVcursor -p18978 -g24 -(g26 -S'\x82\x08\x00\x00\x00\x00\x00\x00' -tRp18979 -sVstunning -p18980 -g24 -(g26 -S'\x91 \x00\x00\x00\x00\x00\x00' -tRp18981 -sVantigua -p18982 -g24 -(g26 -S'\x8c\x01\x00\x00\x00\x00\x00\x00' -tRp18983 -sVwild -p18984 -g24 -(g26 -S'\x0e%\x00\x00\x00\x00\x00\x00' -tRp18985 -sVsupply -p18986 -g24 -(g26 -S'\xf0 \x00\x00\x00\x00\x00\x00' -tRp18987 -sVlayer -p18988 -g24 -(g26 -S'\x0f\x13\x00\x00\x00\x00\x00\x00' -tRp18989 -sVbarely -p18990 -g24 -(g26 -S'\xe9\x02\x00\x00\x00\x00\x00\x00' -tRp18991 -sVgothic -p18992 -g24 -(g26 -S'\xbb\x0e\x00\x00\x00\x00\x00\x00' -tRp18993 -sVavi -p18994 -g24 -(g26 -S'\x9d\x02\x00\x00\x00\x00\x00\x00' -tRp18995 -sVdual -p18996 -g24 -(g26 -S'\xa6\n\x00\x00\x00\x00\x00\x00' -tRp18997 -sVlightweight -p18998 -g24 -(g26 -S'\x83\x13\x00\x00\x00\x00\x00\x00' -tRp18999 -sVave -p19000 -g24 -(g26 -S'\x99\x02\x00\x00\x00\x00\x00\x00' -tRp19001 -sVavg -p19002 -g24 -(g26 -S'\x9c\x02\x00\x00\x00\x00\x00\x00' -tRp19003 -sVwhore -p19004 -g24 -(g26 -S'\x00%\x00\x00\x00\x00\x00\x00' -tRp19005 -sVlet -p19006 -g24 -(g26 -S'S\x13\x00\x00\x00\x00\x00\x00' -tRp19007 -sVvintage -p19008 -g24 -(g26 -S';$\x00\x00\x00\x00\x00\x00' -tRp19009 -sVprivileges -p19010 -g24 -(g26 -S'K\x1a\x00\x00\x00\x00\x00\x00' -tRp19011 -sVradiation -p19012 -g24 -(g26 -S'9\x1b\x00\x00\x00\x00\x00\x00' -tRp19013 -sVcross -p19014 -g24 -(g26 -S'[\x08\x00\x00\x00\x00\x00\x00' -tRp19015 -sVmember -p19016 -g24 -(g26 -S'\x0e\x15\x00\x00\x00\x00\x00\x00' -tRp19017 -sVadverse -p19018 -g24 -(g26 -S'\xa7\x00\x00\x00\x00\x00\x00\x00' -tRp19019 -sVunity -p19020 -g24 -(g26 -S'v#\x00\x00\x00\x00\x00\x00' -tRp19021 -sVgeographical -p19022 -g24 -(g26 -S'p\x0e\x00\x00\x00\x00\x00\x00' -tRp19023 -sVlargest -p19024 -g24 -(g26 -S'\xed\x12\x00\x00\x00\x00\x00\x00' -tRp19025 -sVunits -p19026 -g24 -(g26 -S'u#\x00\x00\x00\x00\x00\x00' -tRp19027 -sVgets -p19028 -g24 -(g26 -S'z\x0e\x00\x00\x00\x00\x00\x00' -tRp19029 -sVincl -p19030 -g24 -(g26 -S'\xc8\x10\x00\x00\x00\x00\x00\x00' -tRp19031 -sVtomatoes -p19032 -g24 -(g26 -S'_"\x00\x00\x00\x00\x00\x00' -tRp19033 -sVdifficult -p19034 -g24 -(g26 -S'\xbe\t\x00\x00\x00\x00\x00\x00' -tRp19035 -sVslave -p19036 -g24 -(g26 -S"'\x1f\x00\x00\x00\x00\x00\x00" -tRp19037 -sVpromo -p19038 -g24 -(g26 -S'\x8c\x1a\x00\x00\x00\x00\x00\x00' -tRp19039 -sVpremiere -p19040 -g24 -(g26 -S'\x06\x1a\x00\x00\x00\x00\x00\x00' -tRp19041 -sVdisagree -p19042 -g24 -(g26 -S'\xe2\t\x00\x00\x00\x00\x00\x00' -tRp19043 -sVdiploma -p19044 -g24 -(g26 -S'\xcf\t\x00\x00\x00\x00\x00\x00' -tRp19045 -sVautomation -p19046 -g24 -(g26 -S'\x8f\x02\x00\x00\x00\x00\x00\x00' -tRp19047 -sVbeast -p19048 -g24 -(g26 -S'\x1f\x03\x00\x00\x00\x00\x00\x00' -tRp19049 -sVcoaches -p19050 -g24 -(g26 -S'p\x06\x00\x00\x00\x00\x00\x00' -tRp19051 -sVstudent -p19052 -g24 -(g26 -S'\x87 \x00\x00\x00\x00\x00\x00' -tRp19053 -sVwhale -p19054 -g24 -(g26 -S'\xf8$\x00\x00\x00\x00\x00\x00' -tRp19055 -sVlobby -p19056 -g24 -(g26 -S'\xce\x13\x00\x00\x00\x00\x00\x00' -tRp19057 -sVwarming -p19058 -g24 -(g26 -S'\xa3$\x00\x00\x00\x00\x00\x00' -tRp19059 -sVceltic -p19060 -g24 -(g26 -S'a\x05\x00\x00\x00\x00\x00\x00' -tRp19061 -sVcontest -p19062 -g24 -(g26 -S'\x9a\x07\x00\x00\x00\x00\x00\x00' -tRp19063 -sVfighting -p19064 -g24 -(g26 -S'\x01\r\x00\x00\x00\x00\x00\x00' -tRp19065 -sVenglish -p19066 -g24 -(g26 -S'z\x0b\x00\x00\x00\x00\x00\x00' -tRp19067 -sVundertaken -p19068 -g24 -(g26 -S'e#\x00\x00\x00\x00\x00\x00' -tRp19069 -sVexcessive -p19070 -g24 -(g26 -S'\x15\x0c\x00\x00\x00\x00\x00\x00' -tRp19071 -sVranking -p19072 -g24 -(g26 -S'Y\x1b\x00\x00\x00\x00\x00\x00' -tRp19073 -sVheavily -p19074 -g24 -(g26 -S'\xa4\x0f\x00\x00\x00\x00\x00\x00' -tRp19075 -sVboot -p19076 -g24 -(g26 -S'\xef\x03\x00\x00\x00\x00\x00\x00' -tRp19077 -sVobtain -p19078 -g24 -(g26 -S'4\x17\x00\x00\x00\x00\x00\x00' -tRp19079 -sVtcp -p19080 -g24 -(g26 -S'~!\x00\x00\x00\x00\x00\x00' -tRp19081 -sVbatteries -p19082 -g24 -(g26 -S'\n\x03\x00\x00\x00\x00\x00\x00' -tRp19083 -sVfishing -p19084 -g24 -(g26 -S':\r\x00\x00\x00\x00\x00\x00' -tRp19085 -sVillinois -p19086 -g24 -(g26 -S'\x90\x10\x00\x00\x00\x00\x00\x00' -tRp19087 -sVhappiness -p19088 -g24 -(g26 -S']\x0f\x00\x00\x00\x00\x00\x00' -tRp19089 -sVbrad -p19090 -g24 -(g26 -S'\x17\x04\x00\x00\x00\x00\x00\x00' -tRp19091 -sVsku -p19092 -g24 -(g26 -S'#\x1f\x00\x00\x00\x00\x00\x00' -tRp19093 -sVrapid -p19094 -g24 -(g26 -S'^\x1b\x00\x00\x00\x00\x00\x00' -tRp19095 -sVconsole -p19096 -g24 -(g26 -S'q\x07\x00\x00\x00\x00\x00\x00' -tRp19097 -sVdrunk -p19098 -g24 -(g26 -S'\x9d\n\x00\x00\x00\x00\x00\x00' -tRp19099 -sVsmith -p19100 -g24 -(g26 -S'E\x1f\x00\x00\x00\x00\x00\x00' -tRp19101 -sVunsigned -p19102 -g24 -(g26 -S'\x84#\x00\x00\x00\x00\x00\x00' -tRp19103 -sVcapabilities -p19104 -g24 -(g26 -S'\xf6\x04\x00\x00\x00\x00\x00\x00' -tRp19105 -sVdiscuss -p19106 -g24 -(g26 -S'\xf9\t\x00\x00\x00\x00\x00\x00' -tRp19107 -sVadoption -p19108 -g24 -(g26 -S'\x99\x00\x00\x00\x00\x00\x00\x00' -tRp19109 -sVattractive -p19110 -g24 -(g26 -S'm\x02\x00\x00\x00\x00\x00\x00' -tRp19111 -sVusage -p19112 -g24 -(g26 -S'\xa4#\x00\x00\x00\x00\x00\x00' -tRp19113 -sVsmart -p19114 -g24 -(g26 -S'A\x1f\x00\x00\x00\x00\x00\x00' -tRp19115 -sVski -p19116 -g24 -(g26 -S'\x19\x1f\x00\x00\x00\x00\x00\x00' -tRp19117 -sVstakeholders -p19118 -g24 -(g26 -S'\x02 \x00\x00\x00\x00\x00\x00' -tRp19119 -sVidentical -p19120 -g24 -(g26 -S'}\x10\x00\x00\x00\x00\x00\x00' -tRp19121 -sVrecycling -p19122 -g24 -(g26 -S'\xc1\x1b\x00\x00\x00\x00\x00\x00' -tRp19123 -sVbranch -p19124 -g24 -(g26 -S'\x1d\x04\x00\x00\x00\x00\x00\x00' -tRp19125 -sVmyth -p19126 -g24 -(g26 -S'J\x16\x00\x00\x00\x00\x00\x00' -tRp19127 -sVexecute -p19128 -g24 -(g26 -S'#\x0c\x00\x00\x00\x00\x00\x00' -tRp19129 -sVsiemens -p19130 -g24 -(g26 -S'\xda\x1e\x00\x00\x00\x00\x00\x00' -tRp19131 -sVleon -p19132 -g24 -(g26 -S'I\x13\x00\x00\x00\x00\x00\x00' -tRp19133 -sVfacial -p19134 -g24 -(g26 -S'\x87\x0c\x00\x00\x00\x00\x00\x00' -tRp19135 -sVpress -p19136 -g24 -(g26 -S'\x1e\x1a\x00\x00\x00\x00\x00\x00' -tRp19137 -sVhelpful -p19138 -g24 -(g26 -S'\xb3\x0f\x00\x00\x00\x00\x00\x00' -tRp19139 -sVmiami -p19140 -g24 -(g26 -S'N\x15\x00\x00\x00\x00\x00\x00' -tRp19141 -sVdietary -p19142 -g24 -(g26 -S'\xb6\t\x00\x00\x00\x00\x00\x00' -tRp19143 -sVhosts -p19144 -g24 -(g26 -S'+\x10\x00\x00\x00\x00\x00\x00' -tRp19145 -sVjanuary -p19146 -g24 -(g26 -S'\xf6\x11\x00\x00\x00\x00\x00\x00' -tRp19147 -sVexceed -p19148 -g24 -(g26 -S'\x0c\x0c\x00\x00\x00\x00\x00\x00' -tRp19149 -sVclusters -p19150 -g24 -(g26 -S'i\x06\x00\x00\x00\x00\x00\x00' -tRp19151 -sVexpansys -p19152 -g24 -(g26 -S'=\x0c\x00\x00\x00\x00\x00\x00' -tRp19153 -sVkde -p19154 -g24 -(g26 -S'o\x12\x00\x00\x00\x00\x00\x00' -tRp19155 -sVscared -p19156 -g24 -(g26 -S'\xc8\x1d\x00\x00\x00\x00\x00\x00' -tRp19157 -sVchurch -p19158 -g24 -(g26 -S'\xff\x05\x00\x00\x00\x00\x00\x00' -tRp19159 -sVsearching -p19160 -g24 -(g26 -S'\x07\x1e\x00\x00\x00\x00\x00\x00' -tRp19161 -sVplatforms -p19162 -g24 -(g26 -S'R\x19\x00\x00\x00\x00\x00\x00' -tRp19163 -sVgrowth -p19164 -g24 -(g26 -S'\r\x0f\x00\x00\x00\x00\x00\x00' -tRp19165 -sVexport -p19166 -g24 -(g26 -S'b\x0c\x00\x00\x00\x00\x00\x00' -tRp19167 -sVempire -p19168 -g24 -(g26 -S'H\x0b\x00\x00\x00\x00\x00\x00' -tRp19169 -sVemployment -p19170 -g24 -(g26 -S'P\x0b\x00\x00\x00\x00\x00\x00' -tRp19171 -sVjeremy -p19172 -g24 -(g26 -S'\x0b\x12\x00\x00\x00\x00\x00\x00' -tRp19173 -sVoperation -p19174 -g24 -(g26 -S'\x8b\x17\x00\x00\x00\x00\x00\x00' -tRp19175 -sVsally -p19176 -g24 -(g26 -S'\x8a\x1d\x00\x00\x00\x00\x00\x00' -tRp19177 -sVmines -p19178 -g24 -(g26 -S'z\x15\x00\x00\x00\x00\x00\x00' -tRp19179 -sVmarkers -p19180 -g24 -(g26 -S'\x9f\x14\x00\x00\x00\x00\x00\x00' -tRp19181 -sVearrings -p19182 -g24 -(g26 -S'\xcd\n\x00\x00\x00\x00\x00\x00' -tRp19183 -sVleader -p19184 -g24 -(g26 -S'\x1a\x13\x00\x00\x00\x00\x00\x00' -tRp19185 -sVtrout -p19186 -g24 -(g26 -S'\x0b#\x00\x00\x00\x00\x00\x00' -tRp19187 -sVlocate -p19188 -g24 -(g26 -S'\xd3\x13\x00\x00\x00\x00\x00\x00' -tRp19189 -sVslut -p19190 -g24 -(g26 -S';\x1f\x00\x00\x00\x00\x00\x00' -tRp19191 -sVability -p19192 -g24 -(g26 -S'\x08\x00\x00\x00\x00\x00\x00\x00' -tRp19193 -sVwesley -p19194 -g24 -(g26 -S'\xf3$\x00\x00\x00\x00\x00\x00' -tRp19195 -sVpasta -p19196 -g24 -(g26 -S'_\x18\x00\x00\x00\x00\x00\x00' -tRp19197 -sVstay -p19198 -g24 -(g26 -S'+ \x00\x00\x00\x00\x00\x00' -tRp19199 -sVpaste -p19200 -g24 -(g26 -S'`\x18\x00\x00\x00\x00\x00\x00' -tRp19201 -sVperspectives -p19202 -g24 -(g26 -S'\xcf\x18\x00\x00\x00\x00\x00\x00' -tRp19203 -sVpike -p19204 -g24 -(g26 -S'\x1d\x19\x00\x00\x00\x00\x00\x00' -tRp19205 -sVrare -p19206 -g24 -(g26 -S'a\x1b\x00\x00\x00\x00\x00\x00' -tRp19207 -sVcarried -p19208 -g24 -(g26 -S'\x1b\x05\x00\x00\x00\x00\x00\x00' -tRp19209 -sVextension -p19210 -g24 -(g26 -S'o\x0c\x00\x00\x00\x00\x00\x00' -tRp19211 -sVgetting -p19212 -g24 -(g26 -S'{\x0e\x00\x00\x00\x00\x00\x00' -tRp19213 -sVcolumn -p19214 -g24 -(g26 -S'\xa9\x06\x00\x00\x00\x00\x00\x00' -tRp19215 -sVuniverse -p19216 -g24 -(g26 -S'y#\x00\x00\x00\x00\x00\x00' -tRp19217 -sVdependence -p19218 -g24 -(g26 -S'G\t\x00\x00\x00\x00\x00\x00' -tRp19219 -sVshipping -p19220 -g24 -(g26 -S'\xb2\x1e\x00\x00\x00\x00\x00\x00' -tRp19221 -sVsurge -p19222 -g24 -(g26 -S'\x00!\x00\x00\x00\x00\x00\x00' -tRp19223 -sVcarries -p19224 -g24 -(g26 -S'\x1e\x05\x00\x00\x00\x00\x00\x00' -tRp19225 -sVcarrier -p19226 -g24 -(g26 -S'\x1c\x05\x00\x00\x00\x00\x00\x00' -tRp19227 -sVemperor -p19228 -g24 -(g26 -S'F\x0b\x00\x00\x00\x00\x00\x00' -tRp19229 -sVgreensboro -p19230 -g24 -(g26 -S'\xf4\x0e\x00\x00\x00\x00\x00\x00' -tRp19231 -sVwarranty -p19232 -g24 -(g26 -S'\xaa$\x00\x00\x00\x00\x00\x00' -tRp19233 -sVpolished -p19234 -g24 -(g26 -S'\x8a\x19\x00\x00\x00\x00\x00\x00' -tRp19235 -sVwilderness -p19236 -g24 -(g26 -S'\x0f%\x00\x00\x00\x00\x00\x00' -tRp19237 -sVtravelers -p19238 -g24 -(g26 -S'\xd4"\x00\x00\x00\x00\x00\x00' -tRp19239 -sVweather -p19240 -g24 -(g26 -S'\xce$\x00\x00\x00\x00\x00\x00' -tRp19241 -sVpromise -p19242 -g24 -(g26 -S'\x88\x1a\x00\x00\x00\x00\x00\x00' -tRp19243 -sVbrush -p19244 -g24 -(g26 -S'g\x04\x00\x00\x00\x00\x00\x00' -tRp19245 -sVregistration -p19246 -g24 -(g26 -S'\xf7\x1b\x00\x00\x00\x00\x00\x00' -tRp19247 -sVeh -p19248 -g24 -(g26 -S'\x14\x0b\x00\x00\x00\x00\x00\x00' -tRp19249 -sVconvicted -p19250 -g24 -(g26 -S'\xca\x07\x00\x00\x00\x00\x00\x00' -tRp19251 -sVnuke -p19252 -g24 -(g26 -S'\n\x17\x00\x00\x00\x00\x00\x00' -tRp19253 -sVvan -p19254 -g24 -(g26 -S'\xd7#\x00\x00\x00\x00\x00\x00' -tRp19255 -sVexciting -p19256 -g24 -(g26 -S'\x1a\x0c\x00\x00\x00\x00\x00\x00' -tRp19257 -sVtransfer -p19258 -g24 -(g26 -S'\xbb"\x00\x00\x00\x00\x00\x00' -tRp19259 -sVapps -p19260 -g24 -(g26 -S'\xc8\x01\x00\x00\x00\x00\x00\x00' -tRp19261 -sVcontinental -p19262 -g24 -(g26 -S'\x9e\x07\x00\x00\x00\x00\x00\x00' -tRp19263 -sVintention -p19264 -g24 -(g26 -S'm\x11\x00\x00\x00\x00\x00\x00' -tRp19265 -sVvar -p19266 -g24 -(g26 -S'\xda#\x00\x00\x00\x00\x00\x00' -tRp19267 -sVbreeding -p19268 -g24 -(g26 -S'3\x04\x00\x00\x00\x00\x00\x00' -tRp19269 -sVvat -p19270 -g24 -(g26 -S'\xe8#\x00\x00\x00\x00\x00\x00' -tRp19271 -sVunwrap -p19272 -g24 -(g26 -S'\x89#\x00\x00\x00\x00\x00\x00' -tRp19273 -sVfunds -p19274 -g24 -(g26 -S'\x07\x0e\x00\x00\x00\x00\x00\x00' -tRp19275 -sVlaos -p19276 -g24 -(g26 -S'\xe6\x12\x00\x00\x00\x00\x00\x00' -tRp19277 -sVlooksmart -p19278 -g24 -(g26 -S'\xf7\x13\x00\x00\x00\x00\x00\x00' -tRp19279 -sVvolume -p19280 -g24 -(g26 -S'g$\x00\x00\x00\x00\x00\x00' -tRp19281 -sVmailed -p19282 -g24 -(g26 -S'L\x14\x00\x00\x00\x00\x00\x00' -tRp19283 -sVgranny -p19284 -g24 -(g26 -S'\xda\x0e\x00\x00\x00\x00\x00\x00' -tRp19285 -sVbradley -p19286 -g24 -(g26 -S'\x19\x04\x00\x00\x00\x00\x00\x00' -tRp19287 -sVtactics -p19288 -g24 -(g26 -S'P!\x00\x00\x00\x00\x00\x00' -tRp19289 -sVflorists -p19290 -g24 -(g26 -S'd\r\x00\x00\x00\x00\x00\x00' -tRp19291 -sVrecord -p19292 -g24 -(g26 -S'\xb3\x1b\x00\x00\x00\x00\x00\x00' -tRp19293 -sVpersian -p19294 -g24 -(g26 -S'\xc4\x18\x00\x00\x00\x00\x00\x00' -tRp19295 -sVruling -p19296 -g24 -(g26 -S'`\x1d\x00\x00\x00\x00\x00\x00' -tRp19297 -sVinfants -p19298 -g24 -(g26 -S'\x01\x11\x00\x00\x00\x00\x00\x00' -tRp19299 -sVdemonstrate -p19300 -g24 -(g26 -S'3\t\x00\x00\x00\x00\x00\x00' -tRp19301 -sVjenny -p19302 -g24 -(g26 -S'\n\x12\x00\x00\x00\x00\x00\x00' -tRp19303 -sVez -p19304 -g24 -(g26 -S'\x7f\x0c\x00\x00\x00\x00\x00\x00' -tRp19305 -sVtheatre -p19306 -g24 -(g26 -S'\xe4!\x00\x00\x00\x00\x00\x00' -tRp19307 -sVappears -p19308 -g24 -(g26 -S'\xa9\x01\x00\x00\x00\x00\x00\x00' -tRp19309 -sVmutual -p19310 -g24 -(g26 -S'=\x16\x00\x00\x00\x00\x00\x00' -tRp19311 -sVev -p19312 -g24 -(g26 -S'\xea\x0b\x00\x00\x00\x00\x00\x00' -tRp19313 -sVimproving -p19314 -g24 -(g26 -S'\xbd\x10\x00\x00\x00\x00\x00\x00' -tRp19315 -sVcalibration -p19316 -g24 -(g26 -S'\xca\x04\x00\x00\x00\x00\x00\x00' -tRp19317 -sVpercent -p19318 -g24 -(g26 -S'\xa8\x18\x00\x00\x00\x00\x00\x00' -tRp19319 -sVpills -p19320 -g24 -(g26 -S' \x19\x00\x00\x00\x00\x00\x00' -tRp19321 -sVbook -p19322 -g24 -(g26 -S'\xe4\x03\x00\x00\x00\x00\x00\x00' -tRp19323 -sVbool -p19324 -g24 -(g26 -S'\xeb\x03\x00\x00\x00\x00\x00\x00' -tRp19325 -sVboom -p19326 -g24 -(g26 -S'\xed\x03\x00\x00\x00\x00\x00\x00' -tRp19327 -sVnormal -p19328 -g24 -(g26 -S'\xdf\x16\x00\x00\x00\x00\x00\x00' -tRp19329 -sVcommented -p19330 -g24 -(g26 -S'\xc3\x06\x00\x00\x00\x00\x00\x00' -tRp19331 -sVboob -p19332 -g24 -(g26 -S'\xe2\x03\x00\x00\x00\x00\x00\x00' -tRp19333 -sVclicks -p19334 -g24 -(g26 -S'H\x06\x00\x00\x00\x00\x00\x00' -tRp19335 -sVcontacting -p19336 -g24 -(g26 -S'\x8e\x07\x00\x00\x00\x00\x00\x00' -tRp19337 -sVconclusion -p19338 -g24 -(g26 -S')\x07\x00\x00\x00\x00\x00\x00' -tRp19339 -sVlance -p19340 -g24 -(g26 -S'\xda\x12\x00\x00\x00\x00\x00\x00' -tRp19341 -sVjunk -p19342 -g24 -(g26 -S'X\x12\x00\x00\x00\x00\x00\x00' -tRp19343 -sVkinds -p19344 -g24 -(g26 -S'\x98\x12\x00\x00\x00\x00\x00\x00' -tRp19345 -sVjune -p19346 -g24 -(g26 -S'U\x12\x00\x00\x00\x00\x00\x00' -tRp19347 -sVmargaret -p19348 -g24 -(g26 -S'\x90\x14\x00\x00\x00\x00\x00\x00' -tRp19349 -sVaccomplish -p19350 -g24 -(g26 -S'2\x00\x00\x00\x00\x00\x00\x00' -tRp19351 -sVpumps -p19352 -g24 -(g26 -S'\xe6\x1a\x00\x00\x00\x00\x00\x00' -tRp19353 -sVkinda -p19354 -g24 -(g26 -S'\x97\x12\x00\x00\x00\x00\x00\x00' -tRp19355 -sVpriced -p19356 -g24 -(g26 -S'-\x1a\x00\x00\x00\x00\x00\x00' -tRp19357 -sVdebian -p19358 -g24 -(g26 -S'\xe1\x08\x00\x00\x00\x00\x00\x00' -tRp19359 -sVincurred -p19360 -g24 -(g26 -S'\xdb\x10\x00\x00\x00\x00\x00\x00' -tRp19361 -sVcliff -p19362 -g24 -(g26 -S'K\x06\x00\x00\x00\x00\x00\x00' -tRp19363 -sVranks -p19364 -g24 -(g26 -S'[\x1b\x00\x00\x00\x00\x00\x00' -tRp19365 -sVjewel -p19366 -g24 -(g26 -S'\x14\x12\x00\x00\x00\x00\x00\x00' -tRp19367 -sVvolumes -p19368 -g24 -(g26 -S'h$\x00\x00\x00\x00\x00\x00' -tRp19369 -sVrichardson -p19370 -g24 -(g26 -S'\xe6\x1c\x00\x00\x00\x00\x00\x00' -tRp19371 -ssS'binary' -p19372 -I00 -sS'ngram_range' -p19373 -(I1 -I2 -tp19374 -sS'_sklearn_version' -p19375 -S'0.18.1' -p19376 -sS'max_df' -p19377 -F1 -sS'min_df' -p19378 -I1 -sS'max_features' -p19379 -NsS'fixed_vocabulary_' -p19380 -I00 -sS'strip_accents' -p19381 -NsS'dtype' -p19382 -cnumpy -int64 -p19383 -sS'stop_words_' -p19384 -c__builtin__ -set -p19385 -((ltRp19386 -sS'preprocessor' -p19387 -Nsb. \ No newline at end of file diff --git a/searches/migrations/__init__.py b/searches/migrations/__init__.py index 48cb47ffcf..54cb057c9e 100644 --- a/searches/migrations/__init__.py +++ b/searches/migrations/__init__.py @@ -11,4 +11,3 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. """ - diff --git a/searches/models.py b/searches/models.py index 2003a3876f..cc8dcdbb31 100644 --- a/searches/models.py +++ b/searches/models.py @@ -10,8 +10,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import unicode_literals - from django.db import models # Create your models here. diff --git a/searches/tasks.py b/searches/tasks.py deleted file mode 100644 index 7a2541bb1b..0000000000 --- a/searches/tasks.py +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright (C) 2017 Semester.ly Technologies, LLC -# -# Semester.ly is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# Semester.ly is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -from celery.decorators import periodic_task -from celery.task.schedules import crontab - -from searches.utils import Vectorizer - - -@periodic_task( - run_every=(crontab(day_of_week='mon', hour=12, minute=00)), - name="task_parse_textbooks", - ignore_result=True -) -def task_vectorize(): - """Run the vectorizer.""" - Vectorizer().vectorize() diff --git a/searches/tests.py b/searches/tests.py index e240e08164..2194a5d584 100644 --- a/searches/tests.py +++ b/searches/tests.py @@ -15,84 +15,158 @@ from timetable.models import Course, Section, Offering, Semester from helpers.test.test_cases import UrlTestCase -from searches.utils import Vectorizer -class BasicSearchTest(APITestCase): - school = 'uoft' - request_headers = { - 'HTTP_HOST': '{}.sem.ly:8000'.format(school) - } - def setUp(self): - sem = Semester.objects.create(name='Winter', year='1995') - course = Course.objects.create(school=self.school, code='SEA101', name='Intro', description="awesome") - section = Section.objects.create(course=course, semester=sem, meeting_section='L1', section_type='L') - Offering.objects.create(section=section, day='M', time_start='8:00', time_end='10:00') +def setUpTests(self): + sem = Semester.objects.create(name="Winter", year="1995") + course = Course.objects.create( + school=self.school, + code="SEA101", + name="Intro", + level=100, + areas=["E", "Q"], + department="Computer Science", + ) + section = Section.objects.create( + course=course, semester=sem, meeting_section="L1", section_type="L" + ) + Offering.objects.create( + section=section, + day="M", + date_start="08-29-1995", + date_end="12-10-1995", + time_start="8:00", + time_end="10:00", + is_short_course=False, + ) - def test_course_exists(self): - response = self.client.get('/search/Winter/1995/sea/', **self.request_headers) - self.assertEqual(response.status_code, status.HTTP_200_OK) - self.assertNotEqual(len(response.data), 0) - def test_no_course_exists(self): - response = self.client.get('/search/Fall/2016/sea/', **self.request_headers) - self.assertEqual(response.status_code, status.HTTP_200_OK) - self.assertEqual(len(response.data), 0) +def assertEmptyResponse(self, body, url): + response = self.client.get(url, body, format="json", **self.request_headers) + self.assertEqual(response.status_code, status.HTTP_200_OK) + self.assertEqual(len(response.data), 0) + + +def assertNonemptyResponse(self, body, url): + response = self.client.get(url, body, format="json", **self.request_headers) + self.assertEqual(response.status_code, status.HTTP_200_OK) + self.assertNotEqual(len(response.data), 0) + + +def searchAssertEmptyResponse(self, body, url): + response = self.client.post(url, body, format="json", **self.request_headers) + self.assertEqual(response.status_code, status.HTTP_200_OK) + self.assertEqual(len(response.data["data"]), 0) + + +def searchAssertNonemptyResponse(self, body, url): + response = self.client.post(url, body, format="json", **self.request_headers) + self.assertEqual(response.status_code, status.HTTP_200_OK) + self.assertNotEqual(len(response.data["data"]), 0) - # def test_description_exist(self): - # response = self.client.get('/search/Winter/1995/awesome/', **self.request_headers) - # self.assertEqual(response.status_code, status.HTTP_200_OK) - # self.assertNotEqual(len(response.data), 0) + +class BasicSearchTest(APITestCase): + school = "uoft" + request_headers = {"HTTP_HOST": "{}.sem.ly:8000".format(school)} + + def setUp(self): + setUpTests(self) + + def test_search_partial(self): + searchAssertNonemptyResponse(self, {}, "/search/Winter/1995/int") + + def test_search_exact(self): + searchAssertNonemptyResponse(self, {}, "/search/Winter/1995/Intro") + + def test_search_empty(self): + searchAssertEmptyResponse(self, {}, "/search/Winter/1995/asdf") + + def test_search_abbreviation(self): + sem = Semester.objects.create(name="Winter", year="1996") + course = Course.objects.create( + school=self.school, + code="SEA102", + name="Data Structures", + level=100, + areas=["E", "Q"], + department="Computer Science", + ) + section = Section.objects.create( + course=course, semester=sem, meeting_section="L1", section_type="L" + ) + Offering.objects.create( + section=section, + day="M", + date_start="08-29-1996", + date_end="12-10-1996", + time_start="8:00", + time_end="10:00", + is_short_course=False, + ) + searchAssertNonemptyResponse(self, {}, "/search/Winter/1996/ds") class AdvancedSearchTest(APITestCase): - school = 'uoft' - request_headers = { - 'HTTP_HOST': '{}.sem.ly:8000'.format(school) - } + school = "uoft" + request_headers = {"HTTP_HOST": "{}.sem.ly:8000".format(school)} def setUp(self): - sem = Semester.objects.create(name='Winter', year='1995') - course = Course.objects.create(school=self.school, code='SEA101', name='Intro') - section = Section.objects.create(course=course, semester=sem, meeting_section='L1') - Offering.objects.create(section=section, day='M', time_start='8:00', time_end='10:00') + setUpTests(self) + + def test_course_exists(self): + searchAssertNonemptyResponse(self, {}, "/search/Winter/1995/sea/") + + def test_no_course_exists(self): + searchAssertEmptyResponse(self, {}, "/search/Fall/2016/sea/") + + def test_right_course(self): + response = self.client.post( + "/search/Winter/1995/sea/", format="json", **self.request_headers + ) + courses = response.data["data"] + self.assertEquals(1, len(courses)) + self.assertEquals("SEA101", courses[0]["code"]) + self.assertEquals("Intro", courses[0]["name"]) def test_no_filter(self): - response = self.client.get('/search/Winter/1995/sea/', **self.request_headers) - self.assertEqual(response.status_code, status.HTTP_200_OK) - self.assertNotEqual(len(response.data), 0) + searchAssertEmptyResponse(self, {}, "/search/Winter/1995/none") + searchAssertNonemptyResponse(self, {}, "/search/Winter/1995/sea/") def test_filter_times(self): - body = { - 'filters': { - 'times': [{ - 'min': 12, - 'max': 20, - 'day': 'Tuesday' - }] - } - } - response = self.client.post('/search/Winter/1995/sea/', body, format='json', **self.request_headers) - self.assertEqual(response.status_code, status.HTTP_200_OK) - self.assertEqual(len(response.data), 0) + body = {"filters": {"times": [{"min": 12, "max": 20, "day": "Tuesday"}]}} + searchAssertEmptyResponse(self, body, "/search/Winter/1995/sea/") + body = {"filters": {"times": [{"min": 8, "max": 20, "day": "Monday"}]}} + searchAssertNonemptyResponse(self, body, "/search/Winter/1995/sea/") def test_filter_levels(self): - body = { - 'filters': { - 'levels': [100] - } - } - response = self.client.post('/search/Winter/1995/sea/', body, format='json', **self.request_headers) - self.assertEqual(response.status_code, status.HTTP_200_OK) - self.assertEqual(len(response.data), 0) - - def test_pagination(self): - pass + body = {"filters": {"levels": [200]}} + searchAssertEmptyResponse(self, body, "/search/Winter/1995/sea/") + body = {"filters": {"levels": [100]}} + searchAssertNonemptyResponse(self, body, "/search/Winter/1995/sea/") + + def test_filter_areas(self): + body = {"filters": {"areas": "{H}"}} + searchAssertEmptyResponse(self, body, "/search/Winter/1995/sea/") + body = {"filters": {"areas": "{E}"}} + searchAssertNonemptyResponse(self, body, "/search/Winter/1995/sea/") + body = {"filters": {"areas": "{Q}"}} + searchAssertNonemptyResponse(self, body, "/search/Winter/1995/sea/") + body = {"filters": {"areas": "{E,Q}"}} + searchAssertNonemptyResponse(self, body, "/search/Winter/1995/sea/") + + def test_filter_departments(self): + body = {"filters": {"departments": ["Psychology"]}} + searchAssertEmptyResponse(self, body, "/search/Winter/1995/sea/") + body = {"filters": {"departments": ["Computer Science"]}} + searchAssertNonemptyResponse(self, body, "/search/Winter/1995/sea/") class UrlsTest(UrlTestCase): - """ Test search/urls.py """ + """Test search/urls.py""" def test_urls_call_correct_views(self): - self.assertUrlResolvesToView('/search/Intermission/2019/opencv/', 'searches.views.CourseSearchList', - kwargs={'sem_name': 'Intermission', 'year': '2019', 'query': 'opencv'}) \ No newline at end of file + self.assertUrlResolvesToView( + "/search/Intermission/2019/opencv/", + "searches.views.CourseSearchList", + kwargs={"sem_name": "Intermission", "year": "2019", "query": "opencv"}, + ) diff --git a/searches/urls.py b/searches/urls.py index d5071ccbde..82e18c02d0 100644 --- a/searches/urls.py +++ b/searches/urls.py @@ -10,16 +10,14 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from django.conf.urls import patterns, url -from django.contrib import admin +from django.conf.urls import re_path import searches.views -admin.autodiscover() - - -urlpatterns = patterns('', - url(r'^search/(?P.+?)/(?P[0-9]{4})/(?P.*?)/?$', - searches.views.CourseSearchList.as_view()), - ) +urlpatterns = [ + re_path( + r"^search/(?P.+?)/(?P[0-9]{4})/(?P.*?)/?$", + searches.views.CourseSearchList.as_view(), + ), +] diff --git a/searches/utils.py b/searches/utils.py index b98cb88963..5781ecc6e6 100644 --- a/searches/utils.py +++ b/searches/utils.py @@ -10,188 +10,160 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - -from __future__ import division -import cPickle as pickle -import numpy as np import operator -from sklearn.feature_extraction.text import TfidfTransformer -from django.db.models import Q +from django.db.models import Q, Count from timetable.models import Course -from nltk.stem.porter import * -import progressbar - - -def baseline_search(school, query, semester): - """Baseline search returns courses that are contained in the name from a query (legacy code).""" +from functools import reduce + +abbreviations = { + "aap": ["Asian American Politics"], + "ai": ["Artificial Intelligence"], + "ar": ["Augmented Reality"], + "algo": ["Intro Algorithms"], + "algos": ["Intro Algorithms"], + "bmed": ["Biomedical Engineering and Design"], + "cmm": ["Computational Molecular Medicine"], + "conlaw": ["Constitutional Law"], + "csf": ["Computer System Fundamentals"], + "csie": [ + "Computer Science Innovation & Entrepreneurship I", + "Computer Science Innovation & Entrepreneurship II", + ], + "cte": ["Cell and Tissue Engineering Lab"], + "dads": ["Design and Analysis of Dynamical Systems"], + "db": ["Databases"], + "devgen": ["Developmental Genetics"], + "dm": ["Discrete Mathematics", "Honors Discrete Mathematics"], + "diffeq": ["Differential Equations and Applications"], + "ds": ["Data Structures"], + "dsf": ["Digital Systems Fundamentals"], + "e&i": ["Electronics & Instrumentation"], + "fbbc": ["Foundations of Brain, Behavior and Cognition"], + "fpse": ["Functional Programming in Software Engineering"], + "fsjs": ["Full-Stack Javascript"], + "hci": ["Introduction to Human-Computer Interaction"], + "hri": ["Human-Robot Interaction"], + "icp": ["Introduction to Cognitive Psychology"], + "ie": ["International Monetary Economics"], + "ifp": [ + "Introduction to Fiction & Poetry I", + "Introduction to Fiction & Poetry II", + ], + "ifp i": ["Introduction to Fiction & Poetry I"], + "ifp ii": ["Introduction to Fiction & Poetry II"], + "igec": ["Introduction to Global Environmental Change"], + "iid": ["Issues in International Development"], + "ime": ["International Monetary Economics"], + "ip": ["Intermediate Programming"], + "ir": ["Information Retrieval and Web Agents"], + "js": ["Full-Stack Javascript"], + "lade": ["Linear Algebra and Differential Equations"], + "linalg": ["Linear Algebra", "Honors Linear Algebra"], + "linsig": ["Linear Signals and Systems"], + "mbd": ["Mechanics-Based Design", "Mechanics Based Design Laboratory"], + "me": ["Mastering Electronics"], + "meb": ["Introduction to Chemical and Biological Process Analysis"], + "mfcs": ["Mathematical Foundations for Computer Science"], + "ml": ["Machine Learning", "Machine Learning: Deep Learning"], + "mldl": ["Machine Learning: Deep Learning"], + "modsim": ["Biological Models and Simulations"], + "modsims": ["Biological Models and Simulations"], + "nlp": [ + "Natural Language Processing", + "Natural Language Processing: Self-Supervised Models", + ], + "ochem": [ + "Introductory Organic Chemistry I", + "Introductory Organic Chemistry Laboratory", + "Organic Chemistry II", + "Honors Organic Chemistry II", + "Chemical Chirality: An Introduction in Organic Chem. Lab, Techniques", + "Intermediate Organic Chemistry Laboratory", + ], + "oose": ["Object Oriented Software Engineering"], + "orgo": [ + "Introductory Organic Chemistry I", + "Introductory Organic Chemistry Laboratory", + "Organic Chemistry II", + "Honors Organic Chemistry II", + "Chemical Chirality: An Introduction in Organic Chem. Lab, Techniques", + "Intermediate Organic Chemistry Laboratory", + ], + "os": ["Operating Systems"], + "osse": ["Open Source Software Engineering (Semesters of Code I)"], + "pchem": [ + "Physical Chemistry I", + "Physical Chemistry II", + "Physical Chemistry Instrumentation Laboratory I", + "Physical Chemistry Instrumentation Laboratory II", + ], + "pebl": ["Protein Engineering and Biochemistry Lab"], + "pebble": ["Protein Engineering and Biochemistry Lab"], + "pl": ["Principles of Programming Languages"], + "prob": ["Introduction to Probability"], + "probstat": [ + "Probability & Statistics for the Physical and Information Sciences & Engineering" + "Probability and Statistics for the Life Sciences" + ], + "prob/stat": [ + "Probability & Statistics for the Physical and Information Sciences & Engineering" + "Probability and Statistics for the Life Sciences" + ], + "probstats": [ + "Probability & Statistics for the Physical and Information Sciences & Engineering" + "Probability and Statistics for the Life Sciences" + ], + "prob/stats": [ + "Probability & Statistics for the Physical and Information Sciences & Engineering" + "Probability and Statistics for the Life Sciences" + ], + "qal": ["Quantitative Analytical Laboratory"], + "sboc": ["Systems Biology of the Cell"], + "setp": ["Social Entrepreneurship Theory and Practice. Community Based Learning"], + "ski": ["Sketching and Indexing for Sequences"], + "sla": ["Second Language Acquisition"], + "stad": ["Software Testing & Debugging"], + "stat": ["Introduction to Statistics"], + "statphys": ["Statistical Physics"], + "stats": ["Introduction to Statistics"], + "strucbio": ["Structural Biology of Cells"], + "sysbio": ["Systems Biology of the Cell"], + "syscon": ["Systems and Controls"], + "uima": ["User Interfaces and Mobile Applications"], +} + + +def search(school, query, semester): + """Returns courses that are contained in the name from a query. + If the query is empty, returns all courses in the school. + If the query is one of the hard-coded abbreviations, returns all of the courses + corresponding to that abbreviation. + Otherwise defaults to finding courses in which every word in the query is contained + in the course name. + """ if query == "": return Course.objects.filter(school=school) - query_tokens = query.strip().lower().split() - course_name_contains_query = reduce(operator.and_, map(course_name_contains_token, query_tokens)) - return Course.objects.filter( - Q(school=school) & - course_name_contains_query & - Q(section__semester=semester) - ) - + query = query.strip().lower() + try: + db_query = reduce(operator.or_, map(lambda n: Q(name=n), abbreviations[query])) + except KeyError: + db_query = reduce( + operator.and_, list(map(course_name_contains_token, query.split())) + ) -def course_desc_contains_token(token): - """Returns a query set of courses where tokens are contained in descriptions.""" - return Q(description__icontains=token) + return ( + Course.objects.filter( + Q(school=school) & db_query & Q(section__semester=semester) + ) + .annotate(id_count=Count("id")) + .order_by("id") + ) def course_name_contains_token(token): """Returns a query set of courses where tokens are contained in code or name.""" - return (Q(code__icontains=token) | - Q(name__icontains=token.replace("&", "and")) | - Q(name__icontains=token.replace("and", "&"))) - - -class Vectorizer: - """ Vectorizer class creates a dictionary over courses and build course vectors using count vectorizer.""" - def __init__(self): - self.TITLE_WEIGHT = 3 - self.stemmer = PorterStemmer() - - def vectorize(self): - """Vectorize function transforms and saves entire course objects into course vectors using TF-IDF.""" - - raw_word_counts = [] - bar = progressbar.ProgressBar(max_value=Course.objects.count()) - - print("Stringifying all courses for vectorization...") - for current_count, course in enumerate(Course.objects.all().iterator()): - raw_word_counts.append(self.course_to_str(course.name, - course.description, - course.areas, - self.TITLE_WEIGHT)) - bar.update(current_count) - - print("Transforming all courses into vectors...") - with open('searches/dictionary.pickle', 'r') as handle: - count_vectorizer = pickle.load(handle) - processed_word_counts = count_vectorizer.transform(raw_word_counts) - tfidf_tf = TfidfTransformer(use_idf=True).fit(processed_word_counts) - course_vectors = tfidf_tf.transform(processed_word_counts) - - bar.update(0) - print("Saving all course vectors...") - # save course vector to model. - for current_count, course in enumerate(Course.objects.all().iterator()): - course.vector = course_vectors[current_count] - course.save() - bar.update(current_count) - - - def course_to_str(self, name, description, area, weight): - """Returns a string representation of a course using a Porter Stemmer.""" - stemmed_doc = "" - if name: - name_doc = name.encode('ascii', 'ignore') - stemmed_name_doc = self.doc_to_lower_stem_str(name_doc) - stemmed_doc += (' ' + stemmed_name_doc) * weight + " " - if description: - desc_doc = description.encode('ascii', 'ignore') - stemmed_doc += self.doc_to_lower_stem_str(desc_doc) - if area: - area_doc = area.encode('ascii', 'ignore') - stemmed_doc += self.doc_to_lower_stem_str(area_doc) - return stemmed_doc - - def doc_to_lower_stem_str(self, doc): - """Converts words in document(string) to lowercase, stemmed words.""" - return ' '.join([self.stemmer.stem(w.lower()) for w in doc.split(' ')]) - - -class Searcher: - """ Searcher class implements baseline search and vectorized search based on information retrieval techniques. """ - def __init__(self): - self.vectorizer = Vectorizer() - self.count_vectorizer = self.load_count_vectorizer() - self.MAX_CAPACITY = 300 - self.start_time = 0 - - def load_count_vectorizer(self): - """Loads english dictionary count vectorizer pickle object.""" - with open('searches/dictionary.pickle', 'r') as handle: - return pickle.load(handle) - - def vectorize_query(self, query): - """Vectorizes a user's query using count vectorizer.""" - stemmed_qry = self.vectorizer.doc_to_lower_stem_str(query) - query_vector = self.count_vectorizer.transform([stemmed_qry]) - return query_vector - - def get_acronym(self, name): - """Returns an acronym of a course name.""" - name = name.replace("and", "").replace("&", "").lower() - return ''.join([i[0] for i in name.split(' ')]) - - def matches_name(self, query, course_name): - """Returns a score (2, 1, 0) of a query match to course name.""" - query_tokens = query.strip().lower().split(' ') - course_name = course_name.lower() - title_contains_query = all(map(lambda q: q in course_name, query_tokens)) - if title_contains_query and len(query_tokens) is len(course_name.split()): - return 2 - elif title_contains_query: - return 1 - else: - return 0 - - def get_cosine_sim(self, sparse_vec1, sparse_vec2): - """Computes cosine similarity between two sparse vectors.""" - if sparse_vec1 is not None and sparse_vec2 is not None: - return np.sum(sparse_vec1.multiply(sparse_vec2)) - else: - return 0 - - def get_similarity(self, query, course): - """Vectorizes query and returns a cosine similarity score between query and course vector.""" - query_vector = self.vectorize_query(query.lower()) - return self.get_cosine_sim(query_vector, course.vector) - - def vectorized_search(self, school, query, semester): - """Returns filtered courses that are most relevant to a given query.""" - if query == "": - return Course.objects.filter(school=school) - query_tokens = query.strip().lower().split() - course_name_contains_query = reduce(operator.and_, map(course_name_contains_token, query_tokens)) - title_matching_courses = Course.objects.filter( - Q(school=school) & - course_name_contains_query & - Q(section__semester=semester) - ) - - base_count = title_matching_courses.count() - if base_count < self.MAX_CAPACITY: - descp_contains_query = reduce(operator.or_, map(course_desc_contains_token, query.replace("and", "").split())) - descp_matching_courses = Course.objects.filter(Q(school=school) & - descp_contains_query & - Q(section__semester=semester))\ - .exclude(reduce(operator.and_, map(course_name_contains_token, query_tokens))) - courses_objs = list(title_matching_courses.all().distinct('code')[:self.MAX_CAPACITY]) + \ - list(descp_matching_courses.all().distinct('code')[:self.MAX_CAPACITY - base_count]) - else: - courses_objs = list(title_matching_courses.all().distinct('code')[:self.MAX_CAPACITY]) - - return self.get_most_relevant_filtered_courses(query, courses_objs) - - def get_most_relevant_filtered_courses(self, query, course_filtered): - """Returns the most relevant filtered courses given a query from filtered course objects.""" - query_vector = self.vectorize_query(query.lower()) - return sorted(course_filtered, key=lambda course: -self.get_score(course, query, query_vector)) - - def get_score(self, course, query, query_vector): - """Computes similarity score based on cosine similarity and match between query and course name.""" - return self.get_cosine_sim(query_vector, course.vector) + self.matches_name(query, course.name) - - def wordify(self, course_vector): - """Converts a course vector back into string using count vectorizer.""" - print(self.count_vectorizer.inverse_transform(course_vector)) - - def print_similiarity_scores(self, courses, query): - """Prints all course similarity scores given a query (for debugging).""" - query_vector = self.vectorize_query(query.lower()) - for course in sorted(courses, key=lambda course: -self.get_score(course, query, query_vector))[:10]: - print(course.name + ":" + str(self.get_score(course, query, query_vector)) + "\n") + return ( + Q(code__icontains=token) + | Q(name__icontains=token.replace("&", "and")) + | Q(name__icontains=token.replace("and", "&")) + ) diff --git a/searches/views.py b/searches/views.py index 9a28ef391a..c53330cdac 100644 --- a/searches/views.py +++ b/searches/views.py @@ -10,11 +10,9 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - import operator from django.core.paginator import Paginator, EmptyPage -from django.apps import apps from django.db.models import Q from rest_framework import status @@ -22,94 +20,133 @@ from rest_framework.views import APIView from analytics.views import save_analytics_course_search -from courses.serializers import CourseSerializer -from searches.utils import baseline_search -from student.models import Student +from courses.serializers import CourseSerializer, CourseSearchSerializer +from searches.utils import search from student.utils import get_student from timetable.models import Semester from helpers.mixins import ValidateSubdomainMixin, CsrfExemptMixin +from functools import reduce class CourseSearchList(CsrfExemptMixin, ValidateSubdomainMixin, APIView): """Course Search List.""" + def get(self, request, query, sem_name, year): - """ Return vectorized search results. """ + """Return search results.""" school = request.subdomain sem = Semester.objects.get_or_create(name=sem_name, year=year)[0] - # TODO: use vectorized search after completion. - # Use vectorized_search if and only if a valid Searcher object is created, otherwise use baseline_search - # if apps.get_app_config('searches').searcher: - # course_match_objs = apps.get_app_config('searches').searcher.vectorized_search(request.subdomain, query, sem)[:4] - # else: - # course_match_objs = baseline_search(request.subdomain, query, sem)[:4] - - # sorts queries by course number through a comparator - def course_comparator(course1, course2): - #isolate course number from XX.XXX.XXX - c1=int(str(course1)[7:10]) - c2=int(str(course2)[7:10]) - if c1 < c2: - return -1 - elif c1 > c2: - return 1 - else: - return 0 - course_match_objs = baseline_search(request.subdomain, query, sem).distinct() - #only sort if results is less than 100 for efficiency sake - if len(course_match_objs) < 100: - course_match_objs = sorted(course_match_objs, cmp=course_comparator) - #display only 12 courses to avoid displaying too many. - course_match_objs = course_match_objs[:12] - save_analytics_course_search(query[:200], course_match_objs[:2], sem, request.subdomain, - get_student(request)) - course_matches = [CourseSerializer(course, context={'semester': sem, 'school': school}).data - for course in course_match_objs] - return Response(course_matches, status=status.HTTP_200_OK) + + course_matches = search(request.subdomain, query, sem) + + courses_per_page = int(request.GET.get("limit", 10)) + paginator = Paginator(course_matches, courses_per_page) + + cur_page = int(request.GET.get("page", 1)) + + try: + paginated_data = paginator.page(cur_page) + except EmptyPage: + return Response({"data": [], "page": cur_page}, status=status.HTTP_200_OK) + + course_match_data = CourseSearchSerializer( + paginated_data, context={"semester": sem, "school": school}, many=True + ).data + self.save_analytic(request, query, course_matches, sem) + return Response( + {"data": course_match_data, "page": cur_page}, status=status.HTTP_200_OK + ) + + def save_analytic(self, request, query, course_matches, sem, advanced=False): + save_analytics_course_search( + query[:200], + course_matches[:2], + sem, + request.subdomain, + get_student(request), + advanced, + ) def post(self, request, query, sem_name, year): - """ Return advanced search results. """ + """Return advanced search results.""" school = request.subdomain - page = int(request.query_params.get('page', 1)) sem, _ = Semester.objects.get_or_create(name=sem_name, year=year) - # Filter first by the user's search query. - # TODO : use vectorized search (change returned obj to be filterable) - course_match_objs = baseline_search(school, query, sem) - - # Filter now by departments, areas, levels, or times if provided. - filters = request.data.get('filters', {}) - if filters.get('areas'): - course_match_objs = course_match_objs.filter(areas__in=filters.get('areas')) - if filters.get('departments'): - course_match_objs = course_match_objs.filter(department__in=filters.get('departments')) - if filters.get('levels'): - course_match_objs = course_match_objs.filter(level__in=filters.get('levels')) - if filters.get('times'): - day_map = {"Monday": "M", "Tuesday": "T", "Wednesday": "W", "Thursday": "R", - "Friday": "F"} - course_match_objs = course_match_objs.filter( - reduce(operator.or_, - (Q(section__offering__time_start__gte="{0:0=2d}:00".format(min_max['min']), - section__offering__time_end__lte="{0:0=2d}:00".format(min_max['max']), - section__offering__day=day_map[min_max['day']], - section__semester=sem, - section__section_type="L") for min_max in filters.get('times')) - ) + filters = request.data.get("filters", {}) + course_matches = search(school, query, sem) + course_matches = self.filter_course_matches(course_matches, filters, sem) + course_matches = course_matches[:100] # prevent timeout + self.save_analytic(request, query, course_matches, sem, True) + student = get_student(request) + serializer_context = { + "semester": sem, + "student": student, + "school": request.subdomain, + } + + cur_page = int(request.GET.get("page", 1)) + courses_per_page = int(request.GET.get("limit", 10)) + paginator = Paginator(course_matches, courses_per_page) + + if cur_page > paginator.num_pages: + course_match_data = [] + else: + paginated_data = paginator.page(cur_page) + course_match_data = CourseSerializer( + paginated_data, context=serializer_context, many=True + ).data + + return Response( + {"data": course_match_data, "page": cur_page}, status=status.HTTP_200_OK + ) + + def filter_course_matches(self, course_matches, filters, sem): + course_matches = self.filter_by_areas(course_matches, filters) + course_matches = self.filter_by_departments(course_matches, filters) + course_matches = self.filter_by_levels(course_matches, filters) + course_matches = self.filter_by_times(sem, course_matches, filters) + course_matches = course_matches.order_by("id") + return course_matches + + def filter_by_areas(self, course_matches, filters): + if filters.get("areas"): + course_matches = course_matches.filter(areas__contains=filters.get("areas")) + return course_matches + + def filter_by_departments(self, course_matches, filters): + if filters.get("departments"): + course_matches = course_matches.filter( + department__in=filters.get("departments") ) - try: - paginator = Paginator(course_match_objs.distinct(), 20) - course_match_objs = paginator.page(page) - except EmptyPage: - return Response([]) - - save_analytics_course_search(query[:200], course_match_objs[:2], sem, school, - get_student(request), - advanced=True) - student = None - logged = request.user.is_authenticated() - if logged and Student.objects.filter(user=request.user).exists(): - student = Student.objects.get(user=request.user) - serializer_context = {'semester': sem, 'student': student, 'school': request.subdomain} - json_data = [CourseSerializer(course, context=serializer_context).data - for course in course_match_objs] - - return Response(json_data, status=status.HTTP_200_OK) + return course_matches + + def filter_by_levels(self, course_matches, filters): + if filters.get("levels"): + course_matches = course_matches.filter(level__in=filters.get("levels")) + return course_matches + + def filter_by_times(self, sem, course_matches, filters): + if filters.get("times"): + day_map = { + "Monday": "M", + "Tuesday": "T", + "Wednesday": "W", + "Thursday": "R", + "Friday": "F", + "Saturday": "S", + "Sunday": "U", + } + course_matches = course_matches.filter( + reduce( + operator.or_, + ( + Q( + section__offering__time_start__gte=min_max["min"], + section__offering__time_end__lte=min_max["max"], + section__offering__day=day_map[min_max["day"]], + section__semester=sem, + section__section_type="L", + ) + for min_max in filters.get("times") + ), + ) + ) + return course_matches diff --git a/semesterly/__init__.py b/semesterly/__init__.py index db5791b5f1..e7623e4ab3 100644 --- a/semesterly/__init__.py +++ b/semesterly/__init__.py @@ -10,8 +10,6 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import print_function, absolute_import, unicode_literals - # This will make sure the app is always imported when # Django starts so that shared_task will use this app. from .celery_conf import app as celery_app diff --git a/semesterly/celery_conf.py b/semesterly/celery_conf.py index 70e0d720ee..3050bb0bff 100644 --- a/semesterly/celery_conf.py +++ b/semesterly/celery_conf.py @@ -10,18 +10,16 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from __future__ import absolute_import - import os from celery import Celery from django.conf import settings # set the default Django settings module for the 'celery' program. -os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'semesterly.settings') +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") app = Celery(__name__) # Using a string here means the worker will not have to # pickle the object when using Windows. -app.config_from_object('django.conf:settings') +app.config_from_object("django.conf:settings") app.autodiscover_tasks(lambda: settings.INSTALLED_APPS) diff --git a/semesterly/dev_credentials.py b/semesterly/dev_credentials.py index b90a48cdcd..6afd23d5e5 100644 --- a/semesterly/dev_credentials.py +++ b/semesterly/dev_credentials.py @@ -10,39 +10,35 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - - -#DANGER: Should not be used in production -#THE CREDENTIALS PROVIDED HERE ARE FOR TEST USE ONLY -#THEY ARE NOT USED ON SEMESTER.LY NOR SHOULD THEY BE +# DANGER: Should not be used in production +# THE CREDENTIALS PROVIDED HERE ARE FOR TEST USE ONLY +# THEY ARE NOT USED ON SEMESTER.LY NOR SHOULD THEY BE # USED IN ANY OTHER PRODUCTION ENVIRONMENT. SECRETS = { - #Credentials for a test application for Semester.ly (+ Google/Facebook) - 'SECRET_KEY': 'ca&+%f9xv*$56z@8278xw*ci7_db9w=^dhkqmwu3as&30u%w+$', - 'HASHING_SALT': "t9wg0p7x1$x5on89f*yk=tk*+$!g6g", - 'GOOGLE_API_KEY': 'AIzaSyB4O0Z89wwSWdVFufZMmW7n05ftUaau9cs', - 'SOCIAL_AUTH_GOOGLE_OAUTH2_KEY': '207925266161-qa90rek8apc0ablkjr3565um4u9kiht1.apps.googleusercontent.com', - 'SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET': 'OiVIoVFTZrWXZ87tx7r1KJoo', - 'SOCIAL_AUTH_FACEBOOK_KEY': '2008148216081463', - 'SOCIAL_AUTH_FACEBOOK_SECRET': '75f855457ff18db012e57ccaaf3470eb', - 'FB_TEST_EMAIL': 'open_ejvbpxf_user@tfbnw.net', - 'FB_TEST_PASS': 'asdfasdfdsfdsfadfdsflsdflglfg', - - #Not essential for testing, but can be filled in for advanced usage - 'GW_PASS': None, - 'GW_SECURITY_ANSWER': None, - 'JHU_API_KEY': None, - 'VANDY_USER': None, - 'VANDY_PASS': None, - - #Not essential for testing, but can be filled in for advanced mailing usage - 'MAILER_SERVER': None, - 'MAILER_USER': None, - 'MAILER_PASSWORD': None, - 'MAILER_SENDER': None, - 'EMAIL_HOST_USER': None, - 'EMAIL_HOST_PASSWORD': None, - 'EMAIL_PASSWORD': None -} \ No newline at end of file + # Credentials for a test application for Semester.ly (+ Google/Facebook) + "SECRET_KEY": "ca&+%f9xv*$56z@8278xw*ci7_db9w=^dhkqmwu3as&30u%w+$", + "HASHING_SALT": "t9wg0p7x1$x5on89f*yk=tk*+$!g6g", + "GOOGLE_API_KEY": "AIzaSyB4O0Z89wwSWdVFufZMmW7n05ftUaau9cs", + "SOCIAL_AUTH_GOOGLE_OAUTH2_KEY": "207925266161-qa90rek8apc0ablkjr3565um4u9kiht1.apps.googleusercontent.com", + "SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET": "OiVIoVFTZrWXZ87tx7r1KJoo", + "SOCIAL_AUTH_FACEBOOK_KEY": "2008148216081463", + "SOCIAL_AUTH_FACEBOOK_SECRET": "75f855457ff18db012e57ccaaf3470eb", + "FB_TEST_EMAIL": "open_ejvbpxf_user@tfbnw.net", + "FB_TEST_PASS": "asdfasdfdsfdsfadfdsflsdflglfg", + "SOCIAL_AUTH_AZURE_TENANT_KEY": None, + "SOCIAL_AUTH_AZURE_TENANT_SECRET": None, + "SOCIAL_AUTH_AZURE_TENANT_ID": None, + "STUDENT_SIS_AUTH_SECRET": "TEST_KEY", + # Not essential for testing, but can be filled in for advanced usage + "GW_PASS": None, + "GW_SECURITY_ANSWER": None, + "JHU_API_KEY": None, + "VANDY_USER": None, + "VANDY_PASS": None, + # Not essential for testing, but can be filled in for advanced mailing usage + "EMAIL_HOST_USER": None, + "EMAIL_HOST_PASSWORD": None, + "EMAIL_PASSWORD": None, +} diff --git a/semesterly/middleware/__init__.py b/semesterly/middleware/__init__.py index c53afacbff..defc0f99ee 100644 --- a/semesterly/middleware/__init__.py +++ b/semesterly/middleware/__init__.py @@ -9,4 +9,3 @@ # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. - diff --git a/semesterly/middleware/middleware.py b/semesterly/middleware/middleware.py new file mode 100644 index 0000000000..862e4d612e --- /dev/null +++ b/semesterly/middleware/middleware.py @@ -0,0 +1,27 @@ +class MultipleProxyMiddleware: + FORWARDED_FOR_FIELDS = [ + "HTTP_X_FORWARDED_FOR", + "HTTP_X_FORWARDED_HOST", + "HTTP_X_FORWARDED_SERVER", + ] + + def __init__(self, get_response): + self.get_response = get_response + + def __call__(self, request): + """ + Rewrites the proxy headers so that only the most + recent proxy is used. + """ + for field in self.FORWARDED_FOR_FIELDS: + if field in request.META and "," in request.META[field]: + parts = request.META[field].split(",") + request.META[field] = parts[-1].strip() + + """ + Rewrites the X Original Host to X Forwarded Host header + """ + if "HTTP_X_ORIGINAL_HOST" in request.META: + request.META["HTTP_X_FORWARDED_HOST"] = request.META["HTTP_X_ORIGINAL_HOST"] + + return self.get_response(request) diff --git a/semesterly/middleware/subdomain_middleware.py b/semesterly/middleware/subdomain_middleware.py index 6035209057..33132fb851 100644 --- a/semesterly/middleware/subdomain_middleware.py +++ b/semesterly/middleware/subdomain_middleware.py @@ -10,15 +10,27 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. +from django.utils.deprecation import MiddlewareMixin from parsing.schools.active import ACTIVE_SCHOOLS -class SubdomainMiddleware(object): - def process_request(self, request): - subdomain = request.META.get('HTTP_HOST', '')\ - .split('.')[0]\ - .strip()\ - .lower() - if subdomain in ACTIVE_SCHOOLS: - request.subdomain = subdomain - else: - request.subdomain = None + +class SubdomainMiddleware(MiddlewareMixin): + def process_request(self, request): + subdomain = self.get_subdomain(request) + + # Define domain suffixes for non-prod environments + nonprod_suffixes = ("-dev", "-test", "-stage", "-prod") + + request.subdomain = None + if subdomain in ACTIVE_SCHOOLS: + request.subdomain = subdomain + elif subdomain.endswith(nonprod_suffixes): + request.subdomain = "jhu" + + def get_subdomain(self, request): + if "HTTP_X_ORIGINAL_HOST" in request.META: + subdomain = request.META.get("HTTP_X_ORIGINAL_HOST", "") + else: + subdomain = request.META.get("HTTP_HOST", "") + subdomain = subdomain.split(".")[0].strip().lower() + return subdomain diff --git a/semesterly/settings.py b/semesterly/settings.py index 903ffbe8be..3de6737e48 100644 --- a/semesterly/settings.py +++ b/semesterly/settings.py @@ -20,14 +20,13 @@ https://docs.djangoproject.com/en/1.6/ref/settings/ """ -import djcelery import os import yaml # Build paths inside the project like this: os.path.join(BASE_DIR, ...) BASE_DIR = os.path.dirname(os.path.dirname(__file__)) PROJECT_DIRECTORY = os.getcwd() -PARSING_MODULE = 'parsing' +PARSING_MODULE = "parsing" def get_secret(key): @@ -40,236 +39,255 @@ def get_secret(key): return os.environ[key] except KeyError: try: - from sensitive import SECRETS + from .sensitive import SECRETS + return SECRETS[key] - except: + except (ModuleNotFoundError, KeyError): try: - from dev_credentials import SECRETS + from .dev_credentials import SECRETS + return SECRETS[key] - except: - raise ValueError("""'%s' not correctly configured. + except KeyError: + raise ValueError( + """'%s' not correctly configured. Try adding it to the file semesterly/sensitive.py. If this fails only on travis, make sure get_secret is not called globally. Wrap the call within a closure - such as @classmethod def new(cls).""" % key) + such as @classmethod def new(cls).""" + % key + ) + -SECRET_KEY = get_secret('SECRET_KEY') +SECRET_KEY = get_secret("SECRET_KEY") DEBUG = False -TEMPLATE_DEBUG = DEBUG +SHOW_DEBUG_TOOLBAR = False -ALLOWED_HOSTS = ['*'] +ALLOWED_HOSTS = ["*"] + +USE_X_FORWARDED_HOST = True SOCIAL_AUTH_FACEBOOK_SCOPE = [ - 'email', - 'user_friends', + "email", + "user_friends", ] -SOCIAL_AUTH_FACEBOOK_PROFILE_EXTRA_PARAMS = { - 'fields': 'id,name,email' -} +SOCIAL_AUTH_FACEBOOK_PROFILE_EXTRA_PARAMS = {"fields": "id,name,email"} SOCIAL_AUTH_GOOGLE_OAUTH2_SCOPE = [ - # 'https://www.googleapis.com/auth/plus.login', - # 'https://www.googleapis.com/auth/plus.me', - 'https://www.googleapis.com/auth/userinfo.profile', - 'https://www.googleapis.com/auth/calendar' + "https://www.googleapis.com/auth/userinfo.profile", + # 'https://www.googleapis.com/auth/calendar' ] SOCIAL_AUTH_GOOGLE_OAUTH2_AUTH_EXTRA_ARGUMENTS = { - 'access_type': 'offline', # Enables the refreshing grant - 'approval_promt': 'force' # Enables refresh_token + "access_type": "offline", # Enables the refreshing grant + "approval_promt": "force", # Enables refresh_token } # We always use SSL as FB requires it -SOCIAL_AUTH_REDIRECT_IS_HTTPS = True #if (os.environ.get('HOSTING_ENV') == 'stage' or\ - # os.environ.get('HOSTING_ENV') == 'prod') else False +SOCIAL_AUTH_REDIRECT_IS_HTTPS = True # if (os.environ.get('HOSTING_ENV') == 'stage' or\ +# os.environ.get('HOSTING_ENV') == 'prod') else False -SOCIAL_AUTH_LOGIN_REDIRECT_URL = '/' -SOCIAL_AUTH_LOGIN_ERROR_URL = '/' +SOCIAL_AUTH_LOGIN_REDIRECT_URL = "/" +SOCIAL_AUTH_LOGIN_ERROR_URL = "/" -SOCIAL_AUTH_GOOGLE_OAUTH2_KEY = get_secret('SOCIAL_AUTH_GOOGLE_OAUTH2_KEY') -SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET = get_secret('SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET') -SOCIAL_AUTH_FACEBOOK_KEY = get_secret('SOCIAL_AUTH_FACEBOOK_KEY') -SOCIAL_AUTH_FACEBOOK_SECRET = get_secret('SOCIAL_AUTH_FACEBOOK_SECRET') +SOCIAL_AUTH_GOOGLE_OAUTH2_KEY = get_secret("SOCIAL_AUTH_GOOGLE_OAUTH2_KEY") +SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET = get_secret("SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET") +SOCIAL_AUTH_FACEBOOK_KEY = get_secret("SOCIAL_AUTH_FACEBOOK_KEY") +SOCIAL_AUTH_FACEBOOK_SECRET = get_secret("SOCIAL_AUTH_FACEBOOK_SECRET") +SOCIAL_AUTH_AZUREAD_TENANT_OAUTH2_KEY = get_secret("SOCIAL_AUTH_AZURE_TENANT_KEY") +SOCIAL_AUTH_AZUREAD_TENANT_OAUTH2_SECRET = get_secret("SOCIAL_AUTH_AZURE_TENANT_SECRET") +SOCIAL_AUTH_AZUREAD_TENANT_OAUTH2_TENANT_ID = get_secret("SOCIAL_AUTH_AZURE_TENANT_ID") +STUDENT_SIS_AUTH_SECRET = get_secret("STUDENT_SIS_AUTH_SECRET") SOCIAL_AUTH_AUTHENTICATION_BACKENDS = ( - 'social.backends.facebook.FacebookOAuth2', - 'social.backends.google.GooglePlusAuth', - 'social.backends.google.GoogleOAuth2', + "social_core.backends.facebook.FacebookOAuth2", + "social_core.backends.google.GooglePlusAuth", + "social_core.backends.google.GoogleOAuth2", + "social_core.backends.azuread_tenant.AzureADTenantOAuth2", ) -FIELDS_STORED_IN_SESSION = ['student_token','login_hash'] +FIELDS_STORED_IN_SESSION = ["student_token", "login_hash"] SOCIAL_AUTH_PIPELINE = ( # Get the information we can about the user and return it in a simple # format to create the user instance later. On some cases the details are # already part of the auth response from the provider, but sometimes this # could hit a provider API. - 'social.pipeline.social_auth.social_details', - + "social_core.pipeline.social_auth.social_details", # Get the social uid from whichever service we're authing thru. The uid is # the unique identifier of the given user in the provider. - 'social.pipeline.social_auth.social_uid', - + "social_core.pipeline.social_auth.social_uid", # Verifies that the current auth process is valid within the current # project, this is where emails and domains whitelists are applied (if # defined). - 'social.pipeline.social_auth.auth_allowed', - + "social_core.pipeline.social_auth.auth_allowed", # Checks if the current social-account is already associated in the site. - 'social.pipeline.social_auth.social_user', - + "social_core.pipeline.social_auth.social_user", # Make up a username for this person, appends a random string at the end if # there's any collision. - 'social.pipeline.user.get_username', - - # Send a validation email to the user to verify its email address. - # Disabled by default. - # 'social.pipeline.mail.mail_validation', - - # Associates the current social details with another user account with - # a similar email address. Disabled by default. - # 'social.pipeline.social_auth.associate_by_email', - 'authpipe.utils.associate_students', - + "social_core.pipeline.user.get_username", + # Our method to associate the current social details with another user account + "authpipe.utils.associate_students", # Create a user account if we haven't found one yet. - 'social.pipeline.user.create_user', - + "social_core.pipeline.user.create_user", # Create the record that associated the social account with this user. - 'social.pipeline.social_auth.associate_user', - + "social_core.pipeline.social_auth.associate_user", # Populate the extra_data field in the social record with the values # specified by settings (and the default ones like access_token, etc). - 'social.pipeline.social_auth.load_extra_data', - + "social_core.pipeline.social_auth.load_extra_data", # Update the user record with any changed info from the auth service. - 'social.pipeline.user.user_details', - 'authpipe.utils.create_student', + "social_core.pipeline.user.user_details", + # Our method to initialize the new student object. + "authpipe.utils.create_student", ) # Webpack WEBPACK_LOADER = { - 'DEFAULT': { - 'BUNDLE_DIR_NAME': 'bundles/', - 'STATS_FILE': os.path.join(BASE_DIR, 'webpack-stats.json'), + "DEFAULT": { + "BUNDLE_DIR_NAME": "bundles/", + "STATS_FILE": os.path.join(BASE_DIR, "webpack-stats.json"), } } # Application definition INSTALLED_APPS = ( - 'django.contrib.admin', - 'django.contrib.auth', - 'django.contrib.contenttypes', - 'django.contrib.sessions', - 'django.contrib.sites', - 'django.contrib.messages', - 'django.contrib.staticfiles', - 'social.apps.django_app.default', - 'django_extensions', - 'authpipe', - 'timetable', - 'exams', - 'integrations', - 'searches', - 'courses', - 'analytics', - 'scripts', - 'student', - 'cachalot', - 'rest_framework', - 'rest_framework_swagger', - 'webpack_loader', - 'djcelery', - 'agreement', - 'parsing', + "django.contrib.admin", + "django.contrib.auth", + "django.contrib.contenttypes", + "django.contrib.sessions", + "django.contrib.messages", + "django.contrib.staticfiles", + "cachalot", + "django_extensions", + "drf_yasg", + "rest_framework", + "social_django", + "webpack_loader", + "agreement", + "analytics", + "authpipe", + "courses", + "notifications", + "parsing", + "scripts", + "searches", + "student", + "timetable", + "ckeditor", + "friends", ) -REST_FRAMEWORK ={ - 'UNICODE_JSON': False -} - -SESSION_ENGINE = 'django.contrib.sessions.backends.db' - -MIDDLEWARE_CLASSES = ( - 'django.contrib.sessions.middleware.SessionMiddleware', - 'django.middleware.common.CommonMiddleware', - 'django.middleware.csrf.CsrfViewMiddleware', - 'django.contrib.auth.middleware.AuthenticationMiddleware', - 'django.contrib.messages.middleware.MessageMiddleware', - 'django.middleware.clickjacking.XFrameOptionsMiddleware', - 'semesterly.middleware.subdomain_middleware.SubdomainMiddleware', - 'social.apps.django_app.middleware.SocialAuthExceptionMiddleware', - 'rollbar.contrib.django.middleware.RollbarNotifierMiddleware', +REST_FRAMEWORK = {"UNICODE_JSON": False} + +SESSION_ENGINE = "django.contrib.sessions.backends.db" + +MIDDLEWARE = ( + "semesterly.middleware.middleware.MultipleProxyMiddleware", + "django.contrib.sessions.middleware.SessionMiddleware", + "django.middleware.common.CommonMiddleware", + "django.middleware.csrf.CsrfViewMiddleware", + "django.contrib.auth.middleware.AuthenticationMiddleware", + "django.contrib.messages.middleware.MessageMiddleware", + "django.middleware.clickjacking.XFrameOptionsMiddleware", + "semesterly.middleware.subdomain_middleware.SubdomainMiddleware", + "social_django.middleware.SocialAuthExceptionMiddleware", + "rollbar.contrib.django.middleware.RollbarNotifierMiddleware", ) -TEMPLATE_CONTEXT_PROCESSORS = ( - 'django.contrib.auth.context_processors.auth', - 'django.core.context_processors.debug', - 'django.core.context_processors.i18n', - 'django.core.context_processors.media', - 'django.core.context_processors.static', - 'django.core.context_processors.tz', - 'django.contrib.messages.context_processors.messages', - 'social.apps.django_app.context_processors.backends', - 'social.apps.django_app.context_processors.login_redirect', -) +TEMPLATES = [ + { + "BACKEND": "django.template.backends.django.DjangoTemplates", + "DIRS": [ + os.path.join(PROJECT_DIRECTORY, "templates/"), + os.path.join(PROJECT_DIRECTORY, "semesterly/templates/"), + ], + "OPTIONS": { + "debug": DEBUG, + "context_processors": [ + "django.contrib.auth.context_processors.auth", + "django.contrib.messages.context_processors.messages", + "django.template.context_processors.request", + "django.template.context_processors.debug", + "django.template.context_processors.i18n", + "django.template.context_processors.media", + "django.template.context_processors.static", + "django.template.context_processors.tz", + "social_django.context_processors.backends", + "social_django.context_processors.login_redirect", + ], + "loaders": [ + "django.template.loaders.filesystem.Loader", + "django.template.loaders.app_directories.Loader", + ], + }, + } +] AUTHENTICATION_BACKENDS = ( - 'social.backends.facebook.FacebookOAuth2', - 'social.backends.google.GoogleOAuth2', - 'social.backends.twitter.TwitterOAuth', - 'django.contrib.auth.backends.ModelBackend', + "social_core.backends.facebook.FacebookOAuth2", + "social_core.backends.google.GoogleOAuth2", + "social_core.backends.twitter.TwitterOAuth", + "social_core.backends.azuread_tenant.AzureADTenantOAuth2", + "django.contrib.auth.backends.ModelBackend", ) -ROOT_URLCONF = 'semesterly.urls' +SESSION_COOKIE_SAMESITE = None -WSGI_APPLICATION = 'semesterly.wsgi.application' +ROOT_URLCONF = "semesterly.urls" +WSGI_APPLICATION = "semesterly.wsgi.application" + +DEFAULT_AUTO_FIELD = "django.db.models.AutoField" # Database # https://docs.djangoproject.com/en/1.6/ref/settings/#databases DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.postgresql_psycopg2', - 'NAME': '', # os.path.join(BASE_DIR, 'db.postgresql') - 'USER': '', - 'PASSWORD': '', - 'HOST': 'localhost', - 'PORT': '5432', + "default": { + "ENGINE": "django.db.backends.postgresql_psycopg2", + "NAME": os.path.join( + BASE_DIR, "db.postgresql" + ), # os.path.join(BASE_DIR, 'db.postgresql') + "USER": "postgres", + "PASSWORD": "postgres", + "HOST": "localhost", + "PORT": "5432", } } # Logging -with open(os.path.join(os.path.dirname(__file__), 'logging.yaml'), 'r') as f: - LOGGING = yaml.safe_load(f.read().format( - handlers_file_filename=os.path.join(os.path.dirname(__file__), - 'logfile.log') - )) +with open(os.path.join(os.path.dirname(__file__), "logging.yaml"), "r") as f: + LOGGING = yaml.safe_load( + f.read().format( + handlers_file_filename=os.path.join( + os.path.dirname(__file__), "logfile.log" + ) + ) + ) ADMINS = [ - ('Rohan Das', 'rohan@semester.ly'), - ('Felix Zhu', 'felix@semester.ly'), - ('Noah Presler', 'noah@semester.ly'), - ('Eric Calder', 'eric@semester.ly'), + ("Rohan Das", "rohan@semester.ly"), + ("Felix Zhu", "felix@semester.ly"), + ("Noah Presler", "noah@semester.ly"), + ("Eric Calder", "eric@semester.ly"), ] -STAGING_NOTIFIED_ADMINS = ['rohan@semester.ly', 'noah@semester.ly'] +STAGING_NOTIFIED_ADMINS = ["rohan@semester.ly", "noah@semester.ly"] EMAIL_USE_TLS = True -EMAIL_HOST = 'smtp.gmail.com' +EMAIL_HOST = "smtp.gmail.com" EMAIL_PORT = 587 -DEFAULT_FROM_EMAIL = 'semesterly.logging@gmail.com' +DEFAULT_FROM_EMAIL = "semesterly.logging@gmail.com" SERVER_EMAIL = DEFAULT_FROM_EMAIL # Internationalization # https://docs.djangoproject.com/en/1.6/topics/i18n/ -LANGUAGE_CODE = 'en-us' +LANGUAGE_CODE = "en-us" -TIME_ZONE = 'EST' +TIME_ZONE = "America/New_York" USE_I18N = True @@ -279,78 +297,82 @@ def get_secret(key): APPEND_SLASH = True -TEST_RUNNER = 'helpers.test.test_runners.FastTestRunner' +TEST_RUNNER = "helpers.test.test_runners.FastTestRunner" # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.6/howto/static-files/ -STATIC_URL = '/static/' - -STATICFILES_DIRS = ( - # Put strings here, like "/home/html/static" or "C:/www/django/static". - # Always use forward slashes, even on Windows. - # Don't forget to use absolute paths, not relative paths. - os.path.join(PROJECT_DIRECTORY,'static'), - -) - -STATIC_ROOT="" - - -TEMPLATE_LOADERS = ( - 'django.template.loaders.filesystem.Loader', - 'django.template.loaders.app_directories.Loader', -) - -TEMPLATE_DIRS = ( - os.path.join(PROJECT_DIRECTORY,'templates/'), - os.path.join(PROJECT_DIRECTORY,'semesterly/templates/'), -) +STATIC_URL = "/static/" + +STATICFILES_DIRS = [os.path.join(PROJECT_DIRECTORY, "static")] + +STATIC_ROOT = "" + +CKEDITOR_CONFIGS = { + "default": { + "toolbar": "Custom", + "toolbar_Custom": [ + ["Format", "Font", "FontSize", "TextColor"], + ["Bold", "Italic", "Underline"], + [ + "NumberedList", + "BulletedList", + "-", + "Outdent", + "Indent", + "-", + "JustifyLeft", + "JustifyCenter", + "JustifyRight", + "JustifyBlock", + ], + ["Link", "Unlink"], + ["RemoveFormat", "Source"], + ], + } +} # Caching +# this is the default cache CACHES = { - 'default': { - 'BACKEND':'django.core.cache.backends.memcached.MemcachedCache', - 'LOCATION':'127.0.0.1:11211', + "default": { + "BACKEND": "django.core.cache.backends.locmem.LocMemCache", } } CACHALOT_ENABLED = True try: - from local_settings import * -except: + from .local_settings import * +except ModuleNotFoundError: pass if not DEBUG: ROLLBAR = { - 'access_token': '23c5a378cd1943cfb40d5217dfb7f766', - 'environment': 'development' if DEBUG else 'production', - 'root': BASE_DIR, + "access_token": "23c5a378cd1943cfb40d5217dfb7f766", + "environment": "development" if DEBUG else "production", + "root": BASE_DIR, } import rollbar - rollbar.init(**ROLLBAR) - - -# Begin Celery stuff. -djcelery.setup_loader() -BROKER_URL = 'redis://localhost:6379/0' -CELERY_ACCEPT_CONTENT = ['json'] -CELERY_TASK_SERIALIZER = 'json' -CELERY_RESULT_SERIALIZER = 'json' -CELERY_RESULT_BACKEND = 'djcelery.backends.database:DatabaseBackend' -CELERYBEAT_SCHEDULER = 'djcelery.schedulers.DatabaseScheduler' -CELERY_TIMEZONE = 'America/New_York' - -# App instance to use -CELERY_APP = "semesterly" - -# Where to chdir at start. -CELERYBEAT_CHDIR = BASE_DIR -CELERYD_CHDIR = BASE_DIR - -# # Can set up cron like scheduling here. -# from celery.schedules import crontab -# CELERYBEAT_SCHEDULE = {} + rollbar.init(**ROLLBAR) -# End Celery stuff. +if SHOW_DEBUG_TOOLBAR: + DEBUG_TOOLBAR_CONFIG = {"SHOW_TOOLBAR_CALLBACK": lambda request: True} + INSTALLED_APPS += ("debug_toolbar",) + MIDDLEWARE += ("debug_toolbar.middleware.DebugToolbarMiddleware",) + DEBUG_TOOLBAR_PANELS = [ + "debug_toolbar.panels.history.HistoryPanel", + "debug_toolbar.panels.versions.VersionsPanel", + "debug_toolbar.panels.timer.TimerPanel", + "debug_toolbar.panels.settings.SettingsPanel", + "debug_toolbar.panels.headers.HeadersPanel", + "debug_toolbar.panels.request.RequestPanel", + "debug_toolbar.panels.sql.SQLPanel", + "debug_toolbar.panels.staticfiles.StaticFilesPanel", + "debug_toolbar.panels.templates.TemplatesPanel", + "debug_toolbar.panels.cache.CachePanel", + "debug_toolbar.panels.signals.SignalsPanel", + "debug_toolbar.panels.redirects.RedirectsPanel", + "debug_toolbar.panels.profiling.ProfilingPanel", + "cachalot.panels.CachalotPanel", + ] diff --git a/semesterly/templates/404.html b/semesterly/templates/404.html index e382126254..f72bfc46a4 100644 --- a/semesterly/templates/404.html +++ b/semesterly/templates/404.html @@ -1,51 +1,57 @@ -{% load staticfiles %} +{% load static %} - - - - - - - - - - - - - + + + + + - 404 Page Not Found | Semester.ly: Course Scheduling, Textbooks, Social & More - + + + + + + + + - - - - - + 404 Page Not Found | Semester.ly: Course Scheduling, Social & More + - - - - -
    - -
    - -
    -
    - -

    404

    -

    Page Not Found.
    Go back to Semester.ly

    -
    + + +
    +
    + +

    404

    +

    Page Not Found.
    Go back to Semester.ly

    +
    +
    + + + + - - - - + \ No newline at end of file diff --git a/semesterly/templates/500.html b/semesterly/templates/500.html index d371b29a81..d874e928c7 100644 --- a/semesterly/templates/500.html +++ b/semesterly/templates/500.html @@ -1,51 +1,57 @@ -{% load staticfiles %} +{% load static %} - - - - - - - - - - - - - + + + + + - 500 Server Error | Semester.ly: Course Scheduling, Textbooks, Social & More - + + + + + + + + - - - - - + 500 Server Error | Semester.ly: Course Scheduling, Social & More + - - - - -
    - -
    - -
    -
    - -

    500

    -

    Server Error.
    Go back to Semester.ly

    -
    + + +
    +
    + +

    500

    +

    Server Error.
    Go back to Semester.ly

    +
    +
    + + + + - - - - + \ No newline at end of file diff --git a/semesterly/templates/about.html b/semesterly/templates/about.html index 444921f9ed..920ef22862 100644 --- a/semesterly/templates/about.html +++ b/semesterly/templates/about.html @@ -1,144 +1,573 @@ -{% load staticfiles %} +{% load static %} - - - - - - - - - - - - - + + + + + - Semester.ly: Course Scheduling, Textbooks, Social & More - + + + + + + + + - - - - + Semester.ly: Course Scheduling, Social & More + - - + + - - - -
    -
    + + + + + +
    + +
    +
    +
    +
    + +

    Built by students, for students

    +
    +

    + Semester.ly started in 2014 by a few university students who wanted to not only challenge + themselves but change the way students develop their course schedules. By 2017, we rolled out + at Johns Hopkins University and several other schools, quickly accumulating many intrigued users. In + 2019, + we decided to partner with the Hopkins IT Department to subsidize our student developers and + sustain our project. If there's anything we learned, it's that students can dream big and continue + to help this project flourish. +

    -
    -
    -
    -
    -

    Made by students, for students

    + + +
    +
    +
    +
    +
    +

    Our Founders

    +
    +
    +
    +

    Noah Presler

    +

    Former Program Manager

    +

    JHU '17

    + +
    +
    +
    +

    Rohan Das

    +

    Former Software Developer

    +

    UT '16

    + +
    +
    +
    +

    Felix Zhu

    +

    Former Software Developer

    +

    UT '16

    + +
    -
    -
    -

    To make college more collaborative and stress-free by creating simple and effective tools which speak the millennial language.

    +
    +
    +

    + As of 2022, Semester.ly is still an open source project, integrated in several CS + courses, supported by Hopkins + administration, faculty, & students, and motivated to continue growing this project! +

    +
    -
    -
    -
    -
    -
    -

    Meet the team

    +
    + +
    + +

    Our Current Team

    +
    +
    +
    +
    +
    +

    Jacky Wang

    +

    Team Lead

    +

    JHU '25

    + +
    +
    +
    +

    Spencer Huang

    +

    Software Engineer - FullStack

    +

    JHU '26

    + +
    +
    +
    +

    Jiashu Yang

    +

    Software Engineer - FullStack

    +

    JHU '25

    + +
    +
    +
    +

    Tanvi Ranade

    +

    Software Engineer - FullStack

    +

    JHU '26

    + +
    +
    +
    +

    Tiger Ding

    +

    Software Engineer - FullStack

    +

    JHU '27

    + +
    +
    +
    +
    +

    Our Board Members

    +
    +
    +
    +

    Dr. Ali Madooei

    +

    CS Lecturer - JHU

    + +
    +
    +
    +

    Ali Soylu

    +

    IT Architect - IT@JH

    + +
    +
    +
    +

    Mike Sellers

    +

    Sr. Software Engineer - IT@JH

    + +
    +
    +
    +
    +

    Our Former Team Members

    +
    +
    +
    +

    James Wang

    +

    Former Team Lead

    +

    JHU '23

    + +
    +
    +
    +

    Kiron Deb

    +

    Software Engineer - Frontend

    +

    JHU '25

    + +
    +
    +
    +

    Jiarui Chen

    +

    Software Engineer - FullStack

    +

    JHU '24

    + +
    +
    +
    +

    Jessie Luo

    +

    Software Engineer - FullStack

    +

    JHU '24

    + +
    +
    +
    +

    Andreas Jaramillo

    +

    Software Engineer - FullStack

    +

    JHU '26

    + +
    +
    +
    +

    Lauren Back

    +

    UI/UX Designer

    +

    JHU '23

    + +
    +
    +
    +

    Brian Rui

    +

    Software Engineer - FullStack

    +

    JHU '23

    + +
    +
    +
    +

    Jake Lee

    +

    Software Engineer - FullStack

    +

    JHU '25

    + +
    +
    +
    +

    Ameya Dehade

    +

    Software Engineer - FullStack

    +

    JHU '24

    + +
    +
    +
    +

    Rosa Gao

    +

    Software Engineer - Frontend

    +

    JHU '25

    + +
    +
    +
    +

    Sabrina Li

    +

    Software Engineer - Backend

    +

    JHU '23

    + +
    +
    +
    +

    Irena Lian

    +

    Software Engineer - FullStack

    +

    JHU '23

    + +
    +
    +
    +

    Alex Wei

    +

    Software Engineer - FullStack

    +

    JHU '23

    + +
    +
    +
    +
    +

    Jeanie Fung

    +

    Software Engineer - uCredit

    +

    JHU '23

    + +
    +
    +
    -
    -
    -
    -
    Founders
    +

    Sebastian Cabrejos

    +

    Former Team Lead

    +

    JHU '22

    +
    + +
    -
    -
    -

    Noah Presler

    +
    +
    +
    -
    -
    -

    Rohan Das

    +

    Mia Boloix

    +

    Former Program Manager ('19-'21)

    +

    JHU '21

    +
    + +
    -
    -
    -

    Felix Zhu

    +
    +
    +
    +

    Kristin Yim

    +

    Former Program Manager ('18-'19)

    +

    JHU '21

    +
    -
    -
    -
    Engineering
    +
    +
    +

    Robert Zhang

    +

    Software Engineer - Mentee

    +

    JHU '23

    + -
    -
    -

    Eric Calder

    +
    +
    +
    +

    Kyle Wu

    +

    Software Engineer - Mentee

    +

    JHU '23

    + -
    -
    -

    Melissa Kaufman-Gomez

    +
    +
    +
    +

    Eric Calder

    +

    Former Software Developer

    +

    JHU Alum

    + -
    -
    -

    Amlan Nayak

    +
    +
    +
    +

    Melissa K.G.

    +

    Former Software Developer

    +

    JHU Alum

    + -
    -
    -

    Max Yeo

    +
    +
    +
    +

    Amlan Nayak

    +

    Former Software Developer

    +

    JHU Alum

    + -
    -
    -

    Ahmed Kamil

    +
    +
    +
    +

    Max Yeo

    +

    Former Software Developer

    +

    JHU Alum

    + -
    -
    -

    Michael Miller

    +
    +
    +
    +

    William Yao

    +

    Former Software Developer

    +

    JHU Alum

    + -
    -
    -

    Eddie Wang

    +
    +
    +
    +

    Neha Onteeru

    +

    Former Marketing Staff Member

    +

    JHU Alum

    + -
    -
    -

    William Yao

    +
    +
    +
    +

    Karry A.

    +

    Software Engineer - Mentee

    +

    JHU '25

    +
    -
    -
    -
    Marketing
    +
    +
    +

    Sangmin Woo

    +

    Software Engineer - Mentee

    +

    JHU '23

    + -
    -
    -

    Neha Onteeru

    +
    +
    +
    +

    Justin Zhao

    +

    Software Engineer - Mentee

    +

    JHU '23

    + +
    +
    +
    +

    Ahmed Kamil

    +

    Former Software Developer

    +

    JHU Alum

    + +
    +
    +
    +

    Michael Miller

    +

    Former Software Developer

    +

    JHU Alum

    + -
    -
    -

    Sho Conte

    +
    +
    +
    +

    Eddie Wang

    +

    Former Software Developer

    +

    JHU Alum

    + -
    -
    -

    Tsukasa Kikuchi

    +
    +
    +
    +

    Sho Conte

    +

    Former Marketing Staff Member

    +

    JHU Alum

    + -
    -
    -

    Filip Susic

    +
    +
    +
    +

    Tsukasa Kikuchi

    +

    Former Marketing Staff Member

    +

    JHU Alum

    + +
    +
    +
    +

    Filip Susic

    +

    Former Marketing Staff Member

    +

    JHU Alum

    +
    @@ -150,20 +579,34 @@

    Filip Susic

    -
    COPYRIGHT © 2016 SEMESTERLY TECHNOLOGIES, LLC.
    +
    COPYRIGHT © 2017 SEMESTERLY TECHNOLOGIES, LLC.
    + - - - diff --git a/semesterly/templates/maintenance.html b/semesterly/templates/maintenance.html index fa8c572e86..6ce0a9f2c7 100644 --- a/semesterly/templates/maintenance.html +++ b/semesterly/templates/maintenance.html @@ -1,11 +1,13 @@ -{% load staticfiles %} +{% load static %} + - + @@ -14,38 +16,42 @@ - + - Under Construction | Semester.ly: Course Scheduling, Textbooks, Social & More + Under Construction | Semester.ly: Course Scheduling, Social & More - + - + -
    - -
    +
    + -
    -
    - -

    Under Construction

    -

    Semester.ly is currently under maintenance and will be back soon!

    +
    +
    + +

    Under Construction

    +

    Semester.ly is currently under maintenance and will be back soon!

    +
    -
    - - + + - + + \ No newline at end of file diff --git a/semesterly/templates/manifest.json b/semesterly/templates/manifest.json index 7387f466ca..5724d9e8e0 100644 --- a/semesterly/templates/manifest.json +++ b/semesterly/templates/manifest.json @@ -7,8 +7,7 @@ "display": "standalone", "permissions": [ "gcm", - "storage", - "notifications" + "storage" ], "gcm_sender_id": "801736825762" } \ No newline at end of file diff --git a/semesterly/templates/notice.html b/semesterly/templates/notice.html index cd94596607..b908402d29 100644 --- a/semesterly/templates/notice.html +++ b/semesterly/templates/notice.html @@ -1,41 +1,65 @@ -{% load staticfiles %} +{% load static %} - - - - Notice - Semester.ly - - - + + + + Notice - Semester.ly + + - - - - - - - - -
    -
    - -

    Semester.ly

    -
    -
    + + + + + + + + + + -
    -

    Dear Semester.ly user,

    -

    Our goal has always been to make course registration easier. We believe that you deserve speed, ease, convenience, and beautiful design in everything you touch. From finding the courses that are right for you to registering for them on the University system, we aim to improve every aspect of course registration. That is why we are excited to announce that we are partnering with Johns Hopkins University’s IT department to provide more reliable service, scalability, and integration with the university system!

    -

    We tested out this partnership with last semesters’ “Add to SIS Cart” button and will be building on that success to launch features that you have been asking for: course pre-requirement checking, recommended courses based on your major, and so much more! As part of this partnership, starting March 8th, 2019, Semester.ly will be hosted by HopkinsIT.

    -

    This means that HopkinsIT will be helping us improve the reliability of Semester.ly, but it also means user data will be hosted on their network. Only Semester.ly team members will be able to access user data but we still think this is a change you should be aware of. We believe that you should have control of your personal data and with that in mind, we would like to give you the option to delete your account. On the account dropdown, there is now a Delete Account button if you so choose. Here is a direct link. After careful consideration, we have decided that this move will help take Semester.ly to the next level and hope that you will join us on this new journey! -

    -

    -Sincerely,
    -The Semester.ly Team -

    + +
    +
    + +

     Back  

    + +
    +

    Semester.ly

    - +
    + +
    +

    Dear Semester.ly user,

    +

    Our goal has always been to make course registration easier. We believe that you deserve + speed, ease, convenience, and beautiful design in everything you touch. From finding the courses that are + right for you to registering for them on the University system, we aim to improve every aspect of course + registration. That is why we are excited to announce that we are partnering with Johns Hopkins University’s + IT department to provide more reliable service, scalability, and integration with the university system!

    +

    We tested out this partnership with last semesters’ “Add to SIS Cart” button and will be + building on that success to launch features that you have been asking for: course pre-requirement checking, + recommended courses based on your major, and so much more! As part of this partnership, starting March 8th, + 2019, Semester.ly will be hosted by HopkinsIT.

    +

    This means that HopkinsIT will be helping us improve the reliability of Semester.ly, but it + also means user data will be hosted on their network. Only Semester.ly team members will be able to access + user data but we still think this is a change you should be aware of. We believe that you should have + control of your personal data and with that in mind, we would like to give you the option to delete your + account. On the account dropdown, there is now a Delete Account button. If you wish, you may delete your + account HERE. After careful consideration, we have + decided that this move will help take Semester.ly to the next level and hope that you will join us on this + new journey! +

    +

    + Sincerely,
    + The Semester.ly Team +

    +
    + + diff --git a/semesterly/templates/press.html b/semesterly/templates/press.html index 59a6a20e79..3b7a04e9b9 100644 --- a/semesterly/templates/press.html +++ b/semesterly/templates/press.html @@ -1,142 +1,172 @@ {% extends "header.html" %} -{% load staticfiles %} +{% load static %} {% block title_description_block %} - Press Page - Semester.ly: Course Scheduling, Textbooks, Social & More - +Press Page - Semester.ly: Course Scheduling, Social & More + {% endblock %} {% block og_block %} - - - - - - - + + + + + + + {% endblock %} {% block css_block %} - + {% endblock %} {% block body_block %} -
    -
    -
    -
    -

    Press

    -
    +
    +
    +
    +
    +

    Press

    -
    -
    -
    -
    -
    -
    -
    -
    -
    +
    +
    +
    +

    Featured In

    + + + + + +
    -
    -
    - +
    + +
    + {% endblock %} \ No newline at end of file diff --git a/semesterly/templates/queens_error.html b/semesterly/templates/queens_error.html index e8321016d0..ce9dd63c3a 100644 --- a/semesterly/templates/queens_error.html +++ b/semesterly/templates/queens_error.html @@ -1,11 +1,13 @@ -{% load staticfiles %} +{% load static %} + - + @@ -14,38 +16,42 @@ - + - Queens Unavailable | Semester.ly: Course Scheduling, Textbooks, Social & More + Queens Unavailable | Semester.ly: Course Scheduling, Social & More - + - + -
    - -
    +
    + -
    -
    - -

    Queens is currently not available

    -
    -

    by request of the university

    -

    Page Not Found.
    Go back to Semester.ly

    +
    +
    + +

    Queens is currently not available

    +
    +

    by request of the university

    +

    Page Not Found.
    Go back to Semester.ly

    +
    -
    - - + + - + + \ No newline at end of file diff --git a/semesterly/templates/sw.js b/semesterly/templates/sw.js deleted file mode 100644 index 1abb346ed4..0000000000 --- a/semesterly/templates/sw.js +++ /dev/null @@ -1,63 +0,0 @@ -/* -Copyright (C) 2017 Semester.ly Technologies, LLC - -Semester.ly is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -Semester.ly is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -*/ - - -'use strict'; - -console.log('Started', self); -self.addEventListener('install', function(event) { - self.skipWaiting(); - console.log('Installed', event); -}); -self.addEventListener('activate', function(event) { - console.log('Activated', event); -}); -self.addEventListener('message', function(event){ - console.log("SW Received Message: " + event.data); - event.ports[0].postMessage("SW Says 'Hello back!'"); -}); -self.addEventListener('push', function(event) { - var notif = event.data.json(); - var title = notif.data.title; - var body = notif.data.message; - var icon = 'static/img/logo2.0-310x310.png'; - var tag = 'simple-push-demo-notification-tag'; - - event.waitUntil( - self.registration.showNotification(title, { - body: body, - icon: icon, - tag: tag - }) - ); -}); -self.addEventListener('notificationclick', function(event) { - console.log('On notification click: ', event.notification.tag); - event.notification.close(); - event.waitUntil( - clients.matchAll({ - type: "window" - }) - .then(function(clientList) { - for (var i = 0; i < clientList.length; i++) { - var client = clientList[i]; - if (client.url == '/' && 'focus' in client) - return client.focus(); - } - if (clients.openWindow) { - return clients.openWindow('https://semester.ly'); - } - }) - ); -}); diff --git a/semesterly/templates/ucredit.html b/semesterly/templates/ucredit.html new file mode 100644 index 0000000000..a4a0abed88 --- /dev/null +++ b/semesterly/templates/ucredit.html @@ -0,0 +1,12 @@ +{% load static %} + + + +

    uCredit #ad

    + +

    + Work with the uCredit team to determine what to put here. + Here's a link to uCredit +

    + + \ No newline at end of file diff --git a/semesterly/test_utils.py b/semesterly/test_utils.py index 9b5a64e670..b08f6774ae 100644 --- a/semesterly/test_utils.py +++ b/semesterly/test_utils.py @@ -17,6 +17,7 @@ import re import shutil import socket +import time from contextlib import contextmanager from importlib import import_module @@ -24,16 +25,18 @@ from django.contrib.auth import HASH_SESSION_KEY from django.contrib.auth import SESSION_KEY from django.contrib.auth.models import User -from django.conf import settings from django.contrib.staticfiles.testing import StaticLiveServerTestCase from selenium import webdriver from selenium.common.exceptions import StaleElementReferenceException from selenium.common.exceptions import TimeoutException from selenium.webdriver.common.action_chains import ActionChains from selenium.webdriver.common.by import By +from selenium.webdriver.common.keys import Keys from selenium.webdriver.support import expected_conditions as EC from selenium.webdriver.support.wait import WebDriverWait -from social.apps.django_app.default.models import UserSocialAuth +from selenium.webdriver.remote.webelement import WebElement +from webdriver_manager.chrome import ChromeDriverManager +from social_django.models import UserSocialAuth from student.models import PersonalTimetable from student.models import Student @@ -49,7 +52,7 @@ class SeleniumTestCase(StaticLiveServerTestCase): This test case extends the Django StaticLiveServerTestCase. It creates a selenium ChromeDriver instance on setUp of each test. It navigates to the live url for the static live server. - It also provides utilities and assertions for navigating and + It also provides utilities and assertions for navigating and testing presence of elements or behavior. Attributes: @@ -65,32 +68,40 @@ class SeleniumTestCase(StaticLiveServerTestCase): def __init__(self, *args, **kwargs): super(SeleniumTestCase, self).__init__(*args, **kwargs) - if settings.DEBUG == False: - settings.DEBUG = True @classmethod def setUpClass(cls): super(SeleniumTestCase, cls).setUpClass() - cls.TIMEOUT = 10 + cls.TIMEOUT = 10 cls.chrome_options = webdriver.ChromeOptions() cls.chrome_options.add_experimental_option( - "prefs", - {"profile.default_content_setting_values.notifications" : 2} + "prefs", {"profile.default_content_setting_values.notifications": 2} ) + cls.chrome_options.add_argument( + "--no-sandbox" + ) # Allow running chrome as root in Docker + cls.chrome_options.add_argument("--headless") # Do not require a display + cls.chrome_options.add_argument("--disable-dev-shm-usage") # for docker + cls.chrome_options.add_argument("--window-size=1920x1080") def setUp(self): - self.img_dir = os.path.dirname(os.path.realpath(__file__)) + '/test_failures' + self.img_dir = os.path.dirname(os.path.realpath(__file__)) + "/test_failures" self.init_screenshot_dir() - self.driver = webdriver.Chrome(chrome_options=self.chrome_options) - sem = get_current_semesters('jhu')[0] - sem, _ = Semester.objects.update_or_create(name=sem['name'], year=sem['year']) - for section in Section.objects.filter(semester__name="Fall", semester__year=2017): + self.driver = webdriver.Chrome( + ChromeDriverManager().install(), options=self.chrome_options + ) + sem = get_current_semesters("jhu")[0] + sem, _ = Semester.objects.update_or_create(name=sem["name"], year=sem["year"]) + for section in Section.objects.filter( + semester__name="Fall", semester__year=2022 + ): section.semester = sem section.save() self.current_sem = sem - self.driver.get(self.get_test_url('jhu')) - WebDriverWait(self.driver, self.TIMEOUT) \ - .until(lambda driver: driver.find_element_by_tag_name('body')) + self.driver.get(self.get_test_url("jhu")) + WebDriverWait(self.driver, self.TIMEOUT).until( + lambda driver: driver.find_element(By.TAG_NAME, "body") + ) def tearDown(self): self.driver.quit() @@ -101,6 +112,9 @@ def init_screenshot_dir(self): shutil.rmtree(self.img_dir) os.makedirs(self.img_dir) + def screenshot(self, name): + self.driver.save_screenshot(f"{self.img_dir}/{name}.png") + @contextmanager def description(self, descr): """A context manager which wraps a group of code and adds details to any exceptions thrown @@ -108,24 +122,24 @@ def description(self, descr): of the current state of self.driver, writing a PNG to self.img_dir, labeled by the provided description and a timetstamp. """ - socket.setdefaulttimeout(10 * self.TIMEOUT) + socket.setdefaulttimeout(10 * self.TIMEOUT) try: yield except Exception as exc: filename = self.img_dir + "/%s%s.png" % (descr, datetime.datetime.now()) - msg = "\n" + '=' * 70 +"\n" + msg = "\n" + "=" * 70 + "\n" msg += "FAILED TEST CASE: '%s'\n" % descr msg += "SCREENSHOT MAY BE FOUND IN: %s\n" % self.img_dir - msg += "" + '-' * 70 + "\n" + msg += "" + "-" * 70 + "\n" self.driver.save_screenshot(filename) - trace = ['\n\nFull Traceback (most recent call last):'] + trace = ["\n\nFull Traceback (most recent call last):"] for item in inspect.trace(): trace.append(' File "{1}", line {2}, in {3}'.format(*item)) for line in item[4]: - trace.append(' ' + line.strip()) - raise type(exc)(exc.message + '\n'.join(trace) + msg) + trace.append(" " + line.strip()) + raise type(exc)(str(exc) + "\n".join(trace) + msg) - def get_test_url(self, school, path=''): + def get_test_url(self, school, path=""): """Get's the live server testing url for a given school. Args: @@ -135,11 +149,13 @@ def get_test_url(self, school, path=''): Returns: the testing url """ - url = '%s%s' % (self.live_server_url, '/') - url = url.replace('http://', 'http://%s.' % school) - return url.replace('localhost', 'sem.ly') + path + url = "%s%s" % (self.live_server_url, "/") + url = url.replace("http://", "http://%s." % school) + return url.replace("localhost", "sem.ly") + path - def find(self, locator, get_all=False, root=None, clickable=False, hidden=False): + def find( + self, locator, get_all=False, root=None, clickable=False, hidden=False + ) -> "WebElement | list[WebElement]": """Locates element in the DOM and returns it when found. Args: @@ -151,6 +167,9 @@ def find(self, locator, get_all=False, root=None, clickable=False, hidden=False) Returns: The WebElement object returned by self.driver (Selenium) + + Throws: + RuntimeError: If element is not found or both get_all and clickable is True """ if get_all and clickable: raise RuntimeError("Cannot use both get_all and clickable") @@ -163,9 +182,26 @@ def find(self, locator, get_all=False, root=None, clickable=False, hidden=False) else: condition = EC.visibility_of_element_located(locator) try: - return WebDriverWait(root if root else self.driver, self.TIMEOUT).until(condition) + return WebDriverWait(root if root else self.driver, self.TIMEOUT).until( + condition + ) except TimeoutException: - raise RuntimeError('Failed to locate visible element "%s" by %s' % locator[::-1]) + raise RuntimeError( + 'Failed to locate visible element "%s" by %s' % locator[::-1] + ) + + def assert_timetable_not_found(self, name): + timetable_dropdown = self.find((By.CLASS_NAME, "timetable-drop-it-down")) + timetable_dropdown.click() + + try: + row = self.find( + (By.XPATH, "//div[@class='tt-name' and contains(text(),'%s')]" % name) + ) + except RuntimeError: + return True + + raise RuntimeError("Timetable found") def assert_invisibility(self, locator, root=None): """Asserts the invisibility of the provided element @@ -180,51 +216,89 @@ def assert_invisibility(self, locator, root=None): ) except TimeoutException: raise RuntimeError( - 'Failed to assert invisibility of element "%s" by %s' % locator[::-1]) + 'Failed to assert invisibility of element "%s" by %s' % locator[::-1] + ) def clear_tutorial(self): """Clears the tutorial modal for first time users""" for _ in range(4): arrow = self.find( - (By.XPATH, - ('//div[@class="tut-modal__nav"]' - '/i[@class="action fa fa-chevron-right"] |' - '//div[@class="tut-modal__nav"]/h4') - ), clickable=True) + ( + By.XPATH, + ( + '//div[@class="tut-modal__nav"]' + '/i[@class="action fa fa-chevron-right"] |' + '//div[@class="tut-modal__nav"]/h4' + ), + ), + clickable=True, + ) arrow.click() self.assert_invisibility((By.XPATH, '//div[@class="tut-modal__nav"]')) def enter_search_query(self, query): """Enters the provided query into the search box""" search_box = self.find( - (By.XPATH, - '//div[@class="search-bar__input-wrapper"]/input') + (By.XPATH, '//div[@class="search-bar__input-wrapper"]/input') ) search_box.clear() search_box.send_keys(query) - self.assert_invisibility((By.CLASS_NAME, 'results-loading-gif')) + try: + self.find((By.CLASS_NAME, "results-loading-gif")) + except RuntimeError: + pass # wait for debounce, but ignore if didn't happen + self.assert_invisibility((By.CLASS_NAME, "results-loading-gif")) + + def clear_search_query(self): + """Clears the search box""" + search_box = self.find( + (By.XPATH, '//div[@class="search-bar__input-wrapper"]/input') + ) + search_box.clear() + self.assert_n_elements_found((By.CLASS_NAME, "search-course"), 0) def assert_loader_completes(self): """Asserts that the semester.ly page loader has completed""" - self.assert_invisibility((By.CLASS_NAME, 'la-ball-clip-rotate-multiple')) + self.assert_invisibility((By.CLASS_NAME, "la-ball-clip-rotate-multiple")) def assert_slot_presence(self, n_slots, n_master_slots): """Assert n_slots and n_master_slots are on the page""" - slots = self.find((By.CLASS_NAME, 'slot'), get_all=True) + slots = self.find((By.CLASS_NAME, "slot"), get_all=True) self.assertEqual(len(slots), n_slots) - master_slots = self.find((By.CLASS_NAME, 'master-slot'), get_all=True) + master_slots = self.find((By.CLASS_NAME, "master-slot"), get_all=True) self.assertEqual(len(master_slots), n_master_slots) def search_course(self, query, n_results): - """Searches a course and asserts n_results elements are found""" + """Searches a course and asserts n_results elements are found + + Args: + query (str): the text to enter into search + n_results (int): the number of results to look for. If 0, will look for no + results + """ self.enter_search_query(query) - search_results = self.find((By.CLASS_NAME, 'search-results')) - self.assert_n_elements_found( - (By.CLASS_NAME, 'search-course'), - n_results + if n_results > 0: + search_results = self.find((By.CLASS_NAME, "search-results")) + self.assert_n_elements_found((By.CLASS_NAME, "search-course"), n_results) + else: + self.assert_invisibility((By.CLASS_NAME, "search-results")) + + def search_infinite_scroll(self, n): + """Scrolls down the search results and asserts n elements are found""" + search_results_container = self.find( + (By.CLASS_NAME, "search-results__list-container") ) + self.driver.execute_script( + "arguments[0].scrollTo(0, arguments[0].scrollHeight)", + search_results_container, + ) + + if n > 0: + self.assert_n_elements_found((By.CLASS_NAME, "search-course"), n) + else: + self.assert_invisibility((By.CLASS_NAME, "search-results")) - def add_course(self, course_idx, n_slots, n_master_slots, by_section='', code=None): + def add_course(self, course_idx, n_slots, n_master_slots, by_section="", code=None): """Adds a course via search results and asserts the corresponding number of slots are found Args: @@ -239,46 +313,52 @@ def add_course(self, course_idx, n_slots, n_master_slots, by_section='', code=No (By.XPATH, '//div[@class="search-bar__input-wrapper"]/input') ) search_box.send_keys("") - search_results = self.find((By.CLASS_NAME, 'search-results')) + search_results = self.find((By.CLASS_NAME, "search-results")) if code: - chosen_course = WebDriverWait(self.driver, self.TIMEOUT) \ - .until(text_to_be_present_in_nth_element( - (By.CLASS_NAME, 'search-course'), - code, - course_idx) - ) - else: - chosen_course = search_results.find_elements_by_class_name('search-course')[course_idx] + chosen_course = WebDriverWait(self.driver, self.TIMEOUT).until( + text_to_be_present_in_nth_element( + (By.CLASS_NAME, "search-course"), code, course_idx + ) + ) + else: + chosen_course = search_results.find_elements( + by=By.CLASS_NAME, value="search-course" + )[course_idx] if not by_section: add_button = self.find( - (By.CLASS_NAME, 'search-course-add'), - root=chosen_course, - clickable=True + (By.CLASS_NAME, "search-course-add"), root=chosen_course, clickable=True ) add_button.click() else: ActionChains(self.driver).move_to_element(chosen_course).perform() # ensure that the side bar is visible - self.find((By.CLASS_NAME, 'search-bar__side')) - section = self.find(( - By.XPATH, - "//h5[contains(@class,'sb-side-sections') and " + \ - "contains(text(),'%s')]" % by_section - ), clickable=True) - ActionChains(self.driver).move_to_element(chosen_course)\ - .move_to_element(section) \ - .click().perform() + self.find((By.CLASS_NAME, "search-bar__side")) + section = self.find( + ( + By.XPATH, + "//h5[contains(@class,'sb-side-sections') and " + + "contains(text(),'%s')]" % by_section, + ), + clickable=True, + ) + ActionChains(self.driver).move_to_element(chosen_course).move_to_element( + section + ).click().perform() self.assert_loader_completes() self.assert_slot_presence(n_slots, n_master_slots) self.click_off() + def assert_visibility(self, locator, root=None): + self.assert_n_elements_found(locator, 1, root=root) + def assert_n_elements_found(self, locator, n_elements, root=None): """Asserts that n_elements are found by the provided locator""" if n_elements == 0: self.assert_invisibility(locator) else: - WebDriverWait(self.driver, self.TIMEOUT) \ - .until(n_elements_to_be_found(locator, n_elements)) + WebDriverWait(self.driver, self.TIMEOUT).until( + n_elements_to_be_found(locator, n_elements) + ) def remove_course(self, course_idx, from_slot=False, n_slots_expected=None): """Removes a course from the user's timetable, asserts master slot is removed. @@ -288,51 +368,84 @@ def remove_course(self, course_idx, from_slot=False, n_slots_expected=None): from_slot (bool, optional): if provided, removes via slot rather than via a master_slot n_slots_expected (int, optional): if provided, asserts n slots found after removal """ - n_master_slots_before = len(self.find((By.CLASS_NAME, 'master-slot'), get_all=True)) + n_master_slots_before = len( + self.find((By.CLASS_NAME, "master-slot"), get_all=True) + ) if from_slot: - if n_master_slots_before > 0: - raise RuntimeError('Cannot remove via slot button unless n_courses = 1') - slot = self.find((By.CLASS_NAME, 'slot'), get_all=True)[0] - del_button = self.find((By.CLASS_NAME, 'fa-times'), root=slot, clickable=True) + if n_master_slots_before > 1: + raise RuntimeError("Cannot remove via slot button unless n_courses = 1") + if n_master_slots_before == 0: + raise RuntimeError("Cannot remove via slot button if no courses") + slot = self.find((By.CLASS_NAME, "slot"), get_all=True)[0] + ActionChains(self.driver).move_to_element(slot).pause(1).perform() + del_button = self.find( + (By.CLASS_NAME, "fa-times"), root=slot, clickable=True + ) else: - master_slot = self.find((By.CLASS_NAME, 'master-slot'), get_all=True)[course_idx] - del_button = self.find((By.CLASS_NAME, 'fa-times'), root=master_slot, clickable=True) + master_slot = self.find((By.CLASS_NAME, "master-slot"), get_all=True)[ + course_idx + ] + del_button = self.find( + (By.CLASS_NAME, "fa-times"), root=master_slot, clickable=True + ) del_button.click() self.assert_loader_completes() - self.assert_n_elements_found((By.CLASS_NAME, 'master-slot'), n_master_slots_before - 1) + self.assert_n_elements_found( + (By.CLASS_NAME, "master-slot"), n_master_slots_before - 1 + ) if n_slots_expected: - self.assert_n_elements_found((By.CLASS_NAME, 'slot'), n_slots_expected) + self.assert_n_elements_found((By.CLASS_NAME, "slot"), n_slots_expected) + + def delete_timetable(self, name): + timetable_dropdown = self.find((By.CLASS_NAME, "timetable-drop-it-down")) + timetable_dropdown.click() + + row = self.find( + (By.XPATH, "//div[@class='tt-name' and contains(text(),'%s')]" % name) + ) + del_button = self.find((By.CLASS_NAME, "fa-trash-o"), root=row, clickable=True) + del_button.click() + + confirmation_btn = self.find( + (By.CLASS_NAME, "delete-timetable-alert-btn"), clickable=True + ) + confirmation_btn.click() def open_course_modal_from_search(self, course_idx): """Opens course modal from search by search result index""" - search_results = self.find((By.CLASS_NAME, 'search-results')) - chosen_course = search_results.find_elements_by_class_name('search-course')[course_idx] + search_results = self.find((By.CLASS_NAME, "search-results")) + chosen_course = search_results.find_elements( + by=By.CLASS_NAME, value="search-course" + )[course_idx] chosen_course.click() + self.assert_visibility((By.CLASS_NAME, "course-modal")) def validate_course_modal(self): """Validates the course modal displays proper course data""" - url_match = WebDriverWait(self.driver, self.TIMEOUT) \ - .until(url_matches_regex(r'\/course\/(.*)\/(.*)\/(20..)')) + url_match = WebDriverWait(self.driver, self.TIMEOUT).until( + url_matches_regex(r"\/course\/(.*)\/(.*)\/(20..)") + ) code = url_match.group(1) semester = Semester.objects.get( - name=url_match.group(2), - year=url_match.group(3) + name=url_match.group(2), year=url_match.group(3) ) course = Course.objects.get(code=code) - modal = self.find((By.CLASS_NAME, 'course-modal')) + modal = self.find((By.CLASS_NAME, "course-modal")) self.validate_course_modal_body(course, modal, semester) def validate_course_modal_body(self, course, modal, semester): """Validates the course modal body displays credits, name, code, etc.""" - modal_body = self.find((By.CLASS_NAME, 'modal-body'), root=modal) - modal_header = self.find((By.CLASS_NAME, 'modal-header'), root=modal) - credit_count = self.find((By.CLASS_NAME, 'credits'), root=modal_body) - self.assertTrue(str(int(course.num_credits)) in credit_count.text \ - or str(course.num_credits) in credit_count.text) + modal_body = self.find((By.CLASS_NAME, "modal-body"), root=modal) + modal_header = self.find((By.CLASS_NAME, "modal-header"), root=modal) + credit_count = self.find((By.CLASS_NAME, "credits"), root=modal_body) + self.assertTrue( + str(int(course.num_credits)) in credit_count.text + or str(course.num_credits) in credit_count.text + ) self.assertTrue(course.name in modal_header.text) self.assertTrue(course.code in modal_header.text) self.assertTrue(course.prerequisites in modal_body.text) - self.assertTrue(course.areas in modal_body.text) + # self.assertTrue(course.areas in modal_body.text) # n_sections = Section.objects.filter( # course=course, # semester=semester @@ -342,15 +455,21 @@ def validate_course_modal_body(self, course, modal, semester): def open_course_modal_from_slot(self, course_idx): """Opens the course modal from the nth slot""" - slot = self.find((By.CLASS_NAME, 'slot'), clickable=True) - slot.click() + slot = self.find((By.CLASS_NAME, "master-slot"), get_all=True)[course_idx] + # For some reason, it was always clicking the share link instead of the slot + ActionChains(self.driver).move_to_element(slot).move_by_offset( + 0, -10 + ).click().perform() + self.assert_visibility((By.CLASS_NAME, "course-modal")) def close_course_modal(self): """Closes the course modal using the (x) button""" - modal = self.find((By.CLASS_NAME, 'course-modal')) - modal_header = self.find((By.CLASS_NAME, 'modal-header'), root=modal) - self.find((By.CLASS_NAME, 'fa-times'), root=modal_header, clickable=True).click() - self.assert_invisibility((By.CLASS_NAME, 'course-modal')) + modal = self.find((By.CLASS_NAME, "course-modal")) + modal_header = self.find((By.CLASS_NAME, "modal-header"), root=modal) + self.find( + (By.CLASS_NAME, "fa-times"), root=modal_header, clickable=True + ).click() + self.assert_invisibility((By.CLASS_NAME, "course-modal")) def follow_and_validate_url(self, url, validate): """Opens a new window, switches to it, gets the url and validates it @@ -360,118 +479,134 @@ def follow_and_validate_url(self, url, validate): url (str): the url to follow and validate validate (func): the function which validates the new page """ + # Some versions of chrome don't like if url does not start with http + if not str(url).startswith("http"): + url = "%s%s" % ("http://", url) self.driver.execute_script("window.open()") - self.driver.switch_to_window(self.driver.window_handles[1]) + self.driver.switch_to.window(self.driver.window_handles[1]) self.driver.get(url) validate() self.driver.close() - self.driver.switch_to_window(self.driver.window_handles[0]) + self.driver.switch_to.window(self.driver.window_handles[0]) def follow_share_link_from_modal(self): - modal = self.find((By.CLASS_NAME, 'course-modal')) - modal_header = self.find((By.CLASS_NAME, 'modal-header'), root=modal) - self.find((By.CLASS_NAME, 'fa-share-alt'), root=modal_header).click() - url = self.find((By.CLASS_NAME, 'share-course-link'), root=modal_header) \ - .get_attribute('value') + modal = self.find((By.CLASS_NAME, "course-modal")) + modal_header = self.find((By.CLASS_NAME, "modal-header"), root=modal) + self.find((By.CLASS_NAME, "fa-share-alt"), root=modal_header).click() + url = self.find( + (By.CLASS_NAME, "share-course-link"), root=modal_header + ).get_attribute("value") self.follow_and_validate_url(url, self.validate_course_modal) def follow_share_link_from_slot(self): """Click the share link on the slot and follow it then validate the course modal""" - master_slot = self.find((By.CLASS_NAME, 'master-slot'), clickable=True) - share = self.find((By.CLASS_NAME, 'fa-share-alt'), root=master_slot, clickable=True) + master_slot = self.find((By.CLASS_NAME, "master-slot"), clickable=True) + share = self.find( + (By.CLASS_NAME, "fa-share-alt"), root=master_slot, clickable=True + ) share.click() - url = self.find((By.CLASS_NAME, 'share-course-link'), root=master_slot) \ - .get_attribute('value') + url = self.find( + (By.CLASS_NAME, "share-course-link"), root=master_slot + ).get_attribute("value") self.follow_and_validate_url(url, self.validate_course_modal) def remove_course_from_course_modal(self, n_slots_expected=None): """Removes course via the action within the course's course modal. Requires that the course modal be open. """ - n_master_slots_before = len(self.find((By.CLASS_NAME, 'master-slot'), get_all=True)) - modal = self.find((By.CLASS_NAME, 'course-modal')) - modal_header = self.find((By.CLASS_NAME, 'modal-header'), root=modal) - remove = self.find((By.CLASS_NAME, 'fa-check'), root=modal_header, clickable=True) + n_master_slots_before = len( + self.find((By.CLASS_NAME, "master-slot"), get_all=True) + ) + modal = self.find((By.CLASS_NAME, "course-modal")) + modal_header = self.find((By.CLASS_NAME, "modal-header"), root=modal) + remove = self.find( + (By.CLASS_NAME, "fa-check"), root=modal_header, clickable=True + ) remove.click() + time.sleep(1) self.assert_loader_completes() - self.assert_invisibility((By.CLASS_NAME, 'course-modal')) - self.assert_n_elements_found((By.CLASS_NAME, 'master-slot'), n_master_slots_before - 1) + self.assert_invisibility((By.CLASS_NAME, "course-modal")) + self.assert_n_elements_found( + (By.CLASS_NAME, "master-slot"), n_master_slots_before - 1 + ) if n_slots_expected: - self.assert_n_elements_found((By.CLASS_NAME, 'slot'), n_slots_expected) + self.assert_n_elements_found((By.CLASS_NAME, "slot"), n_slots_expected) def add_course_from_course_modal(self, n_slots, n_master_slots): """Adds a course via the course modal action. Requires that the course modal be open. """ - modal = self.find((By.CLASS_NAME, 'course-modal')) - modal_header = self.find((By.CLASS_NAME, 'modal-header'), root=modal) - url_match = WebDriverWait(self.driver, self.TIMEOUT) \ - .until(url_matches_regex(r'\/course\/(.*)\/(.*)\/(20..)')) + modal = self.find((By.CLASS_NAME, "course-modal")) + modal_header = self.find((By.CLASS_NAME, "modal-header"), root=modal) + url_match = WebDriverWait(self.driver, self.TIMEOUT).until( + url_matches_regex(r"\/course\/(.*)\/(.*)\/(20..)") + ) course = Course.objects.get(code=url_match.group(1)) - self.find((By.CLASS_NAME, 'fa-plus'), root=modal_header).click() + self.find((By.CLASS_NAME, "fa-plus"), root=modal_header).click() self.assert_loader_completes() - self.assert_invisibility((By.CLASS_NAME, 'course-modal')) + self.assert_invisibility((By.CLASS_NAME, "course-modal")) self.assert_slot_presence(n_slots, n_master_slots) return course def validate_timeable(self, courses): """Validate timetable by checking that for each course provided, a slot exists with that course's name and course code.""" - slots = self.find((By.CLASS_NAME, 'slot'), get_all=True) + slots = self.find((By.CLASS_NAME, "slot"), get_all=True) for course in courses: - any([course.name in slot.text and course.code in slot.text for slot in slots]) + any( + [ + course.name in slot.text and course.code in slot.text + for slot in slots + ] + ) def share_timetable(self, courses): """Clicks the share button via the top bar and validates it. Validation is done by following the url and checking the timetable using the validate_timetable function """ - top_bar_actions = self.find((By.CLASS_NAME, 'fc-right')) + top_bar_actions = self.find((By.CLASS_NAME, "fc-right")) self.find( - (By.CLASS_NAME, 'fa-share-alt'), - clickable=True, - root=top_bar_actions + (By.CLASS_NAME, "fa-share-alt"), clickable=True, root=top_bar_actions ).click() url = self.find( - (By.CLASS_NAME, 'share-course-link'), - root=top_bar_actions - ).get_attribute('value') + (By.CLASS_NAME, "share-course-link"), root=top_bar_actions + ).get_attribute("value") self.follow_and_validate_url(url, lambda: self.validate_timeable(courses)) def click_off(self): """Clears the focus of the driver""" - self.find((By.CLASS_NAME, 'semesterly-name'), clickable=True).click() + self.find((By.CLASS_NAME, "semesterly-name"), clickable=True).click() def lock_course(self): """Locks the first course on the timetable""" self.click_off() - slot = self.find((By.CLASS_NAME, 'slot'), clickable=True) + slot = self.find((By.CLASS_NAME, "slot"), clickable=True) ActionChains(self.driver).move_to_element(slot).perform() - lock = self.find((By.CLASS_NAME, 'fa-unlock'), root=slot, clickable=True) - ActionChains(self.driver).move_to_element(slot).move_to_element(lock).click().perform() - for slot in self.find((By.CLASS_NAME, 'slot'), get_all=True): - self.find((By.CLASS_NAME, 'fa-lock'), clickable=True) - self.assert_invisibility((By.CLASS_NAME, 'sem-pagination')) + lock = self.find((By.CLASS_NAME, "fa-unlock"), root=slot, clickable=True) + ActionChains(self.driver).move_to_element(slot).move_to_element( + lock + ).click().perform() + for slot in self.find((By.CLASS_NAME, "slot"), get_all=True): + self.find((By.CLASS_NAME, "fa-lock"), clickable=True) + self.assert_invisibility((By.CLASS_NAME, "sem-pagination")) def execute_action_expect_alert(self, action, alert_text_contains=""): """Executes the provided action, asserts that an alert appears and validates that the alert text contains the provided string (when provided)""" action() alert = self.find( - (By.XPATH, - "//div[@class='react-alerts']//div[contains(@class,'alert')]") + (By.XPATH, "//div[@class='react-alerts']//div[contains(@class,'alert')]") ) self.assertTrue(alert_text_contains in alert.text) def take_alert_action(self): """Takes the action provided by the alert by clicking the button on when visible""" alert = self.find( - (By.XPATH, - "//div[@class='react-alerts']//div[contains(@class,'alert')]") + (By.XPATH, "//div[@class='react-alerts']//div[contains(@class,'alert')]") ) self.find( - (By.CLASS_NAME, - "conflict-alert-btn"), + (By.CLASS_NAME, "conflict-alert-btn"), root=alert, ).click() @@ -479,192 +614,189 @@ def allow_conflicts_add(self, n_slots): """Allows conflicts via the conflict alert action, then validates that the course was added """ - n_master_slots_before = len(self.find((By.CLASS_NAME, 'master-slot'), get_all=True)) + n_master_slots_before = len( + self.find((By.CLASS_NAME, "master-slot"), get_all=True) + ) self.take_alert_action() self.assert_loader_completes() - self.assert_n_elements_found((By.CLASS_NAME, 'master-slot'), n_master_slots_before + 1) - self.assert_n_elements_found((By.CLASS_NAME, 'slot'), n_slots) + self.assert_n_elements_found( + (By.CLASS_NAME, "master-slot"), n_master_slots_before + 1 + ) + self.assert_n_elements_found((By.CLASS_NAME, "slot"), n_slots) def change_term(self, term, clear_alert=False): """Changes the term to the provided term by matching the string to the string found in the semester dropdown on Semester.ly""" self.click_off() - self.find((By.CLASS_NAME, 'search-bar__semester')).click() - self.find(( - By.XPATH, - "//div[contains(@class,'semester-option') " + - "and contains(text(),'%s')]" % term - ), clickable=True).click() + self.find((By.CLASS_NAME, "search-bar__semester")).click() + self.find( + ( + By.XPATH, + "//div[contains(@class,'semester-option') " + + "and contains(text(),'%s')]" % term, + ), + clickable=True, + ).click() if clear_alert: self.take_alert_action() - search_box = self.find((By.XPATH, '//div[@class="search-bar__input-wrapper"]/input')) + search_box = self.find( + (By.XPATH, '//div[@class="search-bar__input-wrapper"]/input') + ) search_box.clear() - WebDriverWait(self.driver, self.TIMEOUT) \ - .until(text_to_be_present_in_element_attribute( + WebDriverWait(self.driver, self.TIMEOUT).until( + text_to_be_present_in_element_attribute( (By.XPATH, '//div[@class="search-bar__input-wrapper"]/input'), - term, 'placeholder' + term, + "placeholder", ) ) - + def change_to_current_term(self, clear_alert=False): - sem = get_current_semesters('jhu')[0] - self.change_term("%s %s" % (sem['name'], sem['year']), clear_alert=clear_alert) + sem = get_current_semesters("jhu")[0] + self.change_term("%s %s" % (sem["name"], sem["year"]), clear_alert=clear_alert) def open_and_query_adv_search(self, query, n_results=None): """Open's the advanced search modal and types in the provided query, asserting that n_results are then returned""" - self.find( - (By.CLASS_NAME, 'show-exploration'), - clickable=True - ).click() - self.find( - (By.CLASS_NAME, 'exploration-modal'), - clickable=True + self.find((By.CLASS_NAME, "show-advanced-search"), clickable=True).click() + self.find((By.CLASS_NAME, "advanced-search-modal"), clickable=True) + search = self.find( + (By.XPATH, '//div[contains(@class,"advanced-search-modal-header")]//input') ) - search = self.find(( - By.XPATH, - '//div[contains(@class,"exploration-header")]//input' - )) search.clear() search.send_keys(query) if n_results: - self.assert_n_elements_found((By.CLASS_NAME, 'exp-s-result'), n_results) + self.assert_n_elements_found( + (By.CLASS_NAME, "advanced-s-result"), n_results + ) + + def close_adv_search(self): + """Closes the advanced search modal""" + self.find((By.CLASS_NAME, "fa-times"), clickable=True).click() def login_via_fb(self, email, password): - """Login user via fb by clicking continue with Facebook in the signup modal, - entering the user's credentials into Facebook, then returns to Semester.ly + """Login user via fb by detecting the Continue with Facebook button in the + signup modal, and then mocking user's credentials Args: email (str): User's email password (str): User's password """ - self.find((By.CLASS_NAME, 'social-login'), clickable=True).click() - self.find((By.CLASS_NAME, 'fb-btn'), clickable=True).click() - self.find((By.XPATH, '/html[@id="facebook"]')) - email_input = self.find((By.ID, 'email')) - email_input.send_keys(email) - pass_input = self.find((By.ID, 'pass')) - pass_input.send_keys(password) - self.find((By.ID, 'loginbutton')).click() - - def login_via_google(self, email, password, **kwargs): - """Mocks the login of a user via Google by clicking continue with Facebook - in the signup modal. Then manually creates and logins a user. All kwargs are - passed to the user model on creation (e.g. name and email). + self.find((By.CLASS_NAME, "social-login"), clickable=True).click() + self.find((By.CLASS_NAME, "fb-btn"), clickable=True) + user = self.get_or_create_student(email, password).user + social_user, _ = UserSocialAuth.objects.get_or_create( + user=user, + uid="12345678987654321", + provider="facebook", + extra_data={"access_token": "12345678987654321", "expires": "never"}, + ) + social_user.save() + force_login(user, self.driver, self.get_test_url("jhu")) + + def login_via_google(self, email, password): + """Mocks the login of a user via Google by detecting the Continue with Google + button in the signup modal, and then mocking the user's credentials. Args: email (str): User's email password (str): User's password """ - self.find((By.CLASS_NAME, 'social-login'), clickable=True).click() + self.find((By.CLASS_NAME, "social-login"), clickable=True).click() self.find( - (By.XPATH, - ("//span[contains(text(), 'Continue with Google')]" - "/ancestor::button[contains(@class, 'btn')]")), - clickable=True - ).click() - #ensure that we are on the google page - self.find((By.ID, 'identifierId')) - user = User.objects.create( - username='temporary', - password='temporary', - **kwargs - ) - student = Student.objects.create( - user=user, - img_url=self.get_test_url('jhu', path="static/img/user2-160x160.jpg") + ( + By.XPATH, + ( + "//span[contains(text(), 'Continue with Google')]" + "/ancestor::button[contains(@class, 'btn')]" + ), + ), + clickable=True, ) - social_user = UserSocialAuth.objects.create( + user = self.get_or_create_student(email, password).user + social_user, _ = UserSocialAuth.objects.get_or_create( user=user, - uid='12345678987654321', + uid="12345678987654321", provider="google-oauth2", - extra_data={ - 'access_token': '12345678987654321', - 'expires': 'never' - } + extra_data={"access_token": "12345678987654321", "expires": "never"}, + ) + social_user.save() + force_login(user, self.driver, self.get_test_url("jhu")) + + def get_or_create_student(self, email, password) -> Student: + user, _ = User.objects.get_or_create( + username="semlytestdev", email=email, password=password + ) + student, _ = Student.objects.get_or_create( + user=user, + img_url=self.get_test_url("jhu", path="static/img/user2-160x160.jpg"), ) user.save() student.save() - social_user.save() - force_login(user, self.driver, self.get_test_url('jhu')) + return student + + def logout(self): + self.find((By.CLASS_NAME, "social-pro-pic"), clickable=True).click() + self.find((By.XPATH, "//a[@href='/user/logout/']"), clickable=True).click() def select_nth_adv_search_result(self, index, semester): """Selects the nth advanced search result with a click. Validates the course modal body displayed in the search reuslts""" - res = self.find((By.CLASS_NAME, 'exp-s-result'), get_all=True) - code = self.find((By.TAG_NAME, 'h5'), root=res[index]).text + res = self.find((By.CLASS_NAME, "advanced-s-result"), get_all=True) + code = self.find((By.TAG_NAME, "h5"), root=res[index]).text course = Course.objects.get(code=code) ActionChains(self.driver).move_to_element(res[index]).click().perform() - WebDriverWait(self.driver, self.TIMEOUT) \ - .until(EC.text_to_be_present_in_element( - (By.XPATH, "//div[contains(@class, 'modal-header')]/h2"), - course.code - )) - modal = self.find((By.CLASS_NAME, 'exp-modal')) + modal = self.find((By.CLASS_NAME, "adv-modal")) self.validate_course_modal_body(course, modal, semester) def save_user_settings(self): """Saves user setttings by clicking the button, asserts that the modal is then invisible""" - self.find((By.CLASS_NAME, 'signup-button')).click() - self.assert_invisibility((By.CLASS_NAME, 'welcome-modal')) + self.find((By.CLASS_NAME, "signup-button")).click() + self.assert_invisibility((By.CLASS_NAME, "user-settings-modal")) def complete_user_settings_basics(self, major, class_year): - """Completes major/class year/TOS agreement via the welcome modal + """Completes major/class year/TOS agreement via the user settings modal Args: major (str): Student's major class_year (str): Student's class year """ - # Assert welcome modal is open - self.find((By.CLASS_NAME, 'welcome-modal')) + # Assert that user settings modal is open + self.find((By.CLASS_NAME, "user-settings-modal")) major_select, year_select = self.find( - (By.XPATH, - "//div[contains(@class,'Select-input')]//input"), + (By.XPATH, "//div[contains(@class,'select-field')]//input"), get_all=True, - hidden=True + hidden=True, ) major_select.send_keys(major) - self.find( - (By.XPATH, - "//div[contains(@id,'react-select-')]"), - ).click() + self.find((By.XPATH, f"//div[contains(text(), '{major}')]")).click() year_select.send_keys(class_year) + ActionChains(self.driver).move_to_element(year_select).move_by_offset( + 0, year_select.size["height"] + 20 + ).click().perform() + self.find( - (By.XPATH, - "//div[contains(@id,'react-select-')]"), - ).click() - self.find( - (By.XPATH, - "//span[contains(@class, 'switch-label') and contains(@data-off, 'CLICK TO ACCEPT')]") + ( + By.XPATH, + "//span[contains(@class, 'switch-label') and contains(@data-off, 'CLICK TO ACCEPT')]", + ) ).click() - self.find(( - By.XPATH, - "//input[contains(@id, 'tos-agreed-input') and contains(@value, 'on')]" - ), hidden=True) self.save_user_settings() - self.assert_invisibility((By.CLASS_NAME, 'welcome-modal')) + self.assert_invisibility((By.CLASS_NAME, "user-settings-modal")) def change_ptt_name(self, name): """Changes personal timetable name to the provided title""" - name_input = self.find((By.CLASS_NAME, 'timetable-name')) - name_input.clear() - name_input.send_keys(name) + name_input = self.find((By.CLASS_NAME, "timetable-name")) + ActionChains(self.driver).click(name_input).double_click(name_input).perform() + name_input.send_keys(Keys.DELETE, name) self.click_off() - def save_ptt(self): - """Saves the user's current personal timetable and returs a tuple representation""" - self.find((By.CLASS_NAME, 'fa-floppy-o')).click() - self.assert_invisibility( - (By.XPATH, - "//input[contains(@class, 'timetable-name) and contains(@class, 'unsaved')]") - ) - return self.ptt_to_tuple() - def assert_ptt_const_across_refresh(self): """Refreshes the browser and asserts that the tuple version of the personal timetable is equivalent to pre-refresh """ + self.assert_invisibility((By.CLASS_NAME, "unsaved")) ptt = self.ptt_to_tuple() self.driver.refresh() self.assert_ptt_equals(ptt) @@ -672,59 +804,87 @@ def assert_ptt_const_across_refresh(self): def assert_ptt_equals(self, ptt): """Asserts equivalency between the provided ptt tuple and the current ptt""" try: - WebDriverWait(self.driver, self.TIMEOUT) \ - .until(function_returns_true(lambda: self.ptt_equals(ptt))) + WebDriverWait(self.driver, self.TIMEOUT).until( + function_returns_true(lambda: self.ptt_equals(ptt)) + ) except TimeoutException: - #ptt equivalency check failed. Run check one final time for useful debug info + # ptt equivalency check failed. Run check one final time for useful debug info self.ptt_equals(ptt) raise RuntimeError("PTTs are not equal.") def ptt_equals(self, ptt): slots, master_slots, tt_name = ptt - self.assertItemsEqual(slots, self.get_elements_as_text((By.CLASS_NAME, 'slot'))) - self.assertItemsEqual(master_slots, - self.get_elements_as_text((By.CLASS_NAME, 'master-slot'))) - self.assertItemsEqual(tt_name, self.get_elements_as_text((By.CLASS_NAME, 'timetable-name'))) + self.assertCountEqual(slots, self.get_elements_as_text((By.CLASS_NAME, "slot"))) + self.assertCountEqual( + master_slots, self.get_elements_as_text((By.CLASS_NAME, "master-slot")) + ) + self.assertCountEqual(tt_name, self.get_timetable_name()) return True def ptt_to_tuple(self): """Converts personal timetable to a tuple representation""" - slots = self.get_elements_as_text((By.CLASS_NAME, 'slot')) - master_slots = self.get_elements_as_text((By.CLASS_NAME, 'master-slot')) - tt_name = self.get_elements_as_text((By.CLASS_NAME, 'timetable-name')) + slots = self.get_elements_as_text((By.CLASS_NAME, "slot")) + master_slots = self.get_elements_as_text((By.CLASS_NAME, "master-slot")) + tt_name = self.get_timetable_name() return (slots, master_slots, tt_name) def get_elements_as_text(self, locator): """Gets elements using self.get and represents them as text""" - eles = self.find(locator, get_all=True) - return [s.text for s in eles] + try: + eles = self.find(locator, get_all=True) + elements = [s.text for s in eles if s.text] + # Remove "Unlock this section" and "Lock this section" from text if present + return list( + map( + lambda s: "\n".join( + filter( + lambda l: not l.startswith("Unlock this section") + and not l.startswith("Lock this section"), + s.split("\n"), + ) + ), + elements, + ) + ) + except RuntimeError: + return [] + + def get_timetable_name(self): + """Gets the personal timetable name""" + return self.find((By.CLASS_NAME, "timetable-name")).get_property("value") - def create_ptt(self, name=None): - """Create a personaltimetable with the provided name when provided""" - self.find(( + def create_ptt(self, name: str = "", finish_saving: bool = True): + """Create a personaltimetable with the provided name when provided + + Args: + name: Name of the personal timetable + finish_saving: Whether to wait until the personal timetable is saved + """ + if finish_saving: + self.assert_invisibility((By.CLASS_NAME, "unsaved")) + self.find_element( + By.XPATH, "//span[contains(@clas, 'tip-down')]" + ).click().find_element( By.XPATH, - "//button[contains(@class,'add-button')]//i[contains(@class,'fa fa-plus')]" - )).click() - name_input = self.find((By.CLASS_NAME, 'timetable-name')) - WebDriverWait(self.driver, self.TIMEOUT) \ - .until(EC.text_to_be_present_in_element_value( - (By.CLASS_NAME, 'timetable-name'), - 'Untitled Schedule' - )) + "//button[contains(@class,'save-timetable') and contains(@class,'add-button')]", + ).click() + name_input = self.find((By.CLASS_NAME, "timetable-name")) + WebDriverWait(self.driver, self.TIMEOUT).until( + EC.text_to_be_present_in_element_value( + (By.CLASS_NAME, "timetable-name"), "Untitled Schedule" + ) + ) if name: name_input.clear() name_input.send_keys(name) def create_friend(self, first_name, last_name, **kwargs): """Creates a friend of the primary (first) user""" - user = User.objects.create( - first_name=first_name, - last_name=last_name - ) + user = User.objects.create(first_name=first_name, last_name=last_name) friend = Student.objects.create( user=user, - img_url=self.get_test_url('jhu', path="static/img/user2-160x160.jpg"), - **kwargs + img_url=self.get_test_url("jhu", path="static/img/user2-160x160.jpg"), + **kwargs, ) friend.friends.add(Student.objects.first()) friend.save() @@ -733,45 +893,304 @@ def create_friend(self, first_name, last_name, **kwargs): def create_personal_timetable_obj(self, friend, courses, semester): """Creates a personal timetable object belonging to the provided user with the given courses and semester""" - ptt = PersonalTimetable.objects.create( - student=friend, - semester_id=semester.id - ) + ptt = PersonalTimetable.objects.create(student=friend, semester_id=semester.id) for course in courses: ptt.courses.add(course) ptt.save() return ptt + def assert_login_button_found(self): + self.find((By.CLASS_NAME, "social-login"), clickable=True) + def assert_friend_image_found(self, friend): """Asserts that the provided friend's image is found on the page""" - self.assert_n_elements_found((By.CLASS_NAME, 'ms-friend'), 1) - self.find(( - By.XPATH, - "//div[contains(@class,'ms-friend') and contains(@style,'%s')]" % friend.img_url - )) + self.assert_n_elements_found((By.CLASS_NAME, "ms-friend"), 1) + self.find( + ( + By.XPATH, + "//div[contains(@class,'ms-friend') and contains(@style,'%s')]" + % friend.img_url, + ) + ) def assert_friend_in_modal(self, friend): """Asserts that the provided friend's image is found on the modal""" - friend_div = self.assert_n_elements_found((By.CLASS_NAME, 'friend'), 1) - self.find(( - By.XPATH, - "//div[contains(@class,'ms-friend') and contains(@style,'%s')]" % friend.img_url - ), root=friend_div) + friend_div = self.assert_n_elements_found((By.CLASS_NAME, "friend"), 1) + self.find( + ( + By.XPATH, + "//div[contains(@class,'ms-friend') and contains(@style,'%s')]" + % friend.img_url, + ), + root=friend_div, + ) def switch_to_ptt(self, name): """Switches to the personal timetable with matching name""" - self.find((By.CLASS_NAME, 'timetable-drop-it-down')).click() - self.find(( - By.XPATH, - "//div[@class='tt-name' and contains(text(),'%s')]" % name - ), clickable=True).click() - self.find(( - By.XPATH, - "//input[contains(@class, 'timetable-name') and @value='%s']" % name - )) + self.find((By.CLASS_NAME, "timetable-drop-it-down")).click() + self.find( + (By.XPATH, "//div[@class='tt-name' and contains(text(),'%s')]" % name), + clickable=True, + ).click() + self.find( + ( + By.XPATH, + "//input[contains(@class, 'timetable-name') and @value='%s']" % name, + ) + ) + self.find((By.CLASS_NAME, "timetable-drop-it-down")).click() + + def toggle_custom_event_mode(self): + self.find((By.CLASS_NAME, "fa-pencil")).click() + + def create_custom_event( + self, day: int, start_time: int, end_time: int, show_weekend: bool = True + ): + """Creates a custom event using drag and drop assuming custom event mode is off -class url_matches_regex(object): + Args: + day: 0-6, 0 is Monday + start_time: 0 is 0:00A.M, every 1 is 30 mins + end_time: 0 is 0:00A.M, every 1 is 30 mins + show_weekend: if weekends are shown + """ + calendar_cells = self.find((By.CLASS_NAME, "cal-cell"), get_all=True) + cells_per_row = 7 if show_weekend else 5 + start_cell = calendar_cells[day + (cells_per_row * start_time)] + end_cell = calendar_cells[day + (cells_per_row * end_time)] + + self.toggle_custom_event_mode() + # Magical code that simulates drag and drop because the driver doesn't work. + self.driver.execute_script( + "function createEvent(typeOfEvent) {\n" + + 'var event = document.createEvent("CustomEvent");\n' + + "event.initCustomEvent(typeOfEvent,true, true, null);\n" + + "event.dataTransfer = {\n" + + "data: {},\n" + + "setData: function (key, value) {\n" + + "this.data[key] = value;\n" + + "},\n" + + "getData: function (key) {\n" + + "return this.data[key];\n" + + "}\n" + + "};\n" + + "return event;\n" + + "}\n" + + "\n" + + "function dispatchEvent(element, event,transferData) {\n" + + "if (transferData !== undefined) {\n" + + "event.dataTransfer = transferData;\n" + + "}\n" + + "if (element.dispatchEvent) {\n" + + "element.dispatchEvent(event);\n" + + "} else if (element.fireEvent) {\n" + + 'element.fireEvent("on" + event.type, event);\n' + + "}\n" + + "}\n" + + "\n" + + "function simulateHTML5DragAndDrop(element, destination) {\n" + + "var dragStartEvent =createEvent('dragstart');\n" + + "dispatchEvent(element, dragStartEvent);\n" + + "var dropEvent = createEvent('drop');\n" + + "dispatchEvent(destination, dropEvent,dragStartEvent.dataTransfer);\n" + + "var dragEndEvent = createEvent('dragend');\n" + + "dispatchEvent(element, dragEndEvent,dropEvent.dataTransfer);\n" + + "}\n" + + "\n" + + "var source = arguments[0];\n" + + "var destination = arguments[1];\n" + + "simulateHTML5DragAndDrop(source,destination);", + start_cell, + end_cell, + ) + self.toggle_custom_event_mode() + self.assert_invisibility( + ( + By.XPATH, + "//div[contains(@class, 'slot') and contains(@class, 'preview')]", + ), + ) + self.assert_loader_completes() + + def edit_custom_event( + self, + old_name: str, + /, + *, + name: str = None, + day: str = None, + location: str = None, + color: str = None, + start_time: str = None, + end_time: str = None, + credits: float = None, + ): + """Edits the first custom event found with the provided name. + + Args: + old_name: The name of the event to edit. + name: The new name to give the event. + day: The new day of the week, one of "M", "T", "W", "R", "F", "S", "U". + location: The new location. + color: The new color as a hex code (#FF0000). + start_time: The new start time in military time (8:00). + end_time: The new end time in military time (13:00). + credits: The new number of credits. + """ + slots: list[WebElement] = self.find((By.CLASS_NAME, "slot"), get_all=True) + for slot in slots: + if not slot.text.startswith(old_name): + continue + slot.click() + if name is not None: + event_name = self.find((By.ID, "event-name")) + event_name.clear() + event_name.send_keys(name) + if day is not None: + self.find((By.XPATH, f"//button[@name='{day}']")).click() + if location is not None: + event_location = self.find((By.ID, "event-location")) + event_location.clear() + event_location.send_keys(location) + if color is not None: + event_color = self.find((By.ID, "event-color")) + event_color.clear() + event_color.send_keys(color) + if start_time is not None: + event_start_time = self.find((By.ID, "event-start-time")) + event_start_time.clear() + event_start_time.send_keys(start_time) + if end_time is not None: + event_end_time = self.find((By.ID, "event-end-time")) + event_end_time.clear() + event_end_time.send_keys(end_time) + if credits is not None: + event_credits = self.find((By.ID, "event-credits")) + event_credits.clear() + event_credits.send_keys(str(credits)) + self.find((By.CLASS_NAME, "save-button")).click() + return + raise RuntimeError( + f"Could not find event with name: {name}, day: {day}, location: {location}," + f" color: {color}, start_time: {start_time}, end_time: {end_time}," + f" credits: {credits}" + ) + + def assert_custom_event_exists( + self, + *, + name: str, + day: str = None, + location: str = None, + color: str = None, + start_time: str = None, + end_time: str = None, + credits: float = None, + ): + """Asserts that a custom event with the provided fields exists in the current + timetable. + + Args: + name: Name of the event, can be substring of the actual name + day: Day of the week, one of "M", "T", "W", "R", "F", "S", "U" + location: Location of the event, can be substring of the actual name + color: Color of the event in hex (#F8F6F7), case insensitive + start_time: Start time of the event as a non zero-padded string (8:00) + end_time: End time of the event as a non zero-padded string (14:30) + credits: Number of credits of the event + + Raises: + RuntimeError: If the event could not be found. + """ + x, y = self.find((By.CLASS_NAME, "semesterly-name")).location.values() + slots: list[WebElement] = self.find((By.CLASS_NAME, "slot"), get_all=True) + for slot in slots: + if not slot.text.startswith(name): + continue + slot.click() + ( + event_name, + event_day, + event_location, + event_color, + event_start_time, + event_end_time, + event_credits, + ) = self.get_custom_event_fields() + + # close modal + ActionChains(self.driver).move_by_offset(x, y).click().perform() + if ( + event_name.startswith(name) + and (not day or event_day.startswith(day)) + and (not location or event_location.startswith(location)) + and (not color or event_color.lower() == color.lower()) + and (not start_time or event_start_time == start_time) + and (not end_time or event_end_time == end_time) + and (not credits or float(event_credits) == credits) + ): + return + + raise RuntimeError( + f"Could not find event with name: {name}, day: {day}, location: {location}," + f" color: {color}, start_time: {start_time}, end_time: {end_time}," + f" credits: {credits}" + ) + + def get_custom_event_fields(self): + """Returns the fields of the currently selected custom event. + + Pre-condition: + Custom event modal is open. + """ + event_name = self.find((By.ID, "event-name")).get_property("value") + event_day = self.find((By.XPATH, "//button[@class='active']")).get_property( + "name" + ) + event_location = self.find((By.ID, "event-location")).get_property("value") + event_color = self.find((By.ID, "event-color")).get_property("value") + event_start_time = self.find((By.ID, "event-start-time")).get_property("value") + event_end_time = self.find((By.ID, "event-end-time")).get_property("value") + event_credits = self.find((By.ID, "event-credits")).get_property("value") + + return ( + event_name, + event_day, + event_location, + event_color, + event_start_time, + event_end_time, + event_credits, + ) + + def compare_timetable(self, timetable_name: str): + """Activates the compare timetable mode with a timetable of the given name. + + Args: + timetable_name: Name of the timetable to compare to, must already exist. + + Pre-condition: + The timetable dropdown is not clicked. + """ + self.find((By.CLASS_NAME, "timetable-drop-it-down")).click() + row = self.find( + ( + By.XPATH, + "//div[@class='tt-name' and contains(text(),'%s')]" % timetable_name, + ) + ) + self.find( + (By.CLASS_NAME, "fa-arrows-left-right"), root=row, clickable=True + ).click() + + def exit_compare_timetable(self): + """Exits the compare timetable mode (pre: already in compare timetable mode)""" + self.find((By.CLASS_NAME, "compare-timetable-exit")).click() + + +class url_matches_regex: """Expected Condition which waits until the browser's url matches the provided regex""" + def __init__(self, pattern): self.pattern = re.compile(pattern) @@ -782,11 +1201,13 @@ def __call__(self, driver): else: return False -class text_to_be_present_in_element_attribute(object): + +class text_to_be_present_in_element_attribute: """ An expectation for checking if the given text is present in the element's locator, text """ + def __init__(self, locator, text_, attribute_): self.locator = locator self.text = text_ @@ -794,7 +1215,9 @@ def __init__(self, locator, text_, attribute_): def __call__(self, driver): try: - element_text = driver.find_element(*self.locator).get_attribute(self.attribute) + element_text = driver.find_element(*self.locator).get_attribute( + self.attribute + ) if element_text: return self.text in element_text else: @@ -802,11 +1225,13 @@ def __call__(self, driver): except StaleElementReferenceException: return False -class text_to_be_present_in_nth_element(object): + +class text_to_be_present_in_nth_element: """ An expectation for checking if the given text is present in the nth element's locator, text """ + def __init__(self, locator, text_, index_): self.locator = locator self.text = text_ @@ -823,11 +1248,12 @@ def __call__(self, driver): return False -class n_elements_to_be_found(object): +class n_elements_to_be_found: """ An expectation for checking if the n elements are found locator, text """ + def __init__(self, locator, n_): self.locator = locator self.n_found = n_ @@ -842,10 +1268,12 @@ def __call__(self, driver): except StaleElementReferenceException: return False -class function_returns_true(object): + +class function_returns_true: """ An expectation for checking if the provided function returns true """ + def __init__(self, func): self.function = func @@ -855,11 +1283,13 @@ def __call__(self, driver): except: return False + def force_login(user, driver, base_url): """Forces the login of the provided user setting all cookies. Function will refresh the provided drivfer and the user will be logged in to that session. """ from django.conf import settings + session_store = import_module(settings.SESSION_ENGINE).SessionStore driver.get(base_url) @@ -869,14 +1299,16 @@ def force_login(user, driver, base_url): session[HASH_SESSION_KEY] = user.get_session_auth_hash() session.save() - domain = base_url.split(':')[-2].split('/')[-1] + domain = base_url.split(":")[-2].split("/")[-1] cookie = { - 'name': settings.SESSION_COOKIE_NAME, - 'value': session.session_key, - 'path': '/', - 'secure': False, - 'domain': domain + "name": settings.SESSION_COOKIE_NAME, + "value": session.session_key, + "path": "/", + "secure": False, + "domain": domain, } driver.add_cookie(cookie) + # hack to get past authentication errors + driver.add_cookie({"name": "csrftoken", "value": session.session_key}) driver.refresh() diff --git a/semesterly/tests.py b/semesterly/tests.py index 7e1d5bd530..236712ed75 100644 --- a/semesterly/tests.py +++ b/semesterly/tests.py @@ -13,154 +13,222 @@ from semesterly.test_utils import SeleniumTestCase from timetable.models import Semester, Course -from settings import get_secret class EndToEndTest(SeleniumTestCase): + fixtures = ["jhu_fall_sample.json", "jhu_spring_sample.json"] - fixtures = [ - 'jhu_fall_sample.json', - 'jhu_spring_sample.json' - ] + # def test_logged_out_flow(self): + # self.clear_tutorial() + # with self.description("Search for course and then delete search query"): + # self.search_course("calc", 3) + # self.search_course("notacoursename", 0) + # self.clear_search_query() + # with self.description("Search, add, then remove course"): + # self.search_course("calc", 3) + # self.add_course(0, n_slots=4, n_master_slots=1) + # self.remove_course(0, n_slots_expected=0) + # with self.description("Search for course and test infinite scroll"): + # self.search_course("introduction", 6) + # self.search_infinite_scroll(10) # Total of 10 courses should be displayed + # self.clear_search_query() + # with self.description("Add two short courses and then remove"): + # self.search_course("EN.580.241", 1) + # self.add_course(0, n_slots=3, n_master_slots=1, code="EN.580.241") + # self.search_course("EN.580.243", 1) + # self.add_course(0, n_slots=6, n_master_slots=2, code="EN.580.243") + # self.remove_course(0, n_slots_expected=3) + # self.remove_course(0, n_slots_expected=0) + # with self.description("Open course modal from search and share"): + # self.search_course("calc", 3) + # self.open_course_modal_from_search(1) + # self.validate_course_modal() + # self.follow_share_link_from_modal() + # self.close_course_modal() + # with self.description("Open course modal & follow share link from slot"): + # self.search_course("calc", 3) + # self.add_course(1, n_slots=4, n_master_slots=1) + # self.follow_share_link_from_slot() + # self.open_course_modal_from_slot(0) + # self.validate_course_modal() + # self.close_course_modal() + # with self.description("Lock course and ensure pagination becomes invisible"): + # self.lock_course() + # with self.description("Remove course from course modal"): + # self.open_course_modal_from_slot(0) + # self.remove_course_from_course_modal(0) + # with self.description("Add course from modal and share timetable"): + # self.search_course("calc", 3) + # self.open_course_modal_from_search(1) + # self.share_timetable( + # [self.add_course_from_course_modal(n_slots=4, n_master_slots=1)] + # ) + # with self.description("Add conflicting course and accept allow conflict alert"): + # self.remove_course(0, n_slots_expected=0) + # self.click_off() # Click out of share link component + # self.search_course("AS.110.106", 1) + # self.add_course(0, n_slots=4, n_master_slots=1, by_section="(09)") + # self.search_course("AS.110.105", 1) + # self.execute_action_expect_alert( + # lambda: self.add_course( + # 0, n_slots=4, n_master_slots=1, code="AS.110.105" + # ), + # alert_text_contains="Allow Conflicts", + # ) + # self.allow_conflicts_add(n_slots=8) + # with self.description("Switch semesters, clear alert and check search/adding"): + # self.change_term("Spring 2023", clear_alert=True) + # self.search_course("calc", 2) + # self.open_course_modal_from_search(1) + # self.share_timetable( + # [self.add_course_from_course_modal(n_slots=4, n_master_slots=1)] + # ) + # with self.description("Advanced search basic query executes"): + # self.change_to_current_term(clear_alert=True) + # sem = Semester.objects.get(year=2022, name="Fall") + # self.open_and_query_adv_search("ca", n_results=7) + # self.select_nth_adv_search_result(1, sem) + # self.select_nth_adv_search_result(2, sem) - def test_logged_out_flow(self): - self.driver.set_window_size(1440, 1080) - self.clear_tutorial() - with self.description("search, add, then remove course"): - self.search_course('calc', 3) - self.add_course(0, n_slots=4, n_master_slots=1) - self.remove_course(0, n_slots_expected=0) - with self.description("open course modal from search and share"): - self.search_course('calc', 3) - self.open_course_modal_from_search(1) - self.validate_course_modal() - self.follow_share_link_from_modal() - self.close_course_modal() - with self.description("open course modal & follow share link from slot"): - self.search_course('calc', 3) - self.add_course(1, n_slots=4, n_master_slots=1) - self.follow_share_link_from_slot() - self.open_course_modal_from_slot(0) - self.validate_course_modal() - self.close_course_modal() - with self.description("Lock course and ensure pagination becomes invisible"): - self.lock_course() - with self.description("Remove course from course modal"): - self.open_course_modal_from_slot(0) - self.remove_course_from_course_modal(0) - with self.description("Add course from modal and share timetable"): - self.search_course('calc', 3) - self.open_course_modal_from_search(1) - self.share_timetable([ - self.add_course_from_course_modal( - n_slots=4, n_master_slots=1 - ) - ]) - with self.description("add conflicting course and accept allow conflict alert"): - self.remove_course(0, n_slots_expected=0) - self.click_off() # click out of share link component - self.search_course('AS.110.106', 1) - self.add_course(0, n_slots=4, n_master_slots=1, by_section="(09)") - self.search_course('AS.110.105', 1) - self.execute_action_expect_alert( - lambda: self.add_course(0, n_slots=4, n_master_slots=1, code="AS.110.105"), - alert_text_contains="Allow Conflicts" - ) - self.allow_conflicts_add(n_slots=8) - with self.description("switch semesters, clear alert and check search/adding"): - self.change_term("Spring 2017", clear_alert=True) - self.search_course('calc', 2) - self.open_course_modal_from_search(1) - self.share_timetable([ - self.add_course_from_course_modal( - n_slots=4, n_master_slots=1 - ) - ]) - with self.description("advanced search basic query executes"): - self.change_to_current_term(clear_alert=True) - sem = Semester.objects.get(year=2017, name='Fall') - self.open_and_query_adv_search('ca', n_results=3) - self.select_nth_adv_search_result(0, sem) - self.select_nth_adv_search_result(1, sem) + # def test_logged_in_via_fb_flow(self): + # with self.description("Setup and clear tutorial"): + # self.clear_tutorial() + # with self.description("Succesfully signup with facebook"): + # self.login_via_fb(email="e@ma.il", password="password") + # self.complete_user_settings_basics( + # major="Computer Science", class_year=2023 + # ) + # self.common_logged_in_tests() + # with self.description( + # ( + # "Add friend with course," + # "check for friend circles," + # "and presence in modal" + # ) + # ): + # friend = self.create_friend("Tester", "McTestFace", social_courses=True) + # self.create_personal_timetable_obj( + # friend, [Course.objects.get(code="AS.110.105")], self.current_sem + # ) + # self.assert_ptt_const_across_refresh() + # self.assert_friend_image_found(friend) + # self.open_course_modal_from_slot(1) + # self.assert_friend_in_modal(friend) + # self.close_course_modal() + # ptt = self.ptt_to_tuple() + # with self.description("Log out"): + # self.logout() + # self.assert_login_button_found() + # with self.description("Log back in"): + # self.login_via_fb(email="e@ma.il", password="password") + # self.assert_ptt_equals(ptt) - @unittest.skip('TODO: fix on mac') - def test_logged_in_via_fb_flow(self): - self.driver.set_window_size(1440, 1080) - self.clear_tutorial() - with self.description("succesfully signup with facebook"): - self.login_via_fb( - email=get_secret("FB_TEST_EMAIL"), - password=get_secret("FB_TEST_PASS") - ) - self.complete_user_settings_basics( - major='Computer Science', - class_year=2017 - ) - with self.description("search, add, change personal timetable name and save"): - self.search_course('AS.110.105', 1) + # def test_logged_in_via_google_flow(self): + # with self.description("Setup and clear tutorial"): + # self.clear_tutorial() + # with self.description("Log in via Google and complete user settings"): + # self.login_via_google( + # email="em@ai.l", + # password="password", + # ) + # self.complete_user_settings_basics( + # major="Computer Science", class_year=2023 + # ) + # self.common_logged_in_tests() + # ptt = self.ptt_to_tuple() + # with self.description("Log out"): + # self.logout() + # self.assert_login_button_found() + # with self.description("Log back in"): + # self.login_via_google(email="em@ai.l", password="password") + # self.assert_ptt_equals(ptt) + + def common_logged_in_tests(self): + with self.description("Search and add courses"): + self.search_course("AS.110.105", 1) self.add_course(0, n_slots=4, n_master_slots=1) + self.search_course("AS.110.106", 1) + self.add_course(0, n_slots=8, n_master_slots=2) + self.search_course("AS.110.415", 1) + self.add_course(0, n_slots=11, n_master_slots=3) + self.search_course("AS.110.795", 1) + self.add_course(0, n_slots=12, n_master_slots=4) + self.assert_ptt_const_across_refresh() + with self.description("Change personal timetable name"): self.change_ptt_name("Testing Timetable") - self.save_ptt() self.assert_ptt_const_across_refresh() - with self.description("add to personal timetable, share, save"): - self.search_course('AS.110.106', 1) + with self.description("Remove courses"): + self.remove_course(3) + self.remove_course(2) + self.remove_course(1) + self.remove_course(0, from_slot=True) + self.assert_ptt_const_across_refresh() + with self.description("Add and remove from course modal"): + self.search_course("AS.110.105", 1) self.open_course_modal_from_search(0) - self.share_timetable([ - self.add_course_from_course_modal( - n_slots=8, n_master_slots=2 - ) - ]) - testing_ptt = self.save_ptt() + course1 = self.add_course_from_course_modal(n_slots=4, n_master_slots=1) + self.search_course("AS.110.106", 1) + self.open_course_modal_from_search(0) + course2 = self.add_course_from_course_modal(n_slots=8, n_master_slots=2) + self.search_course("AS.110.415", 1) + self.open_course_modal_from_search(0) + self.add_course_from_course_modal(n_slots=11, n_master_slots=3) + self.open_course_modal_from_slot(2) + self.remove_course_from_course_modal(n_slots_expected=8) + with self.description("Share timetable"): + self.share_timetable([course1, course2]) self.assert_ptt_const_across_refresh() - with self.description("create new personal timetable, validate on reload"): + testing_ptt = self.ptt_to_tuple() + with self.description("Create new personal timetable, validate on reload"): self.create_ptt("End To End Testing!") - self.search_course('AS.110.105', 1) + self.search_course("AS.110.105", 1) self.add_course(0, n_slots=4, n_master_slots=1) - e2e_ptt = self.save_ptt() + self.search_course("AS.110.415", 1) + self.add_course(0, n_slots=7, n_master_slots=2) + e2e_ptt = self.ptt_to_tuple() self.assert_ptt_const_across_refresh() with self.description("Switch to original ptt and validate"): self.switch_to_ptt("Testing Timetable") self.assert_ptt_equals(testing_ptt) - with self.description("switch semester, create personal timetable, switch back"): - self.change_term("Spring 2017") - self.create_ptt("Hope ders no bugs!") + with self.description("Compare timetables"): + self.compare_timetable("End To End Testing!") + self.assert_slot_presence(11, 3) + self.exit_compare_timetable() + with self.description( + "switch semester, create personal timetable, switch back" + ): + self.change_term("Spring 2023") + self.create_ptt("Hope ders no bugs!", finish_saving=False) self.click_off() - self.search_course('AS.110.106', 1) + self.search_course("AS.110.106", 1) self.add_course(0, n_slots=4, n_master_slots=1) - self.save_ptt() self.change_to_current_term() self.assert_ptt_equals(e2e_ptt) - with self.description(("add friend with course," - "check for friend circles" - "and presence in modal")): - friend = self.create_friend( - "Tester", - "McTestFace", - social_courses=True - ) - self.create_personal_timetable_obj( - friend, - [Course.objects.get(code='AS.110.105')], - self.current_sem + with self.description("Delete a timetable"): + self.delete_timetable("End To End Testing!") + self.assert_timetable_not_found("End To End Testing!") + with self.description("Add and edit custom events"): + self.create_custom_event(4, 16, 20, False) + self.assert_custom_event_exists( + name="New Custom Event", start_time="8:00", end_time="10:00" ) + self.assert_ptt_const_across_refresh() # Custom events saved as slots too + event = { + "name": "Semly", + "day": "M", + "location": "Malone Hall", + "color": "#6f00ff", + "start_time": "14:00", + "end_time": "17:30", + "credits": 4.5, + } + self.edit_custom_event("New Custom Event", **event) + self.assert_custom_event_exists(**event) self.assert_ptt_const_across_refresh() - self.assert_friend_image_found(friend) - self.open_course_modal_from_slot(0) - self.assert_friend_in_modal(friend) - - @unittest.skip('TODO: fix on mac') - def test_logged_in_via_google_flow(self): - with self.description("setup and clear tutorial"): - self.driver.set_window_size(1440, 1080) - self.clear_tutorial() - with self.description("login via Google, complete user settings"): - self.login_via_google( - first_name="Tester", - last_name="McTesterFace", - email='e2etesterly@gmail.com', - password='tester.ly' - ) - self.complete_user_settings_basics( - major='Computer Science', - class_year=2017 - ) + with self.description("Advanced search basic query executes"): + self.change_to_current_term() + sem = Semester.objects.get(year=2022, name="Fall") + self.open_and_query_adv_search("ca", n_results=7) + self.select_nth_adv_search_result(1, sem) + self.select_nth_adv_search_result(2, sem) + self.close_adv_search() diff --git a/semesterly/urls.py b/semesterly/urls.py index 7330360289..97ca8b13a3 100644 --- a/semesterly/urls.py +++ b/semesterly/urls.py @@ -10,59 +10,85 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -from django.conf.urls import patterns, include, url +from django.conf.urls import include, re_path from django.http import HttpResponse from django.conf import settings from django.contrib import admin from django.views.generic import TemplateView -from rest_framework_swagger.views import get_swagger_view -from rest_framework.schemas import get_schema_view import helpers.mixins import semesterly.views -import timetable.utils +urlpatterns = [ + re_path(r"^$", helpers.mixins.FeatureFlowView.as_view(), name="home"), + re_path(r"about/?", TemplateView.as_view(template_name="about.html")), + re_path(r"press/?", TemplateView.as_view(template_name="press.html")), + re_path(r"notice/?", TemplateView.as_view(template_name="notice.html")), + re_path("", include("authpipe.urls")), + re_path("", include("timetable.urls")), + re_path("", include("courses.urls")), + re_path("", include("searches.urls")), + re_path("", include("student.urls")), + re_path("", include("analytics.urls")), + re_path("", include("agreement.urls")), + re_path("", include("notifications.urls")), + re_path("", include("friends.urls")), + re_path(r"admin/?", admin.site.urls), + # Automatic deployment endpoint + re_path(r"deploy_staging/?", semesterly.views.deploy_staging), + re_path( + r"^manifest(.*.json)$", semesterly.views.manifest_json, name="manifest_json" + ), + # error page testing + re_path(r"^404testing/?", TemplateView.as_view(template_name="404.html")), + re_path(r"^500testing/?", TemplateView.as_view(template_name="500.html")), + re_path( + r"^maintenance_testing/?", + TemplateView.as_view(template_name="maintenance.html"), + ), +] -admin.autodiscover() - -urlpatterns = patterns('', - url(r'^$', helpers.mixins.FeatureFlowView.as_view(), name='home'), - url(r'about/*', TemplateView.as_view(template_name='about.html')), - url(r'press/*', TemplateView.as_view(template_name='press.html')), - url(r'notice', TemplateView.as_view(template_name='notice.html')), - url('', include('authpipe.urls')), - url('', include('timetable.urls')), - url('', include('courses.urls')), - url('', include('integrations.urls')), - url('', include('exams.urls')), - url('', include('searches.urls')), - url('', include('student.urls')), - url('', include('analytics.urls')), - url('', include('agreement.urls')), - - # Automatic deployment endpoint - url(r'deploy_staging/', 'semesterly.views.deploy_staging'), - - url(r'^sw(.*.js)$', semesterly.views.sw_js, name='sw_js'), - url(r'^manifest(.*.json)$', semesterly.views.manifest_json, name='manifest_json'), - - - # error page testing - url(r'^404testing/', TemplateView.as_view(template_name='404.html')), - url(r'^500testing/', TemplateView.as_view(template_name='500.html')), - url(r'^maintenance_testing/', TemplateView.as_view(template_name='maintenance.html')) - ) - -if getattr(settings, 'STAGING', False): - urlpatterns += patterns('', url(r'^robots.txt$', - lambda r: HttpResponse("User-agent: *\nDisallow: /", content_type="text/plain"))) +if getattr(settings, "STAGING", False): + urlpatterns += [ + re_path( + r"^robots.txt$", + lambda r: HttpResponse( + "User-agent: *\nDisallow: /", content_type="text/plain" + ), + ) + ] else: - urlpatterns += patterns('', url(r'^robots.txt$', - lambda r: HttpResponse("User-agent: *\nDisallow:", content_type="text/plain"))) + urlpatterns += [ + re_path( + r"^robots.txt$", + lambda r: HttpResponse( + "User-agent: *\nDisallow:", content_type="text/plain" + ), + ) + ] # api views -if getattr(settings, 'DEBUG', True): +if getattr(settings, "DEBUG", True): + from rest_framework import permissions + from drf_yasg.views import get_schema_view + from drf_yasg import openapi + + schema_view = get_schema_view( + openapi.Info( + title="Semester.ly Debug API", + default_version="v1", + ), + public=True, + permission_classes=[permissions.AllowAny], + ) + urlpatterns += [ + re_path( + r"^swagger/$", + schema_view.with_ui("swagger", cache_timeout=0), + name="schema-swagger-ui", + ), + ] +if settings.SHOW_DEBUG_TOOLBAR: urlpatterns += [ - url(r'^swagger/$', get_swagger_view(title='semesterly')), - url(r'^schema/$', get_schema_view(title='semesterly')), + re_path(r"^__debug__/", include("debug_toolbar.urls")), ] diff --git a/semesterly/views.py b/semesterly/views.py index 2fdfc8a8d1..972f19a8c0 100644 --- a/semesterly/views.py +++ b/semesterly/views.py @@ -12,7 +12,7 @@ from django.shortcuts import render from django.http import HttpResponse, HttpResponseRedirect, Http404 -from django.core.context_processors import csrf +from django.template.context_processors import csrf from django.template.loader import get_template from django.views.decorators.cache import never_cache from django.views.decorators.csrf import csrf_exempt @@ -21,81 +21,88 @@ import datetime, hashlib, hmac, json, pprint, os, subprocess -def default_send_email(subject, message): - send_mail(subject, message, - getattr(settings, 'DEFAULT_FROM_EMAIL'), - getattr(settings, 'STAGING_NOTIFIED_ADMINS')) - -# Compare the HMAC hash signature -def verify_hmac_hash(request): - SECRET_TOKEN = getattr(settings, 'SECRET_TOKEN', False) - signature = request.META.get('HTTP_X_HUB_SIGNATURE') - computed_signature = 'sha1=' + hmac.new(SECRET_TOKEN, request.body, - hashlib.sha1).hexdigest() - return signature == computed_signature - @csrf_exempt def deploy_staging(request): - if not getattr(settings, 'SECRET_TOKEN', False) or not getattr(settings, - 'STAGING', False): + if not getattr(settings, "SECRET_TOKEN", False) or not getattr( + settings, "STAGING", False + ): return HttpResponse("Invalid URL", status=404) + if not verify_hmac_hash(request): + raise Http404 + + event_type = request.META.get("HTTP_X_GITHUB_EVENT") + if event_type == "ping": + return HttpResponse("ok", status=200) + + elif event_type == "push": + body = json.loads(request.body) + ref = body["ref"] + email_info = {"ref": ref, "link": body["compare"]} + try: + commit = body["commits"][0] + set_commit_info(email_info, commit) + except IndexError: + set_merge_info(body, email_info) - if verify_hmac_hash(request): - event_type = request.META.get('HTTP_X_GITHUB_EVENT') - - if event_type == "ping": - return HttpResponse("ok", status=200) - - elif event_type == "push": - body = json.loads(request.body) - ref = body['ref'] - email_info = { - 'ref': ref, - 'link': body['compare'] - } - try: - commit = body['commits'][0] - email_info.update({ - 'type': 'Commit', - 'sender_username': commit['committer']['username'], - 'commit_hash': commit['id'], - 'commit_link': commit['url'], - 'time': commit['timestamp'] - }) - except IndexError: - email_info.update({ - 'type': 'Merge [?]', - 'sender_username': body['sender']['login'], - 'time': str(datetime.datetime.now()), - }) - - branch_name = ref.split("/")[-1] - if branch_name != "staging": - default_send_email("Semester.ly Branch: " + branch_name + " Updated", - pprint.pformat(email_info, indent=4)) - return HttpResponse("200") - - default_send_email("Semester.ly Staging Server Being Updated", - pprint.pformat(email_info, indent=4)) - return_code = subprocess.call(getattr(settings, 'DEPLOY_COMMAND', ""), - shell=True) - - return HttpResponse(status=200) - else: - return HttpResponse(status=403) + branch_name = ref.split("/")[-1] + if branch_name != "staging": + default_send_email( + "Semester.ly Branch: " + branch_name + " Updated", + pprint.pformat(email_info, indent=4), + ) + return HttpResponse("200") + default_send_email( + "Semester.ly Staging Server Being Updated", + pprint.pformat(email_info, indent=4), + ) + return HttpResponse(status=200) else: - raise Http404 + return HttpResponse(status=403) -@never_cache -def sw_js(request, js): - template = get_template('sw.js') - html = template.render() - return HttpResponse(html, content_type="application/x-javascript") +def set_commit_info(email_info, commit): + email_info.update( + { + "type": "Commit", + "sender_username": commit["committer"]["username"], + "commit_hash": commit["id"], + "commit_link": commit["url"], + "time": commit["timestamp"], + } + ) + + +def set_merge_info(body, email_info): + email_info.update( + { + "type": "Merge [?]", + "sender_username": body["sender"]["login"], + "time": str(datetime.datetime.now()), + } + ) + + +# Compare the HMAC hash signature +def verify_hmac_hash(request): + SECRET_TOKEN = getattr(settings, "SECRET_TOKEN", False) + signature = request.META.get("HTTP_X_HUB_SIGNATURE") + computed_signature = ( + "sha1=" + hmac.new(SECRET_TOKEN, request.body, hashlib.sha1).hexdigest() + ) + return signature == computed_signature + + +def default_send_email(subject, message): + send_mail( + subject, + message, + getattr(settings, "DEFAULT_FROM_EMAIL"), + getattr(settings, "STAGING_NOTIFIED_ADMINS"), + ) def manifest_json(request, js): - template = get_template('manifest.json') + template = get_template("manifest.json") html = template.render() - return HttpResponse(html, content_type="application/json") \ No newline at end of file + return HttpResponse(html, content_type="application/json") diff --git a/semesterly/wsgi.py b/semesterly/wsgi.py index f319051ae1..5cece2cfc1 100644 --- a/semesterly/wsgi.py +++ b/semesterly/wsgi.py @@ -11,16 +11,18 @@ # GNU General Public License for more details. """ -WSGI config for django_project project. +WSGI config for project project. It exposes the WSGI callable as a module-level variable named ``application``. For more information on this file, see -https://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/ +https://docs.djangoproject.com/en/2.2/howto/deployment/wsgi/ """ import os -os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") from django.core.wsgi import get_wsgi_application + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "semesterly.settings") + application = get_wsgi_application() diff --git a/static/admin/css/autocomplete.css b/static/admin/css/autocomplete.css new file mode 100644 index 0000000000..69c94e7347 --- /dev/null +++ b/static/admin/css/autocomplete.css @@ -0,0 +1,275 @@ +select.admin-autocomplete { + width: 20em; +} + +.select2-container--admin-autocomplete.select2-container { + min-height: 30px; +} + +.select2-container--admin-autocomplete .select2-selection--single, +.select2-container--admin-autocomplete .select2-selection--multiple { + min-height: 30px; + padding: 0; +} + +.select2-container--admin-autocomplete.select2-container--focus .select2-selection, +.select2-container--admin-autocomplete.select2-container--open .select2-selection { + border-color: var(--body-quiet-color); + min-height: 30px; +} + +.select2-container--admin-autocomplete.select2-container--focus .select2-selection.select2-selection--single, +.select2-container--admin-autocomplete.select2-container--open .select2-selection.select2-selection--single { + padding: 0; +} + +.select2-container--admin-autocomplete.select2-container--focus .select2-selection.select2-selection--multiple, +.select2-container--admin-autocomplete.select2-container--open .select2-selection.select2-selection--multiple { + padding: 0; +} + +.select2-container--admin-autocomplete .select2-selection--single { + background-color: var(--body-bg); + border: 1px solid var(--border-color); + border-radius: 4px; +} + +.select2-container--admin-autocomplete .select2-selection--single .select2-selection__rendered { + color: var(--body-fg); + line-height: 30px; +} + +.select2-container--admin-autocomplete .select2-selection--single .select2-selection__clear { + cursor: pointer; + float: right; + font-weight: bold; +} + +.select2-container--admin-autocomplete .select2-selection--single .select2-selection__placeholder { + color: var(--body-quiet-color); +} + +.select2-container--admin-autocomplete .select2-selection--single .select2-selection__arrow { + height: 26px; + position: absolute; + top: 1px; + right: 1px; + width: 20px; +} + +.select2-container--admin-autocomplete .select2-selection--single .select2-selection__arrow b { + border-color: #888 transparent transparent transparent; + border-style: solid; + border-width: 5px 4px 0 4px; + height: 0; + left: 50%; + margin-left: -4px; + margin-top: -2px; + position: absolute; + top: 50%; + width: 0; +} + +.select2-container--admin-autocomplete[dir="rtl"] .select2-selection--single .select2-selection__clear { + float: left; +} + +.select2-container--admin-autocomplete[dir="rtl"] .select2-selection--single .select2-selection__arrow { + left: 1px; + right: auto; +} + +.select2-container--admin-autocomplete.select2-container--disabled .select2-selection--single { + background-color: var(--darkened-bg); + cursor: default; +} + +.select2-container--admin-autocomplete.select2-container--disabled .select2-selection--single .select2-selection__clear { + display: none; +} + +.select2-container--admin-autocomplete.select2-container--open .select2-selection--single .select2-selection__arrow b { + border-color: transparent transparent #888 transparent; + border-width: 0 4px 5px 4px; +} + +.select2-container--admin-autocomplete .select2-selection--multiple { + background-color: var(--body-bg); + border: 1px solid var(--border-color); + border-radius: 4px; + cursor: text; +} + +.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__rendered { + box-sizing: border-box; + list-style: none; + margin: 0; + padding: 0 10px 5px 5px; + width: 100%; + display: flex; + flex-wrap: wrap; +} + +.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__rendered li { + list-style: none; +} + +.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__placeholder { + color: var(--body-quiet-color); + margin-top: 5px; + float: left; +} + +.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__clear { + cursor: pointer; + float: right; + font-weight: bold; + margin: 5px; + position: absolute; + right: 0; +} + +.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__choice { + background-color: var(--darkened-bg); + border: 1px solid var(--border-color); + border-radius: 4px; + cursor: default; + float: left; + margin-right: 5px; + margin-top: 5px; + padding: 0 5px; +} + +.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__choice__remove { + color: var(--body-quiet-color); + cursor: pointer; + display: inline-block; + font-weight: bold; + margin-right: 2px; +} + +.select2-container--admin-autocomplete .select2-selection--multiple .select2-selection__choice__remove:hover { + color: var(--body-fg); +} + +.select2-container--admin-autocomplete[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--admin-autocomplete[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--admin-autocomplete[dir="rtl"] .select2-selection--multiple .select2-search--inline { + float: right; +} + +.select2-container--admin-autocomplete[dir="rtl"] .select2-selection--multiple .select2-selection__choice { + margin-left: 5px; + margin-right: auto; +} + +.select2-container--admin-autocomplete[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { + margin-left: 2px; + margin-right: auto; +} + +.select2-container--admin-autocomplete.select2-container--focus .select2-selection--multiple { + border: solid var(--body-quiet-color) 1px; + outline: 0; +} + +.select2-container--admin-autocomplete.select2-container--disabled .select2-selection--multiple { + background-color: var(--darkened-bg); + cursor: default; +} + +.select2-container--admin-autocomplete.select2-container--disabled .select2-selection__choice__remove { + display: none; +} + +.select2-container--admin-autocomplete.select2-container--open.select2-container--above .select2-selection--single, .select2-container--admin-autocomplete.select2-container--open.select2-container--above .select2-selection--multiple { + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.select2-container--admin-autocomplete.select2-container--open.select2-container--below .select2-selection--single, .select2-container--admin-autocomplete.select2-container--open.select2-container--below .select2-selection--multiple { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +.select2-container--admin-autocomplete .select2-search--dropdown { + background: var(--darkened-bg); +} + +.select2-container--admin-autocomplete .select2-search--dropdown .select2-search__field { + background: var(--body-bg); + color: var(--body-fg); + border: 1px solid var(--border-color); + border-radius: 4px; +} + +.select2-container--admin-autocomplete .select2-search--inline .select2-search__field { + background: transparent; + color: var(--body-fg); + border: none; + outline: 0; + box-shadow: none; + -webkit-appearance: textfield; +} + +.select2-container--admin-autocomplete .select2-results > .select2-results__options { + max-height: 200px; + overflow-y: auto; + color: var(--body-fg); + background: var(--body-bg); +} + +.select2-container--admin-autocomplete .select2-results__option[role=group] { + padding: 0; +} + +.select2-container--admin-autocomplete .select2-results__option[aria-disabled=true] { + color: var(--body-quiet-color); +} + +.select2-container--admin-autocomplete .select2-results__option[aria-selected=true] { + background-color: var(--selected-bg); + color: var(--body-fg); +} + +.select2-container--admin-autocomplete .select2-results__option .select2-results__option { + padding-left: 1em; +} + +.select2-container--admin-autocomplete .select2-results__option .select2-results__option .select2-results__group { + padding-left: 0; +} + +.select2-container--admin-autocomplete .select2-results__option .select2-results__option .select2-results__option { + margin-left: -1em; + padding-left: 2em; +} + +.select2-container--admin-autocomplete .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -2em; + padding-left: 3em; +} + +.select2-container--admin-autocomplete .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -3em; + padding-left: 4em; +} + +.select2-container--admin-autocomplete .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -4em; + padding-left: 5em; +} + +.select2-container--admin-autocomplete .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -5em; + padding-left: 6em; +} + +.select2-container--admin-autocomplete .select2-results__option--highlighted[aria-selected] { + background-color: var(--primary); + color: var(--primary-fg); +} + +.select2-container--admin-autocomplete .select2-results__group { + cursor: default; + display: block; + padding: 6px; +} diff --git a/static/admin/css/base.css b/static/admin/css/base.css new file mode 100644 index 0000000000..1cb3acdbe7 --- /dev/null +++ b/static/admin/css/base.css @@ -0,0 +1,1052 @@ +/* + DJANGO Admin styles +*/ + +@import url(fonts.css); + +/* VARIABLE DEFINITIONS */ +:root { + --primary: #79aec8; + --secondary: #417690; + --accent: #f5dd5d; + --primary-fg: #fff; + + --body-fg: #333; + --body-bg: #fff; + --body-quiet-color: #666; + --body-loud-color: #000; + + --header-color: #ffc; + --header-branding-color: var(--accent); + --header-bg: var(--secondary); + --header-link-color: var(--primary-fg); + + --breadcrumbs-fg: #c4dce8; + --breadcrumbs-link-fg: var(--body-bg); + --breadcrumbs-bg: var(--primary); + + --link-fg: #447e9b; + --link-hover-color: #036; + --link-selected-fg: #5b80b2; + + --hairline-color: #e8e8e8; + --border-color: #ccc; + + --error-fg: #ba2121; + + --message-success-bg: #dfd; + --message-warning-bg: #ffc; + --message-error-bg: #ffefef; + + --darkened-bg: #f8f8f8; /* A bit darker than --body-bg */ + --selected-bg: #e4e4e4; /* E.g. selected table cells */ + --selected-row: #ffc; + + --button-fg: #fff; + --button-bg: var(--primary); + --button-hover-bg: #609ab6; + --default-button-bg: var(--secondary); + --default-button-hover-bg: #205067; + --close-button-bg: #888; /* Previously #bbb, contrast 1.92 */ + --close-button-hover-bg: #747474; + --delete-button-bg: #ba2121; + --delete-button-hover-bg: #a41515; + + --object-tools-fg: var(--button-fg); + --object-tools-bg: var(--close-button-bg); + --object-tools-hover-bg: var(--close-button-hover-bg); +} + +@media (prefers-color-scheme: dark) { + :root { + --primary: #264b5d; + --primary-fg: #eee; + + --body-fg: #eeeeee; + --body-bg: #121212; + --body-quiet-color: #e0e0e0; + --body-loud-color: #ffffff; + + --breadcrumbs-link-fg: #e0e0e0; + --breadcrumbs-bg: var(--primary); + + --link-fg: #81d4fa; + --link-hover-color: #4ac1f7; + --link-selected-fg: #6f94c6; + + --hairline-color: #272727; + --border-color: #353535; + + --error-fg: #e35f5f; + --message-success-bg: #006b1b; + --message-warning-bg: #583305; + --message-error-bg: #570808; + + --darkened-bg: #212121; + --selected-bg: #1b1b1b; + --selected-row: #00363a; + + --close-button-bg: #333333; + --close-button-hover-bg: #666666; + } +} + +html, body { + height: 100%; +} + +body { + margin: 0; + padding: 0; + font-size: 14px; + font-family: "Roboto","Lucida Grande","DejaVu Sans","Bitstream Vera Sans",Verdana,Arial,sans-serif; + color: var(--body-fg); + background: var(--body-bg); +} + +/* LINKS */ + +a:link, a:visited { + color: var(--link-fg); + text-decoration: none; + transition: color 0.15s, background 0.15s; +} + +a:focus, a:hover { + color: var(--link-hover-color); +} + +a:focus { + text-decoration: underline; +} + +a img { + border: none; +} + +a.section:link, a.section:visited { + color: var(--header-link-color); + text-decoration: none; +} + +a.section:focus, a.section:hover { + text-decoration: underline; +} + +/* GLOBAL DEFAULTS */ + +p, ol, ul, dl { + margin: .2em 0 .8em 0; +} + +p { + padding: 0; + line-height: 140%; +} + +h1,h2,h3,h4,h5 { + font-weight: bold; +} + +h1 { + margin: 0 0 20px; + font-weight: 300; + font-size: 20px; + color: var(--body-quiet-color); +} + +h2 { + font-size: 16px; + margin: 1em 0 .5em 0; +} + +h2.subhead { + font-weight: normal; + margin-top: 0; +} + +h3 { + font-size: 14px; + margin: .8em 0 .3em 0; + color: var(--body-quiet-color); + font-weight: bold; +} + +h4 { + font-size: 12px; + margin: 1em 0 .8em 0; + padding-bottom: 3px; +} + +h5 { + font-size: 10px; + margin: 1.5em 0 .5em 0; + color: var(--body-quiet-color); + text-transform: uppercase; + letter-spacing: 1px; +} + +ul > li { + list-style-type: square; + padding: 1px 0; +} + +li ul { + margin-bottom: 0; +} + +li, dt, dd { + font-size: 13px; + line-height: 20px; +} + +dt { + font-weight: bold; + margin-top: 4px; +} + +dd { + margin-left: 0; +} + +form { + margin: 0; + padding: 0; +} + +fieldset { + margin: 0; + min-width: 0; + padding: 0; + border: none; + border-top: 1px solid var(--hairline-color); +} + +blockquote { + font-size: 11px; + color: #777; + margin-left: 2px; + padding-left: 10px; + border-left: 5px solid #ddd; +} + +code, pre { + font-family: "Bitstream Vera Sans Mono", Monaco, "Courier New", Courier, monospace; + color: var(--body-quiet-color); + font-size: 12px; + overflow-x: auto; +} + +pre.literal-block { + margin: 10px; + background: var(--darkened-bg); + padding: 6px 8px; +} + +code strong { + color: #930; +} + +hr { + clear: both; + color: var(--hairline-color); + background-color: var(--hairline-color); + height: 1px; + border: none; + margin: 0; + padding: 0; + font-size: 1px; + line-height: 1px; +} + +/* TEXT STYLES & MODIFIERS */ + +.small { + font-size: 11px; +} + +.mini { + font-size: 10px; +} + +.help, p.help, form p.help, div.help, form div.help, div.help li { + font-size: 11px; + color: var(--body-quiet-color); +} + +div.help ul { + margin-bottom: 0; +} + +.help-tooltip { + cursor: help; +} + +p img, h1 img, h2 img, h3 img, h4 img, td img { + vertical-align: middle; +} + +.quiet, a.quiet:link, a.quiet:visited { + color: var(--body-quiet-color); + font-weight: normal; +} + +.clear { + clear: both; +} + +.nowrap { + white-space: nowrap; +} + +.hidden { + display: none; +} + +/* TABLES */ + +table { + border-collapse: collapse; + border-color: var(--border-color); +} + +td, th { + font-size: 13px; + line-height: 16px; + border-bottom: 1px solid var(--hairline-color); + vertical-align: top; + padding: 8px; +} + +th { + font-weight: 600; + text-align: left; +} + +thead th, +tfoot td { + color: var(--body-quiet-color); + padding: 5px 10px; + font-size: 11px; + background: var(--body-bg); + border: none; + border-top: 1px solid var(--hairline-color); + border-bottom: 1px solid var(--hairline-color); +} + +tfoot td { + border-bottom: none; + border-top: 1px solid var(--hairline-color); +} + +thead th.required { + color: var(--body-loud-color); +} + +tr.alt { + background: var(--darkened-bg); +} + +tr:nth-child(odd), .row-form-errors { + background: var(--body-bg); +} + +tr:nth-child(even), +tr:nth-child(even) .errorlist, +tr:nth-child(odd) + .row-form-errors, +tr:nth-child(odd) + .row-form-errors .errorlist { + background: var(--darkened-bg); +} + +/* SORTABLE TABLES */ + +thead th { + padding: 5px 10px; + line-height: normal; + text-transform: uppercase; + background: var(--darkened-bg); +} + +thead th a:link, thead th a:visited { + color: var(--body-quiet-color); +} + +thead th.sorted { + background: var(--selected-bg); +} + +thead th.sorted .text { + padding-right: 42px; +} + +table thead th .text span { + padding: 8px 10px; + display: block; +} + +table thead th .text a { + display: block; + cursor: pointer; + padding: 8px 10px; +} + +table thead th .text a:focus, table thead th .text a:hover { + background: var(--selected-bg); +} + +thead th.sorted a.sortremove { + visibility: hidden; +} + +table thead th.sorted:hover a.sortremove { + visibility: visible; +} + +table thead th.sorted .sortoptions { + display: block; + padding: 9px 5px 0 5px; + float: right; + text-align: right; +} + +table thead th.sorted .sortpriority { + font-size: .8em; + min-width: 12px; + text-align: center; + vertical-align: 3px; + margin-left: 2px; + margin-right: 2px; +} + +table thead th.sorted .sortoptions a { + position: relative; + width: 14px; + height: 14px; + display: inline-block; + background: url(../img/sorting-icons.svg) 0 0 no-repeat; + background-size: 14px auto; +} + +table thead th.sorted .sortoptions a.sortremove { + background-position: 0 0; +} + +table thead th.sorted .sortoptions a.sortremove:after { + content: '\\'; + position: absolute; + top: -6px; + left: 3px; + font-weight: 200; + font-size: 18px; + color: var(--body-quiet-color); +} + +table thead th.sorted .sortoptions a.sortremove:focus:after, +table thead th.sorted .sortoptions a.sortremove:hover:after { + color: var(--link-fg); +} + +table thead th.sorted .sortoptions a.sortremove:focus, +table thead th.sorted .sortoptions a.sortremove:hover { + background-position: 0 -14px; +} + +table thead th.sorted .sortoptions a.ascending { + background-position: 0 -28px; +} + +table thead th.sorted .sortoptions a.ascending:focus, +table thead th.sorted .sortoptions a.ascending:hover { + background-position: 0 -42px; +} + +table thead th.sorted .sortoptions a.descending { + top: 1px; + background-position: 0 -56px; +} + +table thead th.sorted .sortoptions a.descending:focus, +table thead th.sorted .sortoptions a.descending:hover { + background-position: 0 -70px; +} + +/* FORM DEFAULTS */ + +input, textarea, select, .form-row p, form .button { + margin: 2px 0; + padding: 2px 3px; + vertical-align: middle; + font-family: "Roboto", "Lucida Grande", Verdana, Arial, sans-serif; + font-weight: normal; + font-size: 13px; +} +.form-row div.help { + padding: 2px 3px; +} + +textarea { + vertical-align: top; +} + +input[type=text], input[type=password], input[type=email], input[type=url], +input[type=number], input[type=tel], textarea, select, .vTextField { + border: 1px solid var(--border-color); + border-radius: 4px; + padding: 5px 6px; + margin-top: 0; + color: var(--body-fg); + background-color: var(--body-bg); +} + +input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, +input[type=url]:focus, input[type=number]:focus, input[type=tel]:focus, +textarea:focus, select:focus, .vTextField:focus { + border-color: var(--body-quiet-color); +} + +select { + height: 30px; +} + +select[multiple] { + /* Allow HTML size attribute to override the height in the rule above. */ + height: auto; + min-height: 150px; +} + +/* FORM BUTTONS */ + +.button, input[type=submit], input[type=button], .submit-row input, a.button { + background: var(--button-bg); + padding: 10px 15px; + border: none; + border-radius: 4px; + color: var(--button-fg); + cursor: pointer; + transition: background 0.15s; +} + +a.button { + padding: 4px 5px; +} + +.button:active, input[type=submit]:active, input[type=button]:active, +.button:focus, input[type=submit]:focus, input[type=button]:focus, +.button:hover, input[type=submit]:hover, input[type=button]:hover { + background: var(--button-hover-bg); +} + +.button[disabled], input[type=submit][disabled], input[type=button][disabled] { + opacity: 0.4; +} + +.button.default, input[type=submit].default, .submit-row input.default { + float: right; + border: none; + font-weight: 400; + background: var(--default-button-bg); +} + +.button.default:active, input[type=submit].default:active, +.button.default:focus, input[type=submit].default:focus, +.button.default:hover, input[type=submit].default:hover { + background: var(--default-button-hover-bg); +} + +.button[disabled].default, +input[type=submit][disabled].default, +input[type=button][disabled].default { + opacity: 0.4; +} + + +/* MODULES */ + +.module { + border: none; + margin-bottom: 30px; + background: var(--body-bg); +} + +.module p, .module ul, .module h3, .module h4, .module dl, .module pre { + padding-left: 10px; + padding-right: 10px; +} + +.module blockquote { + margin-left: 12px; +} + +.module ul, .module ol { + margin-left: 1.5em; +} + +.module h3 { + margin-top: .6em; +} + +.module h2, .module caption, .inline-group h2 { + margin: 0; + padding: 8px; + font-weight: 400; + font-size: 13px; + text-align: left; + background: var(--primary); + color: var(--header-link-color); +} + +.module caption, +.inline-group h2 { + font-size: 12px; + letter-spacing: 0.5px; + text-transform: uppercase; +} + +.module table { + border-collapse: collapse; +} + +/* MESSAGES & ERRORS */ + +ul.messagelist { + padding: 0; + margin: 0; +} + +ul.messagelist li { + display: block; + font-weight: 400; + font-size: 13px; + padding: 10px 10px 10px 65px; + margin: 0 0 10px 0; + background: var(--message-success-bg) url(../img/icon-yes.svg) 40px 12px no-repeat; + background-size: 16px auto; + color: var(--body-fg); +} + +ul.messagelist li.warning { + background: var(--message-warning-bg) url(../img/icon-alert.svg) 40px 14px no-repeat; + background-size: 14px auto; +} + +ul.messagelist li.error { + background: var(--message-error-bg) url(../img/icon-no.svg) 40px 12px no-repeat; + background-size: 16px auto; +} + +.errornote { + font-size: 14px; + font-weight: 700; + display: block; + padding: 10px 12px; + margin: 0 0 10px 0; + color: var(--error-fg); + border: 1px solid var(--error-fg); + border-radius: 4px; + background-color: var(--body-bg); + background-position: 5px 12px; + overflow-wrap: break-word; +} + +ul.errorlist { + margin: 0 0 4px; + padding: 0; + color: var(--error-fg); + background: var(--body-bg); +} + +ul.errorlist li { + font-size: 13px; + display: block; + margin-bottom: 4px; + overflow-wrap: break-word; +} + +ul.errorlist li:first-child { + margin-top: 0; +} + +ul.errorlist li a { + color: inherit; + text-decoration: underline; +} + +td ul.errorlist { + margin: 0; + padding: 0; +} + +td ul.errorlist li { + margin: 0; +} + +.form-row.errors { + margin: 0; + border: none; + border-bottom: 1px solid var(--hairline-color); + background: none; +} + +.form-row.errors ul.errorlist li { + padding-left: 0; +} + +.errors input, .errors select, .errors textarea, +td ul.errorlist + input, td ul.errorlist + select, td ul.errorlist + textarea { + border: 1px solid var(--error-fg); +} + +.description { + font-size: 12px; + padding: 5px 0 0 12px; +} + +/* BREADCRUMBS */ + +div.breadcrumbs { + background: var(--breadcrumbs-bg); + padding: 10px 40px; + border: none; + color: var(--breadcrumbs-fg); + text-align: left; +} + +div.breadcrumbs a { + color: var(--breadcrumbs-link-fg); +} + +div.breadcrumbs a:focus, div.breadcrumbs a:hover { + color: var(--breadcrumbs-fg); +} + +/* ACTION ICONS */ + +.viewlink, .inlineviewlink { + padding-left: 16px; + background: url(../img/icon-viewlink.svg) 0 1px no-repeat; +} + +.addlink { + padding-left: 16px; + background: url(../img/icon-addlink.svg) 0 1px no-repeat; +} + +.changelink, .inlinechangelink { + padding-left: 16px; + background: url(../img/icon-changelink.svg) 0 1px no-repeat; +} + +.deletelink { + padding-left: 16px; + background: url(../img/icon-deletelink.svg) 0 1px no-repeat; +} + +a.deletelink:link, a.deletelink:visited { + color: #CC3434; /* XXX Probably unused? */ +} + +a.deletelink:focus, a.deletelink:hover { + color: #993333; /* XXX Probably unused? */ + text-decoration: none; +} + +/* OBJECT TOOLS */ + +.object-tools { + font-size: 10px; + font-weight: bold; + padding-left: 0; + float: right; + position: relative; + margin-top: -48px; +} + +.object-tools li { + display: block; + float: left; + margin-left: 5px; + height: 16px; +} + +.object-tools a { + border-radius: 15px; +} + +.object-tools a:link, .object-tools a:visited { + display: block; + float: left; + padding: 3px 12px; + background: var(--object-tools-bg); + color: var(--object-tools-fg); + font-weight: 400; + font-size: 11px; + text-transform: uppercase; + letter-spacing: 0.5px; +} + +.object-tools a:focus, .object-tools a:hover { + background-color: var(--object-tools-hover-bg); +} + +.object-tools a:focus{ + text-decoration: none; +} + +.object-tools a.viewsitelink, .object-tools a.addlink { + background-repeat: no-repeat; + background-position: right 7px center; + padding-right: 26px; +} + +.object-tools a.viewsitelink { + background-image: url(../img/tooltag-arrowright.svg); +} + +.object-tools a.addlink { + background-image: url(../img/tooltag-add.svg); +} + +/* OBJECT HISTORY */ + +table#change-history { + width: 100%; +} + +table#change-history tbody th { + width: 16em; +} + +/* PAGE STRUCTURE */ + +#container { + position: relative; + width: 100%; + min-width: 980px; + padding: 0; + display: flex; + flex-direction: column; + height: 100%; +} + +#container > div { + flex-shrink: 0; +} + +#container > .main { + display: flex; + flex: 1 0 auto; +} + +.main > .content { + flex: 1 0; + max-width: 100%; +} + +#content { + padding: 20px 40px; +} + +.dashboard #content { + width: 600px; +} + +#content-main { + float: left; + width: 100%; +} + +#content-related { + float: right; + width: 260px; + position: relative; + margin-right: -300px; +} + +#footer { + clear: both; + padding: 10px; +} + +/* COLUMN TYPES */ + +.colMS { + margin-right: 300px; +} + +.colSM { + margin-left: 300px; +} + +.colSM #content-related { + float: left; + margin-right: 0; + margin-left: -300px; +} + +.colSM #content-main { + float: right; +} + +.popup .colM { + width: auto; +} + +/* HEADER */ + +#header { + width: auto; + height: auto; + display: flex; + justify-content: space-between; + align-items: center; + padding: 10px 40px; + background: var(--header-bg); + color: var(--header-color); + overflow: hidden; +} + +#header a:link, #header a:visited { + color: var(--header-link-color); +} + +#header a:focus , #header a:hover { + text-decoration: underline; +} + +#branding { + float: left; +} + +#branding h1 { + padding: 0; + margin: 0 20px 0 0; + font-weight: 300; + font-size: 24px; + color: var(--accent); +} + +#branding h1, #branding h1 a:link, #branding h1 a:visited { + color: var(--accent); +} + +#branding h2 { + padding: 0 10px; + font-size: 14px; + margin: -8px 0 8px 0; + font-weight: normal; + color: var(--header-color); +} + +#branding a:hover { + text-decoration: none; +} + +#user-tools { + float: right; + padding: 0; + margin: 0 0 0 20px; + font-weight: 300; + font-size: 11px; + letter-spacing: 0.5px; + text-transform: uppercase; + text-align: right; +} + +#user-tools a { + border-bottom: 1px solid rgba(255, 255, 255, 0.25); +} + +#user-tools a:focus, #user-tools a:hover { + text-decoration: none; + border-bottom-color: var(--primary); + color: var(--primary); +} + +/* SIDEBAR */ + +#content-related { + background: var(--darkened-bg); +} + +#content-related .module { + background: none; +} + +#content-related h3 { + color: var(--body-quiet-color); + padding: 0 16px; + margin: 0 0 16px; +} + +#content-related h4 { + font-size: 13px; +} + +#content-related p { + padding-left: 16px; + padding-right: 16px; +} + +#content-related .actionlist { + padding: 0; + margin: 16px; +} + +#content-related .actionlist li { + line-height: 1.2; + margin-bottom: 10px; + padding-left: 18px; +} + +#content-related .module h2 { + background: none; + padding: 16px; + margin-bottom: 16px; + border-bottom: 1px solid var(--hairline-color); + font-size: 18px; + color: var(--body-fg); +} + +.delete-confirmation form input[type="submit"] { + background: var(--delete-button-bg); + border-radius: 4px; + padding: 10px 15px; + color: var(--button-fg); +} + +.delete-confirmation form input[type="submit"]:active, +.delete-confirmation form input[type="submit"]:focus, +.delete-confirmation form input[type="submit"]:hover { + background: var(--delete-button-hover-bg); +} + +.delete-confirmation form .cancel-link { + display: inline-block; + vertical-align: middle; + height: 15px; + line-height: 15px; + border-radius: 4px; + padding: 10px 15px; + color: var(--button-fg); + background: var(--close-button-bg); + margin: 0 0 0 10px; +} + +.delete-confirmation form .cancel-link:active, +.delete-confirmation form .cancel-link:focus, +.delete-confirmation form .cancel-link:hover { + background: var(--close-button-hover-bg); +} + +/* POPUP */ +.popup #content { + padding: 20px; +} + +.popup #container { + min-width: 0; +} + +.popup #header { + padding: 10px 20px; +} diff --git a/static/admin/css/changelists.css b/static/admin/css/changelists.css new file mode 100644 index 0000000000..b4a1557887 --- /dev/null +++ b/static/admin/css/changelists.css @@ -0,0 +1,351 @@ +/* CHANGELISTS */ + +#changelist { + display: flex; + align-items: flex-start; + justify-content: space-between; +} + +#changelist .changelist-form-container { + flex: 1 1 auto; + min-width: 0; +} + +#changelist table { + width: 100%; +} + +.change-list .hiddenfields { display:none; } + +.change-list .filtered table { + border-right: none; +} + +.change-list .filtered { + min-height: 400px; +} + +.change-list .filtered .results, .change-list .filtered .paginator, +.filtered #toolbar, .filtered div.xfull { + width: auto; +} + +.change-list .filtered table tbody th { + padding-right: 1em; +} + +#changelist-form .results { + overflow-x: auto; + width: 100%; +} + +#changelist .toplinks { + border-bottom: 1px solid var(--hairline-color); +} + +#changelist .paginator { + color: var(--body-quiet-color); + border-bottom: 1px solid var(--hairline-color); + background: var(--body-bg); + overflow: hidden; +} + +/* CHANGELIST TABLES */ + +#changelist table thead th { + padding: 0; + white-space: nowrap; + vertical-align: middle; +} + +#changelist table thead th.action-checkbox-column { + width: 1.5em; + text-align: center; +} + +#changelist table tbody td.action-checkbox { + text-align: center; +} + +#changelist table tfoot { + color: var(--body-quiet-color); +} + +/* TOOLBAR */ + +#toolbar { + padding: 8px 10px; + margin-bottom: 15px; + border-top: 1px solid var(--hairline-color); + border-bottom: 1px solid var(--hairline-color); + background: var(--darkened-bg); + color: var(--body-quiet-color); +} + +#toolbar form input { + border-radius: 4px; + font-size: 14px; + padding: 5px; + color: var(--body-fg); +} + +#toolbar #searchbar { + height: 19px; + border: 1px solid var(--border-color); + padding: 2px 5px; + margin: 0; + vertical-align: top; + font-size: 13px; + max-width: 100%; +} + +#toolbar #searchbar:focus { + border-color: var(--body-quiet-color); +} + +#toolbar form input[type="submit"] { + border: 1px solid var(--border-color); + font-size: 13px; + padding: 4px 8px; + margin: 0; + vertical-align: middle; + background: var(--body-bg); + box-shadow: 0 -15px 20px -10px rgba(0, 0, 0, 0.15) inset; + cursor: pointer; + color: var(--body-fg); +} + +#toolbar form input[type="submit"]:focus, +#toolbar form input[type="submit"]:hover { + border-color: var(--body-quiet-color); +} + +#changelist-search img { + vertical-align: middle; + margin-right: 4px; +} + +/* FILTER COLUMN */ + +#changelist-filter { + flex: 0 0 240px; + order: 1; + background: var(--darkened-bg); + border-left: none; + margin: 0 0 0 30px; +} + +#changelist-filter h2 { + font-size: 14px; + text-transform: uppercase; + letter-spacing: 0.5px; + padding: 5px 15px; + margin-bottom: 12px; + border-bottom: none; +} + +#changelist-filter h3 { + font-weight: 400; + padding: 0 15px; + margin-bottom: 10px; +} + +#changelist-filter ul { + margin: 5px 0; + padding: 0 15px 15px; + border-bottom: 1px solid var(--hairline-color); +} + +#changelist-filter ul:last-child { + border-bottom: none; +} + +#changelist-filter li { + list-style-type: none; + margin-left: 0; + padding-left: 0; +} + +#changelist-filter a { + display: block; + color: var(--body-quiet-color); + text-overflow: ellipsis; + overflow-x: hidden; +} + +#changelist-filter li.selected { + border-left: 5px solid var(--hairline-color); + padding-left: 10px; + margin-left: -15px; +} + +#changelist-filter li.selected a { + color: var(--link-selected-fg); +} + +#changelist-filter a:focus, #changelist-filter a:hover, +#changelist-filter li.selected a:focus, +#changelist-filter li.selected a:hover { + color: var(--link-hover-color); +} + +#changelist-filter #changelist-filter-clear a { + font-size: 13px; + padding-bottom: 10px; + border-bottom: 1px solid var(--hairline-color); +} + +/* DATE DRILLDOWN */ + +.change-list ul.toplinks { + display: block; + float: left; + padding: 0; + margin: 0; + width: 100%; +} + +.change-list ul.toplinks li { + padding: 3px 6px; + font-weight: bold; + list-style-type: none; + display: inline-block; +} + +.change-list ul.toplinks .date-back a { + color: var(--body-quiet-color); +} + +.change-list ul.toplinks .date-back a:focus, +.change-list ul.toplinks .date-back a:hover { + color: var(--link-hover-color); +} + +/* PAGINATOR */ + +.paginator { + font-size: 13px; + padding-top: 10px; + padding-bottom: 10px; + line-height: 22px; + margin: 0; + border-top: 1px solid var(--hairline-color); + width: 100%; +} + +.paginator a:link, .paginator a:visited { + padding: 2px 6px; + background: var(--button-bg); + text-decoration: none; + color: var(--button-fg); +} + +.paginator a.showall { + border: none; + background: none; + color: var(--link-fg); +} + +.paginator a.showall:focus, .paginator a.showall:hover { + background: none; + color: var(--link-hover-color); +} + +.paginator .end { + margin-right: 6px; +} + +.paginator .this-page { + padding: 2px 6px; + font-weight: bold; + font-size: 13px; + vertical-align: top; +} + +.paginator a:focus, .paginator a:hover { + color: white; + background: var(--link-hover-color); +} + +/* ACTIONS */ + +.filtered .actions { + border-right: none; +} + +#changelist table input { + margin: 0; + vertical-align: baseline; +} + +#changelist table tbody tr.selected { + background-color: var(--selected-row); +} + +#changelist .actions { + padding: 10px; + background: var(--body-bg); + border-top: none; + border-bottom: none; + line-height: 24px; + color: var(--body-quiet-color); + width: 100%; +} + +#changelist .actions.selected { /* XXX Probably unused? */ + background: var(--body-bg); + border-top: 1px solid var(--body-bg); + border-bottom: 1px solid #edecd6; +} + +#changelist .actions span.all, +#changelist .actions span.action-counter, +#changelist .actions span.clear, +#changelist .actions span.question { + font-size: 13px; + margin: 0 0.5em; +} + +#changelist .actions:last-child { + border-bottom: none; +} + +#changelist .actions select { + vertical-align: top; + height: 24px; + color: var(--body-fg); + border: 1px solid var(--border-color); + border-radius: 4px; + font-size: 14px; + padding: 0 0 0 4px; + margin: 0; + margin-left: 10px; +} + +#changelist .actions select:focus { + border-color: var(--body-quiet-color); +} + +#changelist .actions label { + display: inline-block; + vertical-align: middle; + font-size: 13px; +} + +#changelist .actions .button { + font-size: 13px; + border: 1px solid var(--border-color); + border-radius: 4px; + background: var(--body-bg); + box-shadow: 0 -15px 20px -10px rgba(0, 0, 0, 0.15) inset; + cursor: pointer; + height: 24px; + line-height: 1; + padding: 4px 8px; + margin: 0; + color: var(--body-fg); +} + +#changelist .actions .button:focus, #changelist .actions .button:hover { + border-color: var(--body-quiet-color); +} diff --git a/static/admin/css/dashboard.css b/static/admin/css/dashboard.css new file mode 100644 index 0000000000..91d6efde80 --- /dev/null +++ b/static/admin/css/dashboard.css @@ -0,0 +1,26 @@ +/* DASHBOARD */ + +.dashboard .module table th { + width: 100%; +} + +.dashboard .module table td { + white-space: nowrap; +} + +.dashboard .module table td a { + display: block; + padding-right: .6em; +} + +/* RECENT ACTIONS MODULE */ + +.module ul.actionlist { + margin-left: 0; +} + +ul.actionlist li { + list-style-type: none; + overflow: hidden; + text-overflow: ellipsis; +} diff --git a/static/admin/css/fonts.css b/static/admin/css/fonts.css new file mode 100644 index 0000000000..c837e017c7 --- /dev/null +++ b/static/admin/css/fonts.css @@ -0,0 +1,20 @@ +@font-face { + font-family: 'Roboto'; + src: url('../fonts/Roboto-Bold-webfont.woff'); + font-weight: 700; + font-style: normal; +} + +@font-face { + font-family: 'Roboto'; + src: url('../fonts/Roboto-Regular-webfont.woff'); + font-weight: 400; + font-style: normal; +} + +@font-face { + font-family: 'Roboto'; + src: url('../fonts/Roboto-Light-webfont.woff'); + font-weight: 300; + font-style: normal; +} diff --git a/static/admin/css/forms.css b/static/admin/css/forms.css new file mode 100644 index 0000000000..89b2270170 --- /dev/null +++ b/static/admin/css/forms.css @@ -0,0 +1,523 @@ +@import url('widgets.css'); + +/* FORM ROWS */ + +.form-row { + overflow: hidden; + padding: 10px; + font-size: 13px; + border-bottom: 1px solid var(--hairline-color); +} + +.form-row img, .form-row input { + vertical-align: middle; +} + +.form-row label input[type="checkbox"] { + margin-top: 0; + vertical-align: 0; +} + +form .form-row p { + padding-left: 0; +} + +/* FORM LABELS */ + +label { + font-weight: normal; + color: var(--body-quiet-color); + font-size: 13px; +} + +.required label, label.required { + font-weight: bold; + color: var(--body-fg); +} + +/* RADIO BUTTONS */ + +form ul.radiolist li { + list-style-type: none; +} + +form ul.radiolist label { + float: none; + display: inline; +} + +form ul.radiolist input[type="radio"] { + margin: -2px 4px 0 0; + padding: 0; +} + +form ul.inline { + margin-left: 0; + padding: 0; +} + +form ul.inline li { + float: left; + padding-right: 7px; +} + +/* ALIGNED FIELDSETS */ + +.aligned label { + display: block; + padding: 4px 10px 0 0; + float: left; + width: 160px; + word-wrap: break-word; + line-height: 1; +} + +.aligned label:not(.vCheckboxLabel):after { + content: ''; + display: inline-block; + vertical-align: middle; + height: 26px; +} + +.aligned label + p, .aligned label + div.help, .aligned label + div.readonly { + padding: 6px 0; + margin-top: 0; + margin-bottom: 0; + margin-left: 170px; +} + +.aligned ul label { + display: inline; + float: none; + width: auto; +} + +.aligned .form-row input { + margin-bottom: 0; +} + +.colMS .aligned .vLargeTextField, .colMS .aligned .vXMLLargeTextField { + width: 350px; +} + +form .aligned ul { + margin-left: 160px; + padding-left: 10px; +} + +form .aligned ul.radiolist { + display: inline-block; + margin: 0; + padding: 0; +} + +form .aligned p.help, +form .aligned div.help { + clear: left; + margin-top: 0; + margin-left: 160px; + padding-left: 10px; +} + +form .aligned label + p.help, +form .aligned label + div.help { + margin-left: 0; + padding-left: 0; +} + +form .aligned p.help:last-child, +form .aligned div.help:last-child { + margin-bottom: 0; + padding-bottom: 0; +} + +form .aligned input + p.help, +form .aligned textarea + p.help, +form .aligned select + p.help, +form .aligned input + div.help, +form .aligned textarea + div.help, +form .aligned select + div.help { + margin-left: 160px; + padding-left: 10px; +} + +form .aligned ul li { + list-style: none; +} + +form .aligned table p { + margin-left: 0; + padding-left: 0; +} + +.aligned .vCheckboxLabel { + float: none; + width: auto; + display: inline-block; + vertical-align: -3px; + padding: 0 0 5px 5px; +} + +.aligned .vCheckboxLabel + p.help, +.aligned .vCheckboxLabel + div.help { + margin-top: -4px; +} + +.colM .aligned .vLargeTextField, .colM .aligned .vXMLLargeTextField { + width: 610px; +} + +.checkbox-row p.help, +.checkbox-row div.help { + margin-left: 0; + padding-left: 0; +} + +fieldset .fieldBox { + float: left; + margin-right: 20px; +} + +/* WIDE FIELDSETS */ + +.wide label { + width: 200px; +} + +form .wide p, +form .wide input + p.help, +form .wide input + div.help { + margin-left: 200px; +} + +form .wide p.help, +form .wide div.help { + padding-left: 38px; +} + +form div.help ul { + padding-left: 0; + margin-left: 0; +} + +.colM fieldset.wide .vLargeTextField, .colM fieldset.wide .vXMLLargeTextField { + width: 450px; +} + +/* COLLAPSED FIELDSETS */ + +fieldset.collapsed * { + display: none; +} + +fieldset.collapsed h2, fieldset.collapsed { + display: block; +} + +fieldset.collapsed { + border: 1px solid var(--hairline-color); + border-radius: 4px; + overflow: hidden; +} + +fieldset.collapsed h2 { + background: var(--darkened-bg); + color: var(--body-quiet-color); +} + +fieldset .collapse-toggle { + color: var(--header-link-color); +} + +fieldset.collapsed .collapse-toggle { + background: transparent; + display: inline; + color: var(--link-fg); +} + +/* MONOSPACE TEXTAREAS */ + +fieldset.monospace textarea { + font-family: "Bitstream Vera Sans Mono", Monaco, "Courier New", Courier, monospace; +} + +/* SUBMIT ROW */ + +.submit-row { + padding: 12px 14px; + margin: 0 0 20px; + background: var(--darkened-bg); + border: 1px solid var(--hairline-color); + border-radius: 4px; + text-align: right; + overflow: hidden; +} + +body.popup .submit-row { + overflow: auto; +} + +.submit-row input { + height: 35px; + line-height: 15px; + margin: 0 0 0 5px; +} + +.submit-row input.default { + margin: 0 0 0 8px; + text-transform: uppercase; +} + +.submit-row p { + margin: 0.3em; +} + +.submit-row p.deletelink-box { + float: left; + margin: 0; +} + +.submit-row a.deletelink { + display: block; + background: var(--delete-button-bg); + border-radius: 4px; + padding: 10px 15px; + height: 15px; + line-height: 15px; + color: var(--button-fg); +} + +.submit-row a.closelink { + display: inline-block; + background: var(--close-button-bg); + border-radius: 4px; + padding: 10px 15px; + height: 15px; + line-height: 15px; + margin: 0 0 0 5px; + color: var(--button-fg); +} + +.submit-row a.deletelink:focus, +.submit-row a.deletelink:hover, +.submit-row a.deletelink:active { + background: var(--delete-button-hover-bg); +} + +.submit-row a.closelink:focus, +.submit-row a.closelink:hover, +.submit-row a.closelink:active { + background: var(--close-button-hover-bg); +} + +/* CUSTOM FORM FIELDS */ + +.vSelectMultipleField { + vertical-align: top; +} + +.vCheckboxField { + border: none; +} + +.vDateField, .vTimeField { + margin-right: 2px; + margin-bottom: 4px; +} + +.vDateField { + min-width: 6.85em; +} + +.vTimeField { + min-width: 4.7em; +} + +.vURLField { + width: 30em; +} + +.vLargeTextField, .vXMLLargeTextField { + width: 48em; +} + +.flatpages-flatpage #id_content { + height: 40.2em; +} + +.module table .vPositiveSmallIntegerField { + width: 2.2em; +} + +.vTextField, .vUUIDField { + width: 20em; +} + +.vIntegerField { + width: 5em; +} + +.vBigIntegerField { + width: 10em; +} + +.vForeignKeyRawIdAdminField { + width: 5em; +} + +/* INLINES */ + +.inline-group { + padding: 0; + margin: 0 0 30px; +} + +.inline-group thead th { + padding: 8px 10px; +} + +.inline-group .aligned label { + width: 160px; +} + +.inline-related { + position: relative; +} + +.inline-related h3 { + margin: 0; + color: var(--body-quiet-color); + padding: 5px; + font-size: 13px; + background: var(--darkened-bg); + border-top: 1px solid var(--hairline-color); + border-bottom: 1px solid var(--hairline-color); +} + +.inline-related h3 span.delete { + float: right; +} + +.inline-related h3 span.delete label { + margin-left: 2px; + font-size: 11px; +} + +.inline-related fieldset { + margin: 0; + background: var(--body-bg); + border: none; + width: 100%; +} + +.inline-related fieldset.module h3 { + margin: 0; + padding: 2px 5px 3px 5px; + font-size: 11px; + text-align: left; + font-weight: bold; + background: #bcd; + color: var(--body-bg); +} + +.inline-group .tabular fieldset.module { + border: none; +} + +.inline-related.tabular fieldset.module table { + width: 100%; + overflow-x: scroll; +} + +.last-related fieldset { + border: none; +} + +.inline-group .tabular tr.has_original td { + padding-top: 2em; +} + +.inline-group .tabular tr td.original { + padding: 2px 0 0 0; + width: 0; + _position: relative; +} + +.inline-group .tabular th.original { + width: 0px; + padding: 0; +} + +.inline-group .tabular td.original p { + position: absolute; + left: 0; + height: 1.1em; + padding: 2px 9px; + overflow: hidden; + font-size: 9px; + font-weight: bold; + color: var(--body-quiet-color); + _width: 700px; +} + +.inline-group ul.tools { + padding: 0; + margin: 0; + list-style: none; +} + +.inline-group ul.tools li { + display: inline; + padding: 0 5px; +} + +.inline-group div.add-row, +.inline-group .tabular tr.add-row td { + color: var(--body-quiet-color); + background: var(--darkened-bg); + padding: 8px 10px; + border-bottom: 1px solid var(--hairline-color); +} + +.inline-group .tabular tr.add-row td { + padding: 8px 10px; + border-bottom: 1px solid var(--hairline-color); +} + +.inline-group ul.tools a.add, +.inline-group div.add-row a, +.inline-group .tabular tr.add-row td a { + background: url(../img/icon-addlink.svg) 0 1px no-repeat; + padding-left: 16px; + font-size: 12px; +} + +.empty-form { + display: none; +} + +/* RELATED FIELD ADD ONE / LOOKUP */ + +.related-lookup { + margin-left: 5px; + display: inline-block; + vertical-align: middle; + background-repeat: no-repeat; + background-size: 14px; +} + +.related-lookup { + width: 16px; + height: 16px; + background-image: url(../img/search.svg); +} + +form .related-widget-wrapper ul { + display: inline-block; + margin-left: 0; + padding-left: 0; +} + +.clearable-file-input input { + margin-top: 0; +} diff --git a/static/admin/css/login.css b/static/admin/css/login.css new file mode 100644 index 0000000000..10d9d2204a --- /dev/null +++ b/static/admin/css/login.css @@ -0,0 +1,60 @@ +/* LOGIN FORM */ + +.login { + background: var(--darkened-bg); + height: auto; +} + +.login #header { + height: auto; + padding: 15px 16px; + justify-content: center; +} + +.login #header h1 { + font-size: 18px; +} + +.login #header h1 a { + color: var(--header-link-color); +} + +.login #content { + padding: 20px 20px 0; +} + +.login #container { + background: var(--body-bg); + border: 1px solid var(--hairline-color); + border-radius: 4px; + overflow: hidden; + width: 28em; + min-width: 300px; + margin: 100px auto; + height: auto; +} + +.login .form-row { + padding: 4px 0; +} + +.login .form-row label { + display: block; + line-height: 2em; +} + +.login .form-row #id_username, .login .form-row #id_password { + padding: 8px; + width: 100%; + box-sizing: border-box; +} + +.login .submit-row { + padding: 1em 0 0 0; + margin: 0; + text-align: center; +} + +.login .password-reset-link { + text-align: center; +} diff --git a/static/admin/css/nav_sidebar.css b/static/admin/css/nav_sidebar.css new file mode 100644 index 0000000000..f3c2fd8042 --- /dev/null +++ b/static/admin/css/nav_sidebar.css @@ -0,0 +1,120 @@ +.sticky { + position: sticky; + top: 0; + max-height: 100vh; +} + +.toggle-nav-sidebar { + z-index: 20; + left: 0; + display: flex; + align-items: center; + justify-content: center; + flex: 0 0 23px; + width: 23px; + border: 0; + border-right: 1px solid var(--hairline-color); + background-color: var(--body-bg); + cursor: pointer; + font-size: 20px; + color: var(--link-fg); + padding: 0; +} + +[dir="rtl"] .toggle-nav-sidebar { + border-left: 1px solid var(--hairline-color); + border-right: 0; +} + +.toggle-nav-sidebar:hover, +.toggle-nav-sidebar:focus { + background-color: var(--darkened-bg); +} + +#nav-sidebar { + z-index: 15; + flex: 0 0 275px; + left: -276px; + margin-left: -276px; + border-top: 1px solid transparent; + border-right: 1px solid var(--hairline-color); + background-color: var(--body-bg); + overflow: auto; +} + +[dir="rtl"] #nav-sidebar { + border-left: 1px solid var(--hairline-color); + border-right: 0; + left: 0; + margin-left: 0; + right: -276px; + margin-right: -276px; +} + +.toggle-nav-sidebar::before { + content: '\00BB'; +} + +.main.shifted .toggle-nav-sidebar::before { + content: '\00AB'; +} + +.main.shifted > #nav-sidebar { + left: 24px; + margin-left: 0; +} + +[dir="rtl"] .main.shifted > #nav-sidebar { + left: 0; + right: 24px; + margin-right: 0; +} + +#nav-sidebar .module th { + width: 100%; + overflow-wrap: anywhere; +} + +#nav-sidebar .module th, +#nav-sidebar .module caption { + padding-left: 16px; +} + +#nav-sidebar .module td { + white-space: nowrap; +} + +[dir="rtl"] #nav-sidebar .module th, +[dir="rtl"] #nav-sidebar .module caption { + padding-left: 8px; + padding-right: 16px; +} + +#nav-sidebar .current-app .section:link, +#nav-sidebar .current-app .section:visited { + color: var(--header-color); + font-weight: bold; +} + +#nav-sidebar .current-model { + background: var(--selected-row); +} + +.main > #nav-sidebar + .content { + max-width: calc(100% - 23px); +} + +.main.shifted > #nav-sidebar + .content { + max-width: calc(100% - 299px); +} + +@media (max-width: 767px) { + #nav-sidebar, #toggle-nav-sidebar { + display: none; + } + + .main > #nav-sidebar + .content, + .main.shifted > #nav-sidebar + .content { + max-width: 100%; + } +} diff --git a/static/admin/css/responsive.css b/static/admin/css/responsive.css new file mode 100644 index 0000000000..8c6dd810ca --- /dev/null +++ b/static/admin/css/responsive.css @@ -0,0 +1,1003 @@ +/* Tablets */ + +input[type="submit"], button { + -webkit-appearance: none; + appearance: none; +} + +@media (max-width: 1024px) { + /* Basic */ + + html { + -webkit-text-size-adjust: 100%; + } + + td, th { + padding: 10px; + font-size: 14px; + } + + .small { + font-size: 12px; + } + + /* Layout */ + + #container { + min-width: 0; + } + + #content { + padding: 20px 30px 30px; + } + + div.breadcrumbs { + padding: 10px 30px; + } + + /* Header */ + + #header { + flex-direction: column; + padding: 15px 30px; + justify-content: flex-start; + } + + #branding h1 { + margin: 0 0 8px; + font-size: 20px; + line-height: 1.2; + } + + #user-tools { + margin: 0; + font-weight: 400; + line-height: 1.85; + text-align: left; + } + + #user-tools a { + display: inline-block; + line-height: 1.4; + } + + /* Dashboard */ + + .dashboard #content { + width: auto; + } + + #content-related { + margin-right: -290px; + } + + .colSM #content-related { + margin-left: -290px; + } + + .colMS { + margin-right: 290px; + } + + .colSM { + margin-left: 290px; + } + + .dashboard .module table td a { + padding-right: 0; + } + + td .changelink, td .addlink { + font-size: 13px; + } + + /* Changelist */ + + #toolbar { + border: none; + padding: 15px; + } + + #changelist-search > div { + display: flex; + flex-wrap: nowrap; + max-width: 480px; + } + + #changelist-search label { + line-height: 22px; + } + + #toolbar form #searchbar { + flex: 1 0 auto; + width: 0; + height: 22px; + margin: 0 10px 0 6px; + } + + #toolbar form input[type=submit] { + flex: 0 1 auto; + } + + #changelist-search .quiet { + width: 0; + flex: 1 0 auto; + margin: 5px 0 0 25px; + } + + #changelist .actions { + display: flex; + flex-wrap: wrap; + padding: 15px 0; + } + + #changelist .actions.selected { + border: none; + } + + #changelist .actions label { + display: flex; + } + + #changelist .actions select { + background: var(--body-bg); + } + + #changelist .actions .button { + min-width: 48px; + margin: 0 10px; + } + + #changelist .actions span.all, + #changelist .actions span.clear, + #changelist .actions span.question, + #changelist .actions span.action-counter { + font-size: 11px; + margin: 0 10px 0 0; + } + + #changelist-filter { + flex-basis: 200px; + } + + .change-list .filtered .results, + .change-list .filtered .paginator, + .filtered #toolbar, + .filtered .actions, + + #changelist .paginator { + border-top-color: var(--hairline-color); /* XXX Is this used at all? */ + } + + #changelist .results + .paginator { + border-top: none; + } + + /* Forms */ + + label { + font-size: 14px; + } + + .form-row input[type=text], + .form-row input[type=password], + .form-row input[type=email], + .form-row input[type=url], + .form-row input[type=tel], + .form-row input[type=number], + .form-row textarea, + .form-row select, + .form-row .vTextField { + box-sizing: border-box; + margin: 0; + padding: 6px 8px; + min-height: 36px; + font-size: 14px; + } + + .form-row select { + height: 36px; + } + + .form-row select[multiple] { + height: auto; + min-height: 0; + } + + fieldset .fieldBox { + float: none; + margin: 0 -10px; + padding: 0 10px; + } + + fieldset .fieldBox + .fieldBox { + margin-top: 10px; + padding-top: 10px; + border-top: 1px solid var(--hairline-color); + } + + textarea { + max-width: 100%; + max-height: 120px; + } + + .aligned label { + padding-top: 6px; + } + + .aligned .related-lookup, + .aligned .datetimeshortcuts, + .aligned .related-lookup + strong { + align-self: center; + margin-left: 15px; + } + + form .aligned ul.radiolist { + margin-left: 2px; + } + + /* Related widget */ + + .related-widget-wrapper { + float: none; + } + + .related-widget-wrapper-link + .selector { + max-width: calc(100% - 30px); + margin-right: 15px; + } + + select + .related-widget-wrapper-link, + .related-widget-wrapper-link + .related-widget-wrapper-link { + margin-left: 10px; + } + + /* Selector */ + + .selector { + display: flex; + width: 100%; + } + + .selector .selector-filter { + display: flex; + align-items: center; + } + + .selector .selector-filter label { + margin: 0 8px 0 0; + } + + .selector .selector-filter input { + width: auto; + min-height: 0; + flex: 1 1; + } + + .selector-available, .selector-chosen { + width: auto; + flex: 1 1; + display: flex; + flex-direction: column; + } + + .selector select { + width: 100%; + flex: 1 0 auto; + margin-bottom: 5px; + } + + .selector ul.selector-chooser { + width: 26px; + height: 52px; + padding: 2px 0; + margin: auto 15px; + border-radius: 20px; + transform: translateY(-10px); + } + + .selector-add, .selector-remove { + width: 20px; + height: 20px; + background-size: 20px auto; + } + + .selector-add { + background-position: 0 -120px; + } + + .selector-remove { + background-position: 0 -80px; + } + + a.selector-chooseall, a.selector-clearall { + align-self: center; + } + + .stacked { + flex-direction: column; + max-width: 480px; + } + + .stacked > * { + flex: 0 1 auto; + } + + .stacked select { + margin-bottom: 0; + } + + .stacked .selector-available, .stacked .selector-chosen { + width: auto; + } + + .stacked ul.selector-chooser { + width: 52px; + height: 26px; + padding: 0 2px; + margin: 15px auto; + transform: none; + } + + .stacked .selector-chooser li { + padding: 3px; + } + + .stacked .selector-add, .stacked .selector-remove { + background-size: 20px auto; + } + + .stacked .selector-add { + background-position: 0 -40px; + } + + .stacked .active.selector-add { + background-position: 0 -40px; + } + + .active.selector-add:focus, .active.selector-add:hover { + background-position: 0 -140px; + } + + .stacked .active.selector-add:focus, .stacked .active.selector-add:hover { + background-position: 0 -60px; + } + + .stacked .selector-remove { + background-position: 0 0; + } + + .stacked .active.selector-remove { + background-position: 0 0; + } + + .active.selector-remove:focus, .active.selector-remove:hover { + background-position: 0 -100px; + } + + .stacked .active.selector-remove:focus, .stacked .active.selector-remove:hover { + background-position: 0 -20px; + } + + .help-tooltip, .selector .help-icon { + display: none; + } + + form .form-row p.datetime { + width: 100%; + } + + .datetime input { + width: 50%; + max-width: 120px; + } + + .datetime span { + font-size: 13px; + } + + .datetime .timezonewarning { + display: block; + font-size: 11px; + color: var(--body-quiet-color); + } + + .datetimeshortcuts { + color: var(--border-color); /* XXX Redundant, .datetime span also sets #ccc */ + } + + .form-row .datetime input.vDateField, .form-row .datetime input.vTimeField { + width: 75%; + } + + .inline-group { + overflow: auto; + } + + /* Messages */ + + ul.messagelist li { + padding-left: 55px; + background-position: 30px 12px; + } + + ul.messagelist li.error { + background-position: 30px 12px; + } + + ul.messagelist li.warning { + background-position: 30px 14px; + } + + /* Login */ + + .login #header { + padding: 15px 20px; + } + + .login #branding h1 { + margin: 0; + } + + /* GIS */ + + div.olMap { + max-width: calc(100vw - 30px); + max-height: 300px; + } + + .olMap + .clear_features { + display: block; + margin-top: 10px; + } + + /* Docs */ + + .module table.xfull { + width: 100%; + } + + pre.literal-block { + overflow: auto; + } +} + +/* Mobile */ + +@media (max-width: 767px) { + /* Layout */ + + #header, #content, #footer { + padding: 15px; + } + + #footer:empty { + padding: 0; + } + + div.breadcrumbs { + padding: 10px 15px; + } + + /* Dashboard */ + + .colMS, .colSM { + margin: 0; + } + + #content-related, .colSM #content-related { + width: 100%; + margin: 0; + } + + #content-related .module { + margin-bottom: 0; + } + + #content-related .module h2 { + padding: 10px 15px; + font-size: 16px; + } + + /* Changelist */ + + #changelist { + align-items: stretch; + flex-direction: column; + } + + #toolbar { + padding: 10px; + } + + #changelist-filter { + margin-left: 0; + } + + #changelist .actions label { + flex: 1 1; + } + + #changelist .actions select { + flex: 1 0; + width: 100%; + } + + #changelist .actions span { + flex: 1 0 100%; + } + + #changelist-filter { + position: static; + width: auto; + margin-top: 30px; + } + + .object-tools { + float: none; + margin: 0 0 15px; + padding: 0; + overflow: hidden; + } + + .object-tools li { + height: auto; + margin-left: 0; + } + + .object-tools li + li { + margin-left: 15px; + } + + /* Forms */ + + .form-row { + padding: 15px 0; + } + + .aligned .form-row, + .aligned .form-row > div { + display: flex; + flex-wrap: wrap; + max-width: 100vw; + } + + .aligned .form-row > div { + width: calc(100vw - 30px); + } + + textarea { + max-width: none; + } + + .vURLField { + width: auto; + } + + fieldset .fieldBox + .fieldBox { + margin-top: 15px; + padding-top: 15px; + } + + fieldset.collapsed .form-row { + display: none; + } + + .aligned label { + width: 100%; + padding: 0 0 10px; + } + + .aligned label:after { + max-height: 0; + } + + .aligned .form-row input, + .aligned .form-row select, + .aligned .form-row textarea { + flex: 1 1 auto; + max-width: 100%; + } + + .aligned .checkbox-row { + align-items: center; + } + + .aligned .checkbox-row input { + flex: 0 1 auto; + margin: 0; + } + + .aligned .vCheckboxLabel { + flex: 1 0; + padding: 1px 0 0 5px; + } + + .aligned label + p, + .aligned label + div.help, + .aligned label + div.readonly { + padding: 0; + margin-left: 0; + } + + .aligned p.file-upload { + margin-left: 0; + font-size: 13px; + } + + span.clearable-file-input { + margin-left: 15px; + } + + span.clearable-file-input label { + font-size: 13px; + padding-bottom: 0; + } + + .aligned .timezonewarning { + flex: 1 0 100%; + margin-top: 5px; + } + + form .aligned .form-row div.help { + width: 100%; + margin: 5px 0 0; + padding: 0; + } + + form .aligned ul { + margin-left: 0; + padding-left: 0; + } + + form .aligned ul.radiolist { + margin-right: 15px; + margin-bottom: -3px; + } + + form .aligned ul.radiolist:not(.inline) li + li { + margin-top: 5px; + } + + /* Related widget */ + + .related-widget-wrapper { + width: 100%; + display: flex; + align-items: flex-start; + } + + .related-widget-wrapper .selector { + order: 1; + } + + .related-widget-wrapper > a { + order: 2; + } + + .related-widget-wrapper .radiolist ~ a { + align-self: flex-end; + } + + .related-widget-wrapper > select ~ a { + align-self: center; + } + + select + .related-widget-wrapper-link, + .related-widget-wrapper-link + .related-widget-wrapper-link { + margin-left: 15px; + } + + /* Selector */ + + .selector { + flex-direction: column; + } + + .selector > * { + float: none; + } + + .selector-available, .selector-chosen { + margin-bottom: 0; + flex: 1 1 auto; + } + + .selector select { + max-height: 96px; + } + + .selector ul.selector-chooser { + display: block; + float: none; + width: 52px; + height: 26px; + padding: 0 2px; + margin: 15px auto 20px; + transform: none; + } + + .selector ul.selector-chooser li { + float: left; + } + + .selector-remove { + background-position: 0 0; + } + + .active.selector-remove:focus, .active.selector-remove:hover { + background-position: 0 -20px; + } + + .selector-add { + background-position: 0 -40px; + } + + .active.selector-add:focus, .active.selector-add:hover { + background-position: 0 -60px; + } + + /* Inlines */ + + .inline-group[data-inline-type="stacked"] .inline-related { + border: 1px solid var(--hairline-color); + border-radius: 4px; + margin-top: 15px; + overflow: auto; + } + + .inline-group[data-inline-type="stacked"] .inline-related > * { + box-sizing: border-box; + } + + .inline-group[data-inline-type="stacked"] .inline-related .module { + padding: 0 10px; + } + + .inline-group[data-inline-type="stacked"] .inline-related .module .form-row { + border-top: 1px solid var(--hairline-color); + border-bottom: none; + } + + .inline-group[data-inline-type="stacked"] .inline-related .module .form-row:first-child { + border-top: none; + } + + .inline-group[data-inline-type="stacked"] .inline-related h3 { + padding: 10px; + border-top-width: 0; + border-bottom-width: 2px; + display: flex; + flex-wrap: wrap; + align-items: center; + } + + .inline-group[data-inline-type="stacked"] .inline-related h3 .inline_label { + margin-right: auto; + } + + .inline-group[data-inline-type="stacked"] .inline-related h3 span.delete { + float: none; + flex: 1 1 100%; + margin-top: 5px; + } + + .inline-group[data-inline-type="stacked"] .aligned .form-row > div:not([class]) { + width: 100%; + } + + .inline-group[data-inline-type="stacked"] .aligned label { + width: 100%; + } + + .inline-group[data-inline-type="stacked"] div.add-row { + margin-top: 15px; + border: 1px solid var(--hairline-color); + border-radius: 4px; + } + + .inline-group div.add-row, + .inline-group .tabular tr.add-row td { + padding: 0; + } + + .inline-group div.add-row a, + .inline-group .tabular tr.add-row td a { + display: block; + padding: 8px 10px 8px 26px; + background-position: 8px 9px; + } + + /* Submit row */ + + .submit-row { + padding: 10px 10px 0; + margin: 0 0 15px; + display: flex; + flex-direction: column; + } + + .submit-row > * { + width: 100%; + } + + .submit-row input, .submit-row input.default, .submit-row a, .submit-row a.closelink { + float: none; + margin: 0 0 10px; + text-align: center; + } + + .submit-row a.closelink { + padding: 10px 0; + } + + .submit-row p.deletelink-box { + order: 4; + } + + /* Messages */ + + ul.messagelist li { + padding-left: 40px; + background-position: 15px 12px; + } + + ul.messagelist li.error { + background-position: 15px 12px; + } + + ul.messagelist li.warning { + background-position: 15px 14px; + } + + /* Paginator */ + + .paginator .this-page, .paginator a:link, .paginator a:visited { + padding: 4px 10px; + } + + /* Login */ + + body.login { + padding: 0 15px; + } + + .login #container { + width: auto; + max-width: 480px; + margin: 50px auto; + } + + .login #header, + .login #content { + padding: 15px; + } + + .login #content-main { + float: none; + } + + .login .form-row { + padding: 0; + } + + .login .form-row + .form-row { + margin-top: 15px; + } + + .login .form-row label { + margin: 0 0 5px; + line-height: 1.2; + } + + .login .submit-row { + padding: 15px 0 0; + } + + .login br { + display: none; + } + + .login .submit-row input { + margin: 0; + text-transform: uppercase; + } + + .errornote { + margin: 0 0 20px; + padding: 8px 12px; + font-size: 13px; + } + + /* Calendar and clock */ + + .calendarbox, .clockbox { + position: fixed !important; + top: 50% !important; + left: 50% !important; + transform: translate(-50%, -50%); + margin: 0; + border: none; + overflow: visible; + } + + .calendarbox:before, .clockbox:before { + content: ''; + position: fixed; + top: 50%; + left: 50%; + width: 100vw; + height: 100vh; + background: rgba(0, 0, 0, 0.75); + transform: translate(-50%, -50%); + } + + .calendarbox > *, .clockbox > * { + position: relative; + z-index: 1; + } + + .calendarbox > div:first-child { + z-index: 2; + } + + .calendarbox .calendar, .clockbox h2 { + border-radius: 4px 4px 0 0; + overflow: hidden; + } + + .calendarbox .calendar-cancel, .clockbox .calendar-cancel { + border-radius: 0 0 4px 4px; + overflow: hidden; + } + + .calendar-shortcuts { + padding: 10px 0; + font-size: 12px; + line-height: 12px; + } + + .calendar-shortcuts a { + margin: 0 4px; + } + + .timelist a { + background: var(--body-bg); + padding: 4px; + } + + .calendar-cancel { + padding: 8px 10px; + } + + .clockbox h2 { + padding: 8px 15px; + } + + .calendar caption { + padding: 10px; + } + + .calendarbox .calendarnav-previous, .calendarbox .calendarnav-next { + z-index: 1; + top: 10px; + } + + /* History */ + + table#change-history tbody th, table#change-history tbody td { + font-size: 13px; + word-break: break-word; + } + + table#change-history tbody th { + width: auto; + } + + /* Docs */ + + table.model tbody th, table.model tbody td { + font-size: 13px; + word-break: break-word; + } +} diff --git a/static/admin/css/responsive_rtl.css b/static/admin/css/responsive_rtl.css new file mode 100644 index 0000000000..66d3c2f9b3 --- /dev/null +++ b/static/admin/css/responsive_rtl.css @@ -0,0 +1,80 @@ +/* TABLETS */ + +@media (max-width: 1024px) { + [dir="rtl"] .colMS { + margin-right: 0; + } + + [dir="rtl"] #user-tools { + text-align: right; + } + + [dir="rtl"] #changelist .actions label { + padding-left: 10px; + padding-right: 0; + } + + [dir="rtl"] #changelist .actions select { + margin-left: 0; + margin-right: 15px; + } + + [dir="rtl"] .change-list .filtered .results, + [dir="rtl"] .change-list .filtered .paginator, + [dir="rtl"] .filtered #toolbar, + [dir="rtl"] .filtered div.xfull, + [dir="rtl"] .filtered .actions, + [dir="rtl"] #changelist-filter { + margin-left: 0; + } + + [dir="rtl"] .inline-group ul.tools a.add, + [dir="rtl"] .inline-group div.add-row a, + [dir="rtl"] .inline-group .tabular tr.add-row td a { + padding: 8px 26px 8px 10px; + background-position: calc(100% - 8px) 9px; + } + + [dir="rtl"] .related-widget-wrapper-link + .selector { + margin-right: 0; + margin-left: 15px; + } + + [dir="rtl"] .selector .selector-filter label { + margin-right: 0; + margin-left: 8px; + } + + [dir="rtl"] .object-tools li { + float: right; + } + + [dir="rtl"] .object-tools li + li { + margin-left: 0; + margin-right: 15px; + } + + [dir="rtl"] .dashboard .module table td a { + padding-left: 0; + padding-right: 16px; + } +} + +/* MOBILE */ + +@media (max-width: 767px) { + [dir="rtl"] .aligned .related-lookup, + [dir="rtl"] .aligned .datetimeshortcuts { + margin-left: 0; + margin-right: 15px; + } + + [dir="rtl"] .aligned ul { + margin-right: 0; + } + + [dir="rtl"] #changelist-filter { + margin-left: 0; + margin-right: 0; + } +} diff --git a/static/admin/css/rtl.css b/static/admin/css/rtl.css new file mode 100644 index 0000000000..0447f89382 --- /dev/null +++ b/static/admin/css/rtl.css @@ -0,0 +1,227 @@ +/* GLOBAL */ + +th { + text-align: right; +} + +.module h2, .module caption { + text-align: right; +} + +.module ul, .module ol { + margin-left: 0; + margin-right: 1.5em; +} + +.viewlink, .addlink, .changelink { + padding-left: 0; + padding-right: 16px; + background-position: 100% 1px; +} + +.deletelink { + padding-left: 0; + padding-right: 16px; + background-position: 100% 1px; +} + +.object-tools { + float: left; +} + +thead th:first-child, +tfoot td:first-child { + border-left: none; +} + +/* LAYOUT */ + +#user-tools { + right: auto; + left: 0; + text-align: left; +} + +div.breadcrumbs { + text-align: right; +} + +#content-main { + float: right; +} + +#content-related { + float: left; + margin-left: -300px; + margin-right: auto; +} + +.colMS { + margin-left: 300px; + margin-right: 0; +} + +/* SORTABLE TABLES */ + +table thead th.sorted .sortoptions { + float: left; +} + +thead th.sorted .text { + padding-right: 0; + padding-left: 42px; +} + +/* dashboard styles */ + +.dashboard .module table td a { + padding-left: .6em; + padding-right: 16px; +} + +/* changelists styles */ + +.change-list .filtered table { + border-left: none; + border-right: 0px none; +} + +#changelist-filter { + border-left: none; + border-right: none; + margin-left: 0; + margin-right: 30px; +} + +#changelist-filter li.selected { + border-left: none; + padding-left: 10px; + margin-left: 0; + border-right: 5px solid var(--hairline-color); + padding-right: 10px; + margin-right: -15px; +} + +#changelist table tbody td:first-child, #changelist table tbody th:first-child { + border-right: none; + border-left: none; +} + +/* FORMS */ + +.aligned label { + padding: 0 0 3px 1em; + float: right; +} + +.submit-row { + text-align: left +} + +.submit-row p.deletelink-box { + float: right; +} + +.submit-row input.default { + margin-left: 0; +} + +.vDateField, .vTimeField { + margin-left: 2px; +} + +.aligned .form-row input { + margin-left: 5px; +} + +form .aligned p.help, form .aligned div.help { + clear: right; +} + +form .aligned ul { + margin-right: 163px; + margin-left: 0; +} + +form ul.inline li { + float: right; + padding-right: 0; + padding-left: 7px; +} + +input[type=submit].default, .submit-row input.default { + float: left; +} + +fieldset .fieldBox { + float: right; + margin-left: 20px; + margin-right: 0; +} + +.errorlist li { + background-position: 100% 12px; + padding: 0; +} + +.errornote { + background-position: 100% 12px; + padding: 10px 12px; +} + +/* WIDGETS */ + +.calendarnav-previous { + top: 0; + left: auto; + right: 10px; +} + +.calendarnav-next { + top: 0; + right: auto; + left: 10px; +} + +.calendar caption, .calendarbox h2 { + text-align: center; +} + +.selector { + float: right; +} + +.selector .selector-filter { + text-align: right; +} + +.inline-deletelink { + float: left; +} + +form .form-row p.datetime { + overflow: hidden; +} + +.related-widget-wrapper { + float: right; +} + +/* MISC */ + +.inline-related h2, .inline-group h2 { + text-align: right +} + +.inline-related h3 span.delete { + padding-right: 20px; + padding-left: inherit; + left: 10px; + right: inherit; + float:left; +} + +.inline-related h3 span.delete label { + margin-left: inherit; + margin-right: 2px; +} diff --git a/static/admin/css/vendor/select2/LICENSE-SELECT2.md b/static/admin/css/vendor/select2/LICENSE-SELECT2.md new file mode 100644 index 0000000000..8cb8a2b12c --- /dev/null +++ b/static/admin/css/vendor/select2/LICENSE-SELECT2.md @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2012-2017 Kevin Brown, Igor Vaynberg, and Select2 contributors + +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/static/admin/css/vendor/select2/select2.css b/static/admin/css/vendor/select2/select2.css new file mode 100644 index 0000000000..750b3207ae --- /dev/null +++ b/static/admin/css/vendor/select2/select2.css @@ -0,0 +1,481 @@ +.select2-container { + box-sizing: border-box; + display: inline-block; + margin: 0; + position: relative; + vertical-align: middle; } + .select2-container .select2-selection--single { + box-sizing: border-box; + cursor: pointer; + display: block; + height: 28px; + user-select: none; + -webkit-user-select: none; } + .select2-container .select2-selection--single .select2-selection__rendered { + display: block; + padding-left: 8px; + padding-right: 20px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } + .select2-container .select2-selection--single .select2-selection__clear { + position: relative; } + .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered { + padding-right: 8px; + padding-left: 20px; } + .select2-container .select2-selection--multiple { + box-sizing: border-box; + cursor: pointer; + display: block; + min-height: 32px; + user-select: none; + -webkit-user-select: none; } + .select2-container .select2-selection--multiple .select2-selection__rendered { + display: inline-block; + overflow: hidden; + padding-left: 8px; + text-overflow: ellipsis; + white-space: nowrap; } + .select2-container .select2-search--inline { + float: left; } + .select2-container .select2-search--inline .select2-search__field { + box-sizing: border-box; + border: none; + font-size: 100%; + margin-top: 5px; + padding: 0; } + .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button { + -webkit-appearance: none; } + +.select2-dropdown { + background-color: white; + border: 1px solid #aaa; + border-radius: 4px; + box-sizing: border-box; + display: block; + position: absolute; + left: -100000px; + width: 100%; + z-index: 1051; } + +.select2-results { + display: block; } + +.select2-results__options { + list-style: none; + margin: 0; + padding: 0; } + +.select2-results__option { + padding: 6px; + user-select: none; + -webkit-user-select: none; } + .select2-results__option[aria-selected] { + cursor: pointer; } + +.select2-container--open .select2-dropdown { + left: 0; } + +.select2-container--open .select2-dropdown--above { + border-bottom: none; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + +.select2-container--open .select2-dropdown--below { + border-top: none; + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.select2-search--dropdown { + display: block; + padding: 4px; } + .select2-search--dropdown .select2-search__field { + padding: 4px; + width: 100%; + box-sizing: border-box; } + .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button { + -webkit-appearance: none; } + .select2-search--dropdown.select2-search--hide { + display: none; } + +.select2-close-mask { + border: 0; + margin: 0; + padding: 0; + display: block; + position: fixed; + left: 0; + top: 0; + min-height: 100%; + min-width: 100%; + height: auto; + width: auto; + opacity: 0; + z-index: 99; + background-color: #fff; + filter: alpha(opacity=0); } + +.select2-hidden-accessible { + border: 0 !important; + clip: rect(0 0 0 0) !important; + -webkit-clip-path: inset(50%) !important; + clip-path: inset(50%) !important; + height: 1px !important; + overflow: hidden !important; + padding: 0 !important; + position: absolute !important; + width: 1px !important; + white-space: nowrap !important; } + +.select2-container--default .select2-selection--single { + background-color: #fff; + border: 1px solid #aaa; + border-radius: 4px; } + .select2-container--default .select2-selection--single .select2-selection__rendered { + color: #444; + line-height: 28px; } + .select2-container--default .select2-selection--single .select2-selection__clear { + cursor: pointer; + float: right; + font-weight: bold; } + .select2-container--default .select2-selection--single .select2-selection__placeholder { + color: #999; } + .select2-container--default .select2-selection--single .select2-selection__arrow { + height: 26px; + position: absolute; + top: 1px; + right: 1px; + width: 20px; } + .select2-container--default .select2-selection--single .select2-selection__arrow b { + border-color: #888 transparent transparent transparent; + border-style: solid; + border-width: 5px 4px 0 4px; + height: 0; + left: 50%; + margin-left: -4px; + margin-top: -2px; + position: absolute; + top: 50%; + width: 0; } + +.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear { + float: left; } + +.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow { + left: 1px; + right: auto; } + +.select2-container--default.select2-container--disabled .select2-selection--single { + background-color: #eee; + cursor: default; } + .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear { + display: none; } + +.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { + border-color: transparent transparent #888 transparent; + border-width: 0 4px 5px 4px; } + +.select2-container--default .select2-selection--multiple { + background-color: white; + border: 1px solid #aaa; + border-radius: 4px; + cursor: text; } + .select2-container--default .select2-selection--multiple .select2-selection__rendered { + box-sizing: border-box; + list-style: none; + margin: 0; + padding: 0 5px; + width: 100%; } + .select2-container--default .select2-selection--multiple .select2-selection__rendered li { + list-style: none; } + .select2-container--default .select2-selection--multiple .select2-selection__clear { + cursor: pointer; + float: right; + font-weight: bold; + margin-top: 5px; + margin-right: 10px; + padding: 1px; } + .select2-container--default .select2-selection--multiple .select2-selection__choice { + background-color: #e4e4e4; + border: 1px solid #aaa; + border-radius: 4px; + cursor: default; + float: left; + margin-right: 5px; + margin-top: 5px; + padding: 0 5px; } + .select2-container--default .select2-selection--multiple .select2-selection__choice__remove { + color: #999; + cursor: pointer; + display: inline-block; + font-weight: bold; + margin-right: 2px; } + .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover { + color: #333; } + +.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline { + float: right; } + +.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice { + margin-left: 5px; + margin-right: auto; } + +.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { + margin-left: 2px; + margin-right: auto; } + +.select2-container--default.select2-container--focus .select2-selection--multiple { + border: solid black 1px; + outline: 0; } + +.select2-container--default.select2-container--disabled .select2-selection--multiple { + background-color: #eee; + cursor: default; } + +.select2-container--default.select2-container--disabled .select2-selection__choice__remove { + display: none; } + +.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple { + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + +.select2-container--default .select2-search--dropdown .select2-search__field { + border: 1px solid #aaa; } + +.select2-container--default .select2-search--inline .select2-search__field { + background: transparent; + border: none; + outline: 0; + box-shadow: none; + -webkit-appearance: textfield; } + +.select2-container--default .select2-results > .select2-results__options { + max-height: 200px; + overflow-y: auto; } + +.select2-container--default .select2-results__option[role=group] { + padding: 0; } + +.select2-container--default .select2-results__option[aria-disabled=true] { + color: #999; } + +.select2-container--default .select2-results__option[aria-selected=true] { + background-color: #ddd; } + +.select2-container--default .select2-results__option .select2-results__option { + padding-left: 1em; } + .select2-container--default .select2-results__option .select2-results__option .select2-results__group { + padding-left: 0; } + .select2-container--default .select2-results__option .select2-results__option .select2-results__option { + margin-left: -1em; + padding-left: 2em; } + .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -2em; + padding-left: 3em; } + .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -3em; + padding-left: 4em; } + .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -4em; + padding-left: 5em; } + .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { + margin-left: -5em; + padding-left: 6em; } + +.select2-container--default .select2-results__option--highlighted[aria-selected] { + background-color: #5897fb; + color: white; } + +.select2-container--default .select2-results__group { + cursor: default; + display: block; + padding: 6px; } + +.select2-container--classic .select2-selection--single { + background-color: #f7f7f7; + border: 1px solid #aaa; + border-radius: 4px; + outline: 0; + background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%); + background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%); + background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); } + .select2-container--classic .select2-selection--single:focus { + border: 1px solid #5897fb; } + .select2-container--classic .select2-selection--single .select2-selection__rendered { + color: #444; + line-height: 28px; } + .select2-container--classic .select2-selection--single .select2-selection__clear { + cursor: pointer; + float: right; + font-weight: bold; + margin-right: 10px; } + .select2-container--classic .select2-selection--single .select2-selection__placeholder { + color: #999; } + .select2-container--classic .select2-selection--single .select2-selection__arrow { + background-color: #ddd; + border: none; + border-left: 1px solid #aaa; + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; + height: 26px; + position: absolute; + top: 1px; + right: 1px; + width: 20px; + background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%); + background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%); + background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); } + .select2-container--classic .select2-selection--single .select2-selection__arrow b { + border-color: #888 transparent transparent transparent; + border-style: solid; + border-width: 5px 4px 0 4px; + height: 0; + left: 50%; + margin-left: -4px; + margin-top: -2px; + position: absolute; + top: 50%; + width: 0; } + +.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear { + float: left; } + +.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow { + border: none; + border-right: 1px solid #aaa; + border-radius: 0; + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; + left: 1px; + right: auto; } + +.select2-container--classic.select2-container--open .select2-selection--single { + border: 1px solid #5897fb; } + .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow { + background: transparent; + border: none; } + .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b { + border-color: transparent transparent #888 transparent; + border-width: 0 4px 5px 4px; } + +.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single { + border-top: none; + border-top-left-radius: 0; + border-top-right-radius: 0; + background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%); + background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%); + background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); } + +.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single { + border-bottom: none; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%); + background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%); + background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); } + +.select2-container--classic .select2-selection--multiple { + background-color: white; + border: 1px solid #aaa; + border-radius: 4px; + cursor: text; + outline: 0; } + .select2-container--classic .select2-selection--multiple:focus { + border: 1px solid #5897fb; } + .select2-container--classic .select2-selection--multiple .select2-selection__rendered { + list-style: none; + margin: 0; + padding: 0 5px; } + .select2-container--classic .select2-selection--multiple .select2-selection__clear { + display: none; } + .select2-container--classic .select2-selection--multiple .select2-selection__choice { + background-color: #e4e4e4; + border: 1px solid #aaa; + border-radius: 4px; + cursor: default; + float: left; + margin-right: 5px; + margin-top: 5px; + padding: 0 5px; } + .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove { + color: #888; + cursor: pointer; + display: inline-block; + font-weight: bold; + margin-right: 2px; } + .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover { + color: #555; } + +.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice { + float: right; + margin-left: 5px; + margin-right: auto; } + +.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { + margin-left: 2px; + margin-right: auto; } + +.select2-container--classic.select2-container--open .select2-selection--multiple { + border: 1px solid #5897fb; } + +.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple { + border-top: none; + border-top-left-radius: 0; + border-top-right-radius: 0; } + +.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple { + border-bottom: none; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + +.select2-container--classic .select2-search--dropdown .select2-search__field { + border: 1px solid #aaa; + outline: 0; } + +.select2-container--classic .select2-search--inline .select2-search__field { + outline: 0; + box-shadow: none; } + +.select2-container--classic .select2-dropdown { + background-color: white; + border: 1px solid transparent; } + +.select2-container--classic .select2-dropdown--above { + border-bottom: none; } + +.select2-container--classic .select2-dropdown--below { + border-top: none; } + +.select2-container--classic .select2-results > .select2-results__options { + max-height: 200px; + overflow-y: auto; } + +.select2-container--classic .select2-results__option[role=group] { + padding: 0; } + +.select2-container--classic .select2-results__option[aria-disabled=true] { + color: grey; } + +.select2-container--classic .select2-results__option--highlighted[aria-selected] { + background-color: #3875d7; + color: white; } + +.select2-container--classic .select2-results__group { + cursor: default; + display: block; + padding: 6px; } + +.select2-container--classic.select2-container--open .select2-dropdown { + border-color: #5897fb; } diff --git a/static/admin/css/vendor/select2/select2.min.css b/static/admin/css/vendor/select2/select2.min.css new file mode 100644 index 0000000000..7c18ad59df --- /dev/null +++ b/static/admin/css/vendor/select2/select2.min.css @@ -0,0 +1 @@ +.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right;margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb} diff --git a/static/admin/css/widgets.css b/static/admin/css/widgets.css new file mode 100644 index 0000000000..c7d64566d9 --- /dev/null +++ b/static/admin/css/widgets.css @@ -0,0 +1,574 @@ +/* SELECTOR (FILTER INTERFACE) */ + +.selector { + width: 800px; + float: left; +} + +.selector select { + width: 380px; + height: 17.2em; +} + +.selector-available, .selector-chosen { + float: left; + width: 380px; + text-align: center; + margin-bottom: 5px; +} + +.selector-chosen select { + border-top: none; +} + +.selector-available h2, .selector-chosen h2 { + border: 1px solid var(--border-color); + border-radius: 4px 4px 0 0; +} + +.selector-chosen h2 { + background: var(--primary); + color: var(--header-link-color); +} + +.selector .selector-available h2 { + background: var(--darkened-bg); + color: var(--body-quiet-color); +} + +.selector .selector-filter { + border: 1px solid var(--border-color); + border-width: 0 1px; + padding: 8px; + color: var(--body-quiet-color); + font-size: 10px; + margin: 0; + text-align: left; +} + +.selector .selector-filter label, +.inline-group .aligned .selector .selector-filter label { + float: left; + margin: 7px 0 0; + width: 18px; + height: 18px; + padding: 0; + overflow: hidden; + line-height: 1; +} + +.selector .selector-available input { + width: 320px; + margin-left: 8px; +} + +.selector ul.selector-chooser { + float: left; + width: 22px; + background-color: var(--selected-bg); + border-radius: 10px; + margin: 10em 5px 0 5px; + padding: 0; +} + +.selector-chooser li { + margin: 0; + padding: 3px; + list-style-type: none; +} + +.selector select { + padding: 0 10px; + margin: 0 0 10px; + border-radius: 0 0 4px 4px; +} + +.selector-add, .selector-remove { + width: 16px; + height: 16px; + display: block; + text-indent: -3000px; + overflow: hidden; + cursor: default; + opacity: 0.55; +} + +.active.selector-add, .active.selector-remove { + opacity: 1; +} + +.active.selector-add:hover, .active.selector-remove:hover { + cursor: pointer; +} + +.selector-add { + background: url(../img/selector-icons.svg) 0 -96px no-repeat; +} + +.active.selector-add:focus, .active.selector-add:hover { + background-position: 0 -112px; +} + +.selector-remove { + background: url(../img/selector-icons.svg) 0 -64px no-repeat; +} + +.active.selector-remove:focus, .active.selector-remove:hover { + background-position: 0 -80px; +} + +a.selector-chooseall, a.selector-clearall { + display: inline-block; + height: 16px; + text-align: left; + margin: 1px auto 3px; + overflow: hidden; + font-weight: bold; + line-height: 16px; + color: var(--body-quiet-color); + text-decoration: none; + opacity: 0.55; +} + +a.active.selector-chooseall:focus, a.active.selector-clearall:focus, +a.active.selector-chooseall:hover, a.active.selector-clearall:hover { + color: var(--link-fg); +} + +a.active.selector-chooseall, a.active.selector-clearall { + opacity: 1; +} + +a.active.selector-chooseall:hover, a.active.selector-clearall:hover { + cursor: pointer; +} + +a.selector-chooseall { + padding: 0 18px 0 0; + background: url(../img/selector-icons.svg) right -160px no-repeat; + cursor: default; +} + +a.active.selector-chooseall:focus, a.active.selector-chooseall:hover { + background-position: 100% -176px; +} + +a.selector-clearall { + padding: 0 0 0 18px; + background: url(../img/selector-icons.svg) 0 -128px no-repeat; + cursor: default; +} + +a.active.selector-clearall:focus, a.active.selector-clearall:hover { + background-position: 0 -144px; +} + +/* STACKED SELECTORS */ + +.stacked { + float: left; + width: 490px; +} + +.stacked select { + width: 480px; + height: 10.1em; +} + +.stacked .selector-available, .stacked .selector-chosen { + width: 480px; +} + +.stacked .selector-available { + margin-bottom: 0; +} + +.stacked .selector-available input { + width: 422px; +} + +.stacked ul.selector-chooser { + height: 22px; + width: 50px; + margin: 0 0 10px 40%; + background-color: #eee; + border-radius: 10px; +} + +.stacked .selector-chooser li { + float: left; + padding: 3px 3px 3px 5px; +} + +.stacked .selector-chooseall, .stacked .selector-clearall { + display: none; +} + +.stacked .selector-add { + background: url(../img/selector-icons.svg) 0 -32px no-repeat; + cursor: default; +} + +.stacked .active.selector-add { + background-position: 0 -32px; + cursor: pointer; +} + +.stacked .active.selector-add:focus, .stacked .active.selector-add:hover { + background-position: 0 -48px; + cursor: pointer; +} + +.stacked .selector-remove { + background: url(../img/selector-icons.svg) 0 0 no-repeat; + cursor: default; +} + +.stacked .active.selector-remove { + background-position: 0 0px; + cursor: pointer; +} + +.stacked .active.selector-remove:focus, .stacked .active.selector-remove:hover { + background-position: 0 -16px; + cursor: pointer; +} + +.selector .help-icon { + background: url(../img/icon-unknown.svg) 0 0 no-repeat; + display: inline-block; + vertical-align: middle; + margin: -2px 0 0 2px; + width: 13px; + height: 13px; +} + +.selector .selector-chosen .help-icon { + background: url(../img/icon-unknown-alt.svg) 0 0 no-repeat; +} + +.selector .search-label-icon { + background: url(../img/search.svg) 0 0 no-repeat; + display: inline-block; + height: 18px; + width: 18px; +} + +/* DATE AND TIME */ + +p.datetime { + line-height: 20px; + margin: 0; + padding: 0; + color: var(--body-quiet-color); + font-weight: bold; +} + +.datetime span { + white-space: nowrap; + font-weight: normal; + font-size: 11px; + color: var(--body-quiet-color); +} + +.datetime input, .form-row .datetime input.vDateField, .form-row .datetime input.vTimeField { + margin-left: 5px; + margin-bottom: 4px; +} + +table p.datetime { + font-size: 11px; + margin-left: 0; + padding-left: 0; +} + +.datetimeshortcuts .clock-icon, .datetimeshortcuts .date-icon { + position: relative; + display: inline-block; + vertical-align: middle; + height: 16px; + width: 16px; + overflow: hidden; +} + +.datetimeshortcuts .clock-icon { + background: url(../img/icon-clock.svg) 0 0 no-repeat; +} + +.datetimeshortcuts a:focus .clock-icon, +.datetimeshortcuts a:hover .clock-icon { + background-position: 0 -16px; +} + +.datetimeshortcuts .date-icon { + background: url(../img/icon-calendar.svg) 0 0 no-repeat; + top: -1px; +} + +.datetimeshortcuts a:focus .date-icon, +.datetimeshortcuts a:hover .date-icon { + background-position: 0 -16px; +} + +.timezonewarning { + font-size: 11px; + color: var(--body-quiet-color); +} + +/* URL */ + +p.url { + line-height: 20px; + margin: 0; + padding: 0; + color: var(--body-quiet-color); + font-size: 11px; + font-weight: bold; +} + +.url a { + font-weight: normal; +} + +/* FILE UPLOADS */ + +p.file-upload { + line-height: 20px; + margin: 0; + padding: 0; + color: var(--body-quiet-color); + font-size: 11px; + font-weight: bold; +} + +.aligned p.file-upload { + margin-left: 170px; +} + +.file-upload a { + font-weight: normal; +} + +.file-upload .deletelink { + margin-left: 5px; +} + +span.clearable-file-input label { + color: var(--body-fg); + font-size: 11px; + display: inline; + float: none; +} + +/* CALENDARS & CLOCKS */ + +.calendarbox, .clockbox { + margin: 5px auto; + font-size: 12px; + width: 19em; + text-align: center; + background: var(--body-bg); + color: var(--body-fg); + border: 1px solid var(--hairline-color); + border-radius: 4px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); + overflow: hidden; + position: relative; +} + +.clockbox { + width: auto; +} + +.calendar { + margin: 0; + padding: 0; +} + +.calendar table { + margin: 0; + padding: 0; + border-collapse: collapse; + background: white; + width: 100%; +} + +.calendar caption, .calendarbox h2 { + margin: 0; + text-align: center; + border-top: none; + font-weight: 700; + font-size: 12px; + color: #333; + background: var(--accent); +} + +.calendar th { + padding: 8px 5px; + background: var(--darkened-bg); + border-bottom: 1px solid var(--border-color); + font-weight: 400; + font-size: 12px; + text-align: center; + color: var(--body-quiet-color); +} + +.calendar td { + font-weight: 400; + font-size: 12px; + text-align: center; + padding: 0; + border-top: 1px solid var(--hairline-color); + border-bottom: none; +} + +.calendar td.selected a { + background: var(--primary); + color: var(--button-fg); +} + +.calendar td.nonday { + background: var(--darkened-bg); +} + +.calendar td.today a { + font-weight: 700; +} + +.calendar td a, .timelist a { + display: block; + font-weight: 400; + padding: 6px; + text-decoration: none; + color: var(--body-quiet-color); +} + +.calendar td a:focus, .timelist a:focus, +.calendar td a:hover, .timelist a:hover { + background: var(--primary); + color: white; +} + +.calendar td a:active, .timelist a:active { + background: var(--header-bg); + color: white; +} + +.calendarnav { + font-size: 10px; + text-align: center; + color: #ccc; + margin: 0; + padding: 1px 3px; +} + +.calendarnav a:link, #calendarnav a:visited, +#calendarnav a:focus, #calendarnav a:hover { + color: var(--body-quiet-color); +} + +.calendar-shortcuts { + background: var(--body-bg); + color: var(--body-quiet-color); + font-size: 11px; + line-height: 11px; + border-top: 1px solid var(--hairline-color); + padding: 8px 0; +} + +.calendarbox .calendarnav-previous, .calendarbox .calendarnav-next { + display: block; + position: absolute; + top: 8px; + width: 15px; + height: 15px; + text-indent: -9999px; + padding: 0; +} + +.calendarnav-previous { + left: 10px; + background: url(../img/calendar-icons.svg) 0 0 no-repeat; +} + +.calendarbox .calendarnav-previous:focus, +.calendarbox .calendarnav-previous:hover { + background-position: 0 -15px; +} + +.calendarnav-next { + right: 10px; + background: url(../img/calendar-icons.svg) 0 -30px no-repeat; +} + +.calendarbox .calendarnav-next:focus, +.calendarbox .calendarnav-next:hover { + background-position: 0 -45px; +} + +.calendar-cancel { + margin: 0; + padding: 4px 0; + font-size: 12px; + background: #eee; + border-top: 1px solid var(--border-color); + color: var(--body-fg); +} + +.calendar-cancel:focus, .calendar-cancel:hover { + background: #ddd; +} + +.calendar-cancel a { + color: black; + display: block; +} + +ul.timelist, .timelist li { + list-style-type: none; + margin: 0; + padding: 0; +} + +.timelist a { + padding: 2px; +} + +/* EDIT INLINE */ + +.inline-deletelink { + float: right; + text-indent: -9999px; + background: url(../img/inline-delete.svg) 0 0 no-repeat; + width: 16px; + height: 16px; + border: 0px none; +} + +.inline-deletelink:focus, .inline-deletelink:hover { + cursor: pointer; +} + +/* RELATED WIDGET WRAPPER */ +.related-widget-wrapper { + float: left; /* display properly in form rows with multiple fields */ + overflow: hidden; /* clear floated contents */ +} + +.related-widget-wrapper-link { + opacity: 0.3; +} + +.related-widget-wrapper-link:link { + opacity: .8; +} + +.related-widget-wrapper-link:link:focus, +.related-widget-wrapper-link:link:hover { + opacity: 1; +} + +select + .related-widget-wrapper-link, +.related-widget-wrapper-link + .related-widget-wrapper-link { + margin-left: 7px; +} diff --git a/static/admin/fonts/LICENSE.txt b/static/admin/fonts/LICENSE.txt new file mode 100644 index 0000000000..75b52484ea --- /dev/null +++ b/static/admin/fonts/LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/static/admin/fonts/README.txt b/static/admin/fonts/README.txt new file mode 100644 index 0000000000..b247bef33c --- /dev/null +++ b/static/admin/fonts/README.txt @@ -0,0 +1,3 @@ +Roboto webfont source: https://www.google.com/fonts/specimen/Roboto +WOFF files extracted using https://github.com/majodev/google-webfonts-helper +Weights used in this project: Light (300), Regular (400), Bold (700) diff --git a/static/admin/fonts/Roboto-Bold-webfont.woff b/static/admin/fonts/Roboto-Bold-webfont.woff new file mode 100644 index 0000000000..6e0f562670 Binary files /dev/null and b/static/admin/fonts/Roboto-Bold-webfont.woff differ diff --git a/static/admin/fonts/Roboto-Light-webfont.woff b/static/admin/fonts/Roboto-Light-webfont.woff new file mode 100644 index 0000000000..b9e99185c8 Binary files /dev/null and b/static/admin/fonts/Roboto-Light-webfont.woff differ diff --git a/static/admin/fonts/Roboto-Regular-webfont.woff b/static/admin/fonts/Roboto-Regular-webfont.woff new file mode 100644 index 0000000000..96c1986f01 Binary files /dev/null and b/static/admin/fonts/Roboto-Regular-webfont.woff differ diff --git a/static/admin/img/LICENSE b/static/admin/img/LICENSE new file mode 100644 index 0000000000..a4faaa1dfa --- /dev/null +++ b/static/admin/img/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2014 Code Charm Ltd + +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/static/admin/img/README.txt b/static/admin/img/README.txt new file mode 100644 index 0000000000..4eb2e492a9 --- /dev/null +++ b/static/admin/img/README.txt @@ -0,0 +1,7 @@ +All icons are taken from Font Awesome (http://fontawesome.io/) project. +The Font Awesome font is licensed under the SIL OFL 1.1: +- https://scripts.sil.org/OFL + +SVG icons source: https://github.com/encharm/Font-Awesome-SVG-PNG +Font-Awesome-SVG-PNG is licensed under the MIT license (see file license +in current folder). diff --git a/static/admin/img/calendar-icons.svg b/static/admin/img/calendar-icons.svg new file mode 100644 index 0000000000..dbf21c39d2 --- /dev/null +++ b/static/admin/img/calendar-icons.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/static/admin/img/gis/move_vertex_off.svg b/static/admin/img/gis/move_vertex_off.svg new file mode 100644 index 0000000000..228854f3b0 --- /dev/null +++ b/static/admin/img/gis/move_vertex_off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/admin/img/gis/move_vertex_on.svg b/static/admin/img/gis/move_vertex_on.svg new file mode 100644 index 0000000000..96b87fdd70 --- /dev/null +++ b/static/admin/img/gis/move_vertex_on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/admin/img/icon-addlink.svg b/static/admin/img/icon-addlink.svg new file mode 100644 index 0000000000..e004fb1626 --- /dev/null +++ b/static/admin/img/icon-addlink.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/admin/img/icon-alert.svg b/static/admin/img/icon-alert.svg new file mode 100644 index 0000000000..e51ea83f5b --- /dev/null +++ b/static/admin/img/icon-alert.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/admin/img/icon-calendar.svg b/static/admin/img/icon-calendar.svg new file mode 100644 index 0000000000..97910a9949 --- /dev/null +++ b/static/admin/img/icon-calendar.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/static/admin/img/icon-changelink.svg b/static/admin/img/icon-changelink.svg new file mode 100644 index 0000000000..bbb137aa08 --- /dev/null +++ b/static/admin/img/icon-changelink.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/admin/img/icon-clock.svg b/static/admin/img/icon-clock.svg new file mode 100644 index 0000000000..bf9985d3f4 --- /dev/null +++ b/static/admin/img/icon-clock.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/static/admin/img/icon-deletelink.svg b/static/admin/img/icon-deletelink.svg new file mode 100644 index 0000000000..4059b15544 --- /dev/null +++ b/static/admin/img/icon-deletelink.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/admin/img/icon-no.svg b/static/admin/img/icon-no.svg new file mode 100644 index 0000000000..2e0d3832c9 --- /dev/null +++ b/static/admin/img/icon-no.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/admin/img/icon-unknown-alt.svg b/static/admin/img/icon-unknown-alt.svg new file mode 100644 index 0000000000..1c6b99fc09 --- /dev/null +++ b/static/admin/img/icon-unknown-alt.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/admin/img/icon-unknown.svg b/static/admin/img/icon-unknown.svg new file mode 100644 index 0000000000..50b4f97276 --- /dev/null +++ b/static/admin/img/icon-unknown.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/admin/img/icon-viewlink.svg b/static/admin/img/icon-viewlink.svg new file mode 100644 index 0000000000..a1ca1d3f4e --- /dev/null +++ b/static/admin/img/icon-viewlink.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/admin/img/icon-yes.svg b/static/admin/img/icon-yes.svg new file mode 100644 index 0000000000..5883d877e8 --- /dev/null +++ b/static/admin/img/icon-yes.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/admin/img/inline-delete.svg b/static/admin/img/inline-delete.svg new file mode 100644 index 0000000000..17d1ad67cd --- /dev/null +++ b/static/admin/img/inline-delete.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/admin/img/search.svg b/static/admin/img/search.svg new file mode 100644 index 0000000000..c8c69b2acc --- /dev/null +++ b/static/admin/img/search.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/admin/img/selector-icons.svg b/static/admin/img/selector-icons.svg new file mode 100644 index 0000000000..926b8e21b5 --- /dev/null +++ b/static/admin/img/selector-icons.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/static/admin/img/sorting-icons.svg b/static/admin/img/sorting-icons.svg new file mode 100644 index 0000000000..7c31ec9114 --- /dev/null +++ b/static/admin/img/sorting-icons.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/static/admin/img/tooltag-add.svg b/static/admin/img/tooltag-add.svg new file mode 100644 index 0000000000..1ca64ae5b0 --- /dev/null +++ b/static/admin/img/tooltag-add.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/admin/img/tooltag-arrowright.svg b/static/admin/img/tooltag-arrowright.svg new file mode 100644 index 0000000000..b664d61937 --- /dev/null +++ b/static/admin/img/tooltag-arrowright.svg @@ -0,0 +1,3 @@ + + + diff --git a/static/admin/js/SelectBox.js b/static/admin/js/SelectBox.js new file mode 100644 index 0000000000..ace6d9dfb8 --- /dev/null +++ b/static/admin/js/SelectBox.js @@ -0,0 +1,112 @@ +'use strict'; +{ + const SelectBox = { + cache: {}, + init: function(id) { + const box = document.getElementById(id); + SelectBox.cache[id] = []; + const cache = SelectBox.cache[id]; + for (const node of box.options) { + cache.push({value: node.value, text: node.text, displayed: 1}); + } + }, + redisplay: function(id) { + // Repopulate HTML select box from cache + const box = document.getElementById(id); + const scroll_value_from_top = box.scrollTop; + box.innerHTML = ''; + for (const node of SelectBox.cache[id]) { + if (node.displayed) { + const new_option = new Option(node.text, node.value, false, false); + // Shows a tooltip when hovering over the option + new_option.title = node.text; + box.appendChild(new_option); + } + } + box.scrollTop = scroll_value_from_top; + }, + filter: function(id, text) { + // Redisplay the HTML select box, displaying only the choices containing ALL + // the words in text. (It's an AND search.) + const tokens = text.toLowerCase().split(/\s+/); + for (const node of SelectBox.cache[id]) { + node.displayed = 1; + const node_text = node.text.toLowerCase(); + for (const token of tokens) { + if (!node_text.includes(token)) { + node.displayed = 0; + break; // Once the first token isn't found we're done + } + } + } + SelectBox.redisplay(id); + }, + delete_from_cache: function(id, value) { + let delete_index = null; + const cache = SelectBox.cache[id]; + for (const [i, node] of cache.entries()) { + if (node.value === value) { + delete_index = i; + break; + } + } + cache.splice(delete_index, 1); + }, + add_to_cache: function(id, option) { + SelectBox.cache[id].push({value: option.value, text: option.text, displayed: 1}); + }, + cache_contains: function(id, value) { + // Check if an item is contained in the cache + for (const node of SelectBox.cache[id]) { + if (node.value === value) { + return true; + } + } + return false; + }, + move: function(from, to) { + const from_box = document.getElementById(from); + for (const option of from_box.options) { + const option_value = option.value; + if (option.selected && SelectBox.cache_contains(from, option_value)) { + SelectBox.add_to_cache(to, {value: option_value, text: option.text, displayed: 1}); + SelectBox.delete_from_cache(from, option_value); + } + } + SelectBox.redisplay(from); + SelectBox.redisplay(to); + }, + move_all: function(from, to) { + const from_box = document.getElementById(from); + for (const option of from_box.options) { + const option_value = option.value; + if (SelectBox.cache_contains(from, option_value)) { + SelectBox.add_to_cache(to, {value: option_value, text: option.text, displayed: 1}); + SelectBox.delete_from_cache(from, option_value); + } + } + SelectBox.redisplay(from); + SelectBox.redisplay(to); + }, + sort: function(id) { + SelectBox.cache[id].sort(function(a, b) { + a = a.text.toLowerCase(); + b = b.text.toLowerCase(); + if (a > b) { + return 1; + } + if (a < b) { + return -1; + } + return 0; + } ); + }, + select_all: function(id) { + const box = document.getElementById(id); + for (const option of box.options) { + option.selected = true; + } + } + }; + window.SelectBox = SelectBox; +} diff --git a/static/admin/js/SelectFilter2.js b/static/admin/js/SelectFilter2.js new file mode 100644 index 0000000000..6c709a08c2 --- /dev/null +++ b/static/admin/js/SelectFilter2.js @@ -0,0 +1,236 @@ +/*global SelectBox, gettext, interpolate, quickElement, SelectFilter*/ +/* +SelectFilter2 - Turns a multiple-select box into a filter interface. + +Requires core.js and SelectBox.js. +*/ +'use strict'; +{ + window.SelectFilter = { + init: function(field_id, field_name, is_stacked) { + if (field_id.match(/__prefix__/)) { + // Don't initialize on empty forms. + return; + } + const from_box = document.getElementById(field_id); + from_box.id += '_from'; // change its ID + from_box.className = 'filtered'; + + for (const p of from_box.parentNode.getElementsByTagName('p')) { + if (p.classList.contains("info")) { + // Remove

    , because it just gets in the way. + from_box.parentNode.removeChild(p); + } else if (p.classList.contains("help")) { + // Move help text up to the top so it isn't below the select + // boxes or wrapped off on the side to the right of the add + // button: + from_box.parentNode.insertBefore(p, from_box.parentNode.firstChild); + } + } + + //

    or
    + const selector_div = quickElement('div', from_box.parentNode); + selector_div.className = is_stacked ? 'selector stacked' : 'selector'; + + //
    + const selector_available = quickElement('div', selector_div); + selector_available.className = 'selector-available'; + const title_available = quickElement('h2', selector_available, interpolate(gettext('Available %s') + ' ', [field_name])); + quickElement( + 'span', title_available, '', + 'class', 'help help-tooltip help-icon', + 'title', interpolate( + gettext( + 'This is the list of available %s. You may choose some by ' + + 'selecting them in the box below and then clicking the ' + + '"Choose" arrow between the two boxes.' + ), + [field_name] + ) + ); + + const filter_p = quickElement('p', selector_available, '', 'id', field_id + '_filter'); + filter_p.className = 'selector-filter'; + + const search_filter_label = quickElement('label', filter_p, '', 'for', field_id + '_input'); + + quickElement( + 'span', search_filter_label, '', + 'class', 'help-tooltip search-label-icon', + 'title', interpolate(gettext("Type into this box to filter down the list of available %s."), [field_name]) + ); + + filter_p.appendChild(document.createTextNode(' ')); + + const filter_input = quickElement('input', filter_p, '', 'type', 'text', 'placeholder', gettext("Filter")); + filter_input.id = field_id + '_input'; + + selector_available.appendChild(from_box); + const choose_all = quickElement('a', selector_available, gettext('Choose all'), 'title', interpolate(gettext('Click to choose all %s at once.'), [field_name]), 'href', '#', 'id', field_id + '_add_all_link'); + choose_all.className = 'selector-chooseall'; + + //
      + const selector_chooser = quickElement('ul', selector_div); + selector_chooser.className = 'selector-chooser'; + const add_link = quickElement('a', quickElement('li', selector_chooser), gettext('Choose'), 'title', gettext('Choose'), 'href', '#', 'id', field_id + '_add_link'); + add_link.className = 'selector-add'; + const remove_link = quickElement('a', quickElement('li', selector_chooser), gettext('Remove'), 'title', gettext('Remove'), 'href', '#', 'id', field_id + '_remove_link'); + remove_link.className = 'selector-remove'; + + //
      + const selector_chosen = quickElement('div', selector_div); + selector_chosen.className = 'selector-chosen'; + const title_chosen = quickElement('h2', selector_chosen, interpolate(gettext('Chosen %s') + ' ', [field_name])); + quickElement( + 'span', title_chosen, '', + 'class', 'help help-tooltip help-icon', + 'title', interpolate( + gettext( + 'This is the list of chosen %s. You may remove some by ' + + 'selecting them in the box below and then clicking the ' + + '"Remove" arrow between the two boxes.' + ), + [field_name] + ) + ); + + const to_box = quickElement('select', selector_chosen, '', 'id', field_id + '_to', 'multiple', '', 'size', from_box.size, 'name', from_box.name); + to_box.className = 'filtered'; + const clear_all = quickElement('a', selector_chosen, gettext('Remove all'), 'title', interpolate(gettext('Click to remove all chosen %s at once.'), [field_name]), 'href', '#', 'id', field_id + '_remove_all_link'); + clear_all.className = 'selector-clearall'; + + from_box.name = from_box.name + '_old'; + + // Set up the JavaScript event handlers for the select box filter interface + const move_selection = function(e, elem, move_func, from, to) { + if (elem.classList.contains('active')) { + move_func(from, to); + SelectFilter.refresh_icons(field_id); + } + e.preventDefault(); + }; + choose_all.addEventListener('click', function(e) { + move_selection(e, this, SelectBox.move_all, field_id + '_from', field_id + '_to'); + }); + add_link.addEventListener('click', function(e) { + move_selection(e, this, SelectBox.move, field_id + '_from', field_id + '_to'); + }); + remove_link.addEventListener('click', function(e) { + move_selection(e, this, SelectBox.move, field_id + '_to', field_id + '_from'); + }); + clear_all.addEventListener('click', function(e) { + move_selection(e, this, SelectBox.move_all, field_id + '_to', field_id + '_from'); + }); + filter_input.addEventListener('keypress', function(e) { + SelectFilter.filter_key_press(e, field_id); + }); + filter_input.addEventListener('keyup', function(e) { + SelectFilter.filter_key_up(e, field_id); + }); + filter_input.addEventListener('keydown', function(e) { + SelectFilter.filter_key_down(e, field_id); + }); + selector_div.addEventListener('change', function(e) { + if (e.target.tagName === 'SELECT') { + SelectFilter.refresh_icons(field_id); + } + }); + selector_div.addEventListener('dblclick', function(e) { + if (e.target.tagName === 'OPTION') { + if (e.target.closest('select').id === field_id + '_to') { + SelectBox.move(field_id + '_to', field_id + '_from'); + } else { + SelectBox.move(field_id + '_from', field_id + '_to'); + } + SelectFilter.refresh_icons(field_id); + } + }); + from_box.closest('form').addEventListener('submit', function() { + SelectBox.select_all(field_id + '_to'); + }); + SelectBox.init(field_id + '_from'); + SelectBox.init(field_id + '_to'); + // Move selected from_box options to to_box + SelectBox.move(field_id + '_from', field_id + '_to'); + + if (!is_stacked) { + // In horizontal mode, give the same height to the two boxes. + const j_from_box = document.getElementById(field_id + '_from'); + const j_to_box = document.getElementById(field_id + '_to'); + let height = filter_p.offsetHeight + j_from_box.offsetHeight; + + const j_to_box_style = window.getComputedStyle(j_to_box); + if (j_to_box_style.getPropertyValue('box-sizing') === 'border-box') { + // Add the padding and border to the final height. + height += parseInt(j_to_box_style.getPropertyValue('padding-top'), 10) + + parseInt(j_to_box_style.getPropertyValue('padding-bottom'), 10) + + parseInt(j_to_box_style.getPropertyValue('border-top-width'), 10) + + parseInt(j_to_box_style.getPropertyValue('border-bottom-width'), 10); + } + + j_to_box.style.height = height + 'px'; + } + + // Initial icon refresh + SelectFilter.refresh_icons(field_id); + }, + any_selected: function(field) { + // Temporarily add the required attribute and check validity. + field.required = true; + const any_selected = field.checkValidity(); + field.required = false; + return any_selected; + }, + refresh_icons: function(field_id) { + const from = document.getElementById(field_id + '_from'); + const to = document.getElementById(field_id + '_to'); + // Active if at least one item is selected + document.getElementById(field_id + '_add_link').classList.toggle('active', SelectFilter.any_selected(from)); + document.getElementById(field_id + '_remove_link').classList.toggle('active', SelectFilter.any_selected(to)); + // Active if the corresponding box isn't empty + document.getElementById(field_id + '_add_all_link').classList.toggle('active', from.querySelector('option')); + document.getElementById(field_id + '_remove_all_link').classList.toggle('active', to.querySelector('option')); + }, + filter_key_press: function(event, field_id) { + const from = document.getElementById(field_id + '_from'); + // don't submit form if user pressed Enter + if ((event.which && event.which === 13) || (event.keyCode && event.keyCode === 13)) { + from.selectedIndex = 0; + SelectBox.move(field_id + '_from', field_id + '_to'); + from.selectedIndex = 0; + event.preventDefault(); + } + }, + filter_key_up: function(event, field_id) { + const from = document.getElementById(field_id + '_from'); + const temp = from.selectedIndex; + SelectBox.filter(field_id + '_from', document.getElementById(field_id + '_input').value); + from.selectedIndex = temp; + }, + filter_key_down: function(event, field_id) { + const from = document.getElementById(field_id + '_from'); + // right arrow -- move across + if ((event.which && event.which === 39) || (event.keyCode && event.keyCode === 39)) { + const old_index = from.selectedIndex; + SelectBox.move(field_id + '_from', field_id + '_to'); + from.selectedIndex = (old_index === from.length) ? from.length - 1 : old_index; + return; + } + // down arrow -- wrap around + if ((event.which && event.which === 40) || (event.keyCode && event.keyCode === 40)) { + from.selectedIndex = (from.length === from.selectedIndex + 1) ? 0 : from.selectedIndex + 1; + } + // up arrow -- wrap around + if ((event.which && event.which === 38) || (event.keyCode && event.keyCode === 38)) { + from.selectedIndex = (from.selectedIndex === 0) ? from.length - 1 : from.selectedIndex - 1; + } + } + }; + + window.addEventListener('load', function(e) { + document.querySelectorAll('select.selectfilter, select.selectfilterstacked').forEach(function(el) { + const data = el.dataset; + SelectFilter.init(el.id, data.fieldName, parseInt(data.isStacked, 10)); + }); + }); +} diff --git a/static/admin/js/actions.js b/static/admin/js/actions.js new file mode 100644 index 0000000000..2830e91156 --- /dev/null +++ b/static/admin/js/actions.js @@ -0,0 +1,201 @@ +/*global gettext, interpolate, ngettext*/ +'use strict'; +{ + function show(selector) { + document.querySelectorAll(selector).forEach(function(el) { + el.classList.remove('hidden'); + }); + } + + function hide(selector) { + document.querySelectorAll(selector).forEach(function(el) { + el.classList.add('hidden'); + }); + } + + function showQuestion(options) { + hide(options.acrossClears); + show(options.acrossQuestions); + hide(options.allContainer); + } + + function showClear(options) { + show(options.acrossClears); + hide(options.acrossQuestions); + document.querySelector(options.actionContainer).classList.remove(options.selectedClass); + show(options.allContainer); + hide(options.counterContainer); + } + + function reset(options) { + hide(options.acrossClears); + hide(options.acrossQuestions); + hide(options.allContainer); + show(options.counterContainer); + } + + function clearAcross(options) { + reset(options); + const acrossInputs = document.querySelectorAll(options.acrossInput); + acrossInputs.forEach(function(acrossInput) { + acrossInput.value = 0; + }); + document.querySelector(options.actionContainer).classList.remove(options.selectedClass); + } + + function checker(actionCheckboxes, options, checked) { + if (checked) { + showQuestion(options); + } else { + reset(options); + } + actionCheckboxes.forEach(function(el) { + el.checked = checked; + el.closest('tr').classList.toggle(options.selectedClass, checked); + }); + } + + function updateCounter(actionCheckboxes, options) { + const sel = Array.from(actionCheckboxes).filter(function(el) { + return el.checked; + }).length; + const counter = document.querySelector(options.counterContainer); + // data-actions-icnt is defined in the generated HTML + // and contains the total amount of objects in the queryset + const actions_icnt = Number(counter.dataset.actionsIcnt); + counter.textContent = interpolate( + ngettext('%(sel)s of %(cnt)s selected', '%(sel)s of %(cnt)s selected', sel), { + sel: sel, + cnt: actions_icnt + }, true); + const allToggle = document.getElementById(options.allToggleId); + allToggle.checked = sel === actionCheckboxes.length; + if (allToggle.checked) { + showQuestion(options); + } else { + clearAcross(options); + } + } + + const defaults = { + actionContainer: "div.actions", + counterContainer: "span.action-counter", + allContainer: "div.actions span.all", + acrossInput: "div.actions input.select-across", + acrossQuestions: "div.actions span.question", + acrossClears: "div.actions span.clear", + allToggleId: "action-toggle", + selectedClass: "selected" + }; + + window.Actions = function(actionCheckboxes, options) { + options = Object.assign({}, defaults, options); + let list_editable_changed = false; + let lastChecked = null; + let shiftPressed = false; + + document.addEventListener('keydown', (event) => { + shiftPressed = event.shiftKey; + }); + + document.addEventListener('keyup', (event) => { + shiftPressed = event.shiftKey; + }); + + document.getElementById(options.allToggleId).addEventListener('click', function(event) { + checker(actionCheckboxes, options, this.checked); + updateCounter(actionCheckboxes, options); + }); + + document.querySelectorAll(options.acrossQuestions + " a").forEach(function(el) { + el.addEventListener('click', function(event) { + event.preventDefault(); + const acrossInputs = document.querySelectorAll(options.acrossInput); + acrossInputs.forEach(function(acrossInput) { + acrossInput.value = 1; + }); + showClear(options); + }); + }); + + document.querySelectorAll(options.acrossClears + " a").forEach(function(el) { + el.addEventListener('click', function(event) { + event.preventDefault(); + document.getElementById(options.allToggleId).checked = false; + clearAcross(options); + checker(actionCheckboxes, options, false); + updateCounter(actionCheckboxes, options); + }); + }); + + function affectedCheckboxes(target, withModifier) { + const multiSelect = (lastChecked && withModifier && lastChecked !== target); + if (!multiSelect) { + return [target]; + } + const checkboxes = Array.from(actionCheckboxes); + const targetIndex = checkboxes.findIndex(el => el === target); + const lastCheckedIndex = checkboxes.findIndex(el => el === lastChecked); + const startIndex = Math.min(targetIndex, lastCheckedIndex); + const endIndex = Math.max(targetIndex, lastCheckedIndex); + const filtered = checkboxes.filter((el, index) => (startIndex <= index) && (index <= endIndex)); + return filtered; + }; + + Array.from(document.getElementById('result_list').tBodies).forEach(function(el) { + el.addEventListener('change', function(event) { + const target = event.target; + if (target.classList.contains('action-select')) { + const checkboxes = affectedCheckboxes(target, shiftPressed); + checker(checkboxes, options, target.checked); + updateCounter(actionCheckboxes, options); + lastChecked = target; + } else { + list_editable_changed = true; + } + }); + }); + + document.querySelector('#changelist-form button[name=index]').addEventListener('click', function() { + if (list_editable_changed) { + const confirmed = confirm(gettext("You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.")); + if (!confirmed) { + event.preventDefault(); + } + } + }); + + const el = document.querySelector('#changelist-form input[name=_save]'); + // The button does not exist if no fields are editable. + if (el) { + el.addEventListener('click', function(event) { + if (document.querySelector('[name=action]').value) { + const text = list_editable_changed + ? gettext("You have selected an action, but you haven’t saved your changes to individual fields yet. Please click OK to save. You’ll need to re-run the action.") + : gettext("You have selected an action, and you haven’t made any changes on individual fields. You’re probably looking for the Go button rather than the Save button."); + if (!confirm(text)) { + event.preventDefault(); + } + } + }); + } + }; + + // Call function fn when the DOM is loaded and ready. If it is already + // loaded, call the function now. + // http://youmightnotneedjquery.com/#ready + function ready(fn) { + if (document.readyState !== 'loading') { + fn(); + } else { + document.addEventListener('DOMContentLoaded', fn); + } + } + + ready(function() { + const actionsEls = document.querySelectorAll('tr input.action-select'); + if (actionsEls.length > 0) { + Actions(actionsEls); + } + }); +} diff --git a/static/admin/js/admin/DateTimeShortcuts.js b/static/admin/js/admin/DateTimeShortcuts.js new file mode 100644 index 0000000000..9bad0f54cb --- /dev/null +++ b/static/admin/js/admin/DateTimeShortcuts.js @@ -0,0 +1,415 @@ +/*global Calendar, findPosX, findPosY, get_format, gettext, gettext_noop, interpolate, ngettext, quickElement*/ +// Inserts shortcut buttons after all of the following: +// +// +'use strict'; +{ + const DateTimeShortcuts = { + calendars: [], + calendarInputs: [], + clockInputs: [], + clockHours: { + default_: [ + [gettext_noop('Now'), -1], + [gettext_noop('Midnight'), 0], + [gettext_noop('6 a.m.'), 6], + [gettext_noop('Noon'), 12], + [gettext_noop('6 p.m.'), 18] + ] + }, + dismissClockFunc: [], + dismissCalendarFunc: [], + calendarDivName1: 'calendarbox', // name of calendar
      that gets toggled + calendarDivName2: 'calendarin', // name of
      that contains calendar + calendarLinkName: 'calendarlink', // name of the link that is used to toggle + clockDivName: 'clockbox', // name of clock
      that gets toggled + clockLinkName: 'clocklink', // name of the link that is used to toggle + shortCutsClass: 'datetimeshortcuts', // class of the clock and cal shortcuts + timezoneWarningClass: 'timezonewarning', // class of the warning for timezone mismatch + timezoneOffset: 0, + init: function() { + const serverOffset = document.body.dataset.adminUtcOffset; + if (serverOffset) { + const localOffset = new Date().getTimezoneOffset() * -60; + DateTimeShortcuts.timezoneOffset = localOffset - serverOffset; + } + + for (const inp of document.getElementsByTagName('input')) { + if (inp.type === 'text' && inp.classList.contains('vTimeField')) { + DateTimeShortcuts.addClock(inp); + DateTimeShortcuts.addTimezoneWarning(inp); + } + else if (inp.type === 'text' && inp.classList.contains('vDateField')) { + DateTimeShortcuts.addCalendar(inp); + DateTimeShortcuts.addTimezoneWarning(inp); + } + } + }, + // Return the current time while accounting for the server timezone. + now: function() { + const serverOffset = document.body.dataset.adminUtcOffset; + if (serverOffset) { + const localNow = new Date(); + const localOffset = localNow.getTimezoneOffset() * -60; + localNow.setTime(localNow.getTime() + 1000 * (serverOffset - localOffset)); + return localNow; + } else { + return new Date(); + } + }, + // Add a warning when the time zone in the browser and backend do not match. + addTimezoneWarning: function(inp) { + const warningClass = DateTimeShortcuts.timezoneWarningClass; + let timezoneOffset = DateTimeShortcuts.timezoneOffset / 3600; + + // Only warn if there is a time zone mismatch. + if (!timezoneOffset) { + return; + } + + // Check if warning is already there. + if (inp.parentNode.querySelectorAll('.' + warningClass).length) { + return; + } + + let message; + if (timezoneOffset > 0) { + message = ngettext( + 'Note: You are %s hour ahead of server time.', + 'Note: You are %s hours ahead of server time.', + timezoneOffset + ); + } + else { + timezoneOffset *= -1; + message = ngettext( + 'Note: You are %s hour behind server time.', + 'Note: You are %s hours behind server time.', + timezoneOffset + ); + } + message = interpolate(message, [timezoneOffset]); + + const warning = document.createElement('span'); + warning.className = warningClass; + warning.textContent = message; + inp.parentNode.appendChild(document.createElement('br')); + inp.parentNode.appendChild(warning); + }, + // Add clock widget to a given field + addClock: function(inp) { + const num = DateTimeShortcuts.clockInputs.length; + DateTimeShortcuts.clockInputs[num] = inp; + DateTimeShortcuts.dismissClockFunc[num] = function() { DateTimeShortcuts.dismissClock(num); return true; }; + + // Shortcut links (clock icon and "Now" link) + const shortcuts_span = document.createElement('span'); + shortcuts_span.className = DateTimeShortcuts.shortCutsClass; + inp.parentNode.insertBefore(shortcuts_span, inp.nextSibling); + const now_link = document.createElement('a'); + now_link.href = "#"; + now_link.textContent = gettext('Now'); + now_link.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.handleClockQuicklink(num, -1); + }); + const clock_link = document.createElement('a'); + clock_link.href = '#'; + clock_link.id = DateTimeShortcuts.clockLinkName + num; + clock_link.addEventListener('click', function(e) { + e.preventDefault(); + // avoid triggering the document click handler to dismiss the clock + e.stopPropagation(); + DateTimeShortcuts.openClock(num); + }); + + quickElement( + 'span', clock_link, '', + 'class', 'clock-icon', + 'title', gettext('Choose a Time') + ); + shortcuts_span.appendChild(document.createTextNode('\u00A0')); + shortcuts_span.appendChild(now_link); + shortcuts_span.appendChild(document.createTextNode('\u00A0|\u00A0')); + shortcuts_span.appendChild(clock_link); + + // Create clock link div + // + // Markup looks like: + //
      + //

      Choose a time

      + // + //

      Cancel

      + //
      + + const clock_box = document.createElement('div'); + clock_box.style.display = 'none'; + clock_box.style.position = 'absolute'; + clock_box.className = 'clockbox module'; + clock_box.id = DateTimeShortcuts.clockDivName + num; + document.body.appendChild(clock_box); + clock_box.addEventListener('click', function(e) { e.stopPropagation(); }); + + quickElement('h2', clock_box, gettext('Choose a time')); + const time_list = quickElement('ul', clock_box); + time_list.className = 'timelist'; + // The list of choices can be overridden in JavaScript like this: + // DateTimeShortcuts.clockHours.name = [['3 a.m.', 3]]; + // where name is the name attribute of the . + const name = typeof DateTimeShortcuts.clockHours[inp.name] === 'undefined' ? 'default_' : inp.name; + DateTimeShortcuts.clockHours[name].forEach(function(element) { + const time_link = quickElement('a', quickElement('li', time_list), gettext(element[0]), 'href', '#'); + time_link.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.handleClockQuicklink(num, element[1]); + }); + }); + + const cancel_p = quickElement('p', clock_box); + cancel_p.className = 'calendar-cancel'; + const cancel_link = quickElement('a', cancel_p, gettext('Cancel'), 'href', '#'); + cancel_link.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.dismissClock(num); + }); + + document.addEventListener('keyup', function(event) { + if (event.which === 27) { + // ESC key closes popup + DateTimeShortcuts.dismissClock(num); + event.preventDefault(); + } + }); + }, + openClock: function(num) { + const clock_box = document.getElementById(DateTimeShortcuts.clockDivName + num); + const clock_link = document.getElementById(DateTimeShortcuts.clockLinkName + num); + + // Recalculate the clockbox position + // is it left-to-right or right-to-left layout ? + if (window.getComputedStyle(document.body).direction !== 'rtl') { + clock_box.style.left = findPosX(clock_link) + 17 + 'px'; + } + else { + // since style's width is in em, it'd be tough to calculate + // px value of it. let's use an estimated px for now + clock_box.style.left = findPosX(clock_link) - 110 + 'px'; + } + clock_box.style.top = Math.max(0, findPosY(clock_link) - 30) + 'px'; + + // Show the clock box + clock_box.style.display = 'block'; + document.addEventListener('click', DateTimeShortcuts.dismissClockFunc[num]); + }, + dismissClock: function(num) { + document.getElementById(DateTimeShortcuts.clockDivName + num).style.display = 'none'; + document.removeEventListener('click', DateTimeShortcuts.dismissClockFunc[num]); + }, + handleClockQuicklink: function(num, val) { + let d; + if (val === -1) { + d = DateTimeShortcuts.now(); + } + else { + d = new Date(1970, 1, 1, val, 0, 0, 0); + } + DateTimeShortcuts.clockInputs[num].value = d.strftime(get_format('TIME_INPUT_FORMATS')[0]); + DateTimeShortcuts.clockInputs[num].focus(); + DateTimeShortcuts.dismissClock(num); + }, + // Add calendar widget to a given field. + addCalendar: function(inp) { + const num = DateTimeShortcuts.calendars.length; + + DateTimeShortcuts.calendarInputs[num] = inp; + DateTimeShortcuts.dismissCalendarFunc[num] = function() { DateTimeShortcuts.dismissCalendar(num); return true; }; + + // Shortcut links (calendar icon and "Today" link) + const shortcuts_span = document.createElement('span'); + shortcuts_span.className = DateTimeShortcuts.shortCutsClass; + inp.parentNode.insertBefore(shortcuts_span, inp.nextSibling); + const today_link = document.createElement('a'); + today_link.href = '#'; + today_link.appendChild(document.createTextNode(gettext('Today'))); + today_link.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.handleCalendarQuickLink(num, 0); + }); + const cal_link = document.createElement('a'); + cal_link.href = '#'; + cal_link.id = DateTimeShortcuts.calendarLinkName + num; + cal_link.addEventListener('click', function(e) { + e.preventDefault(); + // avoid triggering the document click handler to dismiss the calendar + e.stopPropagation(); + DateTimeShortcuts.openCalendar(num); + }); + quickElement( + 'span', cal_link, '', + 'class', 'date-icon', + 'title', gettext('Choose a Date') + ); + shortcuts_span.appendChild(document.createTextNode('\u00A0')); + shortcuts_span.appendChild(today_link); + shortcuts_span.appendChild(document.createTextNode('\u00A0|\u00A0')); + shortcuts_span.appendChild(cal_link); + + // Create calendarbox div. + // + // Markup looks like: + // + //
      + //

      + // + // February 2003 + //

      + //
      + // + //
      + //
      + // Yesterday | Today | Tomorrow + //
      + //

      Cancel

      + //
      + const cal_box = document.createElement('div'); + cal_box.style.display = 'none'; + cal_box.style.position = 'absolute'; + cal_box.className = 'calendarbox module'; + cal_box.id = DateTimeShortcuts.calendarDivName1 + num; + document.body.appendChild(cal_box); + cal_box.addEventListener('click', function(e) { e.stopPropagation(); }); + + // next-prev links + const cal_nav = quickElement('div', cal_box); + const cal_nav_prev = quickElement('a', cal_nav, '<', 'href', '#'); + cal_nav_prev.className = 'calendarnav-previous'; + cal_nav_prev.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.drawPrev(num); + }); + + const cal_nav_next = quickElement('a', cal_nav, '>', 'href', '#'); + cal_nav_next.className = 'calendarnav-next'; + cal_nav_next.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.drawNext(num); + }); + + // main box + const cal_main = quickElement('div', cal_box, '', 'id', DateTimeShortcuts.calendarDivName2 + num); + cal_main.className = 'calendar'; + DateTimeShortcuts.calendars[num] = new Calendar(DateTimeShortcuts.calendarDivName2 + num, DateTimeShortcuts.handleCalendarCallback(num)); + DateTimeShortcuts.calendars[num].drawCurrent(); + + // calendar shortcuts + const shortcuts = quickElement('div', cal_box); + shortcuts.className = 'calendar-shortcuts'; + let day_link = quickElement('a', shortcuts, gettext('Yesterday'), 'href', '#'); + day_link.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.handleCalendarQuickLink(num, -1); + }); + shortcuts.appendChild(document.createTextNode('\u00A0|\u00A0')); + day_link = quickElement('a', shortcuts, gettext('Today'), 'href', '#'); + day_link.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.handleCalendarQuickLink(num, 0); + }); + shortcuts.appendChild(document.createTextNode('\u00A0|\u00A0')); + day_link = quickElement('a', shortcuts, gettext('Tomorrow'), 'href', '#'); + day_link.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.handleCalendarQuickLink(num, +1); + }); + + // cancel bar + const cancel_p = quickElement('p', cal_box); + cancel_p.className = 'calendar-cancel'; + const cancel_link = quickElement('a', cancel_p, gettext('Cancel'), 'href', '#'); + cancel_link.addEventListener('click', function(e) { + e.preventDefault(); + DateTimeShortcuts.dismissCalendar(num); + }); + document.addEventListener('keyup', function(event) { + if (event.which === 27) { + // ESC key closes popup + DateTimeShortcuts.dismissCalendar(num); + event.preventDefault(); + } + }); + }, + openCalendar: function(num) { + const cal_box = document.getElementById(DateTimeShortcuts.calendarDivName1 + num); + const cal_link = document.getElementById(DateTimeShortcuts.calendarLinkName + num); + const inp = DateTimeShortcuts.calendarInputs[num]; + + // Determine if the current value in the input has a valid date. + // If so, draw the calendar with that date's year and month. + if (inp.value) { + const format = get_format('DATE_INPUT_FORMATS')[0]; + const selected = inp.value.strptime(format); + const year = selected.getUTCFullYear(); + const month = selected.getUTCMonth() + 1; + const re = /\d{4}/; + if (re.test(year.toString()) && month >= 1 && month <= 12) { + DateTimeShortcuts.calendars[num].drawDate(month, year, selected); + } + } + + // Recalculate the clockbox position + // is it left-to-right or right-to-left layout ? + if (window.getComputedStyle(document.body).direction !== 'rtl') { + cal_box.style.left = findPosX(cal_link) + 17 + 'px'; + } + else { + // since style's width is in em, it'd be tough to calculate + // px value of it. let's use an estimated px for now + cal_box.style.left = findPosX(cal_link) - 180 + 'px'; + } + cal_box.style.top = Math.max(0, findPosY(cal_link) - 75) + 'px'; + + cal_box.style.display = 'block'; + document.addEventListener('click', DateTimeShortcuts.dismissCalendarFunc[num]); + }, + dismissCalendar: function(num) { + document.getElementById(DateTimeShortcuts.calendarDivName1 + num).style.display = 'none'; + document.removeEventListener('click', DateTimeShortcuts.dismissCalendarFunc[num]); + }, + drawPrev: function(num) { + DateTimeShortcuts.calendars[num].drawPreviousMonth(); + }, + drawNext: function(num) { + DateTimeShortcuts.calendars[num].drawNextMonth(); + }, + handleCalendarCallback: function(num) { + let format = get_format('DATE_INPUT_FORMATS')[0]; + // the format needs to be escaped a little + format = format.replace('\\', '\\\\') + .replace('\r', '\\r') + .replace('\n', '\\n') + .replace('\t', '\\t') + .replace("'", "\\'"); + return function(y, m, d) { + DateTimeShortcuts.calendarInputs[num].value = new Date(y, m - 1, d).strftime(format); + DateTimeShortcuts.calendarInputs[num].focus(); + document.getElementById(DateTimeShortcuts.calendarDivName1 + num).style.display = 'none'; + }; + }, + handleCalendarQuickLink: function(num, offset) { + const d = DateTimeShortcuts.now(); + d.setDate(d.getDate() + offset); + DateTimeShortcuts.calendarInputs[num].value = d.strftime(get_format('DATE_INPUT_FORMATS')[0]); + DateTimeShortcuts.calendarInputs[num].focus(); + DateTimeShortcuts.dismissCalendar(num); + } + }; + + window.addEventListener('load', DateTimeShortcuts.init); + window.DateTimeShortcuts = DateTimeShortcuts; +} diff --git a/static/admin/js/admin/RelatedObjectLookups.js b/static/admin/js/admin/RelatedObjectLookups.js new file mode 100644 index 0000000000..289e1cee26 --- /dev/null +++ b/static/admin/js/admin/RelatedObjectLookups.js @@ -0,0 +1,155 @@ +/*global SelectBox, interpolate*/ +// Handles related-objects functionality: lookup link for raw_id_fields +// and Add Another links. +'use strict'; +{ + const $ = django.jQuery; + + function showAdminPopup(triggeringLink, name_regexp, add_popup) { + const name = triggeringLink.id.replace(name_regexp, ''); + const href = new URL(triggeringLink.href); + if (add_popup) { + href.searchParams.set('_popup', 1); + } + const win = window.open(href, name, 'height=500,width=800,resizable=yes,scrollbars=yes'); + win.focus(); + return false; + } + + function showRelatedObjectLookupPopup(triggeringLink) { + return showAdminPopup(triggeringLink, /^lookup_/, true); + } + + function dismissRelatedLookupPopup(win, chosenId) { + const name = win.name; + const elem = document.getElementById(name); + if (elem.classList.contains('vManyToManyRawIdAdminField') && elem.value) { + elem.value += ',' + chosenId; + } else { + document.getElementById(name).value = chosenId; + } + win.close(); + } + + function showRelatedObjectPopup(triggeringLink) { + return showAdminPopup(triggeringLink, /^(change|add|delete)_/, false); + } + + function updateRelatedObjectLinks(triggeringLink) { + const $this = $(triggeringLink); + const siblings = $this.nextAll('.view-related, .change-related, .delete-related'); + if (!siblings.length) { + return; + } + const value = $this.val(); + if (value) { + siblings.each(function() { + const elm = $(this); + elm.attr('href', elm.attr('data-href-template').replace('__fk__', value)); + }); + } else { + siblings.removeAttr('href'); + } + } + + function dismissAddRelatedObjectPopup(win, newId, newRepr) { + const name = win.name; + const elem = document.getElementById(name); + if (elem) { + const elemName = elem.nodeName.toUpperCase(); + if (elemName === 'SELECT') { + elem.options[elem.options.length] = new Option(newRepr, newId, true, true); + } else if (elemName === 'INPUT') { + if (elem.classList.contains('vManyToManyRawIdAdminField') && elem.value) { + elem.value += ',' + newId; + } else { + elem.value = newId; + } + } + // Trigger a change event to update related links if required. + $(elem).trigger('change'); + } else { + const toId = name + "_to"; + const o = new Option(newRepr, newId); + SelectBox.add_to_cache(toId, o); + SelectBox.redisplay(toId); + } + win.close(); + } + + function dismissChangeRelatedObjectPopup(win, objId, newRepr, newId) { + const id = win.name.replace(/^edit_/, ''); + const selectsSelector = interpolate('#%s, #%s_from, #%s_to', [id, id, id]); + const selects = $(selectsSelector); + selects.find('option').each(function() { + if (this.value === objId) { + this.textContent = newRepr; + this.value = newId; + } + }); + selects.next().find('.select2-selection__rendered').each(function() { + // The element can have a clear button as a child. + // Use the lastChild to modify only the displayed value. + this.lastChild.textContent = newRepr; + this.title = newRepr; + }); + win.close(); + } + + function dismissDeleteRelatedObjectPopup(win, objId) { + const id = win.name.replace(/^delete_/, ''); + const selectsSelector = interpolate('#%s, #%s_from, #%s_to', [id, id, id]); + const selects = $(selectsSelector); + selects.find('option').each(function() { + if (this.value === objId) { + $(this).remove(); + } + }).trigger('change'); + win.close(); + } + + window.showRelatedObjectLookupPopup = showRelatedObjectLookupPopup; + window.dismissRelatedLookupPopup = dismissRelatedLookupPopup; + window.showRelatedObjectPopup = showRelatedObjectPopup; + window.updateRelatedObjectLinks = updateRelatedObjectLinks; + window.dismissAddRelatedObjectPopup = dismissAddRelatedObjectPopup; + window.dismissChangeRelatedObjectPopup = dismissChangeRelatedObjectPopup; + window.dismissDeleteRelatedObjectPopup = dismissDeleteRelatedObjectPopup; + + // Kept for backward compatibility + window.showAddAnotherPopup = showRelatedObjectPopup; + window.dismissAddAnotherPopup = dismissAddRelatedObjectPopup; + + $(document).ready(function() { + $("a[data-popup-opener]").on('click', function(event) { + event.preventDefault(); + opener.dismissRelatedLookupPopup(window, $(this).data("popup-opener")); + }); + $('body').on('click', '.related-widget-wrapper-link', function(e) { + e.preventDefault(); + if (this.href) { + const event = $.Event('django:show-related', {href: this.href}); + $(this).trigger(event); + if (!event.isDefaultPrevented()) { + showRelatedObjectPopup(this); + } + } + }); + $('body').on('change', '.related-widget-wrapper select', function(e) { + const event = $.Event('django:update-related'); + $(this).trigger(event); + if (!event.isDefaultPrevented()) { + updateRelatedObjectLinks(this); + } + }); + $('.related-widget-wrapper select').trigger('change'); + $('body').on('click', '.related-lookup', function(e) { + e.preventDefault(); + const event = $.Event('django:lookup-related'); + $(this).trigger(event); + if (!event.isDefaultPrevented()) { + showRelatedObjectLookupPopup(this); + } + }); + }); +} diff --git a/static/admin/js/autocomplete.js b/static/admin/js/autocomplete.js new file mode 100644 index 0000000000..c55eee1fa6 --- /dev/null +++ b/static/admin/js/autocomplete.js @@ -0,0 +1,41 @@ +'use strict'; +{ + const $ = django.jQuery; + const init = function($element, options) { + const settings = $.extend({ + ajax: { + data: function(params) { + return { + term: params.term, + page: params.page, + app_label: $element.data('app-label'), + model_name: $element.data('model-name'), + field_name: $element.data('field-name') + }; + } + } + }, options); + $element.select2(settings); + }; + + $.fn.djangoAdminSelect2 = function(options) { + const settings = $.extend({}, options); + $.each(this, function(i, element) { + const $element = $(element); + init($element, settings); + }); + return this; + }; + + $(function() { + // Initialize all autocomplete widgets except the one in the template + // form used when a new formset is added. + $('.admin-autocomplete').not('[name*=__prefix__]').djangoAdminSelect2(); + }); + + $(document).on('formset:added', (function() { + return function(event, $newFormset) { + return $newFormset.find('.admin-autocomplete').djangoAdminSelect2(); + }; + })(this)); +} diff --git a/static/admin/js/calendar.js b/static/admin/js/calendar.js new file mode 100644 index 0000000000..a62d10a759 --- /dev/null +++ b/static/admin/js/calendar.js @@ -0,0 +1,221 @@ +/*global gettext, pgettext, get_format, quickElement, removeChildren*/ +/* +calendar.js - Calendar functions by Adrian Holovaty +depends on core.js for utility functions like removeChildren or quickElement +*/ +'use strict'; +{ + // CalendarNamespace -- Provides a collection of HTML calendar-related helper functions + const CalendarNamespace = { + monthsOfYear: [ + gettext('January'), + gettext('February'), + gettext('March'), + gettext('April'), + gettext('May'), + gettext('June'), + gettext('July'), + gettext('August'), + gettext('September'), + gettext('October'), + gettext('November'), + gettext('December') + ], + monthsOfYearAbbrev: [ + pgettext('abbrev. month January', 'Jan'), + pgettext('abbrev. month February', 'Feb'), + pgettext('abbrev. month March', 'Mar'), + pgettext('abbrev. month April', 'Apr'), + pgettext('abbrev. month May', 'May'), + pgettext('abbrev. month June', 'Jun'), + pgettext('abbrev. month July', 'Jul'), + pgettext('abbrev. month August', 'Aug'), + pgettext('abbrev. month September', 'Sep'), + pgettext('abbrev. month October', 'Oct'), + pgettext('abbrev. month November', 'Nov'), + pgettext('abbrev. month December', 'Dec') + ], + daysOfWeek: [ + pgettext('one letter Sunday', 'S'), + pgettext('one letter Monday', 'M'), + pgettext('one letter Tuesday', 'T'), + pgettext('one letter Wednesday', 'W'), + pgettext('one letter Thursday', 'T'), + pgettext('one letter Friday', 'F'), + pgettext('one letter Saturday', 'S') + ], + firstDayOfWeek: parseInt(get_format('FIRST_DAY_OF_WEEK')), + isLeapYear: function(year) { + return (((year % 4) === 0) && ((year % 100) !== 0 ) || ((year % 400) === 0)); + }, + getDaysInMonth: function(month, year) { + let days; + if (month === 1 || month === 3 || month === 5 || month === 7 || month === 8 || month === 10 || month === 12) { + days = 31; + } + else if (month === 4 || month === 6 || month === 9 || month === 11) { + days = 30; + } + else if (month === 2 && CalendarNamespace.isLeapYear(year)) { + days = 29; + } + else { + days = 28; + } + return days; + }, + draw: function(month, year, div_id, callback, selected) { // month = 1-12, year = 1-9999 + const today = new Date(); + const todayDay = today.getDate(); + const todayMonth = today.getMonth() + 1; + const todayYear = today.getFullYear(); + let todayClass = ''; + + // Use UTC functions here because the date field does not contain time + // and using the UTC function variants prevent the local time offset + // from altering the date, specifically the day field. For example: + // + // ``` + // var x = new Date('2013-10-02'); + // var day = x.getDate(); + // ``` + // + // The day variable above will be 1 instead of 2 in, say, US Pacific time + // zone. + let isSelectedMonth = false; + if (typeof selected !== 'undefined') { + isSelectedMonth = (selected.getUTCFullYear() === year && (selected.getUTCMonth() + 1) === month); + } + + month = parseInt(month); + year = parseInt(year); + const calDiv = document.getElementById(div_id); + removeChildren(calDiv); + const calTable = document.createElement('table'); + quickElement('caption', calTable, CalendarNamespace.monthsOfYear[month - 1] + ' ' + year); + const tableBody = quickElement('tbody', calTable); + + // Draw days-of-week header + let tableRow = quickElement('tr', tableBody); + for (let i = 0; i < 7; i++) { + quickElement('th', tableRow, CalendarNamespace.daysOfWeek[(i + CalendarNamespace.firstDayOfWeek) % 7]); + } + + const startingPos = new Date(year, month - 1, 1 - CalendarNamespace.firstDayOfWeek).getDay(); + const days = CalendarNamespace.getDaysInMonth(month, year); + + let nonDayCell; + + // Draw blanks before first of month + tableRow = quickElement('tr', tableBody); + for (let i = 0; i < startingPos; i++) { + nonDayCell = quickElement('td', tableRow, ' '); + nonDayCell.className = "nonday"; + } + + function calendarMonth(y, m) { + function onClick(e) { + e.preventDefault(); + callback(y, m, this.textContent); + } + return onClick; + } + + // Draw days of month + let currentDay = 1; + for (let i = startingPos; currentDay <= days; i++) { + if (i % 7 === 0 && currentDay !== 1) { + tableRow = quickElement('tr', tableBody); + } + if ((currentDay === todayDay) && (month === todayMonth) && (year === todayYear)) { + todayClass = 'today'; + } else { + todayClass = ''; + } + + // use UTC function; see above for explanation. + if (isSelectedMonth && currentDay === selected.getUTCDate()) { + if (todayClass !== '') { + todayClass += " "; + } + todayClass += "selected"; + } + + const cell = quickElement('td', tableRow, '', 'class', todayClass); + const link = quickElement('a', cell, currentDay, 'href', '#'); + link.addEventListener('click', calendarMonth(year, month)); + currentDay++; + } + + // Draw blanks after end of month (optional, but makes for valid code) + while (tableRow.childNodes.length < 7) { + nonDayCell = quickElement('td', tableRow, ' '); + nonDayCell.className = "nonday"; + } + + calDiv.appendChild(calTable); + } + }; + + // Calendar -- A calendar instance + function Calendar(div_id, callback, selected) { + // div_id (string) is the ID of the element in which the calendar will + // be displayed + // callback (string) is the name of a JavaScript function that will be + // called with the parameters (year, month, day) when a day in the + // calendar is clicked + this.div_id = div_id; + this.callback = callback; + this.today = new Date(); + this.currentMonth = this.today.getMonth() + 1; + this.currentYear = this.today.getFullYear(); + if (typeof selected !== 'undefined') { + this.selected = selected; + } + } + Calendar.prototype = { + drawCurrent: function() { + CalendarNamespace.draw(this.currentMonth, this.currentYear, this.div_id, this.callback, this.selected); + }, + drawDate: function(month, year, selected) { + this.currentMonth = month; + this.currentYear = year; + + if(selected) { + this.selected = selected; + } + + this.drawCurrent(); + }, + drawPreviousMonth: function() { + if (this.currentMonth === 1) { + this.currentMonth = 12; + this.currentYear--; + } + else { + this.currentMonth--; + } + this.drawCurrent(); + }, + drawNextMonth: function() { + if (this.currentMonth === 12) { + this.currentMonth = 1; + this.currentYear++; + } + else { + this.currentMonth++; + } + this.drawCurrent(); + }, + drawPreviousYear: function() { + this.currentYear--; + this.drawCurrent(); + }, + drawNextYear: function() { + this.currentYear++; + this.drawCurrent(); + } + }; + window.Calendar = Calendar; + window.CalendarNamespace = CalendarNamespace; +} diff --git a/static/admin/js/cancel.js b/static/admin/js/cancel.js new file mode 100644 index 0000000000..3069c6f27b --- /dev/null +++ b/static/admin/js/cancel.js @@ -0,0 +1,29 @@ +'use strict'; +{ + // Call function fn when the DOM is loaded and ready. If it is already + // loaded, call the function now. + // http://youmightnotneedjquery.com/#ready + function ready(fn) { + if (document.readyState !== 'loading') { + fn(); + } else { + document.addEventListener('DOMContentLoaded', fn); + } + } + + ready(function() { + function handleClick(event) { + event.preventDefault(); + const params = new URLSearchParams(window.location.search); + if (params.has('_popup')) { + window.close(); // Close the popup. + } else { + window.history.back(); // Otherwise, go back. + } + } + + document.querySelectorAll('.cancel-link').forEach(function(el) { + el.addEventListener('click', handleClick); + }); + }); +} diff --git a/static/admin/js/change_form.js b/static/admin/js/change_form.js new file mode 100644 index 0000000000..96a4c62ef4 --- /dev/null +++ b/static/admin/js/change_form.js @@ -0,0 +1,16 @@ +'use strict'; +{ + const inputTags = ['BUTTON', 'INPUT', 'SELECT', 'TEXTAREA']; + const modelName = document.getElementById('django-admin-form-add-constants').dataset.modelName; + if (modelName) { + const form = document.getElementById(modelName + '_form'); + for (const element of form.elements) { + // HTMLElement.offsetParent returns null when the element is not + // rendered. + if (inputTags.includes(element.tagName) && !element.disabled && element.offsetParent) { + element.focus(); + break; + } + } + } +} diff --git a/static/admin/js/collapse.js b/static/admin/js/collapse.js new file mode 100644 index 0000000000..c6c7b0f68a --- /dev/null +++ b/static/admin/js/collapse.js @@ -0,0 +1,43 @@ +/*global gettext*/ +'use strict'; +{ + window.addEventListener('load', function() { + // Add anchor tag for Show/Hide link + const fieldsets = document.querySelectorAll('fieldset.collapse'); + for (const [i, elem] of fieldsets.entries()) { + // Don't hide if fields in this fieldset have errors + if (elem.querySelectorAll('div.errors, ul.errorlist').length === 0) { + elem.classList.add('collapsed'); + const h2 = elem.querySelector('h2'); + const link = document.createElement('a'); + link.id = 'fieldsetcollapser' + i; + link.className = 'collapse-toggle'; + link.href = '#'; + link.textContent = gettext('Show'); + h2.appendChild(document.createTextNode(' (')); + h2.appendChild(link); + h2.appendChild(document.createTextNode(')')); + } + } + // Add toggle to hide/show anchor tag + const toggleFunc = function(ev) { + if (ev.target.matches('.collapse-toggle')) { + ev.preventDefault(); + ev.stopPropagation(); + const fieldset = ev.target.closest('fieldset'); + if (fieldset.classList.contains('collapsed')) { + // Show + ev.target.textContent = gettext('Hide'); + fieldset.classList.remove('collapsed'); + } else { + // Hide + ev.target.textContent = gettext('Show'); + fieldset.classList.add('collapsed'); + } + } + }; + document.querySelectorAll('fieldset.module').forEach(function(el) { + el.addEventListener('click', toggleFunc); + }); + }); +} diff --git a/static/admin/js/core.js b/static/admin/js/core.js new file mode 100644 index 0000000000..3a2e4aa728 --- /dev/null +++ b/static/admin/js/core.js @@ -0,0 +1,170 @@ +// Core javascript helper functions +'use strict'; + +// quickElement(tagType, parentReference [, textInChildNode, attribute, attributeValue ...]); +function quickElement() { + const obj = document.createElement(arguments[0]); + if (arguments[2]) { + const textNode = document.createTextNode(arguments[2]); + obj.appendChild(textNode); + } + const len = arguments.length; + for (let i = 3; i < len; i += 2) { + obj.setAttribute(arguments[i], arguments[i + 1]); + } + arguments[1].appendChild(obj); + return obj; +} + +// "a" is reference to an object +function removeChildren(a) { + while (a.hasChildNodes()) { + a.removeChild(a.lastChild); + } +} + +// ---------------------------------------------------------------------------- +// Find-position functions by PPK +// See https://www.quirksmode.org/js/findpos.html +// ---------------------------------------------------------------------------- +function findPosX(obj) { + let curleft = 0; + if (obj.offsetParent) { + while (obj.offsetParent) { + curleft += obj.offsetLeft - obj.scrollLeft; + obj = obj.offsetParent; + } + } else if (obj.x) { + curleft += obj.x; + } + return curleft; +} + +function findPosY(obj) { + let curtop = 0; + if (obj.offsetParent) { + while (obj.offsetParent) { + curtop += obj.offsetTop - obj.scrollTop; + obj = obj.offsetParent; + } + } else if (obj.y) { + curtop += obj.y; + } + return curtop; +} + +//----------------------------------------------------------------------------- +// Date object extensions +// ---------------------------------------------------------------------------- +{ + Date.prototype.getTwelveHours = function() { + return this.getHours() % 12 || 12; + }; + + Date.prototype.getTwoDigitMonth = function() { + return (this.getMonth() < 9) ? '0' + (this.getMonth() + 1) : (this.getMonth() + 1); + }; + + Date.prototype.getTwoDigitDate = function() { + return (this.getDate() < 10) ? '0' + this.getDate() : this.getDate(); + }; + + Date.prototype.getTwoDigitTwelveHour = function() { + return (this.getTwelveHours() < 10) ? '0' + this.getTwelveHours() : this.getTwelveHours(); + }; + + Date.prototype.getTwoDigitHour = function() { + return (this.getHours() < 10) ? '0' + this.getHours() : this.getHours(); + }; + + Date.prototype.getTwoDigitMinute = function() { + return (this.getMinutes() < 10) ? '0' + this.getMinutes() : this.getMinutes(); + }; + + Date.prototype.getTwoDigitSecond = function() { + return (this.getSeconds() < 10) ? '0' + this.getSeconds() : this.getSeconds(); + }; + + Date.prototype.getAbbrevMonthName = function() { + return typeof window.CalendarNamespace === "undefined" + ? this.getTwoDigitMonth() + : window.CalendarNamespace.monthsOfYearAbbrev[this.getMonth()]; + }; + + Date.prototype.getFullMonthName = function() { + return typeof window.CalendarNamespace === "undefined" + ? this.getTwoDigitMonth() + : window.CalendarNamespace.monthsOfYear[this.getMonth()]; + }; + + Date.prototype.strftime = function(format) { + const fields = { + b: this.getAbbrevMonthName(), + B: this.getFullMonthName(), + c: this.toString(), + d: this.getTwoDigitDate(), + H: this.getTwoDigitHour(), + I: this.getTwoDigitTwelveHour(), + m: this.getTwoDigitMonth(), + M: this.getTwoDigitMinute(), + p: (this.getHours() >= 12) ? 'PM' : 'AM', + S: this.getTwoDigitSecond(), + w: '0' + this.getDay(), + x: this.toLocaleDateString(), + X: this.toLocaleTimeString(), + y: ('' + this.getFullYear()).substr(2, 4), + Y: '' + this.getFullYear(), + '%': '%' + }; + let result = '', i = 0; + while (i < format.length) { + if (format.charAt(i) === '%') { + result = result + fields[format.charAt(i + 1)]; + ++i; + } + else { + result = result + format.charAt(i); + } + ++i; + } + return result; + }; + + // ---------------------------------------------------------------------------- + // String object extensions + // ---------------------------------------------------------------------------- + String.prototype.strptime = function(format) { + const split_format = format.split(/[.\-/]/); + const date = this.split(/[.\-/]/); + let i = 0; + let day, month, year; + while (i < split_format.length) { + switch (split_format[i]) { + case "%d": + day = date[i]; + break; + case "%m": + month = date[i] - 1; + break; + case "%Y": + year = date[i]; + break; + case "%y": + // A %y value in the range of [00, 68] is in the current + // century, while [69, 99] is in the previous century, + // according to the Open Group Specification. + if (parseInt(date[i], 10) >= 69) { + year = date[i]; + } else { + year = (new Date(Date.UTC(date[i], 0))).getUTCFullYear() + 100; + } + break; + } + ++i; + } + // Create Date object from UTC since the parsed value is supposed to be + // in UTC, not local time. Also, the calendar uses UTC functions for + // date extraction. + return new Date(Date.UTC(year, month, day)); + }; +} diff --git a/static/admin/js/inlines.js b/static/admin/js/inlines.js new file mode 100644 index 0000000000..82ec027237 --- /dev/null +++ b/static/admin/js/inlines.js @@ -0,0 +1,348 @@ +/*global DateTimeShortcuts, SelectFilter*/ +/** + * Django admin inlines + * + * Based on jQuery Formset 1.1 + * @author Stanislaus Madueke (stan DOT madueke AT gmail DOT com) + * @requires jQuery 1.2.6 or later + * + * Copyright (c) 2009, Stanislaus Madueke + * All rights reserved. + * + * Spiced up with Code from Zain Memon's GSoC project 2009 + * and modified for Django by Jannis Leidel, Travis Swicegood and Julien Phalip. + * + * Licensed under the New BSD License + * See: https://opensource.org/licenses/bsd-license.php + */ +'use strict'; +{ + const $ = django.jQuery; + $.fn.formset = function(opts) { + const options = $.extend({}, $.fn.formset.defaults, opts); + const $this = $(this); + const $parent = $this.parent(); + const updateElementIndex = function(el, prefix, ndx) { + const id_regex = new RegExp("(" + prefix + "-(\\d+|__prefix__))"); + const replacement = prefix + "-" + ndx; + if ($(el).prop("for")) { + $(el).prop("for", $(el).prop("for").replace(id_regex, replacement)); + } + if (el.id) { + el.id = el.id.replace(id_regex, replacement); + } + if (el.name) { + el.name = el.name.replace(id_regex, replacement); + } + }; + const totalForms = $("#id_" + options.prefix + "-TOTAL_FORMS").prop("autocomplete", "off"); + let nextIndex = parseInt(totalForms.val(), 10); + const maxForms = $("#id_" + options.prefix + "-MAX_NUM_FORMS").prop("autocomplete", "off"); + const minForms = $("#id_" + options.prefix + "-MIN_NUM_FORMS").prop("autocomplete", "off"); + let addButton; + + /** + * The "Add another MyModel" button below the inline forms. + */ + const addInlineAddButton = function() { + if (addButton === null) { + if ($this.prop("tagName") === "TR") { + // If forms are laid out as table rows, insert the + // "add" button in a new table row: + const numCols = $this.eq(-1).children().length; + $parent.append('' + options.addText + ""); + addButton = $parent.find("tr:last a"); + } else { + // Otherwise, insert it immediately after the last form: + $this.filter(":last").after('"); + addButton = $this.filter(":last").next().find("a"); + } + } + addButton.on('click', addInlineClickHandler); + }; + + const addInlineClickHandler = function(e) { + e.preventDefault(); + const template = $("#" + options.prefix + "-empty"); + const row = template.clone(true); + row.removeClass(options.emptyCssClass) + .addClass(options.formCssClass) + .attr("id", options.prefix + "-" + nextIndex); + addInlineDeleteButton(row); + row.find("*").each(function() { + updateElementIndex(this, options.prefix, totalForms.val()); + }); + // Insert the new form when it has been fully edited. + row.insertBefore($(template)); + // Update number of total forms. + $(totalForms).val(parseInt(totalForms.val(), 10) + 1); + nextIndex += 1; + // Hide the add button if there's a limit and it's been reached. + if ((maxForms.val() !== '') && (maxForms.val() - totalForms.val()) <= 0) { + addButton.parent().hide(); + } + // Show the remove buttons if there are more than min_num. + toggleDeleteButtonVisibility(row.closest('.inline-group')); + + // Pass the new form to the post-add callback, if provided. + if (options.added) { + options.added(row); + } + $(document).trigger('formset:added', [row, options.prefix]); + }; + + /** + * The "X" button that is part of every unsaved inline. + * (When saved, it is replaced with a "Delete" checkbox.) + */ + const addInlineDeleteButton = function(row) { + if (row.is("tr")) { + // If the forms are laid out in table rows, insert + // the remove button into the last table cell: + row.children(":last").append('"); + } else if (row.is("ul") || row.is("ol")) { + // If they're laid out as an ordered/unordered list, + // insert an
    • after the last list item: + row.append('
    • ' + options.deleteText + "
    • "); + } else { + // Otherwise, just insert the remove button as the + // last child element of the form's container: + row.children(":first").append('' + options.deleteText + ""); + } + // Add delete handler for each row. + row.find("a." + options.deleteCssClass).on('click', inlineDeleteHandler.bind(this)); + }; + + const inlineDeleteHandler = function(e1) { + e1.preventDefault(); + const deleteButton = $(e1.target); + const row = deleteButton.closest('.' + options.formCssClass); + const inlineGroup = row.closest('.inline-group'); + // Remove the parent form containing this button, + // and also remove the relevant row with non-field errors: + const prevRow = row.prev(); + if (prevRow.length && prevRow.hasClass('row-form-errors')) { + prevRow.remove(); + } + row.remove(); + nextIndex -= 1; + // Pass the deleted form to the post-delete callback, if provided. + if (options.removed) { + options.removed(row); + } + $(document).trigger('formset:removed', [row, options.prefix]); + // Update the TOTAL_FORMS form count. + const forms = $("." + options.formCssClass); + $("#id_" + options.prefix + "-TOTAL_FORMS").val(forms.length); + // Show add button again once below maximum number. + if ((maxForms.val() === '') || (maxForms.val() - forms.length) > 0) { + addButton.parent().show(); + } + // Hide the remove buttons if at min_num. + toggleDeleteButtonVisibility(inlineGroup); + // Also, update names and ids for all remaining form controls so + // they remain in sequence: + let i, formCount; + const updateElementCallback = function() { + updateElementIndex(this, options.prefix, i); + }; + for (i = 0, formCount = forms.length; i < formCount; i++) { + updateElementIndex($(forms).get(i), options.prefix, i); + $(forms.get(i)).find("*").each(updateElementCallback); + } + }; + + const toggleDeleteButtonVisibility = function(inlineGroup) { + if ((minForms.val() !== '') && (minForms.val() - totalForms.val()) >= 0) { + inlineGroup.find('.inline-deletelink').hide(); + } else { + inlineGroup.find('.inline-deletelink').show(); + } + }; + + $this.each(function(i) { + $(this).not("." + options.emptyCssClass).addClass(options.formCssClass); + }); + + // Create the delete buttons for all unsaved inlines: + $this.filter('.' + options.formCssClass + ':not(.has_original):not(.' + options.emptyCssClass + ')').each(function() { + addInlineDeleteButton($(this)); + }); + toggleDeleteButtonVisibility($this); + + // Create the add button, initially hidden. + addButton = options.addButton; + addInlineAddButton(); + + // Show the add button if allowed to add more items. + // Note that max_num = None translates to a blank string. + const showAddButton = maxForms.val() === '' || (maxForms.val() - totalForms.val()) > 0; + if ($this.length && showAddButton) { + addButton.parent().show(); + } else { + addButton.parent().hide(); + } + + return this; + }; + + /* Setup plugin defaults */ + $.fn.formset.defaults = { + prefix: "form", // The form prefix for your django formset + addText: "add another", // Text for the add link + deleteText: "remove", // Text for the delete link + addCssClass: "add-row", // CSS class applied to the add link + deleteCssClass: "delete-row", // CSS class applied to the delete link + emptyCssClass: "empty-row", // CSS class applied to the empty row + formCssClass: "dynamic-form", // CSS class applied to each form in a formset + added: null, // Function called each time a new form is added + removed: null, // Function called each time a form is deleted + addButton: null // Existing add button to use + }; + + + // Tabular inlines --------------------------------------------------------- + $.fn.tabularFormset = function(selector, options) { + const $rows = $(this); + + const reinitDateTimeShortCuts = function() { + // Reinitialize the calendar and clock widgets by force + if (typeof DateTimeShortcuts !== "undefined") { + $(".datetimeshortcuts").remove(); + DateTimeShortcuts.init(); + } + }; + + const updateSelectFilter = function() { + // If any SelectFilter widgets are a part of the new form, + // instantiate a new SelectFilter instance for it. + if (typeof SelectFilter !== 'undefined') { + $('.selectfilter').each(function(index, value) { + const namearr = value.name.split('-'); + SelectFilter.init(value.id, namearr[namearr.length - 1], false); + }); + $('.selectfilterstacked').each(function(index, value) { + const namearr = value.name.split('-'); + SelectFilter.init(value.id, namearr[namearr.length - 1], true); + }); + } + }; + + const initPrepopulatedFields = function(row) { + row.find('.prepopulated_field').each(function() { + const field = $(this), + input = field.find('input, select, textarea'), + dependency_list = input.data('dependency_list') || [], + dependencies = []; + $.each(dependency_list, function(i, field_name) { + dependencies.push('#' + row.find('.field-' + field_name).find('input, select, textarea').attr('id')); + }); + if (dependencies.length) { + input.prepopulate(dependencies, input.attr('maxlength')); + } + }); + }; + + $rows.formset({ + prefix: options.prefix, + addText: options.addText, + formCssClass: "dynamic-" + options.prefix, + deleteCssClass: "inline-deletelink", + deleteText: options.deleteText, + emptyCssClass: "empty-form", + added: function(row) { + initPrepopulatedFields(row); + reinitDateTimeShortCuts(); + updateSelectFilter(); + }, + addButton: options.addButton + }); + + return $rows; + }; + + // Stacked inlines --------------------------------------------------------- + $.fn.stackedFormset = function(selector, options) { + const $rows = $(this); + const updateInlineLabel = function(row) { + $(selector).find(".inline_label").each(function(i) { + const count = i + 1; + $(this).html($(this).html().replace(/(#\d+)/g, "#" + count)); + }); + }; + + const reinitDateTimeShortCuts = function() { + // Reinitialize the calendar and clock widgets by force, yuck. + if (typeof DateTimeShortcuts !== "undefined") { + $(".datetimeshortcuts").remove(); + DateTimeShortcuts.init(); + } + }; + + const updateSelectFilter = function() { + // If any SelectFilter widgets were added, instantiate a new instance. + if (typeof SelectFilter !== "undefined") { + $(".selectfilter").each(function(index, value) { + const namearr = value.name.split('-'); + SelectFilter.init(value.id, namearr[namearr.length - 1], false); + }); + $(".selectfilterstacked").each(function(index, value) { + const namearr = value.name.split('-'); + SelectFilter.init(value.id, namearr[namearr.length - 1], true); + }); + } + }; + + const initPrepopulatedFields = function(row) { + row.find('.prepopulated_field').each(function() { + const field = $(this), + input = field.find('input, select, textarea'), + dependency_list = input.data('dependency_list') || [], + dependencies = []; + $.each(dependency_list, function(i, field_name) { + dependencies.push('#' + row.find('.form-row .field-' + field_name).find('input, select, textarea').attr('id')); + }); + if (dependencies.length) { + input.prepopulate(dependencies, input.attr('maxlength')); + } + }); + }; + + $rows.formset({ + prefix: options.prefix, + addText: options.addText, + formCssClass: "dynamic-" + options.prefix, + deleteCssClass: "inline-deletelink", + deleteText: options.deleteText, + emptyCssClass: "empty-form", + removed: updateInlineLabel, + added: function(row) { + initPrepopulatedFields(row); + reinitDateTimeShortCuts(); + updateSelectFilter(); + updateInlineLabel(row); + }, + addButton: options.addButton + }); + + return $rows; + }; + + $(document).ready(function() { + $(".js-inline-admin-formset").each(function() { + const data = $(this).data(), + inlineOptions = data.inlineFormset; + let selector; + switch(data.inlineType) { + case "stacked": + selector = inlineOptions.name + "-group .inline-related"; + $(selector).stackedFormset(selector, inlineOptions.options); + break; + case "tabular": + selector = inlineOptions.name + "-group .tabular.inline-related tbody:first > tr.form-row"; + $(selector).tabularFormset(selector, inlineOptions.options); + break; + } + }); + }); +} diff --git a/static/admin/js/jquery.init.js b/static/admin/js/jquery.init.js new file mode 100644 index 0000000000..f40b27f47d --- /dev/null +++ b/static/admin/js/jquery.init.js @@ -0,0 +1,8 @@ +/*global jQuery:false*/ +'use strict'; +/* Puts the included jQuery into our own namespace using noConflict and passing + * it 'true'. This ensures that the included jQuery doesn't pollute the global + * namespace (i.e. this preserves pre-existing values for both window.$ and + * window.jQuery). + */ +window.django = {jQuery: jQuery.noConflict(true)}; diff --git a/static/admin/js/nav_sidebar.js b/static/admin/js/nav_sidebar.js new file mode 100644 index 0000000000..efaa7214b8 --- /dev/null +++ b/static/admin/js/nav_sidebar.js @@ -0,0 +1,39 @@ +'use strict'; +{ + const toggleNavSidebar = document.getElementById('toggle-nav-sidebar'); + if (toggleNavSidebar !== null) { + const navLinks = document.querySelectorAll('#nav-sidebar a'); + function disableNavLinkTabbing() { + for (const navLink of navLinks) { + navLink.tabIndex = -1; + } + } + function enableNavLinkTabbing() { + for (const navLink of navLinks) { + navLink.tabIndex = 0; + } + } + + const main = document.getElementById('main'); + let navSidebarIsOpen = localStorage.getItem('django.admin.navSidebarIsOpen'); + if (navSidebarIsOpen === null) { + navSidebarIsOpen = 'true'; + } + if (navSidebarIsOpen === 'false') { + disableNavLinkTabbing(); + } + main.classList.toggle('shifted', navSidebarIsOpen === 'true'); + + toggleNavSidebar.addEventListener('click', function() { + if (navSidebarIsOpen === 'true') { + navSidebarIsOpen = 'false'; + disableNavLinkTabbing(); + } else { + navSidebarIsOpen = 'true'; + enableNavLinkTabbing(); + } + localStorage.setItem('django.admin.navSidebarIsOpen', navSidebarIsOpen); + main.classList.toggle('shifted'); + }); + } +} diff --git a/static/admin/js/popup_response.js b/static/admin/js/popup_response.js new file mode 100644 index 0000000000..2b1d3dd31d --- /dev/null +++ b/static/admin/js/popup_response.js @@ -0,0 +1,16 @@ +/*global opener */ +'use strict'; +{ + const initData = JSON.parse(document.getElementById('django-admin-popup-response-constants').dataset.popupResponse); + switch(initData.action) { + case 'change': + opener.dismissChangeRelatedObjectPopup(window, initData.value, initData.obj, initData.new_value); + break; + case 'delete': + opener.dismissDeleteRelatedObjectPopup(window, initData.value); + break; + default: + opener.dismissAddRelatedObjectPopup(window, initData.value, initData.obj); + break; + } +} diff --git a/static/admin/js/prepopulate.js b/static/admin/js/prepopulate.js new file mode 100644 index 0000000000..89e95ab44d --- /dev/null +++ b/static/admin/js/prepopulate.js @@ -0,0 +1,43 @@ +/*global URLify*/ +'use strict'; +{ + const $ = django.jQuery; + $.fn.prepopulate = function(dependencies, maxLength, allowUnicode) { + /* + Depends on urlify.js + Populates a selected field with the values of the dependent fields, + URLifies and shortens the string. + dependencies - array of dependent fields ids + maxLength - maximum length of the URLify'd string + allowUnicode - Unicode support of the URLify'd string + */ + return this.each(function() { + const prepopulatedField = $(this); + + const populate = function() { + // Bail if the field's value has been changed by the user + if (prepopulatedField.data('_changed')) { + return; + } + + const values = []; + $.each(dependencies, function(i, field) { + field = $(field); + if (field.val().length > 0) { + values.push(field.val()); + } + }); + prepopulatedField.val(URLify(values.join(' '), maxLength, allowUnicode)); + }; + + prepopulatedField.data('_changed', false); + prepopulatedField.on('change', function() { + prepopulatedField.data('_changed', true); + }); + + if (!prepopulatedField.val()) { + $(dependencies.join(',')).on('keyup change focus', populate); + } + }); + }; +} diff --git a/static/admin/js/prepopulate_init.js b/static/admin/js/prepopulate_init.js new file mode 100644 index 0000000000..72ebdcf5d8 --- /dev/null +++ b/static/admin/js/prepopulate_init.js @@ -0,0 +1,11 @@ +'use strict'; +{ + const $ = django.jQuery; + const fields = $('#django-admin-prepopulated-fields-constants').data('prepopulatedFields'); + $.each(fields, function(index, field) { + $('.empty-form .form-row .field-' + field.name + ', .empty-form.form-row .field-' + field.name).addClass('prepopulated_field'); + $(field.id).data('dependency_list', field.dependency_list).prepopulate( + field.dependency_ids, field.maxLength, field.allowUnicode + ); + }); +} diff --git a/static/admin/js/urlify.js b/static/admin/js/urlify.js new file mode 100644 index 0000000000..61dedb23e9 --- /dev/null +++ b/static/admin/js/urlify.js @@ -0,0 +1,170 @@ +/*global XRegExp*/ +'use strict'; +{ + const LATIN_MAP = { + 'À': 'A', 'Á': 'A', 'Â': 'A', 'Ã': 'A', 'Ä': 'A', 'Å': 'A', 'Æ': 'AE', + 'Ç': 'C', 'È': 'E', 'É': 'E', 'Ê': 'E', 'Ë': 'E', 'Ì': 'I', 'Í': 'I', + 'Î': 'I', 'Ï': 'I', 'Ð': 'D', 'Ñ': 'N', 'Ò': 'O', 'Ó': 'O', 'Ô': 'O', + 'Õ': 'O', 'Ö': 'O', 'Ő': 'O', 'Ø': 'O', 'Ù': 'U', 'Ú': 'U', 'Û': 'U', + 'Ü': 'U', 'Ű': 'U', 'Ý': 'Y', 'Þ': 'TH', 'Ÿ': 'Y', 'ß': 'ss', 'à': 'a', + 'á': 'a', 'â': 'a', 'ã': 'a', 'ä': 'a', 'å': 'a', 'æ': 'ae', 'ç': 'c', + 'è': 'e', 'é': 'e', 'ê': 'e', 'ë': 'e', 'ì': 'i', 'í': 'i', 'î': 'i', + 'ï': 'i', 'ð': 'd', 'ñ': 'n', 'ò': 'o', 'ó': 'o', 'ô': 'o', 'õ': 'o', + 'ö': 'o', 'ő': 'o', 'ø': 'o', 'ù': 'u', 'ú': 'u', 'û': 'u', 'ü': 'u', + 'ű': 'u', 'ý': 'y', 'þ': 'th', 'ÿ': 'y' + }; + const LATIN_SYMBOLS_MAP = { + '©': '(c)' + }; + const GREEK_MAP = { + 'α': 'a', 'β': 'b', 'γ': 'g', 'δ': 'd', 'ε': 'e', 'ζ': 'z', 'η': 'h', + 'θ': '8', 'ι': 'i', 'κ': 'k', 'λ': 'l', 'μ': 'm', 'ν': 'n', 'ξ': '3', + 'ο': 'o', 'π': 'p', 'ρ': 'r', 'σ': 's', 'τ': 't', 'υ': 'y', 'φ': 'f', + 'χ': 'x', 'ψ': 'ps', 'ω': 'w', 'ά': 'a', 'έ': 'e', 'ί': 'i', 'ό': 'o', + 'ύ': 'y', 'ή': 'h', 'ώ': 'w', 'ς': 's', 'ϊ': 'i', 'ΰ': 'y', 'ϋ': 'y', + 'ΐ': 'i', 'Α': 'A', 'Β': 'B', 'Γ': 'G', 'Δ': 'D', 'Ε': 'E', 'Ζ': 'Z', + 'Η': 'H', 'Θ': '8', 'Ι': 'I', 'Κ': 'K', 'Λ': 'L', 'Μ': 'M', 'Ν': 'N', + 'Ξ': '3', 'Ο': 'O', 'Π': 'P', 'Ρ': 'R', 'Σ': 'S', 'Τ': 'T', 'Υ': 'Y', + 'Φ': 'F', 'Χ': 'X', 'Ψ': 'PS', 'Ω': 'W', 'Ά': 'A', 'Έ': 'E', 'Ί': 'I', + 'Ό': 'O', 'Ύ': 'Y', 'Ή': 'H', 'Ώ': 'W', 'Ϊ': 'I', 'Ϋ': 'Y' + }; + const TURKISH_MAP = { + 'ş': 's', 'Ş': 'S', 'ı': 'i', 'İ': 'I', 'ç': 'c', 'Ç': 'C', 'ü': 'u', + 'Ü': 'U', 'ö': 'o', 'Ö': 'O', 'ğ': 'g', 'Ğ': 'G' + }; + const ROMANIAN_MAP = { + 'ă': 'a', 'î': 'i', 'ș': 's', 'ț': 't', 'â': 'a', + 'Ă': 'A', 'Î': 'I', 'Ș': 'S', 'Ț': 'T', 'Â': 'A' + }; + const RUSSIAN_MAP = { + 'а': 'a', 'б': 'b', 'в': 'v', 'г': 'g', 'д': 'd', 'е': 'e', 'ё': 'yo', + 'ж': 'zh', 'з': 'z', 'и': 'i', 'й': 'j', 'к': 'k', 'л': 'l', 'м': 'm', + 'н': 'n', 'о': 'o', 'п': 'p', 'р': 'r', 'с': 's', 'т': 't', 'у': 'u', + 'ф': 'f', 'х': 'h', 'ц': 'c', 'ч': 'ch', 'ш': 'sh', 'щ': 'sh', 'ъ': '', + 'ы': 'y', 'ь': '', 'э': 'e', 'ю': 'yu', 'я': 'ya', + 'А': 'A', 'Б': 'B', 'В': 'V', 'Г': 'G', 'Д': 'D', 'Е': 'E', 'Ё': 'Yo', + 'Ж': 'Zh', 'З': 'Z', 'И': 'I', 'Й': 'J', 'К': 'K', 'Л': 'L', 'М': 'M', + 'Н': 'N', 'О': 'O', 'П': 'P', 'Р': 'R', 'С': 'S', 'Т': 'T', 'У': 'U', + 'Ф': 'F', 'Х': 'H', 'Ц': 'C', 'Ч': 'Ch', 'Ш': 'Sh', 'Щ': 'Sh', 'Ъ': '', + 'Ы': 'Y', 'Ь': '', 'Э': 'E', 'Ю': 'Yu', 'Я': 'Ya' + }; + const UKRAINIAN_MAP = { + 'Є': 'Ye', 'І': 'I', 'Ї': 'Yi', 'Ґ': 'G', 'є': 'ye', 'і': 'i', + 'ї': 'yi', 'ґ': 'g' + }; + const CZECH_MAP = { + 'č': 'c', 'ď': 'd', 'ě': 'e', 'ň': 'n', 'ř': 'r', 'š': 's', 'ť': 't', + 'ů': 'u', 'ž': 'z', 'Č': 'C', 'Ď': 'D', 'Ě': 'E', 'Ň': 'N', 'Ř': 'R', + 'Š': 'S', 'Ť': 'T', 'Ů': 'U', 'Ž': 'Z' + }; + const SLOVAK_MAP = { + 'á': 'a', 'ä': 'a', 'č': 'c', 'ď': 'd', 'é': 'e', 'í': 'i', 'ľ': 'l', + 'ĺ': 'l', 'ň': 'n', 'ó': 'o', 'ô': 'o', 'ŕ': 'r', 'š': 's', 'ť': 't', + 'ú': 'u', 'ý': 'y', 'ž': 'z', + 'Á': 'a', 'Ä': 'A', 'Č': 'C', 'Ď': 'D', 'É': 'E', 'Í': 'I', 'Ľ': 'L', + 'Ĺ': 'L', 'Ň': 'N', 'Ó': 'O', 'Ô': 'O', 'Ŕ': 'R', 'Š': 'S', 'Ť': 'T', + 'Ú': 'U', 'Ý': 'Y', 'Ž': 'Z' + }; + const POLISH_MAP = { + 'ą': 'a', 'ć': 'c', 'ę': 'e', 'ł': 'l', 'ń': 'n', 'ó': 'o', 'ś': 's', + 'ź': 'z', 'ż': 'z', + 'Ą': 'A', 'Ć': 'C', 'Ę': 'E', 'Ł': 'L', 'Ń': 'N', 'Ó': 'O', 'Ś': 'S', + 'Ź': 'Z', 'Ż': 'Z' + }; + const LATVIAN_MAP = { + 'ā': 'a', 'č': 'c', 'ē': 'e', 'ģ': 'g', 'ī': 'i', 'ķ': 'k', 'ļ': 'l', + 'ņ': 'n', 'š': 's', 'ū': 'u', 'ž': 'z', + 'Ā': 'A', 'Č': 'C', 'Ē': 'E', 'Ģ': 'G', 'Ī': 'I', 'Ķ': 'K', 'Ļ': 'L', + 'Ņ': 'N', 'Š': 'S', 'Ū': 'U', 'Ž': 'Z' + }; + const ARABIC_MAP = { + 'أ': 'a', 'ب': 'b', 'ت': 't', 'ث': 'th', 'ج': 'g', 'ح': 'h', 'خ': 'kh', 'د': 'd', + 'ذ': 'th', 'ر': 'r', 'ز': 'z', 'س': 's', 'ش': 'sh', 'ص': 's', 'ض': 'd', 'ط': 't', + 'ظ': 'th', 'ع': 'aa', 'غ': 'gh', 'ف': 'f', 'ق': 'k', 'ك': 'k', 'ل': 'l', 'م': 'm', + 'ن': 'n', 'ه': 'h', 'و': 'o', 'ي': 'y' + }; + const LITHUANIAN_MAP = { + 'ą': 'a', 'č': 'c', 'ę': 'e', 'ė': 'e', 'į': 'i', 'š': 's', 'ų': 'u', + 'ū': 'u', 'ž': 'z', + 'Ą': 'A', 'Č': 'C', 'Ę': 'E', 'Ė': 'E', 'Į': 'I', 'Š': 'S', 'Ų': 'U', + 'Ū': 'U', 'Ž': 'Z' + }; + const SERBIAN_MAP = { + 'ђ': 'dj', 'ј': 'j', 'љ': 'lj', 'њ': 'nj', 'ћ': 'c', 'џ': 'dz', + 'đ': 'dj', 'Ђ': 'Dj', 'Ј': 'j', 'Љ': 'Lj', 'Њ': 'Nj', 'Ћ': 'C', + 'Џ': 'Dz', 'Đ': 'Dj' + }; + const AZERBAIJANI_MAP = { + 'ç': 'c', 'ə': 'e', 'ğ': 'g', 'ı': 'i', 'ö': 'o', 'ş': 's', 'ü': 'u', + 'Ç': 'C', 'Ə': 'E', 'Ğ': 'G', 'İ': 'I', 'Ö': 'O', 'Ş': 'S', 'Ü': 'U' + }; + const GEORGIAN_MAP = { + 'ა': 'a', 'ბ': 'b', 'გ': 'g', 'დ': 'd', 'ე': 'e', 'ვ': 'v', 'ზ': 'z', + 'თ': 't', 'ი': 'i', 'კ': 'k', 'ლ': 'l', 'მ': 'm', 'ნ': 'n', 'ო': 'o', + 'პ': 'p', 'ჟ': 'j', 'რ': 'r', 'ს': 's', 'ტ': 't', 'უ': 'u', 'ფ': 'f', + 'ქ': 'q', 'ღ': 'g', 'ყ': 'y', 'შ': 'sh', 'ჩ': 'ch', 'ც': 'c', 'ძ': 'dz', + 'წ': 'w', 'ჭ': 'ch', 'ხ': 'x', 'ჯ': 'j', 'ჰ': 'h' + }; + + const ALL_DOWNCODE_MAPS = [ + LATIN_MAP, + LATIN_SYMBOLS_MAP, + GREEK_MAP, + TURKISH_MAP, + ROMANIAN_MAP, + RUSSIAN_MAP, + UKRAINIAN_MAP, + CZECH_MAP, + SLOVAK_MAP, + POLISH_MAP, + LATVIAN_MAP, + ARABIC_MAP, + LITHUANIAN_MAP, + SERBIAN_MAP, + AZERBAIJANI_MAP, + GEORGIAN_MAP + ]; + + const Downcoder = { + 'Initialize': function() { + if (Downcoder.map) { // already made + return; + } + Downcoder.map = {}; + for (const lookup of ALL_DOWNCODE_MAPS) { + Object.assign(Downcoder.map, lookup); + } + Downcoder.regex = new RegExp(Object.keys(Downcoder.map).join('|'), 'g'); + } + }; + + function downcode(slug) { + Downcoder.Initialize(); + return slug.replace(Downcoder.regex, function(m) { + return Downcoder.map[m]; + }); + } + + + function URLify(s, num_chars, allowUnicode) { + // changes, e.g., "Petty theft" to "petty-theft" + if (!allowUnicode) { + s = downcode(s); + } + s = s.toLowerCase(); // convert to lowercase + // if downcode doesn't hit, the char will be stripped here + if (allowUnicode) { + // Keep Unicode letters including both lowercase and uppercase + // characters, whitespace, and dash; remove other characters. + s = XRegExp.replace(s, XRegExp('[^-_\\p{L}\\p{N}\\s]', 'g'), ''); + } else { + s = s.replace(/[^-\w\s]/g, ''); // remove unneeded chars + } + s = s.replace(/^\s+|\s+$/g, ''); // trim leading/trailing spaces + s = s.replace(/[-\s]+/g, '-'); // convert spaces to hyphens + s = s.substring(0, num_chars); // trim to first num_chars chars + s = s.replace(/-+$/g, ''); // trim any trailing hyphens + return s; + } + window.URLify = URLify; +} diff --git a/static/admin/js/vendor/jquery/LICENSE.txt b/static/admin/js/vendor/jquery/LICENSE.txt new file mode 100644 index 0000000000..e3dbacb999 --- /dev/null +++ b/static/admin/js/vendor/jquery/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright JS Foundation and other contributors, https://js.foundation/ + +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/static/admin/js/vendor/jquery/jquery.js b/static/admin/js/vendor/jquery/jquery.js new file mode 100644 index 0000000000..50937333b9 --- /dev/null +++ b/static/admin/js/vendor/jquery/jquery.js @@ -0,0 +1,10872 @@ +/*! + * jQuery JavaScript Library v3.5.1 + * https://jquery.com/ + * + * Includes Sizzle.js + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://jquery.org/license + * + * Date: 2020-05-04T22:49Z + */ +( function( global, factory ) { + + "use strict"; + + if ( typeof module === "object" && typeof module.exports === "object" ) { + + // For CommonJS and CommonJS-like environments where a proper `window` + // is present, execute the factory and get jQuery. + // For environments that do not have a `window` with a `document` + // (such as Node.js), expose a factory as module.exports. + // This accentuates the need for the creation of a real `window`. + // e.g. var jQuery = require("jquery")(window); + // See ticket #14549 for more info. + module.exports = global.document ? + factory( global, true ) : + function( w ) { + if ( !w.document ) { + throw new Error( "jQuery requires a window with a document" ); + } + return factory( w ); + }; + } else { + factory( global ); + } + +// Pass this if window is not defined yet +} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { + +// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 +// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode +// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common +// enough that all such attempts are guarded in a try block. +"use strict"; + +var arr = []; + +var getProto = Object.getPrototypeOf; + +var slice = arr.slice; + +var flat = arr.flat ? function( array ) { + return arr.flat.call( array ); +} : function( array ) { + return arr.concat.apply( [], array ); +}; + + +var push = arr.push; + +var indexOf = arr.indexOf; + +var class2type = {}; + +var toString = class2type.toString; + +var hasOwn = class2type.hasOwnProperty; + +var fnToString = hasOwn.toString; + +var ObjectFunctionString = fnToString.call( Object ); + +var support = {}; + +var isFunction = function isFunction( obj ) { + + // Support: Chrome <=57, Firefox <=52 + // In some browsers, typeof returns "function" for HTML elements + // (i.e., `typeof document.createElement( "object" ) === "function"`). + // We don't want to classify *any* DOM node as a function. + return typeof obj === "function" && typeof obj.nodeType !== "number"; + }; + + +var isWindow = function isWindow( obj ) { + return obj != null && obj === obj.window; + }; + + +var document = window.document; + + + + var preservedScriptAttributes = { + type: true, + src: true, + nonce: true, + noModule: true + }; + + function DOMEval( code, node, doc ) { + doc = doc || document; + + var i, val, + script = doc.createElement( "script" ); + + script.text = code; + if ( node ) { + for ( i in preservedScriptAttributes ) { + + // Support: Firefox 64+, Edge 18+ + // Some browsers don't support the "nonce" property on scripts. + // On the other hand, just using `getAttribute` is not enough as + // the `nonce` attribute is reset to an empty string whenever it + // becomes browsing-context connected. + // See https://github.com/whatwg/html/issues/2369 + // See https://html.spec.whatwg.org/#nonce-attributes + // The `node.getAttribute` check was added for the sake of + // `jQuery.globalEval` so that it can fake a nonce-containing node + // via an object. + val = node[ i ] || node.getAttribute && node.getAttribute( i ); + if ( val ) { + script.setAttribute( i, val ); + } + } + } + doc.head.appendChild( script ).parentNode.removeChild( script ); + } + + +function toType( obj ) { + if ( obj == null ) { + return obj + ""; + } + + // Support: Android <=2.3 only (functionish RegExp) + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call( obj ) ] || "object" : + typeof obj; +} +/* global Symbol */ +// Defining this global in .eslintrc.json would create a danger of using the global +// unguarded in another place, it seems safer to define global only for this module + + + +var + version = "3.5.1", + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + + // The jQuery object is actually just the init constructor 'enhanced' + // Need init if jQuery is called (just allow error to be thrown if not included) + return new jQuery.fn.init( selector, context ); + }; + +jQuery.fn = jQuery.prototype = { + + // The current version of jQuery being used + jquery: version, + + constructor: jQuery, + + // The default length of a jQuery object is 0 + length: 0, + + toArray: function() { + return slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + + // Return all the elements in a clean array + if ( num == null ) { + return slice.call( this ); + } + + // Return just the one element from the set + return num < 0 ? this[ num + this.length ] : this[ num ]; + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + each: function( callback ) { + return jQuery.each( this, callback ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map( this, function( elem, i ) { + return callback.call( elem, i, elem ); + } ) ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ) ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + even: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return ( i + 1 ) % 2; + } ) ); + }, + + odd: function() { + return this.pushStack( jQuery.grep( this, function( _elem, i ) { + return i % 2; + } ) ); + }, + + eq: function( i ) { + var len = this.length, + j = +i + ( i < 0 ? len : 0 ); + return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); + }, + + end: function() { + return this.prevObject || this.constructor(); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: arr.sort, + splice: arr.splice +}; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[ 0 ] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + + // Skip the boolean and the target + target = arguments[ i ] || {}; + i++; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !isFunction( target ) ) { + target = {}; + } + + // Extend jQuery itself if only one argument is passed + if ( i === length ) { + target = this; + i--; + } + + for ( ; i < length; i++ ) { + + // Only deal with non-null/undefined values + if ( ( options = arguments[ i ] ) != null ) { + + // Extend the base object + for ( name in options ) { + copy = options[ name ]; + + // Prevent Object.prototype pollution + // Prevent never-ending loop + if ( name === "__proto__" || target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject( copy ) || + ( copyIsArray = Array.isArray( copy ) ) ) ) { + src = target[ name ]; + + // Ensure proper type for the source value + if ( copyIsArray && !Array.isArray( src ) ) { + clone = []; + } else if ( !copyIsArray && !jQuery.isPlainObject( src ) ) { + clone = {}; + } else { + clone = src; + } + copyIsArray = false; + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend( { + + // Unique for each copy of jQuery on the page + expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), + + // Assume jQuery is ready without the ready module + isReady: true, + + error: function( msg ) { + throw new Error( msg ); + }, + + noop: function() {}, + + isPlainObject: function( obj ) { + var proto, Ctor; + + // Detect obvious negatives + // Use toString instead of jQuery.type to catch host objects + if ( !obj || toString.call( obj ) !== "[object Object]" ) { + return false; + } + + proto = getProto( obj ); + + // Objects with no prototype (e.g., `Object.create( null )`) are plain + if ( !proto ) { + return true; + } + + // Objects with prototype are plain iff they were constructed by a global Object function + Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; + return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; + }, + + isEmptyObject: function( obj ) { + var name; + + for ( name in obj ) { + return false; + } + return true; + }, + + // Evaluates a script in a provided context; falls back to the global one + // if not specified. + globalEval: function( code, options, doc ) { + DOMEval( code, { nonce: options && options.nonce }, doc ); + }, + + each: function( obj, callback ) { + var length, i = 0; + + if ( isArrayLike( obj ) ) { + length = obj.length; + for ( ; i < length; i++ ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } else { + for ( i in obj ) { + if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { + break; + } + } + } + + return obj; + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var ret = results || []; + + if ( arr != null ) { + if ( isArrayLike( Object( arr ) ) ) { + jQuery.merge( ret, + typeof arr === "string" ? + [ arr ] : arr + ); + } else { + push.call( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + return arr == null ? -1 : indexOf.call( arr, elem, i ); + }, + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + merge: function( first, second ) { + var len = +second.length, + j = 0, + i = first.length; + + for ( ; j < len; j++ ) { + first[ i++ ] = second[ j ]; + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, invert ) { + var callbackInverse, + matches = [], + i = 0, + length = elems.length, + callbackExpect = !invert; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + callbackInverse = !callback( elems[ i ], i ); + if ( callbackInverse !== callbackExpect ) { + matches.push( elems[ i ] ); + } + } + + return matches; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var length, value, + i = 0, + ret = []; + + // Go through the array, translating each of the items to their new values + if ( isArrayLike( elems ) ) { + length = elems.length; + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + + // Go through every key on the object, + } else { + for ( i in elems ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret.push( value ); + } + } + } + + // Flatten any nested arrays + return flat( ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // jQuery.support is not used in Core but other projects attach their + // properties to it so it needs to exist. + support: support +} ); + +if ( typeof Symbol === "function" ) { + jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; +} + +// Populate the class2type map +jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), +function( _i, name ) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +} ); + +function isArrayLike( obj ) { + + // Support: real iOS 8.2 only (not reproducible in simulator) + // `in` check used to prevent JIT error (gh-2145) + // hasOwn isn't used here due to false negatives + // regarding Nodelist length in IE + var length = !!obj && "length" in obj && obj.length, + type = toType( obj ); + + if ( isFunction( obj ) || isWindow( obj ) ) { + return false; + } + + return type === "array" || length === 0 || + typeof length === "number" && length > 0 && ( length - 1 ) in obj; +} +var Sizzle = +/*! + * Sizzle CSS Selector Engine v2.3.5 + * https://sizzlejs.com/ + * + * Copyright JS Foundation and other contributors + * Released under the MIT license + * https://js.foundation/ + * + * Date: 2020-03-14 + */ +( function( window ) { +var i, + support, + Expr, + getText, + isXML, + tokenize, + compile, + select, + outermostContext, + sortInput, + hasDuplicate, + + // Local document vars + setDocument, + document, + docElem, + documentIsHTML, + rbuggyQSA, + rbuggyMatches, + matches, + contains, + + // Instance-specific data + expando = "sizzle" + 1 * new Date(), + preferredDoc = window.document, + dirruns = 0, + done = 0, + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + nonnativeSelectorCache = createCache(), + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + } + return 0; + }, + + // Instance methods + hasOwn = ( {} ).hasOwnProperty, + arr = [], + pop = arr.pop, + pushNative = arr.push, + push = arr.push, + slice = arr.slice, + + // Use a stripped-down indexOf as it's faster than native + // https://jsperf.com/thor-indexof-vs-for/5 + indexOf = function( list, elem ) { + var i = 0, + len = list.length; + for ( ; i < len; i++ ) { + if ( list[ i ] === elem ) { + return i; + } + } + return -1; + }, + + booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + + "ismap|loop|multiple|open|readonly|required|scoped", + + // Regular expressions + + // http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + + // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram + identifier = "(?:\\\\[\\da-fA-F]{1,6}" + whitespace + + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", + + // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors + attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + + + // Operator (capture 2) + "*([*^$|!~]?=)" + whitespace + + + // "Attribute values must be CSS identifiers [capture 5] + // or strings [capture 3 or capture 4]" + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + + whitespace + "*\\]", + + pseudos = ":(" + identifier + ")(?:\\((" + + + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: + // 1. quoted (capture 3; capture 4 or capture 5) + "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + + + // 2. simple (capture 6) + "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + + + // 3. anything else (capture 2) + ".*" + + ")\\)|)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rwhitespace = new RegExp( whitespace + "+", "g" ), + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + + "*" ), + rdescend = new RegExp( whitespace + "|>" ), + + rpseudo = new RegExp( pseudos ), + ridentifier = new RegExp( "^" + identifier + "$" ), + + matchExpr = { + "ID": new RegExp( "^#(" + identifier + ")" ), + "CLASS": new RegExp( "^\\.(" + identifier + ")" ), + "TAG": new RegExp( "^(" + identifier + "|[*])" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + + whitespace + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + + whitespace + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), + + // For use in libraries implementing .is() + // We use this for POS matching in `select` + "needsContext": new RegExp( "^" + whitespace + + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + whitespace + + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) + }, + + rhtml = /HTML$/i, + rinputs = /^(?:input|select|textarea|button)$/i, + rheader = /^h\d$/i, + + rnative = /^[^{]+\{\s*\[native \w/, + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + + rsibling = /[+~]/, + + // CSS escapes + // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + runescape = new RegExp( "\\\\[\\da-fA-F]{1,6}" + whitespace + "?|\\\\([^\\r\\n\\f])", "g" ), + funescape = function( escape, nonHex ) { + var high = "0x" + escape.slice( 1 ) - 0x10000; + + return nonHex ? + + // Strip the backslash prefix from a non-hex escape sequence + nonHex : + + // Replace a hexadecimal escape sequence with the encoded Unicode code point + // Support: IE <=11+ + // For values outside the Basic Multilingual Plane (BMP), manually construct a + // surrogate pair + high < 0 ? + String.fromCharCode( high + 0x10000 ) : + String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); + }, + + // CSS string/identifier serialization + // https://drafts.csswg.org/cssom/#common-serializing-idioms + rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, + fcssescape = function( ch, asCodePoint ) { + if ( asCodePoint ) { + + // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER + if ( ch === "\0" ) { + return "\uFFFD"; + } + + // Control characters and (dependent upon position) numbers get escaped as code points + return ch.slice( 0, -1 ) + "\\" + + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; + } + + // Other potentially-special ASCII characters get backslash-escaped + return "\\" + ch; + }, + + // Used for iframes + // See setDocument() + // Removing the function wrapper causes a "Permission Denied" + // error in IE + unloadHandler = function() { + setDocument(); + }, + + inDisabledFieldset = addCombinator( + function( elem ) { + return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset"; + }, + { dir: "parentNode", next: "legend" } + ); + +// Optimize for push.apply( _, NodeList ) +try { + push.apply( + ( arr = slice.call( preferredDoc.childNodes ) ), + preferredDoc.childNodes + ); + + // Support: Android<4.0 + // Detect silently failing push.apply + // eslint-disable-next-line no-unused-expressions + arr[ preferredDoc.childNodes.length ].nodeType; +} catch ( e ) { + push = { apply: arr.length ? + + // Leverage slice if possible + function( target, els ) { + pushNative.apply( target, slice.call( els ) ); + } : + + // Support: IE<9 + // Otherwise append directly + function( target, els ) { + var j = target.length, + i = 0; + + // Can't trust NodeList.length + while ( ( target[ j++ ] = els[ i++ ] ) ) {} + target.length = j - 1; + } + }; +} + +function Sizzle( selector, context, results, seed ) { + var m, i, elem, nid, match, groups, newSelector, + newContext = context && context.ownerDocument, + + // nodeType defaults to 9, since context defaults to document + nodeType = context ? context.nodeType : 9; + + results = results || []; + + // Return early from calls with invalid selector or context + if ( typeof selector !== "string" || !selector || + nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { + + return results; + } + + // Try to shortcut find operations (as opposed to filters) in HTML documents + if ( !seed ) { + setDocument( context ); + context = context || document; + + if ( documentIsHTML ) { + + // If the selector is sufficiently simple, try using a "get*By*" DOM method + // (excepting DocumentFragment context, where the methods don't exist) + if ( nodeType !== 11 && ( match = rquickExpr.exec( selector ) ) ) { + + // ID selector + if ( ( m = match[ 1 ] ) ) { + + // Document context + if ( nodeType === 9 ) { + if ( ( elem = context.getElementById( m ) ) ) { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + + // Element context + } else { + + // Support: IE, Opera, Webkit + // TODO: identify versions + // getElementById can match elements by name instead of ID + if ( newContext && ( elem = newContext.getElementById( m ) ) && + contains( context, elem ) && + elem.id === m ) { + + results.push( elem ); + return results; + } + } + + // Type selector + } else if ( match[ 2 ] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; + + // Class selector + } else if ( ( m = match[ 3 ] ) && support.getElementsByClassName && + context.getElementsByClassName ) { + + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } + + // Take advantage of querySelectorAll + if ( support.qsa && + !nonnativeSelectorCache[ selector + " " ] && + ( !rbuggyQSA || !rbuggyQSA.test( selector ) ) && + + // Support: IE 8 only + // Exclude object elements + ( nodeType !== 1 || context.nodeName.toLowerCase() !== "object" ) ) { + + newSelector = selector; + newContext = context; + + // qSA considers elements outside a scoping root when evaluating child or + // descendant combinators, which is not what we want. + // In such cases, we work around the behavior by prefixing every selector in the + // list with an ID selector referencing the scope context. + // The technique has to be used as well when a leading combinator is used + // as such selectors are not recognized by querySelectorAll. + // Thanks to Andrew Dupont for this technique. + if ( nodeType === 1 && + ( rdescend.test( selector ) || rcombinators.test( selector ) ) ) { + + // Expand context for sibling selectors + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || + context; + + // We can use :scope instead of the ID hack if the browser + // supports it & if we're not changing the context. + if ( newContext !== context || !support.scope ) { + + // Capture the context ID, setting it first if necessary + if ( ( nid = context.getAttribute( "id" ) ) ) { + nid = nid.replace( rcssescape, fcssescape ); + } else { + context.setAttribute( "id", ( nid = expando ) ); + } + } + + // Prefix every selector in the list + groups = tokenize( selector ); + i = groups.length; + while ( i-- ) { + groups[ i ] = ( nid ? "#" + nid : ":scope" ) + " " + + toSelector( groups[ i ] ); + } + newSelector = groups.join( "," ); + } + + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch ( qsaError ) { + nonnativeSelectorCache( selector, true ); + } finally { + if ( nid === expando ) { + context.removeAttribute( "id" ); + } + } + } + } + } + + // All others + return select( selector.replace( rtrim, "$1" ), context, results, seed ); +} + +/** + * Create key-value caches of limited size + * @returns {function(string, object)} Returns the Object data after storing it on itself with + * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) + * deleting the oldest entry + */ +function createCache() { + var keys = []; + + function cache( key, value ) { + + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) + if ( keys.push( key + " " ) > Expr.cacheLength ) { + + // Only keep the most recent entries + delete cache[ keys.shift() ]; + } + return ( cache[ key + " " ] = value ); + } + return cache; +} + +/** + * Mark a function for special use by Sizzle + * @param {Function} fn The function to mark + */ +function markFunction( fn ) { + fn[ expando ] = true; + return fn; +} + +/** + * Support testing using an element + * @param {Function} fn Passed the created element and returns a boolean result + */ +function assert( fn ) { + var el = document.createElement( "fieldset" ); + + try { + return !!fn( el ); + } catch ( e ) { + return false; + } finally { + + // Remove from its parent by default + if ( el.parentNode ) { + el.parentNode.removeChild( el ); + } + + // release memory in IE + el = null; + } +} + +/** + * Adds the same handler for all of the specified attrs + * @param {String} attrs Pipe-separated list of attributes + * @param {Function} handler The method that will be applied + */ +function addHandle( attrs, handler ) { + var arr = attrs.split( "|" ), + i = arr.length; + + while ( i-- ) { + Expr.attrHandle[ arr[ i ] ] = handler; + } +} + +/** + * Checks document order of two siblings + * @param {Element} a + * @param {Element} b + * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b + */ +function siblingCheck( a, b ) { + var cur = b && a, + diff = cur && a.nodeType === 1 && b.nodeType === 1 && + a.sourceIndex - b.sourceIndex; + + // Use IE sourceIndex if available on both nodes + if ( diff ) { + return diff; + } + + // Check if b follows a + if ( cur ) { + while ( ( cur = cur.nextSibling ) ) { + if ( cur === b ) { + return -1; + } + } + } + + return a ? 1 : -1; +} + +/** + * Returns a function to use in pseudos for input types + * @param {String} type + */ +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for buttons + * @param {String} type + */ +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return ( name === "input" || name === "button" ) && elem.type === type; + }; +} + +/** + * Returns a function to use in pseudos for :enabled/:disabled + * @param {Boolean} disabled true for :disabled; false for :enabled + */ +function createDisabledPseudo( disabled ) { + + // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable + return function( elem ) { + + // Only certain elements can match :enabled or :disabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled + // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled + if ( "form" in elem ) { + + // Check for inherited disabledness on relevant non-disabled elements: + // * listed form-associated elements in a disabled fieldset + // https://html.spec.whatwg.org/multipage/forms.html#category-listed + // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled + // * option elements in a disabled optgroup + // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled + // All such elements have a "form" property. + if ( elem.parentNode && elem.disabled === false ) { + + // Option elements defer to a parent optgroup if present + if ( "label" in elem ) { + if ( "label" in elem.parentNode ) { + return elem.parentNode.disabled === disabled; + } else { + return elem.disabled === disabled; + } + } + + // Support: IE 6 - 11 + // Use the isDisabled shortcut property to check for disabled fieldset ancestors + return elem.isDisabled === disabled || + + // Where there is no isDisabled, check manually + /* jshint -W018 */ + elem.isDisabled !== !disabled && + inDisabledFieldset( elem ) === disabled; + } + + return elem.disabled === disabled; + + // Try to winnow out elements that can't be disabled before trusting the disabled property. + // Some victims get caught in our net (label, legend, menu, track), but it shouldn't + // even exist on them, let alone have a boolean value. + } else if ( "label" in elem ) { + return elem.disabled === disabled; + } + + // Remaining elements are neither :enabled nor :disabled + return false; + }; +} + +/** + * Returns a function to use in pseudos for positionals + * @param {Function} fn + */ +function createPositionalPseudo( fn ) { + return markFunction( function( argument ) { + argument = +argument; + return markFunction( function( seed, matches ) { + var j, + matchIndexes = fn( [], seed.length, argument ), + i = matchIndexes.length; + + // Match elements found at the specified indexes + while ( i-- ) { + if ( seed[ ( j = matchIndexes[ i ] ) ] ) { + seed[ j ] = !( matches[ j ] = seed[ j ] ); + } + } + } ); + } ); +} + +/** + * Checks a node for validity as a Sizzle context + * @param {Element|Object=} context + * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value + */ +function testContext( context ) { + return context && typeof context.getElementsByTagName !== "undefined" && context; +} + +// Expose support vars for convenience +support = Sizzle.support = {}; + +/** + * Detects XML nodes + * @param {Element|Object} elem An element or a document + * @returns {Boolean} True iff elem is a non-HTML XML node + */ +isXML = Sizzle.isXML = function( elem ) { + var namespace = elem.namespaceURI, + docElem = ( elem.ownerDocument || elem ).documentElement; + + // Support: IE <=8 + // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes + // https://bugs.jquery.com/ticket/4833 + return !rhtml.test( namespace || docElem && docElem.nodeName || "HTML" ); +}; + +/** + * Sets document-related variables once based on the current document + * @param {Element|Object} [doc] An element or document object to use to set the document + * @returns {Object} Returns the current document + */ +setDocument = Sizzle.setDocument = function( node ) { + var hasCompare, subWindow, + doc = node ? node.ownerDocument || node : preferredDoc; + + // Return early if doc is invalid or already selected + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( doc == document || doc.nodeType !== 9 || !doc.documentElement ) { + return document; + } + + // Update global variables + document = doc; + docElem = document.documentElement; + documentIsHTML = !isXML( document ); + + // Support: IE 9 - 11+, Edge 12 - 18+ + // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( preferredDoc != document && + ( subWindow = document.defaultView ) && subWindow.top !== subWindow ) { + + // Support: IE 11, Edge + if ( subWindow.addEventListener ) { + subWindow.addEventListener( "unload", unloadHandler, false ); + + // Support: IE 9 - 10 only + } else if ( subWindow.attachEvent ) { + subWindow.attachEvent( "onunload", unloadHandler ); + } + } + + // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only, + // Safari 4 - 5 only, Opera <=11.6 - 12.x only + // IE/Edge & older browsers don't support the :scope pseudo-class. + // Support: Safari 6.0 only + // Safari 6.0 supports :scope but it's an alias of :root there. + support.scope = assert( function( el ) { + docElem.appendChild( el ).appendChild( document.createElement( "div" ) ); + return typeof el.querySelectorAll !== "undefined" && + !el.querySelectorAll( ":scope fieldset div" ).length; + } ); + + /* Attributes + ---------------------------------------------------------------------- */ + + // Support: IE<8 + // Verify that getAttribute really returns attributes and not properties + // (excepting IE8 booleans) + support.attributes = assert( function( el ) { + el.className = "i"; + return !el.getAttribute( "className" ); + } ); + + /* getElement(s)By* + ---------------------------------------------------------------------- */ + + // Check if getElementsByTagName("*") returns only elements + support.getElementsByTagName = assert( function( el ) { + el.appendChild( document.createComment( "" ) ); + return !el.getElementsByTagName( "*" ).length; + } ); + + // Support: IE<9 + support.getElementsByClassName = rnative.test( document.getElementsByClassName ); + + // Support: IE<10 + // Check if getElementById returns elements by name + // The broken getElementById methods don't pick up programmatically-set names, + // so use a roundabout getElementsByName test + support.getById = assert( function( el ) { + docElem.appendChild( el ).id = expando; + return !document.getElementsByName || !document.getElementsByName( expando ).length; + } ); + + // ID filter and find + if ( support.getById ) { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + return elem.getAttribute( "id" ) === attrId; + }; + }; + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var elem = context.getElementById( id ); + return elem ? [ elem ] : []; + } + }; + } else { + Expr.filter[ "ID" ] = function( id ) { + var attrId = id.replace( runescape, funescape ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== "undefined" && + elem.getAttributeNode( "id" ); + return node && node.value === attrId; + }; + }; + + // Support: IE 6 - 7 only + // getElementById is not reliable as a find shortcut + Expr.find[ "ID" ] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var node, i, elems, + elem = context.getElementById( id ); + + if ( elem ) { + + // Verify the id attribute + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + + // Fall back on getElementsByName + elems = context.getElementsByName( id ); + i = 0; + while ( ( elem = elems[ i++ ] ) ) { + node = elem.getAttributeNode( "id" ); + if ( node && node.value === id ) { + return [ elem ]; + } + } + } + + return []; + } + }; + } + + // Tag + Expr.find[ "TAG" ] = support.getElementsByTagName ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( tag ); + + // DocumentFragment nodes don't have gEBTN + } else if ( support.qsa ) { + return context.querySelectorAll( tag ); + } + } : + + function( tag, context ) { + var elem, + tmp = [], + i = 0, + + // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too + results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }; + + // Class + Expr.find[ "CLASS" ] = support.getElementsByClassName && function( className, context ) { + if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { + return context.getElementsByClassName( className ); + } + }; + + /* QSA/matchesSelector + ---------------------------------------------------------------------- */ + + // QSA and matchesSelector support + + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + rbuggyMatches = []; + + // qSa(:focus) reports false when true (Chrome 21) + // We allow this because of a bug in IE8/9 that throws an error + // whenever `document.activeElement` is accessed on an iframe + // So, we allow :focus to pass through QSA all the time to avoid the IE error + // See https://bugs.jquery.com/ticket/13378 + rbuggyQSA = []; + + if ( ( support.qsa = rnative.test( document.querySelectorAll ) ) ) { + + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert( function( el ) { + + var input; + + // Select is set to empty string on purpose + // This is to test IE's treatment of not explicitly + // setting a boolean content attribute, + // since its presence should be enough + // https://bugs.jquery.com/ticket/12359 + docElem.appendChild( el ).innerHTML = "" + + ""; + + // Support: IE8, Opera 11-12.16 + // Nothing should be selected when empty strings follow ^= or $= or *= + // The test attribute must be unknown in Opera but "safe" for WinRT + // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( el.querySelectorAll( "[msallowcapture^='']" ).length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); + } + + // Support: IE8 + // Boolean attributes and "value" are not treated correctly + if ( !el.querySelectorAll( "[selected]" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); + } + + // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ + if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { + rbuggyQSA.push( "~=" ); + } + + // Support: IE 11+, Edge 15 - 18+ + // IE 11/Edge don't find elements on a `[name='']` query in some cases. + // Adding a temporary attribute to the document before the selection works + // around the issue. + // Interestingly, IE 10 & older don't seem to have the issue. + input = document.createElement( "input" ); + input.setAttribute( "name", "" ); + el.appendChild( input ); + if ( !el.querySelectorAll( "[name='']" ).length ) { + rbuggyQSA.push( "\\[" + whitespace + "*name" + whitespace + "*=" + + whitespace + "*(?:''|\"\")" ); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here and will not see later tests + if ( !el.querySelectorAll( ":checked" ).length ) { + rbuggyQSA.push( ":checked" ); + } + + // Support: Safari 8+, iOS 8+ + // https://bugs.webkit.org/show_bug.cgi?id=136851 + // In-page `selector#id sibling-combinator selector` fails + if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { + rbuggyQSA.push( ".#.+[+~]" ); + } + + // Support: Firefox <=3.6 - 5 only + // Old Firefox doesn't throw on a badly-escaped identifier. + el.querySelectorAll( "\\\f" ); + rbuggyQSA.push( "[\\r\\n\\f]" ); + } ); + + assert( function( el ) { + el.innerHTML = "" + + ""; + + // Support: Windows 8 Native Apps + // The type and name attributes are restricted during .innerHTML assignment + var input = document.createElement( "input" ); + input.setAttribute( "type", "hidden" ); + el.appendChild( input ).setAttribute( "name", "D" ); + + // Support: IE8 + // Enforce case-sensitivity of name attribute + if ( el.querySelectorAll( "[name=d]" ).length ) { + rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here and will not see later tests + if ( el.querySelectorAll( ":enabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: IE9-11+ + // IE's :disabled selector does not pick up the children of disabled fieldsets + docElem.appendChild( el ).disabled = true; + if ( el.querySelectorAll( ":disabled" ).length !== 2 ) { + rbuggyQSA.push( ":enabled", ":disabled" ); + } + + // Support: Opera 10 - 11 only + // Opera 10-11 does not throw on post-comma invalid pseudos + el.querySelectorAll( "*,:x" ); + rbuggyQSA.push( ",.*:" ); + } ); + } + + if ( ( support.matchesSelector = rnative.test( ( matches = docElem.matches || + docElem.webkitMatchesSelector || + docElem.mozMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector ) ) ) ) { + + assert( function( el ) { + + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + support.disconnectedMatch = matches.call( el, "*" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( el, "[s!='']:x" ); + rbuggyMatches.push( "!=", pseudos ); + } ); + } + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join( "|" ) ); + rbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join( "|" ) ); + + /* Contains + ---------------------------------------------------------------------- */ + hasCompare = rnative.test( docElem.compareDocumentPosition ); + + // Element contains another + // Purposefully self-exclusive + // As in, an element does not contain itself + contains = hasCompare || rnative.test( docElem.contains ) ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && ( + adown.contains ? + adown.contains( bup ) : + a.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16 + ) ); + } : + function( a, b ) { + if ( b ) { + while ( ( b = b.parentNode ) ) { + if ( b === a ) { + return true; + } + } + } + return false; + }; + + /* Sorting + ---------------------------------------------------------------------- */ + + // Document order sorting + sortOrder = hasCompare ? + function( a, b ) { + + // Flag for duplicate removal + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + // Sort on method existence if only one input has compareDocumentPosition + var compare = !a.compareDocumentPosition - !b.compareDocumentPosition; + if ( compare ) { + return compare; + } + + // Calculate position if both inputs belong to the same document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + compare = ( a.ownerDocument || a ) == ( b.ownerDocument || b ) ? + a.compareDocumentPosition( b ) : + + // Otherwise we know they are disconnected + 1; + + // Disconnected nodes + if ( compare & 1 || + ( !support.sortDetached && b.compareDocumentPosition( a ) === compare ) ) { + + // Choose the first element that is related to our preferred document + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( a == document || a.ownerDocument == preferredDoc && + contains( preferredDoc, a ) ) { + return -1; + } + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( b == document || b.ownerDocument == preferredDoc && + contains( preferredDoc, b ) ) { + return 1; + } + + // Maintain original order + return sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + } + + return compare & 4 ? -1 : 1; + } : + function( a, b ) { + + // Exit early if the nodes are identical + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + var cur, + i = 0, + aup = a.parentNode, + bup = b.parentNode, + ap = [ a ], + bp = [ b ]; + + // Parentless nodes are either documents or disconnected + if ( !aup || !bup ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + return a == document ? -1 : + b == document ? 1 : + /* eslint-enable eqeqeq */ + aup ? -1 : + bup ? 1 : + sortInput ? + ( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) : + 0; + + // If the nodes are siblings, we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + } + + // Otherwise we need full lists of their ancestors for comparison + cur = a; + while ( ( cur = cur.parentNode ) ) { + ap.unshift( cur ); + } + cur = b; + while ( ( cur = cur.parentNode ) ) { + bp.unshift( cur ); + } + + // Walk down the tree looking for a discrepancy + while ( ap[ i ] === bp[ i ] ) { + i++; + } + + return i ? + + // Do a sibling check if the nodes have a common ancestor + siblingCheck( ap[ i ], bp[ i ] ) : + + // Otherwise nodes in our document sort first + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + /* eslint-disable eqeqeq */ + ap[ i ] == preferredDoc ? -1 : + bp[ i ] == preferredDoc ? 1 : + /* eslint-enable eqeqeq */ + 0; + }; + + return document; +}; + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + setDocument( elem ); + + if ( support.matchesSelector && documentIsHTML && + !nonnativeSelectorCache[ expr + " " ] && + ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && + ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { + + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || support.disconnectedMatch || + + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch ( e ) { + nonnativeSelectorCache( expr, true ); + } + } + + return Sizzle( expr, document, null, [ elem ] ).length > 0; +}; + +Sizzle.contains = function( context, elem ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( context.ownerDocument || context ) != document ) { + setDocument( context ); + } + return contains( context, elem ); +}; + +Sizzle.attr = function( elem, name ) { + + // Set document vars if needed + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( ( elem.ownerDocument || elem ) != document ) { + setDocument( elem ); + } + + var fn = Expr.attrHandle[ name.toLowerCase() ], + + // Don't get fooled by Object.prototype properties (jQuery #13807) + val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? + fn( elem, name, !documentIsHTML ) : + undefined; + + return val !== undefined ? + val : + support.attributes || !documentIsHTML ? + elem.getAttribute( name ) : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; +}; + +Sizzle.escape = function( sel ) { + return ( sel + "" ).replace( rcssescape, fcssescape ); +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +/** + * Document sorting and removing duplicates + * @param {ArrayLike} results + */ +Sizzle.uniqueSort = function( results ) { + var elem, + duplicates = [], + j = 0, + i = 0; + + // Unless we *know* we can detect duplicates, assume their presence + hasDuplicate = !support.detectDuplicates; + sortInput = !support.sortStable && results.slice( 0 ); + results.sort( sortOrder ); + + if ( hasDuplicate ) { + while ( ( elem = results[ i++ ] ) ) { + if ( elem === results[ i ] ) { + j = duplicates.push( i ); + } + } + while ( j-- ) { + results.splice( duplicates[ j ], 1 ); + } + } + + // Clear input after sorting to release objects + // See https://github.com/jquery/sizzle/pull/225 + sortInput = null; + + return results; +}; + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( !nodeType ) { + + // If no nodeType, this is expected to be an array + while ( ( node = elem[ i++ ] ) ) { + + // Do not traverse comment nodes + ret += getText( node ); + } + } else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + + // Use textContent for elements + // innerText usage removed for consistency of new lines (jQuery #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + + // Do not include comment or processing instruction nodes + + return ret; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + attrHandle: {}, + + find: {}, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[ 1 ] = match[ 1 ].replace( runescape, funescape ); + + // Move the given value to match[3] whether quoted or unquoted + match[ 3 ] = ( match[ 3 ] || match[ 4 ] || + match[ 5 ] || "" ).replace( runescape, funescape ); + + if ( match[ 2 ] === "~=" ) { + match[ 3 ] = " " + match[ 3 ] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + + /* matches from matchExpr["CHILD"] + 1 type (only|nth|...) + 2 what (child|of-type) + 3 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 4 xn-component of xn+y argument ([+-]?\d*n|) + 5 sign of xn-component + 6 x of xn-component + 7 sign of y-component + 8 y of y-component + */ + match[ 1 ] = match[ 1 ].toLowerCase(); + + if ( match[ 1 ].slice( 0, 3 ) === "nth" ) { + + // nth-* requires argument + if ( !match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[ 4 ] = +( match[ 4 ] ? + match[ 5 ] + ( match[ 6 ] || 1 ) : + 2 * ( match[ 3 ] === "even" || match[ 3 ] === "odd" ) ); + match[ 5 ] = +( ( match[ 7 ] + match[ 8 ] ) || match[ 3 ] === "odd" ); + + // other types prohibit arguments + } else if ( match[ 3 ] ) { + Sizzle.error( match[ 0 ] ); + } + + return match; + }, + + "PSEUDO": function( match ) { + var excess, + unquoted = !match[ 6 ] && match[ 2 ]; + + if ( matchExpr[ "CHILD" ].test( match[ 0 ] ) ) { + return null; + } + + // Accept quoted arguments as-is + if ( match[ 3 ] ) { + match[ 2 ] = match[ 4 ] || match[ 5 ] || ""; + + // Strip excess characters from unquoted arguments + } else if ( unquoted && rpseudo.test( unquoted ) && + + // Get excess from tokenize (recursively) + ( excess = tokenize( unquoted, true ) ) && + + // advance to the next closing parenthesis + ( excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length ) ) { + + // excess is a negative index + match[ 0 ] = match[ 0 ].slice( 0, excess ); + match[ 2 ] = unquoted.slice( 0, excess ); + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + + "TAG": function( nodeNameSelector ) { + var nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase(); + return nodeNameSelector === "*" ? + function() { + return true; + } : + function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ className + " " ]; + + return pattern || + ( pattern = new RegExp( "(^|" + whitespace + + ")" + className + "(" + whitespace + "|$)" ) ) && classCache( + className, function( elem ) { + return pattern.test( + typeof elem.className === "string" && elem.className || + typeof elem.getAttribute !== "undefined" && + elem.getAttribute( "class" ) || + "" + ); + } ); + }, + + "ATTR": function( name, operator, check ) { + return function( elem ) { + var result = Sizzle.attr( elem, name ); + + if ( result == null ) { + return operator === "!="; + } + if ( !operator ) { + return true; + } + + result += ""; + + /* eslint-disable max-len */ + + return operator === "=" ? result === check : + operator === "!=" ? result !== check : + operator === "^=" ? check && result.indexOf( check ) === 0 : + operator === "*=" ? check && result.indexOf( check ) > -1 : + operator === "$=" ? check && result.slice( -check.length ) === check : + operator === "~=" ? ( " " + result.replace( rwhitespace, " " ) + " " ).indexOf( check ) > -1 : + operator === "|=" ? result === check || result.slice( 0, check.length + 1 ) === check + "-" : + false; + /* eslint-enable max-len */ + + }; + }, + + "CHILD": function( type, what, _argument, first, last ) { + var simple = type.slice( 0, 3 ) !== "nth", + forward = type.slice( -4 ) !== "last", + ofType = what === "of-type"; + + return first === 1 && last === 0 ? + + // Shortcut for :nth-*(n) + function( elem ) { + return !!elem.parentNode; + } : + + function( elem, _context, xml ) { + var cache, uniqueCache, outerCache, node, nodeIndex, start, + dir = simple !== forward ? "nextSibling" : "previousSibling", + parent = elem.parentNode, + name = ofType && elem.nodeName.toLowerCase(), + useCache = !xml && !ofType, + diff = false; + + if ( parent ) { + + // :(first|last|only)-(child|of-type) + if ( simple ) { + while ( dir ) { + node = elem; + while ( ( node = node[ dir ] ) ) { + if ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) { + + return false; + } + } + + // Reverse direction for :only-* (if we haven't yet done so) + start = dir = type === "only" && !start && "nextSibling"; + } + return true; + } + + start = [ forward ? parent.firstChild : parent.lastChild ]; + + // non-xml :nth-child(...) stores cache data on `parent` + if ( forward && useCache ) { + + // Seek `elem` from a previously-cached index + + // ...in a gzip-friendly way + node = parent; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex && cache[ 2 ]; + node = nodeIndex && parent.childNodes[ nodeIndex ]; + + while ( ( node = ++nodeIndex && node && node[ dir ] || + + // Fallback to seeking `elem` from the start + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + // When found, cache indexes on `parent` and break + if ( node.nodeType === 1 && ++diff && node === elem ) { + uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; + break; + } + } + + } else { + + // Use previously-cached element index if available + if ( useCache ) { + + // ...in a gzip-friendly way + node = elem; + outerCache = node[ expando ] || ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + cache = uniqueCache[ type ] || []; + nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; + diff = nodeIndex; + } + + // xml :nth-child(...) + // or :nth-last-child(...) or :nth(-last)?-of-type(...) + if ( diff === false ) { + + // Use the same loop as above to seek `elem` from the start + while ( ( node = ++nodeIndex && node && node[ dir ] || + ( diff = nodeIndex = 0 ) || start.pop() ) ) { + + if ( ( ofType ? + node.nodeName.toLowerCase() === name : + node.nodeType === 1 ) && + ++diff ) { + + // Cache the index of each encountered element + if ( useCache ) { + outerCache = node[ expando ] || + ( node[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ node.uniqueID ] || + ( outerCache[ node.uniqueID ] = {} ); + + uniqueCache[ type ] = [ dirruns, diff ]; + } + + if ( node === elem ) { + break; + } + } + } + } + } + + // Incorporate the offset, then check against cycle size + diff -= last; + return diff === first || ( diff % first === 0 && diff / first >= 0 ); + } + }; + }, + + "PSEUDO": function( pseudo, argument ) { + + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + // Remember that setFilters inherits from pseudos + var args, + fn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] || + Sizzle.error( "unsupported pseudo: " + pseudo ); + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( fn[ expando ] ) { + return fn( argument ); + } + + // But maintain support for old signatures + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ? + markFunction( function( seed, matches ) { + var idx, + matched = fn( seed, argument ), + i = matched.length; + while ( i-- ) { + idx = indexOf( seed, matched[ i ] ); + seed[ idx ] = !( matches[ idx ] = matched[ i ] ); + } + } ) : + function( elem ) { + return fn( elem, 0, args ); + }; + } + + return fn; + } + }, + + pseudos: { + + // Potentially complex pseudos + "not": markFunction( function( selector ) { + + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var input = [], + results = [], + matcher = compile( selector.replace( rtrim, "$1" ) ); + + return matcher[ expando ] ? + markFunction( function( seed, matches, _context, xml ) { + var elem, + unmatched = matcher( seed, null, xml, [] ), + i = seed.length; + + // Match elements unmatched by `matcher` + while ( i-- ) { + if ( ( elem = unmatched[ i ] ) ) { + seed[ i ] = !( matches[ i ] = elem ); + } + } + } ) : + function( elem, _context, xml ) { + input[ 0 ] = elem; + matcher( input, null, xml, results ); + + // Don't keep the element (issue #299) + input[ 0 ] = null; + return !results.pop(); + }; + } ), + + "has": markFunction( function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + } ), + + "contains": markFunction( function( text ) { + text = text.replace( runescape, funescape ); + return function( elem ) { + return ( elem.textContent || getText( elem ) ).indexOf( text ) > -1; + }; + } ), + + // "Whether an element is represented by a :lang() selector + // is based solely on the element's language value + // being equal to the identifier C, + // or beginning with the identifier C immediately followed by "-". + // The matching of C against the element's language value is performed case-insensitively. + // The identifier C does not have to be a valid language name." + // http://www.w3.org/TR/selectors/#lang-pseudo + "lang": markFunction( function( lang ) { + + // lang value must be a valid identifier + if ( !ridentifier.test( lang || "" ) ) { + Sizzle.error( "unsupported lang: " + lang ); + } + lang = lang.replace( runescape, funescape ).toLowerCase(); + return function( elem ) { + var elemLang; + do { + if ( ( elemLang = documentIsHTML ? + elem.lang : + elem.getAttribute( "xml:lang" ) || elem.getAttribute( "lang" ) ) ) { + + elemLang = elemLang.toLowerCase(); + return elemLang === lang || elemLang.indexOf( lang + "-" ) === 0; + } + } while ( ( elem = elem.parentNode ) && elem.nodeType === 1 ); + return false; + }; + } ), + + // Miscellaneous + "target": function( elem ) { + var hash = window.location && window.location.hash; + return hash && hash.slice( 1 ) === elem.id; + }, + + "root": function( elem ) { + return elem === docElem; + }, + + "focus": function( elem ) { + return elem === document.activeElement && + ( !document.hasFocus || document.hasFocus() ) && + !!( elem.type || elem.href || ~elem.tabIndex ); + }, + + // Boolean properties + "enabled": createDisabledPseudo( false ), + "disabled": createDisabledPseudo( true ), + + "checked": function( elem ) { + + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return ( nodeName === "input" && !!elem.checked ) || + ( nodeName === "option" && !!elem.selected ); + }, + + "selected": function( elem ) { + + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + // eslint-disable-next-line no-unused-expressions + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + // Contents + "empty": function( elem ) { + + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5), + // but not by others (comment: 8; processing instruction: 7; etc.) + // nodeType < 6 works because attributes (2) do not appear as children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + if ( elem.nodeType < 6 ) { + return false; + } + } + return true; + }, + + "parent": function( elem ) { + return !Expr.pseudos[ "empty" ]( elem ); + }, + + // Element/input types + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "text": function( elem ) { + var attr; + return elem.nodeName.toLowerCase() === "input" && + elem.type === "text" && + + // Support: IE<8 + // New HTML5 attribute values (e.g., "search") appear with elem.type === "text" + ( ( attr = elem.getAttribute( "type" ) ) == null || + attr.toLowerCase() === "text" ); + }, + + // Position-in-collection + "first": createPositionalPseudo( function() { + return [ 0 ]; + } ), + + "last": createPositionalPseudo( function( _matchIndexes, length ) { + return [ length - 1 ]; + } ), + + "eq": createPositionalPseudo( function( _matchIndexes, length, argument ) { + return [ argument < 0 ? argument + length : argument ]; + } ), + + "even": createPositionalPseudo( function( matchIndexes, length ) { + var i = 0; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "odd": createPositionalPseudo( function( matchIndexes, length ) { + var i = 1; + for ( ; i < length; i += 2 ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "lt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? + argument + length : + argument > length ? + length : + argument; + for ( ; --i >= 0; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ), + + "gt": createPositionalPseudo( function( matchIndexes, length, argument ) { + var i = argument < 0 ? argument + length : argument; + for ( ; ++i < length; ) { + matchIndexes.push( i ); + } + return matchIndexes; + } ) + } +}; + +Expr.pseudos[ "nth" ] = Expr.pseudos[ "eq" ]; + +// Add button/input type pseudos +for ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) { + Expr.pseudos[ i ] = createInputPseudo( i ); +} +for ( i in { submit: true, reset: true } ) { + Expr.pseudos[ i ] = createButtonPseudo( i ); +} + +// Easy API for creating new setFilters +function setFilters() {} +setFilters.prototype = Expr.filters = Expr.pseudos; +Expr.setFilters = new setFilters(); + +tokenize = Sizzle.tokenize = function( selector, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, preFilters, + cached = tokenCache[ selector + " " ]; + + if ( cached ) { + return parseOnly ? 0 : cached.slice( 0 ); + } + + soFar = selector; + groups = []; + preFilters = Expr.preFilter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || ( match = rcomma.exec( soFar ) ) ) { + if ( match ) { + + // Don't consume trailing commas as valid + soFar = soFar.slice( match[ 0 ].length ) || soFar; + } + groups.push( ( tokens = [] ) ); + } + + matched = false; + + // Combinators + if ( ( match = rcombinators.exec( soFar ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + + // Cast descendant combinators to space + type: match[ 0 ].replace( rtrim, " " ) + } ); + soFar = soFar.slice( matched.length ); + } + + // Filters + for ( type in Expr.filter ) { + if ( ( match = matchExpr[ type ].exec( soFar ) ) && ( !preFilters[ type ] || + ( match = preFilters[ type ]( match ) ) ) ) { + matched = match.shift(); + tokens.push( { + value: matched, + type: type, + matches: match + } ); + soFar = soFar.slice( matched.length ); + } + } + + if ( !matched ) { + break; + } + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + + // Cache the tokens + tokenCache( selector, groups ).slice( 0 ); +}; + +function toSelector( tokens ) { + var i = 0, + len = tokens.length, + selector = ""; + for ( ; i < len; i++ ) { + selector += tokens[ i ].value; + } + return selector; +} + +function addCombinator( matcher, combinator, base ) { + var dir = combinator.dir, + skip = combinator.next, + key = skip || dir, + checkNonElements = base && key === "parentNode", + doneName = done++; + + return combinator.first ? + + // Check against closest ancestor/preceding element + function( elem, context, xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + return matcher( elem, context, xml ); + } + } + return false; + } : + + // Check against all ancestor/preceding elements + function( elem, context, xml ) { + var oldCache, uniqueCache, outerCache, + newCache = [ dirruns, doneName ]; + + // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching + if ( xml ) { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + if ( matcher( elem, context, xml ) ) { + return true; + } + } + } + } else { + while ( ( elem = elem[ dir ] ) ) { + if ( elem.nodeType === 1 || checkNonElements ) { + outerCache = elem[ expando ] || ( elem[ expando ] = {} ); + + // Support: IE <9 only + // Defend against cloned attroperties (jQuery gh-1709) + uniqueCache = outerCache[ elem.uniqueID ] || + ( outerCache[ elem.uniqueID ] = {} ); + + if ( skip && skip === elem.nodeName.toLowerCase() ) { + elem = elem[ dir ] || elem; + } else if ( ( oldCache = uniqueCache[ key ] ) && + oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { + + // Assign to newCache so results back-propagate to previous elements + return ( newCache[ 2 ] = oldCache[ 2 ] ); + } else { + + // Reuse newcache so results back-propagate to previous elements + uniqueCache[ key ] = newCache; + + // A match means we're done; a fail means we have to keep checking + if ( ( newCache[ 2 ] = matcher( elem, context, xml ) ) ) { + return true; + } + } + } + } + } + return false; + }; +} + +function elementMatcher( matchers ) { + return matchers.length > 1 ? + function( elem, context, xml ) { + var i = matchers.length; + while ( i-- ) { + if ( !matchers[ i ]( elem, context, xml ) ) { + return false; + } + } + return true; + } : + matchers[ 0 ]; +} + +function multipleContexts( selector, contexts, results ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[ i ], results ); + } + return results; +} + +function condense( unmatched, map, filter, context, xml ) { + var elem, + newUnmatched = [], + i = 0, + len = unmatched.length, + mapped = map != null; + + for ( ; i < len; i++ ) { + if ( ( elem = unmatched[ i ] ) ) { + if ( !filter || filter( elem, context, xml ) ) { + newUnmatched.push( elem ); + if ( mapped ) { + map.push( i ); + } + } + } + } + + return newUnmatched; +} + +function setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) { + if ( postFilter && !postFilter[ expando ] ) { + postFilter = setMatcher( postFilter ); + } + if ( postFinder && !postFinder[ expando ] ) { + postFinder = setMatcher( postFinder, postSelector ); + } + return markFunction( function( seed, results, context, xml ) { + var temp, i, elem, + preMap = [], + postMap = [], + preexisting = results.length, + + // Get initial elements from seed or context + elems = seed || multipleContexts( + selector || "*", + context.nodeType ? [ context ] : context, + [] + ), + + // Prefilter to get matcher input, preserving a map for seed-results synchronization + matcherIn = preFilter && ( seed || !selector ) ? + condense( elems, preMap, preFilter, context, xml ) : + elems, + + matcherOut = matcher ? + + // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results, + postFinder || ( seed ? preFilter : preexisting || postFilter ) ? + + // ...intermediate processing is necessary + [] : + + // ...otherwise use results directly + results : + matcherIn; + + // Find primary matches + if ( matcher ) { + matcher( matcherIn, matcherOut, context, xml ); + } + + // Apply postFilter + if ( postFilter ) { + temp = condense( matcherOut, postMap ); + postFilter( temp, [], context, xml ); + + // Un-match failing elements by moving them back to matcherIn + i = temp.length; + while ( i-- ) { + if ( ( elem = temp[ i ] ) ) { + matcherOut[ postMap[ i ] ] = !( matcherIn[ postMap[ i ] ] = elem ); + } + } + } + + if ( seed ) { + if ( postFinder || preFilter ) { + if ( postFinder ) { + + // Get the final matcherOut by condensing this intermediate into postFinder contexts + temp = []; + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) ) { + + // Restore matcherIn since elem is not yet a final match + temp.push( ( matcherIn[ i ] = elem ) ); + } + } + postFinder( null, ( matcherOut = [] ), temp, xml ); + } + + // Move matched elements from seed to results to keep them synchronized + i = matcherOut.length; + while ( i-- ) { + if ( ( elem = matcherOut[ i ] ) && + ( temp = postFinder ? indexOf( seed, elem ) : preMap[ i ] ) > -1 ) { + + seed[ temp ] = !( results[ temp ] = elem ); + } + } + } + + // Add elements to results, through postFinder if defined + } else { + matcherOut = condense( + matcherOut === results ? + matcherOut.splice( preexisting, matcherOut.length ) : + matcherOut + ); + if ( postFinder ) { + postFinder( null, results, matcherOut, xml ); + } else { + push.apply( results, matcherOut ); + } + } + } ); +} + +function matcherFromTokens( tokens ) { + var checkContext, matcher, j, + len = tokens.length, + leadingRelative = Expr.relative[ tokens[ 0 ].type ], + implicitRelative = leadingRelative || Expr.relative[ " " ], + i = leadingRelative ? 1 : 0, + + // The foundational matcher ensures that elements are reachable from top-level context(s) + matchContext = addCombinator( function( elem ) { + return elem === checkContext; + }, implicitRelative, true ), + matchAnyContext = addCombinator( function( elem ) { + return indexOf( checkContext, elem ) > -1; + }, implicitRelative, true ), + matchers = [ function( elem, context, xml ) { + var ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || ( + ( checkContext = context ).nodeType ? + matchContext( elem, context, xml ) : + matchAnyContext( elem, context, xml ) ); + + // Avoid hanging onto element (issue #299) + checkContext = null; + return ret; + } ]; + + for ( ; i < len; i++ ) { + if ( ( matcher = Expr.relative[ tokens[ i ].type ] ) ) { + matchers = [ addCombinator( elementMatcher( matchers ), matcher ) ]; + } else { + matcher = Expr.filter[ tokens[ i ].type ].apply( null, tokens[ i ].matches ); + + // Return special upon seeing a positional matcher + if ( matcher[ expando ] ) { + + // Find the next relative operator (if any) for proper handling + j = ++i; + for ( ; j < len; j++ ) { + if ( Expr.relative[ tokens[ j ].type ] ) { + break; + } + } + return setMatcher( + i > 1 && elementMatcher( matchers ), + i > 1 && toSelector( + + // If the preceding token was a descendant combinator, insert an implicit any-element `*` + tokens + .slice( 0, i - 1 ) + .concat( { value: tokens[ i - 2 ].type === " " ? "*" : "" } ) + ).replace( rtrim, "$1" ), + matcher, + i < j && matcherFromTokens( tokens.slice( i, j ) ), + j < len && matcherFromTokens( ( tokens = tokens.slice( j ) ) ), + j < len && toSelector( tokens ) + ); + } + matchers.push( matcher ); + } + } + + return elementMatcher( matchers ); +} + +function matcherFromGroupMatchers( elementMatchers, setMatchers ) { + var bySet = setMatchers.length > 0, + byElement = elementMatchers.length > 0, + superMatcher = function( seed, context, xml, results, outermost ) { + var elem, j, matcher, + matchedCount = 0, + i = "0", + unmatched = seed && [], + setMatched = [], + contextBackup = outermostContext, + + // We must always have either seed elements or outermost context + elems = seed || byElement && Expr.find[ "TAG" ]( "*", outermost ), + + // Use integer dirruns iff this is the outermost matcher + dirrunsUnique = ( dirruns += contextBackup == null ? 1 : Math.random() || 0.1 ), + len = elems.length; + + if ( outermost ) { + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + outermostContext = context == document || context || outermost; + } + + // Add elements passing elementMatchers directly to results + // Support: IE<9, Safari + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id + for ( ; i !== len && ( elem = elems[ i ] ) != null; i++ ) { + if ( byElement && elem ) { + j = 0; + + // Support: IE 11+, Edge 17 - 18+ + // IE/Edge sometimes throw a "Permission denied" error when strict-comparing + // two documents; shallow comparisons work. + // eslint-disable-next-line eqeqeq + if ( !context && elem.ownerDocument != document ) { + setDocument( elem ); + xml = !documentIsHTML; + } + while ( ( matcher = elementMatchers[ j++ ] ) ) { + if ( matcher( elem, context || document, xml ) ) { + results.push( elem ); + break; + } + } + if ( outermost ) { + dirruns = dirrunsUnique; + } + } + + // Track unmatched elements for set filters + if ( bySet ) { + + // They will have gone through all possible matchers + if ( ( elem = !matcher && elem ) ) { + matchedCount--; + } + + // Lengthen the array for every element, matched or not + if ( seed ) { + unmatched.push( elem ); + } + } + } + + // `i` is now the count of elements visited above, and adding it to `matchedCount` + // makes the latter nonnegative. + matchedCount += i; + + // Apply set filters to unmatched elements + // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` + // equals `i`), unless we didn't visit _any_ elements in the above loop because we have + // no element matchers and no seed. + // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that + // case, which will result in a "00" `matchedCount` that differs from `i` but is also + // numerically zero. + if ( bySet && i !== matchedCount ) { + j = 0; + while ( ( matcher = setMatchers[ j++ ] ) ) { + matcher( unmatched, setMatched, context, xml ); + } + + if ( seed ) { + + // Reintegrate element matches to eliminate the need for sorting + if ( matchedCount > 0 ) { + while ( i-- ) { + if ( !( unmatched[ i ] || setMatched[ i ] ) ) { + setMatched[ i ] = pop.call( results ); + } + } + } + + // Discard index placeholder values to get only actual matches + setMatched = condense( setMatched ); + } + + // Add matches to results + push.apply( results, setMatched ); + + // Seedless set matches succeeding multiple successful matchers stipulate sorting + if ( outermost && !seed && setMatched.length > 0 && + ( matchedCount + setMatchers.length ) > 1 ) { + + Sizzle.uniqueSort( results ); + } + } + + // Override manipulation of globals by nested matchers + if ( outermost ) { + dirruns = dirrunsUnique; + outermostContext = contextBackup; + } + + return unmatched; + }; + + return bySet ? + markFunction( superMatcher ) : + superMatcher; +} + +compile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) { + var i, + setMatchers = [], + elementMatchers = [], + cached = compilerCache[ selector + " " ]; + + if ( !cached ) { + + // Generate a function of recursive functions that can be used to check each element + if ( !match ) { + match = tokenize( selector ); + } + i = match.length; + while ( i-- ) { + cached = matcherFromTokens( match[ i ] ); + if ( cached[ expando ] ) { + setMatchers.push( cached ); + } else { + elementMatchers.push( cached ); + } + } + + // Cache the compiled function + cached = compilerCache( + selector, + matcherFromGroupMatchers( elementMatchers, setMatchers ) + ); + + // Save selector and tokenization + cached.selector = selector; + } + return cached; +}; + +/** + * A low-level selection function that works with Sizzle's compiled + * selector functions + * @param {String|Function} selector A selector or a pre-compiled + * selector function built with Sizzle.compile + * @param {Element} context + * @param {Array} [results] + * @param {Array} [seed] A set of elements to match against + */ +select = Sizzle.select = function( selector, context, results, seed ) { + var i, tokens, token, type, find, + compiled = typeof selector === "function" && selector, + match = !seed && tokenize( ( selector = compiled.selector || selector ) ); + + results = results || []; + + // Try to minimize operations if there is only one selector in the list and no seed + // (the latter of which guarantees us context) + if ( match.length === 1 ) { + + // Reduce context if the leading compound selector is an ID + tokens = match[ 0 ] = match[ 0 ].slice( 0 ); + if ( tokens.length > 2 && ( token = tokens[ 0 ] ).type === "ID" && + context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[ 1 ].type ] ) { + + context = ( Expr.find[ "ID" ]( token.matches[ 0 ] + .replace( runescape, funescape ), context ) || [] )[ 0 ]; + if ( !context ) { + return results; + + // Precompiled matchers will still verify ancestry, so step up a level + } else if ( compiled ) { + context = context.parentNode; + } + + selector = selector.slice( tokens.shift().value.length ); + } + + // Fetch a seed set for right-to-left matching + i = matchExpr[ "needsContext" ].test( selector ) ? 0 : tokens.length; + while ( i-- ) { + token = tokens[ i ]; + + // Abort if we hit a combinator + if ( Expr.relative[ ( type = token.type ) ] ) { + break; + } + if ( ( find = Expr.find[ type ] ) ) { + + // Search, expanding context for leading sibling combinators + if ( ( seed = find( + token.matches[ 0 ].replace( runescape, funescape ), + rsibling.test( tokens[ 0 ].type ) && testContext( context.parentNode ) || + context + ) ) ) { + + // If seed is empty or no tokens remain, we can return early + tokens.splice( i, 1 ); + selector = seed.length && toSelector( tokens ); + if ( !selector ) { + push.apply( results, seed ); + return results; + } + + break; + } + } + } + } + + // Compile and execute a filtering function if one is not provided + // Provide `match` to avoid retokenization if we modified the selector above + ( compiled || compile( selector, match ) )( + seed, + context, + !documentIsHTML, + results, + !context || rsibling.test( selector ) && testContext( context.parentNode ) || context + ); + return results; +}; + +// One-time assignments + +// Sort stability +support.sortStable = expando.split( "" ).sort( sortOrder ).join( "" ) === expando; + +// Support: Chrome 14-35+ +// Always assume duplicates if they aren't passed to the comparison function +support.detectDuplicates = !!hasDuplicate; + +// Initialize against the default document +setDocument(); + +// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) +// Detached nodes confoundingly follow *each other* +support.sortDetached = assert( function( el ) { + + // Should return 1, but returns 4 (following) + return el.compareDocumentPosition( document.createElement( "fieldset" ) ) & 1; +} ); + +// Support: IE<8 +// Prevent attribute/property "interpolation" +// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert( function( el ) { + el.innerHTML = ""; + return el.firstChild.getAttribute( "href" ) === "#"; +} ) ) { + addHandle( "type|href|height|width", function( elem, name, isXML ) { + if ( !isXML ) { + return elem.getAttribute( name, name.toLowerCase() === "type" ? 1 : 2 ); + } + } ); +} + +// Support: IE<9 +// Use defaultValue in place of getAttribute("value") +if ( !support.attributes || !assert( function( el ) { + el.innerHTML = ""; + el.firstChild.setAttribute( "value", "" ); + return el.firstChild.getAttribute( "value" ) === ""; +} ) ) { + addHandle( "value", function( elem, _name, isXML ) { + if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { + return elem.defaultValue; + } + } ); +} + +// Support: IE<9 +// Use getAttributeNode to fetch booleans when getAttribute lies +if ( !assert( function( el ) { + return el.getAttribute( "disabled" ) == null; +} ) ) { + addHandle( booleans, function( elem, name, isXML ) { + var val; + if ( !isXML ) { + return elem[ name ] === true ? name.toLowerCase() : + ( val = elem.getAttributeNode( name ) ) && val.specified ? + val.value : + null; + } + } ); +} + +return Sizzle; + +} )( window ); + + + +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; + +// Deprecated +jQuery.expr[ ":" ] = jQuery.expr.pseudos; +jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; +jQuery.escapeSelector = Sizzle.escape; + + + + +var dir = function( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; +}; + + +var siblings = function( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; +}; + + +var rneedsContext = jQuery.expr.match.needsContext; + + + +function nodeName( elem, name ) { + + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + +}; +var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); + + + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, not ) { + if ( isFunction( qualifier ) ) { + return jQuery.grep( elements, function( elem, i ) { + return !!qualifier.call( elem, i, elem ) !== not; + } ); + } + + // Single element + if ( qualifier.nodeType ) { + return jQuery.grep( elements, function( elem ) { + return ( elem === qualifier ) !== not; + } ); + } + + // Arraylike of elements (jQuery, arguments, Array) + if ( typeof qualifier !== "string" ) { + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) > -1 ) !== not; + } ); + } + + // Filtered directly for both simple and complex selectors + return jQuery.filter( qualifier, elements, not ); +} + +jQuery.filter = function( expr, elems, not ) { + var elem = elems[ 0 ]; + + if ( not ) { + expr = ":not(" + expr + ")"; + } + + if ( elems.length === 1 && elem.nodeType === 1 ) { + return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; + } + + return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + } ) ); +}; + +jQuery.fn.extend( { + find: function( selector ) { + var i, ret, + len = this.length, + self = this; + + if ( typeof selector !== "string" ) { + return this.pushStack( jQuery( selector ).filter( function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + } ) ); + } + + ret = this.pushStack( [] ); + + for ( i = 0; i < len; i++ ) { + jQuery.find( selector, self[ i ], ret ); + } + + return len > 1 ? jQuery.uniqueSort( ret ) : ret; + }, + filter: function( selector ) { + return this.pushStack( winnow( this, selector || [], false ) ); + }, + not: function( selector ) { + return this.pushStack( winnow( this, selector || [], true ) ); + }, + is: function( selector ) { + return !!winnow( + this, + + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + typeof selector === "string" && rneedsContext.test( selector ) ? + jQuery( selector ) : + selector || [], + false + ).length; + } +} ); + + +// Initialize a jQuery object + + +// A central reference to the root jQuery(document) +var rootjQuery, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + // Strict HTML recognition (#11290: must start with <) + // Shortcut simple #id case for speed + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, + + init = jQuery.fn.init = function( selector, context, root ) { + var match, elem; + + // HANDLE: $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Method init() accepts an alternate rootjQuery + // so migrate can support jQuery.sub (gh-2101) + root = root || rootjQuery; + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector[ 0 ] === "<" && + selector[ selector.length - 1 ] === ">" && + selector.length >= 3 ) { + + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && ( match[ 1 ] || !context ) ) { + + // HANDLE: $(html) -> $(array) + if ( match[ 1 ] ) { + context = context instanceof jQuery ? context[ 0 ] : context; + + // Option to run scripts is true for back-compat + // Intentionally let the error be thrown if parseHTML is not present + jQuery.merge( this, jQuery.parseHTML( + match[ 1 ], + context && context.nodeType ? context.ownerDocument || context : document, + true + ) ); + + // HANDLE: $(html, props) + if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { + for ( match in context ) { + + // Properties of context are called as methods if possible + if ( isFunction( this[ match ] ) ) { + this[ match ]( context[ match ] ); + + // ...and otherwise set as attributes + } else { + this.attr( match, context[ match ] ); + } + } + } + + return this; + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[ 2 ] ); + + if ( elem ) { + + // Inject the element directly into the jQuery object + this[ 0 ] = elem; + this.length = 1; + } + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || root ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(DOMElement) + } else if ( selector.nodeType ) { + this[ 0 ] = selector; + this.length = 1; + return this; + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( isFunction( selector ) ) { + return root.ready !== undefined ? + root.ready( selector ) : + + // Execute immediately if ready is not present + selector( jQuery ); + } + + return jQuery.makeArray( selector, this ); + }; + +// Give the init function the jQuery prototype for later instantiation +init.prototype = jQuery.fn; + +// Initialize central reference +rootjQuery = jQuery( document ); + + +var rparentsprev = /^(?:parents|prev(?:Until|All))/, + + // Methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend( { + has: function( target ) { + var targets = jQuery( target, this ), + l = targets.length; + + return this.filter( function() { + var i = 0; + for ( ; i < l; i++ ) { + if ( jQuery.contains( this, targets[ i ] ) ) { + return true; + } + } + } ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + matched = [], + targets = typeof selectors !== "string" && jQuery( selectors ); + + // Positional selectors never match, since there's no _selection_ context + if ( !rneedsContext.test( selectors ) ) { + for ( ; i < l; i++ ) { + for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { + + // Always skip document fragments + if ( cur.nodeType < 11 && ( targets ? + targets.index( cur ) > -1 : + + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector( cur, selectors ) ) ) { + + matched.push( cur ); + break; + } + } + } + } + + return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); + }, + + // Determine the position of an element within the set + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1; + } + + // Index in selector + if ( typeof elem === "string" ) { + return indexOf.call( jQuery( elem ), this[ 0 ] ); + } + + // Locate the position of the desired element + return indexOf.call( this, + + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[ 0 ] : elem + ); + }, + + add: function( selector, context ) { + return this.pushStack( + jQuery.uniqueSort( + jQuery.merge( this.get(), jQuery( selector, context ) ) + ) + ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter( selector ) + ); + } +} ); + +function sibling( cur, dir ) { + while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} + return cur; +} + +jQuery.each( { + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, _i, until ) { + return dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, _i, until ) { + return dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, _i, until ) { + return dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return siblings( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return siblings( elem.firstChild ); + }, + contents: function( elem ) { + if ( elem.contentDocument != null && + + // Support: IE 11+ + // elements with no `data` attribute has an object + // `contentDocument` with a `null` prototype. + getProto( elem.contentDocument ) ) { + + return elem.contentDocument; + } + + // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only + // Treat the template element as a regular one in browsers that + // don't support it. + if ( nodeName( elem, "template" ) ) { + elem = elem.content || elem; + } + + return jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var matched = jQuery.map( this, fn, until ); + + if ( name.slice( -5 ) !== "Until" ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + matched = jQuery.filter( selector, matched ); + } + + if ( this.length > 1 ) { + + // Remove duplicates + if ( !guaranteedUnique[ name ] ) { + jQuery.uniqueSort( matched ); + } + + // Reverse order for parents* and prev-derivatives + if ( rparentsprev.test( name ) ) { + matched.reverse(); + } + } + + return this.pushStack( matched ); + }; +} ); +var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); + + + +// Convert String-formatted options into Object-formatted ones +function createOptions( options ) { + var object = {}; + jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { + object[ flag ] = true; + } ); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + createOptions( options ) : + jQuery.extend( {}, options ); + + var // Flag to know if list is currently firing + firing, + + // Last fire value for non-forgettable lists + memory, + + // Flag to know if list was already fired + fired, + + // Flag to prevent firing + locked, + + // Actual callback list + list = [], + + // Queue of execution data for repeatable lists + queue = [], + + // Index of currently firing callback (modified by add/remove as needed) + firingIndex = -1, + + // Fire callbacks + fire = function() { + + // Enforce single-firing + locked = locked || options.once; + + // Execute callbacks for all pending executions, + // respecting firingIndex overrides and runtime changes + fired = firing = true; + for ( ; queue.length; firingIndex = -1 ) { + memory = queue.shift(); + while ( ++firingIndex < list.length ) { + + // Run callback and check for early termination + if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && + options.stopOnFalse ) { + + // Jump to end and forget the data so .add doesn't re-fire + firingIndex = list.length; + memory = false; + } + } + } + + // Forget the data if we're done with it + if ( !options.memory ) { + memory = false; + } + + firing = false; + + // Clean up if we're done firing for good + if ( locked ) { + + // Keep an empty list if we have data for future add calls + if ( memory ) { + list = []; + + // Otherwise, this object is spent + } else { + list = ""; + } + } + }, + + // Actual Callbacks object + self = { + + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + + // If we have memory from a past run, we should fire after adding + if ( memory && !firing ) { + firingIndex = list.length - 1; + queue.push( memory ); + } + + ( function add( args ) { + jQuery.each( args, function( _, arg ) { + if ( isFunction( arg ) ) { + if ( !options.unique || !self.has( arg ) ) { + list.push( arg ); + } + } else if ( arg && arg.length && toType( arg ) !== "string" ) { + + // Inspect recursively + add( arg ); + } + } ); + } )( arguments ); + + if ( memory && !firing ) { + fire(); + } + } + return this; + }, + + // Remove a callback from the list + remove: function() { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + + // Handle firing indexes + if ( index <= firingIndex ) { + firingIndex--; + } + } + } ); + return this; + }, + + // Check if a given callback is in the list. + // If no argument is given, return whether or not list has callbacks attached. + has: function( fn ) { + return fn ? + jQuery.inArray( fn, list ) > -1 : + list.length > 0; + }, + + // Remove all callbacks from the list + empty: function() { + if ( list ) { + list = []; + } + return this; + }, + + // Disable .fire and .add + // Abort any current/pending executions + // Clear all callbacks and values + disable: function() { + locked = queue = []; + list = memory = ""; + return this; + }, + disabled: function() { + return !list; + }, + + // Disable .fire + // Also disable .add unless we have memory (since it would have no effect) + // Abort any pending executions + lock: function() { + locked = queue = []; + if ( !memory && !firing ) { + list = memory = ""; + } + return this; + }, + locked: function() { + return !!locked; + }, + + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + if ( !locked ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + queue.push( args ); + if ( !firing ) { + fire(); + } + } + return this; + }, + + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; + + +function Identity( v ) { + return v; +} +function Thrower( ex ) { + throw ex; +} + +function adoptValue( value, resolve, reject, noValue ) { + var method; + + try { + + // Check for promise aspect first to privilege synchronous behavior + if ( value && isFunction( ( method = value.promise ) ) ) { + method.call( value ).done( resolve ).fail( reject ); + + // Other thenables + } else if ( value && isFunction( ( method = value.then ) ) ) { + method.call( value, resolve, reject ); + + // Other non-thenables + } else { + + // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: + // * false: [ value ].slice( 0 ) => resolve( value ) + // * true: [ value ].slice( 1 ) => resolve() + resolve.apply( undefined, [ value ].slice( noValue ) ); + } + + // For Promises/A+, convert exceptions into rejections + // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in + // Deferred#then to conditionally suppress rejection. + } catch ( value ) { + + // Support: Android 4.0 only + // Strict mode functions invoked without .call/.apply get global-object context + reject.apply( undefined, [ value ] ); + } +} + +jQuery.extend( { + + Deferred: function( func ) { + var tuples = [ + + // action, add listener, callbacks, + // ... .then handlers, argument index, [final state] + [ "notify", "progress", jQuery.Callbacks( "memory" ), + jQuery.Callbacks( "memory" ), 2 ], + [ "resolve", "done", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 0, "resolved" ], + [ "reject", "fail", jQuery.Callbacks( "once memory" ), + jQuery.Callbacks( "once memory" ), 1, "rejected" ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + "catch": function( fn ) { + return promise.then( null, fn ); + }, + + // Keep pipe for back-compat + pipe: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + + return jQuery.Deferred( function( newDefer ) { + jQuery.each( tuples, function( _i, tuple ) { + + // Map tuples (progress, done, fail) to arguments (done, fail, progress) + var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; + + // deferred.progress(function() { bind to newDefer or newDefer.notify }) + // deferred.done(function() { bind to newDefer or newDefer.resolve }) + // deferred.fail(function() { bind to newDefer or newDefer.reject }) + deferred[ tuple[ 1 ] ]( function() { + var returned = fn && fn.apply( this, arguments ); + if ( returned && isFunction( returned.promise ) ) { + returned.promise() + .progress( newDefer.notify ) + .done( newDefer.resolve ) + .fail( newDefer.reject ); + } else { + newDefer[ tuple[ 0 ] + "With" ]( + this, + fn ? [ returned ] : arguments + ); + } + } ); + } ); + fns = null; + } ).promise(); + }, + then: function( onFulfilled, onRejected, onProgress ) { + var maxDepth = 0; + function resolve( depth, deferred, handler, special ) { + return function() { + var that = this, + args = arguments, + mightThrow = function() { + var returned, then; + + // Support: Promises/A+ section 2.3.3.3.3 + // https://promisesaplus.com/#point-59 + // Ignore double-resolution attempts + if ( depth < maxDepth ) { + return; + } + + returned = handler.apply( that, args ); + + // Support: Promises/A+ section 2.3.1 + // https://promisesaplus.com/#point-48 + if ( returned === deferred.promise() ) { + throw new TypeError( "Thenable self-resolution" ); + } + + // Support: Promises/A+ sections 2.3.3.1, 3.5 + // https://promisesaplus.com/#point-54 + // https://promisesaplus.com/#point-75 + // Retrieve `then` only once + then = returned && + + // Support: Promises/A+ section 2.3.4 + // https://promisesaplus.com/#point-64 + // Only check objects and functions for thenability + ( typeof returned === "object" || + typeof returned === "function" ) && + returned.then; + + // Handle a returned thenable + if ( isFunction( then ) ) { + + // Special processors (notify) just wait for resolution + if ( special ) { + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ) + ); + + // Normal processors (resolve) also hook into progress + } else { + + // ...and disregard older resolution values + maxDepth++; + + then.call( + returned, + resolve( maxDepth, deferred, Identity, special ), + resolve( maxDepth, deferred, Thrower, special ), + resolve( maxDepth, deferred, Identity, + deferred.notifyWith ) + ); + } + + // Handle all other returned values + } else { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Identity ) { + that = undefined; + args = [ returned ]; + } + + // Process the value(s) + // Default process is resolve + ( special || deferred.resolveWith )( that, args ); + } + }, + + // Only normal processors (resolve) catch and reject exceptions + process = special ? + mightThrow : + function() { + try { + mightThrow(); + } catch ( e ) { + + if ( jQuery.Deferred.exceptionHook ) { + jQuery.Deferred.exceptionHook( e, + process.stackTrace ); + } + + // Support: Promises/A+ section 2.3.3.3.4.1 + // https://promisesaplus.com/#point-61 + // Ignore post-resolution exceptions + if ( depth + 1 >= maxDepth ) { + + // Only substitute handlers pass on context + // and multiple values (non-spec behavior) + if ( handler !== Thrower ) { + that = undefined; + args = [ e ]; + } + + deferred.rejectWith( that, args ); + } + } + }; + + // Support: Promises/A+ section 2.3.3.3.1 + // https://promisesaplus.com/#point-57 + // Re-resolve promises immediately to dodge false rejection from + // subsequent errors + if ( depth ) { + process(); + } else { + + // Call an optional hook to record the stack, in case of exception + // since it's otherwise lost when execution goes async + if ( jQuery.Deferred.getStackHook ) { + process.stackTrace = jQuery.Deferred.getStackHook(); + } + window.setTimeout( process ); + } + }; + } + + return jQuery.Deferred( function( newDefer ) { + + // progress_handlers.add( ... ) + tuples[ 0 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onProgress ) ? + onProgress : + Identity, + newDefer.notifyWith + ) + ); + + // fulfilled_handlers.add( ... ) + tuples[ 1 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onFulfilled ) ? + onFulfilled : + Identity + ) + ); + + // rejected_handlers.add( ... ) + tuples[ 2 ][ 3 ].add( + resolve( + 0, + newDefer, + isFunction( onRejected ) ? + onRejected : + Thrower + ) + ); + } ).promise(); + }, + + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return obj != null ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 5 ]; + + // promise.progress = list.add + // promise.done = list.add + // promise.fail = list.add + promise[ tuple[ 1 ] ] = list.add; + + // Handle state + if ( stateString ) { + list.add( + function() { + + // state = "resolved" (i.e., fulfilled) + // state = "rejected" + state = stateString; + }, + + // rejected_callbacks.disable + // fulfilled_callbacks.disable + tuples[ 3 - i ][ 2 ].disable, + + // rejected_handlers.disable + // fulfilled_handlers.disable + tuples[ 3 - i ][ 3 ].disable, + + // progress_callbacks.lock + tuples[ 0 ][ 2 ].lock, + + // progress_handlers.lock + tuples[ 0 ][ 3 ].lock + ); + } + + // progress_handlers.fire + // fulfilled_handlers.fire + // rejected_handlers.fire + list.add( tuple[ 3 ].fire ); + + // deferred.notify = function() { deferred.notifyWith(...) } + // deferred.resolve = function() { deferred.resolveWith(...) } + // deferred.reject = function() { deferred.rejectWith(...) } + deferred[ tuple[ 0 ] ] = function() { + deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); + return this; + }; + + // deferred.notifyWith = list.fireWith + // deferred.resolveWith = list.fireWith + // deferred.rejectWith = list.fireWith + deferred[ tuple[ 0 ] + "With" ] = list.fireWith; + } ); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( singleValue ) { + var + + // count of uncompleted subordinates + remaining = arguments.length, + + // count of unprocessed arguments + i = remaining, + + // subordinate fulfillment data + resolveContexts = Array( i ), + resolveValues = slice.call( arguments ), + + // the master Deferred + master = jQuery.Deferred(), + + // subordinate callback factory + updateFunc = function( i ) { + return function( value ) { + resolveContexts[ i ] = this; + resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( !( --remaining ) ) { + master.resolveWith( resolveContexts, resolveValues ); + } + }; + }; + + // Single- and empty arguments are adopted like Promise.resolve + if ( remaining <= 1 ) { + adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, + !remaining ); + + // Use .then() to unwrap secondary thenables (cf. gh-3000) + if ( master.state() === "pending" || + isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { + + return master.then(); + } + } + + // Multiple arguments are aggregated like Promise.all array elements + while ( i-- ) { + adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); + } + + return master.promise(); + } +} ); + + +// These usually indicate a programmer mistake during development, +// warn about them ASAP rather than swallowing them by default. +var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; + +jQuery.Deferred.exceptionHook = function( error, stack ) { + + // Support: IE 8 - 9 only + // Console exists when dev tools are open, which can happen at any time + if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { + window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); + } +}; + + + + +jQuery.readyException = function( error ) { + window.setTimeout( function() { + throw error; + } ); +}; + + + + +// The deferred used on DOM ready +var readyList = jQuery.Deferred(); + +jQuery.fn.ready = function( fn ) { + + readyList + .then( fn ) + + // Wrap jQuery.readyException in a function so that the lookup + // happens at the time of error handling instead of callback + // registration. + .catch( function( error ) { + jQuery.readyException( error ); + } ); + + return this; +}; + +jQuery.extend( { + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + } +} ); + +jQuery.ready.then = readyList.then; + +// The ready event handler and self cleanup method +function completed() { + document.removeEventListener( "DOMContentLoaded", completed ); + window.removeEventListener( "load", completed ); + jQuery.ready(); +} + +// Catch cases where $(document).ready() is called +// after the browser event has already occurred. +// Support: IE <=9 - 10 only +// Older IE sometimes signals "interactive" too soon +if ( document.readyState === "complete" || + ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { + + // Handle it asynchronously to allow scripts the opportunity to delay ready + window.setTimeout( jQuery.ready ); + +} else { + + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed ); +} + + + + +// Multifunctional method to get and set values of a collection +// The value/s can optionally be executed if it's a function +var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { + var i = 0, + len = elems.length, + bulk = key == null; + + // Sets many values + if ( toType( key ) === "object" ) { + chainable = true; + for ( i in key ) { + access( elems, fn, i, key[ i ], true, emptyGet, raw ); + } + + // Sets one value + } else if ( value !== undefined ) { + chainable = true; + + if ( !isFunction( value ) ) { + raw = true; + } + + if ( bulk ) { + + // Bulk operations run against the entire set + if ( raw ) { + fn.call( elems, value ); + fn = null; + + // ...except when executing function values + } else { + bulk = fn; + fn = function( elem, _key, value ) { + return bulk.call( jQuery( elem ), value ); + }; + } + } + + if ( fn ) { + for ( ; i < len; i++ ) { + fn( + elems[ i ], key, raw ? + value : + value.call( elems[ i ], i, fn( elems[ i ], key ) ) + ); + } + } + } + + if ( chainable ) { + return elems; + } + + // Gets + if ( bulk ) { + return fn.call( elems ); + } + + return len ? fn( elems[ 0 ], key ) : emptyGet; +}; + + +// Matches dashed string for camelizing +var rmsPrefix = /^-ms-/, + rdashAlpha = /-([a-z])/g; + +// Used by camelCase as callback to replace() +function fcamelCase( _all, letter ) { + return letter.toUpperCase(); +} + +// Convert dashed to camelCase; used by the css and data modules +// Support: IE <=9 - 11, Edge 12 - 15 +// Microsoft forgot to hump their vendor prefix (#9572) +function camelCase( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); +} +var acceptData = function( owner ) { + + // Accepts only: + // - Node + // - Node.ELEMENT_NODE + // - Node.DOCUMENT_NODE + // - Object + // - Any + return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); +}; + + + + +function Data() { + this.expando = jQuery.expando + Data.uid++; +} + +Data.uid = 1; + +Data.prototype = { + + cache: function( owner ) { + + // Check if the owner object already has a cache + var value = owner[ this.expando ]; + + // If not, create one + if ( !value ) { + value = {}; + + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return an empty object. + if ( acceptData( owner ) ) { + + // If it is a node unlikely to be stringify-ed or looped over + // use plain assignment + if ( owner.nodeType ) { + owner[ this.expando ] = value; + + // Otherwise secure it in a non-enumerable property + // configurable must be true to allow the property to be + // deleted when data is removed + } else { + Object.defineProperty( owner, this.expando, { + value: value, + configurable: true + } ); + } + } + } + + return value; + }, + set: function( owner, data, value ) { + var prop, + cache = this.cache( owner ); + + // Handle: [ owner, key, value ] args + // Always use camelCase key (gh-2257) + if ( typeof data === "string" ) { + cache[ camelCase( data ) ] = value; + + // Handle: [ owner, { properties } ] args + } else { + + // Copy the properties one-by-one to the cache object + for ( prop in data ) { + cache[ camelCase( prop ) ] = data[ prop ]; + } + } + return cache; + }, + get: function( owner, key ) { + return key === undefined ? + this.cache( owner ) : + + // Always use camelCase key (gh-2257) + owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; + }, + access: function( owner, key, value ) { + + // In cases where either: + // + // 1. No key was specified + // 2. A string key was specified, but no value provided + // + // Take the "read" path and allow the get method to determine + // which value to return, respectively either: + // + // 1. The entire cache object + // 2. The data stored at the key + // + if ( key === undefined || + ( ( key && typeof key === "string" ) && value === undefined ) ) { + + return this.get( owner, key ); + } + + // When the key is not a string, or both a key and value + // are specified, set or extend (existing objects) with either: + // + // 1. An object of properties + // 2. A key and value + // + this.set( owner, key, value ); + + // Since the "set" path can have two possible entry points + // return the expected data based on which path was taken[*] + return value !== undefined ? value : key; + }, + remove: function( owner, key ) { + var i, + cache = owner[ this.expando ]; + + if ( cache === undefined ) { + return; + } + + if ( key !== undefined ) { + + // Support array or space separated string of keys + if ( Array.isArray( key ) ) { + + // If key is an array of keys... + // We always set camelCase keys, so remove that. + key = key.map( camelCase ); + } else { + key = camelCase( key ); + + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + key = key in cache ? + [ key ] : + ( key.match( rnothtmlwhite ) || [] ); + } + + i = key.length; + + while ( i-- ) { + delete cache[ key[ i ] ]; + } + } + + // Remove the expando if there's no more data + if ( key === undefined || jQuery.isEmptyObject( cache ) ) { + + // Support: Chrome <=35 - 45 + // Webkit & Blink performance suffers when deleting properties + // from DOM nodes, so set to undefined instead + // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) + if ( owner.nodeType ) { + owner[ this.expando ] = undefined; + } else { + delete owner[ this.expando ]; + } + } + }, + hasData: function( owner ) { + var cache = owner[ this.expando ]; + return cache !== undefined && !jQuery.isEmptyObject( cache ); + } +}; +var dataPriv = new Data(); + +var dataUser = new Data(); + + + +// Implementation Summary +// +// 1. Enforce API surface and semantic compatibility with 1.9.x branch +// 2. Improve the module's maintainability by reducing the storage +// paths to a single mechanism. +// 3. Use the same single mechanism to support "private" and "user" data. +// 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) +// 6. Provide a clear path for implementation upgrade to WeakMap in 2014 + +var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + rmultiDash = /[A-Z]/g; + +function getData( data ) { + if ( data === "true" ) { + return true; + } + + if ( data === "false" ) { + return false; + } + + if ( data === "null" ) { + return null; + } + + // Only convert to a number if it doesn't change the string + if ( data === +data + "" ) { + return +data; + } + + if ( rbrace.test( data ) ) { + return JSON.parse( data ); + } + + return data; +} + +function dataAttr( elem, key, data ) { + var name; + + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = getData( data ); + } catch ( e ) {} + + // Make sure we set the data so it isn't changed later + dataUser.set( elem, key, data ); + } else { + data = undefined; + } + } + return data; +} + +jQuery.extend( { + hasData: function( elem ) { + return dataUser.hasData( elem ) || dataPriv.hasData( elem ); + }, + + data: function( elem, name, data ) { + return dataUser.access( elem, name, data ); + }, + + removeData: function( elem, name ) { + dataUser.remove( elem, name ); + }, + + // TODO: Now that all calls to _data and _removeData have been replaced + // with direct calls to dataPriv methods, these can be deprecated. + _data: function( elem, name, data ) { + return dataPriv.access( elem, name, data ); + }, + + _removeData: function( elem, name ) { + dataPriv.remove( elem, name ); + } +} ); + +jQuery.fn.extend( { + data: function( key, value ) { + var i, name, data, + elem = this[ 0 ], + attrs = elem && elem.attributes; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = dataUser.get( elem ); + + if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { + i = attrs.length; + while ( i-- ) { + + // Support: IE 11 only + // The attrs elements can be null (#14894) + if ( attrs[ i ] ) { + name = attrs[ i ].name; + if ( name.indexOf( "data-" ) === 0 ) { + name = camelCase( name.slice( 5 ) ); + dataAttr( elem, name, data[ name ] ); + } + } + } + dataPriv.set( elem, "hasDataAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each( function() { + dataUser.set( this, key ); + } ); + } + + return access( this, function( value ) { + var data; + + // The calling jQuery object (element matches) is not empty + // (and therefore has an element appears at this[ 0 ]) and the + // `value` parameter was not undefined. An empty jQuery object + // will result in `undefined` for elem = this[ 0 ] which will + // throw an exception if an attempt to read a data cache is made. + if ( elem && value === undefined ) { + + // Attempt to get data from the cache + // The key will always be camelCased in Data + data = dataUser.get( elem, key ); + if ( data !== undefined ) { + return data; + } + + // Attempt to "discover" the data in + // HTML5 custom data-* attrs + data = dataAttr( elem, key ); + if ( data !== undefined ) { + return data; + } + + // We tried really hard, but the data doesn't exist. + return; + } + + // Set the data... + this.each( function() { + + // We always store the camelCased key + dataUser.set( this, key, value ); + } ); + }, null, value, arguments.length > 1, null, true ); + }, + + removeData: function( key ) { + return this.each( function() { + dataUser.remove( this, key ); + } ); + } +} ); + + +jQuery.extend( { + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = dataPriv.get( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || Array.isArray( data ) ) { + queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // Clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // Not public - generate a queueHooks object, or return the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { + empty: jQuery.Callbacks( "once memory" ).add( function() { + dataPriv.remove( elem, [ type + "queue", key ] ); + } ) + } ); + } +} ); + +jQuery.fn.extend( { + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[ 0 ], type ); + } + + return data === undefined ? + this : + this.each( function() { + var queue = jQuery.queue( this, type, data ); + + // Ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + } ); + }, + dequeue: function( type ) { + return this.each( function() { + jQuery.dequeue( this, type ); + } ); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while ( i-- ) { + tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +} ); +var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; + +var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); + + +var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; + +var documentElement = document.documentElement; + + + + var isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ); + }, + composed = { composed: true }; + + // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only + // Check attachment across shadow DOM boundaries when possible (gh-3504) + // Support: iOS 10.0-10.2 only + // Early iOS 10 versions support `attachShadow` but not `getRootNode`, + // leading to errors. We need to check for `getRootNode`. + if ( documentElement.getRootNode ) { + isAttached = function( elem ) { + return jQuery.contains( elem.ownerDocument, elem ) || + elem.getRootNode( composed ) === elem.ownerDocument; + }; + } +var isHiddenWithinTree = function( elem, el ) { + + // isHiddenWithinTree might be called from jQuery#filter function; + // in that case, element will be second argument + elem = el || elem; + + // Inline style trumps all + return elem.style.display === "none" || + elem.style.display === "" && + + // Otherwise, check computed style + // Support: Firefox <=43 - 45 + // Disconnected elements can have computed display: none, so first confirm that elem is + // in the document. + isAttached( elem ) && + + jQuery.css( elem, "display" ) === "none"; + }; + + + +function adjustCSS( elem, prop, valueParts, tween ) { + var adjusted, scale, + maxIterations = 20, + currentValue = tween ? + function() { + return tween.cur(); + } : + function() { + return jQuery.css( elem, prop, "" ); + }, + initial = currentValue(), + unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), + + // Starting value computation is required for potential unit mismatches + initialInUnit = elem.nodeType && + ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && + rcssNum.exec( jQuery.css( elem, prop ) ); + + if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { + + // Support: Firefox <=54 + // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) + initial = initial / 2; + + // Trust units reported by jQuery.css + unit = unit || initialInUnit[ 3 ]; + + // Iteratively approximate from a nonzero starting point + initialInUnit = +initial || 1; + + while ( maxIterations-- ) { + + // Evaluate and update our best guess (doubling guesses that zero out). + // Finish if the scale equals or crosses 1 (making the old*new product non-positive). + jQuery.style( elem, prop, initialInUnit + unit ); + if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { + maxIterations = 0; + } + initialInUnit = initialInUnit / scale; + + } + + initialInUnit = initialInUnit * 2; + jQuery.style( elem, prop, initialInUnit + unit ); + + // Make sure we update the tween properties later on + valueParts = valueParts || []; + } + + if ( valueParts ) { + initialInUnit = +initialInUnit || +initial || 0; + + // Apply relative offset (+=/-=) if specified + adjusted = valueParts[ 1 ] ? + initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : + +valueParts[ 2 ]; + if ( tween ) { + tween.unit = unit; + tween.start = initialInUnit; + tween.end = adjusted; + } + } + return adjusted; +} + + +var defaultDisplayMap = {}; + +function getDefaultDisplay( elem ) { + var temp, + doc = elem.ownerDocument, + nodeName = elem.nodeName, + display = defaultDisplayMap[ nodeName ]; + + if ( display ) { + return display; + } + + temp = doc.body.appendChild( doc.createElement( nodeName ) ); + display = jQuery.css( temp, "display" ); + + temp.parentNode.removeChild( temp ); + + if ( display === "none" ) { + display = "block"; + } + defaultDisplayMap[ nodeName ] = display; + + return display; +} + +function showHide( elements, show ) { + var display, elem, + values = [], + index = 0, + length = elements.length; + + // Determine new display value for elements that need to change + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + + display = elem.style.display; + if ( show ) { + + // Since we force visibility upon cascade-hidden elements, an immediate (and slow) + // check is required in this first loop unless we have a nonempty display value (either + // inline or about-to-be-restored) + if ( display === "none" ) { + values[ index ] = dataPriv.get( elem, "display" ) || null; + if ( !values[ index ] ) { + elem.style.display = ""; + } + } + if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { + values[ index ] = getDefaultDisplay( elem ); + } + } else { + if ( display !== "none" ) { + values[ index ] = "none"; + + // Remember what we're overwriting + dataPriv.set( elem, "display", display ); + } + } + } + + // Set the display of the elements in a second loop to avoid constant reflow + for ( index = 0; index < length; index++ ) { + if ( values[ index ] != null ) { + elements[ index ].style.display = values[ index ]; + } + } + + return elements; +} + +jQuery.fn.extend( { + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state ) { + if ( typeof state === "boolean" ) { + return state ? this.show() : this.hide(); + } + + return this.each( function() { + if ( isHiddenWithinTree( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + } ); + } +} ); +var rcheckableType = ( /^(?:checkbox|radio)$/i ); + +var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]*)/i ); + +var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); + + + +( function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Android 4.0 - 4.3 only + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Android <=4.1 only + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE <=11 only + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; + + // Support: IE <=9 only + // IE <=9 replaces "; + support.option = !!div.lastChild; +} )(); + + +// We have to close these tags to support XHTML (#13200) +var wrapMap = { + + // XHTML parsers do not magically insert elements in the + // same way that tag soup parsers do. So we cannot shorten + // this by omitting or other required elements. + thead: [ 1, "", "
      " ], + col: [ 2, "", "
      " ], + tr: [ 2, "", "
      " ], + td: [ 3, "", "
      " ], + + _default: [ 0, "", "" ] +}; + +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// Support: IE <=9 only +if ( !support.option ) { + wrapMap.optgroup = wrapMap.option = [ 1, "" ]; +} + + +function getAll( context, tag ) { + + // Support: IE <=9 - 11 only + // Use typeof to avoid zero-argument method invocation on host objects (#15151) + var ret; + + if ( typeof context.getElementsByTagName !== "undefined" ) { + ret = context.getElementsByTagName( tag || "*" ); + + } else if ( typeof context.querySelectorAll !== "undefined" ) { + ret = context.querySelectorAll( tag || "*" ); + + } else { + ret = []; + } + + if ( tag === undefined || tag && nodeName( context, tag ) ) { + return jQuery.merge( [ context ], ret ); + } + + return ret; +} + + +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + dataPriv.set( + elems[ i ], + "globalEval", + !refElements || dataPriv.get( refElements[ i ], "globalEval" ) + ); + } +} + + +var rhtml = /<|&#?\w+;/; + +function buildFragment( elems, context, scripts, selection, ignored ) { + var elem, tmp, tag, wrap, attached, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( toType( elem ) === "object" ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( ( elem = nodes[ i++ ] ) ) { + + // Skip elements already in the context collection (trac-4087) + if ( selection && jQuery.inArray( elem, selection ) > -1 ) { + if ( ignored ) { + ignored.push( elem ); + } + continue; + } + + attached = isAttached( elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( attached ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( ( elem = tmp[ j++ ] ) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; +} + + +var + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)/; + +function returnTrue() { + return true; +} + +function returnFalse() { + return false; +} + +// Support: IE <=9 - 11+ +// focus() and blur() are asynchronous, except when they are no-op. +// So expect focus to be synchronous when the element is already active, +// and blur to be synchronous when the element is not already active. +// (focus and blur are always synchronous in other supported browsers, +// this just defines when we can count on it). +function expectSync( elem, type ) { + return ( elem === safeActiveElement() ) === ( type === "focus" ); +} + +// Support: IE <=9 only +// Accessing document.activeElement can throw unexpectedly +// https://bugs.jquery.com/ticket/13393 +function safeActiveElement() { + try { + return document.activeElement; + } catch ( err ) { } +} + +function on( elem, types, selector, data, fn, one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + on( elem, type, selector, data, types[ type ], one ); + } + return elem; + } + + if ( data == null && fn == null ) { + + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return elem; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return elem.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + } ); +} + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + global: {}, + + add: function( elem, types, handler, data, selector ) { + + var handleObjIn, eventHandle, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.get( elem ); + + // Only attach events to objects that accept data + if ( !acceptData( elem ) ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Ensure that invalid selectors throw exceptions at attach time + // Evaluate against documentElement in case elem is a non-element node (e.g., document) + if ( selector ) { + jQuery.find.matchesSelector( documentElement, selector ); + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + if ( !( events = elemData.events ) ) { + events = elemData.events = Object.create( null ); + } + if ( !( eventHandle = elemData.handle ) ) { + eventHandle = elemData.handle = function( e ) { + + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? + jQuery.event.dispatch.apply( elem, arguments ) : undefined; + }; + } + + // Handle multiple events separated by a space + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // There *must* be a type, no attaching namespace-only handlers + if ( !type ) { + continue; + } + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend( { + type: type, + origType: origType, + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + needsContext: selector && jQuery.expr.match.needsContext.test( selector ), + namespace: namespaces.join( "." ) + }, handleObjIn ); + + // Init the event handler queue if we're the first + if ( !( handlers = events[ type ] ) ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener if the special events handler returns false + if ( !special.setup || + special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + }, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var j, origCount, tmp, + events, t, handleObj, + special, handlers, type, namespaces, origType, + elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); + + if ( !elemData || !( events = elemData.events ) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + t = types.length; + while ( t-- ) { + tmp = rtypenamespace.exec( types[ t ] ) || []; + type = origType = tmp[ 1 ]; + namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector ? special.delegateType : special.bindType ) || type; + handlers = events[ type ] || []; + tmp = tmp[ 2 ] && + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); + + // Remove matching events + origCount = j = handlers.length; + while ( j-- ) { + handleObj = handlers[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !tmp || tmp.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || + selector === "**" && handleObj.selector ) ) { + handlers.splice( j, 1 ); + + if ( handleObj.selector ) { + handlers.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( origCount && !handlers.length ) { + if ( !special.teardown || + special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove data and the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + dataPriv.remove( elem, "handle events" ); + } + }, + + dispatch: function( nativeEvent ) { + + var i, j, ret, matched, handleObj, handlerQueue, + args = new Array( arguments.length ), + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( nativeEvent ), + + handlers = ( + dataPriv.get( this, "events" ) || Object.create( null ) + )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[ 0 ] = event; + + for ( i = 1; i < arguments.length; i++ ) { + args[ i ] = arguments[ i ]; + } + + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers + handlerQueue = jQuery.event.handlers.call( this, event, handlers ); + + // Run delegates first; they may want to stop propagation beneath us + i = 0; + while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { + event.currentTarget = matched.elem; + + j = 0; + while ( ( handleObj = matched.handlers[ j++ ] ) && + !event.isImmediatePropagationStopped() ) { + + // If the event is namespaced, then each handler is only invoked if it is + // specially universal or its namespaces are a superset of the event's. + if ( !event.rnamespace || handleObj.namespace === false || + event.rnamespace.test( handleObj.namespace ) ) { + + event.handleObj = handleObj; + event.data = handleObj.data; + + ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || + handleObj.handler ).apply( matched.elem, args ); + + if ( ret !== undefined ) { + if ( ( event.result = ret ) === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + handlers: function( event, handlers ) { + var i, handleObj, sel, matchedHandlers, matchedSelectors, + handlerQueue = [], + delegateCount = handlers.delegateCount, + cur = event.target; + + // Find delegate handlers + if ( delegateCount && + + // Support: IE <=9 + // Black-hole SVG instance trees (trac-13180) + cur.nodeType && + + // Support: Firefox <=42 + // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) + // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click + // Support: IE 11 only + // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) + !( event.type === "click" && event.button >= 1 ) ) { + + for ( ; cur !== this; cur = cur.parentNode || this ) { + + // Don't check non-elements (#13208) + // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { + matchedHandlers = []; + matchedSelectors = {}; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + + // Don't conflict with Object.prototype properties (#13203) + sel = handleObj.selector + " "; + + if ( matchedSelectors[ sel ] === undefined ) { + matchedSelectors[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) > -1 : + jQuery.find( sel, this, null, [ cur ] ).length; + } + if ( matchedSelectors[ sel ] ) { + matchedHandlers.push( handleObj ); + } + } + if ( matchedHandlers.length ) { + handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); + } + } + } + } + + // Add the remaining (directly-bound) handlers + cur = this; + if ( delegateCount < handlers.length ) { + handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); + } + + return handlerQueue; + }, + + addProp: function( name, hook ) { + Object.defineProperty( jQuery.Event.prototype, name, { + enumerable: true, + configurable: true, + + get: isFunction( hook ) ? + function() { + if ( this.originalEvent ) { + return hook( this.originalEvent ); + } + } : + function() { + if ( this.originalEvent ) { + return this.originalEvent[ name ]; + } + }, + + set: function( value ) { + Object.defineProperty( this, name, { + enumerable: true, + configurable: true, + writable: true, + value: value + } ); + } + } ); + }, + + fix: function( originalEvent ) { + return originalEvent[ jQuery.expando ] ? + originalEvent : + new jQuery.Event( originalEvent ); + }, + + special: { + load: { + + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + click: { + + // Utilize native event to ensure correct state for checkable inputs + setup: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Claim the first handler + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + // dataPriv.set( el, "click", ... ) + leverageNative( el, "click", returnTrue ); + } + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function( data ) { + + // For mutual compressibility with _default, replace `this` access with a local var. + // `|| data` is dead code meant only to preserve the variable through minification. + var el = this || data; + + // Force setup before triggering a click + if ( rcheckableType.test( el.type ) && + el.click && nodeName( el, "input" ) ) { + + leverageNative( el, "click" ); + } + + // Return non-false to allow normal event-path propagation + return true; + }, + + // For cross-browser consistency, suppress native .click() on links + // Also prevent it if we're currently inside a leveraged native-event stack + _default: function( event ) { + var target = event.target; + return rcheckableType.test( target.type ) && + target.click && nodeName( target, "input" ) && + dataPriv.get( target, "click" ) || + nodeName( target, "a" ); + } + }, + + beforeunload: { + postDispatch: function( event ) { + + // Support: Firefox 20+ + // Firefox doesn't alert if the returnValue field is not set. + if ( event.result !== undefined && event.originalEvent ) { + event.originalEvent.returnValue = event.result; + } + } + } + } +}; + +// Ensure the presence of an event listener that handles manually-triggered +// synthetic events by interrupting progress until reinvoked in response to +// *native* events that it fires directly, ensuring that state changes have +// already occurred before other listeners are invoked. +function leverageNative( el, type, expectSync ) { + + // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add + if ( !expectSync ) { + if ( dataPriv.get( el, type ) === undefined ) { + jQuery.event.add( el, type, returnTrue ); + } + return; + } + + // Register the controller as a special universal handler for all event namespaces + dataPriv.set( el, type, false ); + jQuery.event.add( el, type, { + namespace: false, + handler: function( event ) { + var notAsync, result, + saved = dataPriv.get( this, type ); + + if ( ( event.isTrigger & 1 ) && this[ type ] ) { + + // Interrupt processing of the outer synthetic .trigger()ed event + // Saved data should be false in such cases, but might be a leftover capture object + // from an async native handler (gh-4350) + if ( !saved.length ) { + + // Store arguments for use when handling the inner native event + // There will always be at least one argument (an event object), so this array + // will not be confused with a leftover capture object. + saved = slice.call( arguments ); + dataPriv.set( this, type, saved ); + + // Trigger the native event and capture its result + // Support: IE <=9 - 11+ + // focus() and blur() are asynchronous + notAsync = expectSync( this, type ); + this[ type ](); + result = dataPriv.get( this, type ); + if ( saved !== result || notAsync ) { + dataPriv.set( this, type, false ); + } else { + result = {}; + } + if ( saved !== result ) { + + // Cancel the outer synthetic event + event.stopImmediatePropagation(); + event.preventDefault(); + return result.value; + } + + // If this is an inner synthetic event for an event with a bubbling surrogate + // (focus or blur), assume that the surrogate already propagated from triggering the + // native event and prevent that from happening again here. + // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the + // bubbling surrogate propagates *after* the non-bubbling base), but that seems + // less bad than duplication. + } else if ( ( jQuery.event.special[ type ] || {} ).delegateType ) { + event.stopPropagation(); + } + + // If this is a native event triggered above, everything is now in order + // Fire an inner synthetic event with the original arguments + } else if ( saved.length ) { + + // ...and capture the result + dataPriv.set( this, type, { + value: jQuery.event.trigger( + + // Support: IE <=9 - 11+ + // Extend with the prototype to reset the above stopImmediatePropagation() + jQuery.extend( saved[ 0 ], jQuery.Event.prototype ), + saved.slice( 1 ), + this + ) + } ); + + // Abort handling of the native event + event.stopImmediatePropagation(); + } + } + } ); +} + +jQuery.removeEvent = function( elem, type, handle ) { + + // This "if" is needed for plain objects + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle ); + } +}; + +jQuery.Event = function( src, props ) { + + // Allow instantiation without the 'new' keyword + if ( !( this instanceof jQuery.Event ) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = src.defaultPrevented || + src.defaultPrevented === undefined && + + // Support: Android <=2.3 only + src.returnValue === false ? + returnTrue : + returnFalse; + + // Create target properties + // Support: Safari <=6 - 7 only + // Target should not be a text node (#504, #13143) + this.target = ( src.target && src.target.nodeType === 3 ) ? + src.target.parentNode : + src.target; + + this.currentTarget = src.currentTarget; + this.relatedTarget = src.relatedTarget; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || Date.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + constructor: jQuery.Event, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse, + isSimulated: false, + + preventDefault: function() { + var e = this.originalEvent; + + this.isDefaultPrevented = returnTrue; + + if ( e && !this.isSimulated ) { + e.preventDefault(); + } + }, + stopPropagation: function() { + var e = this.originalEvent; + + this.isPropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopPropagation(); + } + }, + stopImmediatePropagation: function() { + var e = this.originalEvent; + + this.isImmediatePropagationStopped = returnTrue; + + if ( e && !this.isSimulated ) { + e.stopImmediatePropagation(); + } + + this.stopPropagation(); + } +}; + +// Includes all common event props including KeyEvent and MouseEvent specific props +jQuery.each( { + altKey: true, + bubbles: true, + cancelable: true, + changedTouches: true, + ctrlKey: true, + detail: true, + eventPhase: true, + metaKey: true, + pageX: true, + pageY: true, + shiftKey: true, + view: true, + "char": true, + code: true, + charCode: true, + key: true, + keyCode: true, + button: true, + buttons: true, + clientX: true, + clientY: true, + offsetX: true, + offsetY: true, + pointerId: true, + pointerType: true, + screenX: true, + screenY: true, + targetTouches: true, + toElement: true, + touches: true, + + which: function( event ) { + var button = event.button; + + // Add which for key events + if ( event.which == null && rkeyEvent.test( event.type ) ) { + return event.charCode != null ? event.charCode : event.keyCode; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { + if ( button & 1 ) { + return 1; + } + + if ( button & 2 ) { + return 3; + } + + if ( button & 4 ) { + return 2; + } + + return 0; + } + + return event.which; + } +}, jQuery.event.addProp ); + +jQuery.each( { focus: "focusin", blur: "focusout" }, function( type, delegateType ) { + jQuery.event.special[ type ] = { + + // Utilize native event if possible so blur/focus sequence is correct + setup: function() { + + // Claim the first handler + // dataPriv.set( this, "focus", ... ) + // dataPriv.set( this, "blur", ... ) + leverageNative( this, type, expectSync ); + + // Return false to allow normal processing in the caller + return false; + }, + trigger: function() { + + // Force setup before trigger + leverageNative( this, type ); + + // Return non-false to allow normal event-path propagation + return true; + }, + + delegateType: delegateType + }; +} ); + +// Create mouseenter/leave events using mouseover/out and event-time checks +// so that event delegation works in jQuery. +// Do the same for pointerenter/pointerleave and pointerover/pointerout +// +// Support: Safari 7 only +// Safari sends mouseenter too often; see: +// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 +// for the description of the bug (it existed in older Chrome versions as well). +jQuery.each( { + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj; + + // For mouseenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +} ); + +jQuery.fn.extend( { + + on: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn ); + }, + one: function( types, selector, data, fn ) { + return on( this, types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? + handleObj.origType + "." + handleObj.namespace : + handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each( function() { + jQuery.event.remove( this, types, fn, selector ); + } ); + } +} ); + + +var + + // Support: IE <=10 - 11, Edge 12 - 13 only + // In IE/Edge using regex groups here causes severe slowdowns. + // See https://connect.microsoft.com/IE/feedback/details/1736512/ + rnoInnerhtml = /\s*$/g; + +// Prefer a tbody over its parent table for containing new rows +function manipulationTarget( elem, content ) { + if ( nodeName( elem, "table" ) && + nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { + + return jQuery( elem ).children( "tbody" )[ 0 ] || elem; + } + + return elem; +} + +// Replace/restore the type attribute of script elements for safe DOM manipulation +function disableScript( elem ) { + elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; + return elem; +} +function restoreScript( elem ) { + if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { + elem.type = elem.type.slice( 5 ); + } else { + elem.removeAttribute( "type" ); + } + + return elem; +} + +function cloneCopyEvent( src, dest ) { + var i, l, type, pdataOld, udataOld, udataCur, events; + + if ( dest.nodeType !== 1 ) { + return; + } + + // 1. Copy private data: events, handlers, etc. + if ( dataPriv.hasData( src ) ) { + pdataOld = dataPriv.get( src ); + events = pdataOld.events; + + if ( events ) { + dataPriv.remove( dest, "handle events" ); + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + } + + // 2. Copy user data + if ( dataUser.hasData( src ) ) { + udataOld = dataUser.access( src ); + udataCur = jQuery.extend( {}, udataOld ); + + dataUser.set( dest, udataCur ); + } +} + +// Fix IE bugs, see support tests +function fixInput( src, dest ) { + var nodeName = dest.nodeName.toLowerCase(); + + // Fails to persist the checked state of a cloned checkbox or radio button. + if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + dest.checked = src.checked; + + // Fails to return the selected option to the default selected state when cloning options + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + } +} + +function domManip( collection, args, callback, ignored ) { + + // Flatten any nested arrays + args = flat( args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = collection.length, + iNoClone = l - 1, + value = args[ 0 ], + valueIsFunction = isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( valueIsFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return collection.each( function( index ) { + var self = collection.eq( index ); + if ( valueIsFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + domManip( self, args, callback, ignored ); + } ); + } + + if ( l ) { + fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + // Require either new content or an interest in ignored elements to invoke the callback + if ( first || ignored ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item + // instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + + // Support: Android <=4.0 only, PhantomJS 1 only + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( collection[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; + + // Reenable scripts + jQuery.map( scripts, restoreScript ); + + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !dataPriv.access( node, "globalEval" ) && + jQuery.contains( doc, node ) ) { + + if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { + + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl && !node.noModule ) { + jQuery._evalUrl( node.src, { + nonce: node.nonce || node.getAttribute( "nonce" ) + }, doc ); + } + } else { + DOMEval( node.textContent.replace( rcleanScript, "" ), node, doc ); + } + } + } + } + } + } + + return collection; +} + +function remove( elem, selector, keepData ) { + var node, + nodes = selector ? jQuery.filter( selector, elem ) : elem, + i = 0; + + for ( ; ( node = nodes[ i ] ) != null; i++ ) { + if ( !keepData && node.nodeType === 1 ) { + jQuery.cleanData( getAll( node ) ); + } + + if ( node.parentNode ) { + if ( keepData && isAttached( node ) ) { + setGlobalEval( getAll( node, "script" ) ); + } + node.parentNode.removeChild( node ); + } + } + + return elem; +} + +jQuery.extend( { + htmlPrefilter: function( html ) { + return html; + }, + + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var i, l, srcElements, destElements, + clone = elem.cloneNode( true ), + inPage = isAttached( elem ); + + // Fix IE cloning issues + if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && + !jQuery.isXMLDoc( elem ) ) { + + // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 + destElements = getAll( clone ); + srcElements = getAll( elem ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + fixInput( srcElements[ i ], destElements[ i ] ); + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + if ( deepDataAndEvents ) { + srcElements = srcElements || getAll( elem ); + destElements = destElements || getAll( clone ); + + for ( i = 0, l = srcElements.length; i < l; i++ ) { + cloneCopyEvent( srcElements[ i ], destElements[ i ] ); + } + } else { + cloneCopyEvent( elem, clone ); + } + } + + // Preserve script evaluation history + destElements = getAll( clone, "script" ); + if ( destElements.length > 0 ) { + setGlobalEval( destElements, !inPage && getAll( elem, "script" ) ); + } + + // Return the cloned set + return clone; + }, + + cleanData: function( elems ) { + var data, elem, type, + special = jQuery.event.special, + i = 0; + + for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { + if ( acceptData( elem ) ) { + if ( ( data = elem[ dataPriv.expando ] ) ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataPriv.expando ] = undefined; + } + if ( elem[ dataUser.expando ] ) { + + // Support: Chrome <=35 - 45+ + // Assign undefined instead of using delete, see Data#remove + elem[ dataUser.expando ] = undefined; + } + } + } + } +} ); + +jQuery.fn.extend( { + detach: function( selector ) { + return remove( this, selector, true ); + }, + + remove: function( selector ) { + return remove( this, selector ); + }, + + text: function( value ) { + return access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().each( function() { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + this.textContent = value; + } + } ); + }, null, value, arguments.length ); + }, + + append: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.appendChild( elem ); + } + } ); + }, + + prepend: function() { + return domManip( this, arguments, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { + var target = manipulationTarget( this, elem ); + target.insertBefore( elem, target.firstChild ); + } + } ); + }, + + before: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this ); + } + } ); + }, + + after: function() { + return domManip( this, arguments, function( elem ) { + if ( this.parentNode ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + } + } ); + }, + + empty: function() { + var elem, + i = 0; + + for ( ; ( elem = this[ i ] ) != null; i++ ) { + if ( elem.nodeType === 1 ) { + + // Prevent memory leaks + jQuery.cleanData( getAll( elem, false ) ); + + // Remove any remaining nodes + elem.textContent = ""; + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function() { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + } ); + }, + + html: function( value ) { + return access( this, function( value ) { + var elem = this[ 0 ] || {}, + i = 0, + l = this.length; + + if ( value === undefined && elem.nodeType === 1 ) { + return elem.innerHTML; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { + + value = jQuery.htmlPrefilter( value ); + + try { + for ( ; i < l; i++ ) { + elem = this[ i ] || {}; + + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem, false ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch ( e ) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function() { + var ignored = []; + + // Make the changes, replacing each non-ignored context element with the new content + return domManip( this, arguments, function( elem ) { + var parent = this.parentNode; + + if ( jQuery.inArray( this, ignored ) < 0 ) { + jQuery.cleanData( getAll( this ) ); + if ( parent ) { + parent.replaceChild( elem, this ); + } + } + + // Force callback invocation + }, ignored ); + } +} ); + +jQuery.each( { + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + ret = [], + insert = jQuery( selector ), + last = insert.length - 1, + i = 0; + + for ( ; i <= last; i++ ) { + elems = i === last ? this : this.clone( true ); + jQuery( insert[ i ] )[ original ]( elems ); + + // Support: Android <=4.0 only, PhantomJS 1 only + // .get() because push.apply(_, arraylike) throws on ancient WebKit + push.apply( ret, elems.get() ); + } + + return this.pushStack( ret ); + }; +} ); +var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); + +var getStyles = function( elem ) { + + // Support: IE <=11 only, Firefox <=30 (#15098, #14150) + // IE throws on elements created in popups + // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" + var view = elem.ownerDocument.defaultView; + + if ( !view || !view.opener ) { + view = window; + } + + return view.getComputedStyle( elem ); + }; + +var swap = function( elem, options, callback ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.call( elem ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; +}; + + +var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); + + + +( function() { + + // Executing both pixelPosition & boxSizingReliable tests require only one layout + // so they're executed at the same time to save the second computation. + function computeStyleTests() { + + // This is a singleton, we need to execute it only once + if ( !div ) { + return; + } + + container.style.cssText = "position:absolute;left:-11111px;width:60px;" + + "margin-top:1px;padding:0;border:0"; + div.style.cssText = + "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + + "margin:auto;border:1px;padding:1px;" + + "width:60%;top:1%"; + documentElement.appendChild( container ).appendChild( div ); + + var divStyle = window.getComputedStyle( div ); + pixelPositionVal = divStyle.top !== "1%"; + + // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 + reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; + + // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 + // Some styles come back with percentage values, even though they shouldn't + div.style.right = "60%"; + pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; + + // Support: IE 9 - 11 only + // Detect misreporting of content dimensions for box-sizing:border-box elements + boxSizingReliableVal = roundPixelMeasures( divStyle.width ) === 36; + + // Support: IE 9 only + // Detect overflow:scroll screwiness (gh-3699) + // Support: Chrome <=64 + // Don't get tricked when zoom affects offsetWidth (gh-4029) + div.style.position = "absolute"; + scrollboxSizeVal = roundPixelMeasures( div.offsetWidth / 3 ) === 12; + + documentElement.removeChild( container ); + + // Nullify the div so it wouldn't be stored in the memory and + // it will also be a sign that checks already performed + div = null; + } + + function roundPixelMeasures( measure ) { + return Math.round( parseFloat( measure ) ); + } + + var pixelPositionVal, boxSizingReliableVal, scrollboxSizeVal, pixelBoxStylesVal, + reliableTrDimensionsVal, reliableMarginLeftVal, + container = document.createElement( "div" ), + div = document.createElement( "div" ); + + // Finish early in limited (non-browser) environments + if ( !div.style ) { + return; + } + + // Support: IE <=9 - 11 only + // Style of cloned element affects source element cloned (#8908) + div.style.backgroundClip = "content-box"; + div.cloneNode( true ).style.backgroundClip = ""; + support.clearCloneStyle = div.style.backgroundClip === "content-box"; + + jQuery.extend( support, { + boxSizingReliable: function() { + computeStyleTests(); + return boxSizingReliableVal; + }, + pixelBoxStyles: function() { + computeStyleTests(); + return pixelBoxStylesVal; + }, + pixelPosition: function() { + computeStyleTests(); + return pixelPositionVal; + }, + reliableMarginLeft: function() { + computeStyleTests(); + return reliableMarginLeftVal; + }, + scrollboxSize: function() { + computeStyleTests(); + return scrollboxSizeVal; + }, + + // Support: IE 9 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Behavior in IE 9 is more subtle than in newer versions & it passes + // some versions of this test; make sure not to make it pass there! + reliableTrDimensions: function() { + var table, tr, trChild, trStyle; + if ( reliableTrDimensionsVal == null ) { + table = document.createElement( "table" ); + tr = document.createElement( "tr" ); + trChild = document.createElement( "div" ); + + table.style.cssText = "position:absolute;left:-11111px"; + tr.style.height = "1px"; + trChild.style.height = "9px"; + + documentElement + .appendChild( table ) + .appendChild( tr ) + .appendChild( trChild ); + + trStyle = window.getComputedStyle( tr ); + reliableTrDimensionsVal = parseInt( trStyle.height ) > 3; + + documentElement.removeChild( table ); + } + return reliableTrDimensionsVal; + } + } ); +} )(); + + +function curCSS( elem, name, computed ) { + var width, minWidth, maxWidth, ret, + + // Support: Firefox 51+ + // Retrieving style before computed somehow + // fixes an issue with getting wrong values + // on detached elements + style = elem.style; + + computed = computed || getStyles( elem ); + + // getPropertyValue is needed for: + // .css('filter') (IE 9 only, #12537) + // .css('--customProperty) (#3144) + if ( computed ) { + ret = computed.getPropertyValue( name ) || computed[ name ]; + + if ( ret === "" && !isAttached( elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Android Browser returns percentage for some values, + // but width seems to be reliably pixels. + // This is against the CSSOM draft spec: + // https://drafts.csswg.org/cssom/#resolved-values + if ( !support.pixelBoxStyles() && rnumnonpx.test( ret ) && rboxStyle.test( name ) ) { + + // Remember the original values + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + // Put in the new values to get a computed value out + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + // Revert the changed values + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret !== undefined ? + + // Support: IE <=9 - 11 only + // IE returns zIndex value as an integer. + ret + "" : + ret; +} + + +function addGetHookIf( conditionFn, hookFn ) { + + // Define the hook, we'll check on the first run if it's really needed. + return { + get: function() { + if ( conditionFn() ) { + + // Hook not needed (or it's not possible to use it due + // to missing dependency), remove it. + delete this.get; + return; + } + + // Hook needed; redefine it so that the support test is not executed again. + return ( this.get = hookFn ).apply( this, arguments ); + } + }; +} + + +var cssPrefixes = [ "Webkit", "Moz", "ms" ], + emptyStyle = document.createElement( "div" ).style, + vendorProps = {}; + +// Return a vendor-prefixed property or undefined +function vendorPropName( name ) { + + // Check for vendor prefixed names + var capName = name[ 0 ].toUpperCase() + name.slice( 1 ), + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in emptyStyle ) { + return name; + } + } +} + +// Return a potentially-mapped jQuery.cssProps or vendor prefixed property +function finalPropName( name ) { + var final = jQuery.cssProps[ name ] || vendorProps[ name ]; + + if ( final ) { + return final; + } + if ( name in emptyStyle ) { + return name; + } + return vendorProps[ name ] = vendorPropName( name ) || name; +} + + +var + + // Swappable if display is none or starts with table + // except "table", "table-cell", or "table-caption" + // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rcustomProp = /^--/, + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: "0", + fontWeight: "400" + }; + +function setPositiveNumber( _elem, value, subtract ) { + + // Any relative (+/-) values have already been + // normalized at this point + var matches = rcssNum.exec( value ); + return matches ? + + // Guard against undefined "subtract", e.g., when used as in cssHooks + Math.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || "px" ) : + value; +} + +function boxModelAdjustment( elem, dimension, box, isBorderBox, styles, computedVal ) { + var i = dimension === "width" ? 1 : 0, + extra = 0, + delta = 0; + + // Adjustment may not be necessary + if ( box === ( isBorderBox ? "border" : "content" ) ) { + return 0; + } + + for ( ; i < 4; i += 2 ) { + + // Both box models exclude margin + if ( box === "margin" ) { + delta += jQuery.css( elem, box + cssExpand[ i ], true, styles ); + } + + // If we get here with a content-box, we're seeking "padding" or "border" or "margin" + if ( !isBorderBox ) { + + // Add padding + delta += jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + + // For "border" or "margin", add border + if ( box !== "padding" ) { + delta += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + + // But still keep track of it otherwise + } else { + extra += jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + + // If we get here with a border-box (content + padding + border), we're seeking "content" or + // "padding" or "margin" + } else { + + // For "content", subtract padding + if ( box === "content" ) { + delta -= jQuery.css( elem, "padding" + cssExpand[ i ], true, styles ); + } + + // For "content" or "padding", subtract border + if ( box !== "margin" ) { + delta -= jQuery.css( elem, "border" + cssExpand[ i ] + "Width", true, styles ); + } + } + } + + // Account for positive content-box scroll gutter when requested by providing computedVal + if ( !isBorderBox && computedVal >= 0 ) { + + // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border + // Assuming integer scroll gutter, subtract the rest and round down + delta += Math.max( 0, Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + computedVal - + delta - + extra - + 0.5 + + // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter + // Use an explicit zero to avoid NaN (gh-3964) + ) ) || 0; + } + + return delta; +} + +function getWidthOrHeight( elem, dimension, extra ) { + + // Start with computed style + var styles = getStyles( elem ), + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322). + // Fake content-box until we know it's needed to know the true value. + boxSizingNeeded = !support.boxSizingReliable() || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + valueIsBorderBox = isBorderBox, + + val = curCSS( elem, dimension, styles ), + offsetProp = "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ); + + // Support: Firefox <=54 + // Return a confounding non-pixel value or feign ignorance, as appropriate. + if ( rnumnonpx.test( val ) ) { + if ( !extra ) { + return val; + } + val = "auto"; + } + + + // Support: IE 9 - 11 only + // Use offsetWidth/offsetHeight for when box sizing is unreliable. + // In those cases, the computed value can be trusted to be border-box. + if ( ( !support.boxSizingReliable() && isBorderBox || + + // Support: IE 10 - 11+, Edge 15 - 18+ + // IE/Edge misreport `getComputedStyle` of table rows with width/height + // set in CSS while `offset*` properties report correct values. + // Interestingly, in some cases IE 9 doesn't suffer from this issue. + !support.reliableTrDimensions() && nodeName( elem, "tr" ) || + + // Fall back to offsetWidth/offsetHeight when value is "auto" + // This happens for inline elements with no explicit setting (gh-3571) + val === "auto" || + + // Support: Android <=4.1 - 4.3 only + // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602) + !parseFloat( val ) && jQuery.css( elem, "display", false, styles ) === "inline" ) && + + // Make sure the element is visible & connected + elem.getClientRects().length ) { + + isBorderBox = jQuery.css( elem, "boxSizing", false, styles ) === "border-box"; + + // Where available, offsetWidth/offsetHeight approximate border box dimensions. + // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the + // retrieved value as a content box dimension. + valueIsBorderBox = offsetProp in elem; + if ( valueIsBorderBox ) { + val = elem[ offsetProp ]; + } + } + + // Normalize "" and auto + val = parseFloat( val ) || 0; + + // Adjust for the element's box model + return ( val + + boxModelAdjustment( + elem, + dimension, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox, + styles, + + // Provide the current computed size to request scroll gutter calculation (gh-3589) + val + ) + ) + "px"; +} + +jQuery.extend( { + + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + } + } + } + }, + + // Don't automatically add "px" to these possibly-unitless properties + cssNumber: { + "animationIterationCount": true, + "columnCount": true, + "fillOpacity": true, + "flexGrow": true, + "flexShrink": true, + "fontWeight": true, + "gridArea": true, + "gridColumn": true, + "gridColumnEnd": true, + "gridColumnStart": true, + "gridRow": true, + "gridRowEnd": true, + "gridRowStart": true, + "lineHeight": true, + "opacity": true, + "order": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: {}, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ), + style = elem.style; + + // Make sure that we're working with the right name. We don't + // want to query the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Gets hook for the prefixed version, then unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // Convert "+=" or "-=" to relative numbers (#7345) + if ( type === "string" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) { + value = adjustCSS( elem, name, ret ); + + // Fixes bug #9237 + type = "number"; + } + + // Make sure that null and NaN values aren't set (#7116) + if ( value == null || value !== value ) { + return; + } + + // If a number was passed in, add the unit (except for certain CSS properties) + // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append + // "px" to a few hardcoded values. + if ( type === "number" && !isCustomProp ) { + value += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? "" : "px" ); + } + + // background-* props affect original clone's values + if ( !support.clearCloneStyle && value === "" && name.indexOf( "background" ) === 0 ) { + style[ name ] = "inherit"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !( "set" in hooks ) || + ( value = hooks.set( elem, value, extra ) ) !== undefined ) { + + if ( isCustomProp ) { + style.setProperty( name, value ); + } else { + style[ name ] = value; + } + } + + } else { + + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && + ( ret = hooks.get( elem, false, extra ) ) !== undefined ) { + + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, extra, styles ) { + var val, num, hooks, + origName = camelCase( name ), + isCustomProp = rcustomProp.test( name ); + + // Make sure that we're working with the right name. We don't + // want to modify the value if it is a CSS custom property + // since they are user-defined. + if ( !isCustomProp ) { + name = finalPropName( origName ); + } + + // Try prefixed name followed by the unprefixed name + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name, styles ); + } + + // Convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Make numeric if forced or a qualifier was provided and val looks numeric + if ( extra === "" || extra ) { + num = parseFloat( val ); + return extra === true || isFinite( num ) ? num || 0 : val; + } + + return val; + } +} ); + +jQuery.each( [ "height", "width" ], function( _i, dimension ) { + jQuery.cssHooks[ dimension ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + + // Certain elements can have dimension info if we invisibly show them + // but it must have a current display style that would benefit + return rdisplayswap.test( jQuery.css( elem, "display" ) ) && + + // Support: Safari 8+ + // Table columns in Safari have non-zero offsetWidth & zero + // getBoundingClientRect().width unless display is changed. + // Support: IE <=11 only + // Running getBoundingClientRect on a disconnected node + // in IE throws an error. + ( !elem.getClientRects().length || !elem.getBoundingClientRect().width ) ? + swap( elem, cssShow, function() { + return getWidthOrHeight( elem, dimension, extra ); + } ) : + getWidthOrHeight( elem, dimension, extra ); + } + }, + + set: function( elem, value, extra ) { + var matches, + styles = getStyles( elem ), + + // Only read styles.position if the test has a chance to fail + // to avoid forcing a reflow. + scrollboxSizeBuggy = !support.scrollboxSize() && + styles.position === "absolute", + + // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991) + boxSizingNeeded = scrollboxSizeBuggy || extra, + isBorderBox = boxSizingNeeded && + jQuery.css( elem, "boxSizing", false, styles ) === "border-box", + subtract = extra ? + boxModelAdjustment( + elem, + dimension, + extra, + isBorderBox, + styles + ) : + 0; + + // Account for unreliable border-box dimensions by comparing offset* to computed and + // faking a content-box to get border and padding (gh-3699) + if ( isBorderBox && scrollboxSizeBuggy ) { + subtract -= Math.ceil( + elem[ "offset" + dimension[ 0 ].toUpperCase() + dimension.slice( 1 ) ] - + parseFloat( styles[ dimension ] ) - + boxModelAdjustment( elem, dimension, "border", false, styles ) - + 0.5 + ); + } + + // Convert to pixels if value adjustment is needed + if ( subtract && ( matches = rcssNum.exec( value ) ) && + ( matches[ 3 ] || "px" ) !== "px" ) { + + elem.style[ dimension ] = value; + value = jQuery.css( elem, dimension ); + } + + return setPositiveNumber( elem, value, subtract ); + } + }; +} ); + +jQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft, + function( elem, computed ) { + if ( computed ) { + return ( parseFloat( curCSS( elem, "marginLeft" ) ) || + elem.getBoundingClientRect().left - + swap( elem, { marginLeft: 0 }, function() { + return elem.getBoundingClientRect().left; + } ) + ) + "px"; + } + } +); + +// These hooks are used by animate to expand properties +jQuery.each( { + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i = 0, + expanded = {}, + + // Assumes a single number if not a string + parts = typeof value === "string" ? value.split( " " ) : [ value ]; + + for ( ; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( prefix !== "margin" ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +} ); + +jQuery.fn.extend( { + css: function( name, value ) { + return access( this, function( elem, name, value ) { + var styles, len, + map = {}, + i = 0; + + if ( Array.isArray( name ) ) { + styles = getStyles( elem ); + len = name.length; + + for ( ; i < len; i++ ) { + map[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles ); + } + + return map; + } + + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + } +} ); + + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || jQuery.easing._default; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + // Use a property on the element directly when it is not a DOM element, + // or when there is no matching style property that exists. + if ( tween.elem.nodeType !== 1 || + tween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) { + return tween.elem[ tween.prop ]; + } + + // Passing an empty string as a 3rd parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails. + // Simple values such as "10px" are parsed to Float; + // complex values such as "rotate(1rad)" are returned as-is. + result = jQuery.css( tween.elem, tween.prop, "" ); + + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + + // Use step hook for back compat. + // Use cssHook if its there. + // Use .style if available and use plain properties where available. + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.nodeType === 1 && ( + jQuery.cssHooks[ tween.prop ] || + tween.elem.style[ finalPropName( tween.prop ) ] != null ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +// Support: IE <=9 only +// Panic based approach to setting things on disconnected nodes +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { + set: function( tween ) { + if ( tween.elem.nodeType && tween.elem.parentNode ) { + tween.elem[ tween.prop ] = tween.now; + } + } +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p * Math.PI ) / 2; + }, + _default: "swing" +}; + +jQuery.fx = Tween.prototype.init; + +// Back compat <1.8 extension point +jQuery.fx.step = {}; + + + + +var + fxNow, inProgress, + rfxtypes = /^(?:toggle|show|hide)$/, + rrun = /queueHooks$/; + +function schedule() { + if ( inProgress ) { + if ( document.hidden === false && window.requestAnimationFrame ) { + window.requestAnimationFrame( schedule ); + } else { + window.setTimeout( schedule, jQuery.fx.interval ); + } + + jQuery.fx.tick(); + } +} + +// Animations created synchronously will run synchronously +function createFxNow() { + window.setTimeout( function() { + fxNow = undefined; + } ); + return ( fxNow = Date.now() ); +} + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + i = 0, + attrs = { height: type }; + + // If we include width, step value is 1 to do all cssExpand values, + // otherwise step value is 2 to skip over Left and Right + includeWidth = includeWidth ? 1 : 0; + for ( ; i < 4; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +function createTween( value, prop, animation ) { + var tween, + collection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( ( tween = collection[ index ].call( animation, prop, value ) ) ) { + + // We're done with this property + return tween; + } + } +} + +function defaultPrefilter( elem, props, opts ) { + var prop, value, toggle, hooks, oldfire, propTween, restoreDisplay, display, + isBox = "width" in props || "height" in props, + anim = this, + orig = {}, + style = elem.style, + hidden = elem.nodeType && isHiddenWithinTree( elem ), + dataShow = dataPriv.get( elem, "fxshow" ); + + // Queue-skipping animations hijack the fx hooks + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always( function() { + + // Ensure the complete handler is called before this completes + anim.always( function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + } ); + } ); + } + + // Detect show/hide animations + for ( prop in props ) { + value = props[ prop ]; + if ( rfxtypes.test( value ) ) { + delete props[ prop ]; + toggle = toggle || value === "toggle"; + if ( value === ( hidden ? "hide" : "show" ) ) { + + // Pretend to be hidden if this is a "show" and + // there is still data from a stopped show/hide + if ( value === "show" && dataShow && dataShow[ prop ] !== undefined ) { + hidden = true; + + // Ignore all other no-op show/hide data + } else { + continue; + } + } + orig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop ); + } + } + + // Bail out if this is a no-op like .hide().hide() + propTween = !jQuery.isEmptyObject( props ); + if ( !propTween && jQuery.isEmptyObject( orig ) ) { + return; + } + + // Restrict "overflow" and "display" styles during box animations + if ( isBox && elem.nodeType === 1 ) { + + // Support: IE <=9 - 11, Edge 12 - 15 + // Record all 3 overflow attributes because IE does not infer the shorthand + // from identically-valued overflowX and overflowY and Edge just mirrors + // the overflowX value there. + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Identify a display type, preferring old show/hide data over the CSS cascade + restoreDisplay = dataShow && dataShow.display; + if ( restoreDisplay == null ) { + restoreDisplay = dataPriv.get( elem, "display" ); + } + display = jQuery.css( elem, "display" ); + if ( display === "none" ) { + if ( restoreDisplay ) { + display = restoreDisplay; + } else { + + // Get nonempty value(s) by temporarily forcing visibility + showHide( [ elem ], true ); + restoreDisplay = elem.style.display || restoreDisplay; + display = jQuery.css( elem, "display" ); + showHide( [ elem ] ); + } + } + + // Animate inline elements as inline-block + if ( display === "inline" || display === "inline-block" && restoreDisplay != null ) { + if ( jQuery.css( elem, "float" ) === "none" ) { + + // Restore the original display value at the end of pure show/hide animations + if ( !propTween ) { + anim.done( function() { + style.display = restoreDisplay; + } ); + if ( restoreDisplay == null ) { + display = style.display; + restoreDisplay = display === "none" ? "" : display; + } + } + style.display = "inline-block"; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + anim.always( function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + } ); + } + + // Implement show/hide animations + propTween = false; + for ( prop in orig ) { + + // General show/hide setup for this element animation + if ( !propTween ) { + if ( dataShow ) { + if ( "hidden" in dataShow ) { + hidden = dataShow.hidden; + } + } else { + dataShow = dataPriv.access( elem, "fxshow", { display: restoreDisplay } ); + } + + // Store hidden/visible for toggle so `.stop().toggle()` "reverses" + if ( toggle ) { + dataShow.hidden = !hidden; + } + + // Show elements before animating them + if ( hidden ) { + showHide( [ elem ], true ); + } + + /* eslint-disable no-loop-func */ + + anim.done( function() { + + /* eslint-enable no-loop-func */ + + // The final step of a "hide" animation is actually hiding the element + if ( !hidden ) { + showHide( [ elem ] ); + } + dataPriv.remove( elem, "fxshow" ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + } ); + } + + // Per-property setup + propTween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim ); + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = propTween.start; + if ( hidden ) { + propTween.end = propTween.start; + propTween.start = 0; + } + } + } +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = camelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( Array.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // Not quite $.extend, this won't overwrite existing keys. + // Reusing 'index' because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +function Animation( elem, properties, options ) { + var result, + stopped, + index = 0, + length = Animation.prefilters.length, + deferred = jQuery.Deferred().always( function() { + + // Don't match elem in the :animated selector + delete tick.elem; + } ), + tick = function() { + if ( stopped ) { + return false; + } + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + + // Support: Android 2.3 only + // Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497) + temp = remaining / animation.duration || 0, + percent = 1 - temp, + index = 0, + length = animation.tweens.length; + + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ] ); + + // If there's more to do, yield + if ( percent < 1 && length ) { + return remaining; + } + + // If this was an empty animation, synthesize a final progress notification + if ( !length ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + } + + // Resolve the animation and report its conclusion + deferred.resolveWith( elem, [ animation ] ); + return false; + }, + animation = deferred.promise( { + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { + specialEasing: {}, + easing: jQuery.easing._default + }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + + // If we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + if ( stopped ) { + return this; + } + stopped = true; + for ( ; index < length; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // Resolve when we played the last frame; otherwise, reject + if ( gotoEnd ) { + deferred.notifyWith( elem, [ animation, 1, 0 ] ); + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + } ), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length; index++ ) { + result = Animation.prefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + if ( isFunction( result.stop ) ) { + jQuery._queueHooks( animation.elem, animation.opts.queue ).stop = + result.stop.bind( result ); + } + return result; + } + } + + jQuery.map( props, createTween, animation ); + + if ( isFunction( animation.opts.start ) ) { + animation.opts.start.call( elem, animation ); + } + + // Attach callbacks from options + animation + .progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); + + jQuery.fx.timer( + jQuery.extend( tick, { + elem: elem, + anim: animation, + queue: animation.opts.queue + } ) + ); + + return animation; +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweeners: { + "*": [ function( prop, value ) { + var tween = this.createTween( prop, value ); + adjustCSS( tween.elem, prop, rcssNum.exec( value ), tween ); + return tween; + } ] + }, + + tweener: function( props, callback ) { + if ( isFunction( props ) ) { + callback = props; + props = [ "*" ]; + } else { + props = props.match( rnothtmlwhite ); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length; index++ ) { + prop = props[ index ]; + Animation.tweeners[ prop ] = Animation.tweeners[ prop ] || []; + Animation.tweeners[ prop ].unshift( callback ); + } + }, + + prefilters: [ defaultPrefilter ], + + prefilter: function( callback, prepend ) { + if ( prepend ) { + Animation.prefilters.unshift( callback ); + } else { + Animation.prefilters.push( callback ); + } + } +} ); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || !fn && easing || + isFunction( speed ) && speed, + duration: speed, + easing: fn && easing || easing && !isFunction( easing ) && easing + }; + + // Go to the end state if fx are off + if ( jQuery.fx.off ) { + opt.duration = 0; + + } else { + if ( typeof opt.duration !== "number" ) { + if ( opt.duration in jQuery.fx.speeds ) { + opt.duration = jQuery.fx.speeds[ opt.duration ]; + + } else { + opt.duration = jQuery.fx.speeds._default; + } + } + } + + // Normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( isFunction( opt.old ) ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.fn.extend( { + fadeTo: function( speed, to, easing, callback ) { + + // Show any hidden elements after setting opacity to 0 + return this.filter( isHiddenWithinTree ).css( "opacity", 0 ).show() + + // Animate to the value specified + .end().animate( { opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + + // Empty animations, or finishing resolves immediately + if ( empty || dataPriv.get( this, "finish" ) ) { + anim.stop( true ); + } + }; + doAnimation.finish = doAnimation; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue ) { + this.queue( type || "fx", [] ); + } + + return this.each( function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = dataPriv.get( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && + ( type == null || timers[ index ].queue === type ) ) { + + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // Start the next in the queue if the last step wasn't forced. + // Timers currently will call their complete callbacks, which + // will dequeue but only if they were gotoEnd. + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + } ); + }, + finish: function( type ) { + if ( type !== false ) { + type = type || "fx"; + } + return this.each( function() { + var index, + data = dataPriv.get( this ), + queue = data[ type + "queue" ], + hooks = data[ type + "queueHooks" ], + timers = jQuery.timers, + length = queue ? queue.length : 0; + + // Enable finishing flag on private data + data.finish = true; + + // Empty the queue first + jQuery.queue( this, type, [] ); + + if ( hooks && hooks.stop ) { + hooks.stop.call( this, true ); + } + + // Look for any active animations, and finish them + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && timers[ index ].queue === type ) { + timers[ index ].anim.stop( true ); + timers.splice( index, 1 ); + } + } + + // Look for any animations in the old queue and finish them + for ( index = 0; index < length; index++ ) { + if ( queue[ index ] && queue[ index ].finish ) { + queue[ index ].finish.call( this ); + } + } + + // Turn off finishing flag + delete data.finish; + } ); + } +} ); + +jQuery.each( [ "toggle", "show", "hide" ], function( _i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +} ); + +// Generate shortcuts for custom animations +jQuery.each( { + slideDown: genFx( "show" ), + slideUp: genFx( "hide" ), + slideToggle: genFx( "toggle" ), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +} ); + +jQuery.timers = []; +jQuery.fx.tick = function() { + var timer, + i = 0, + timers = jQuery.timers; + + fxNow = Date.now(); + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + + // Run the timer and safely remove it when done (allowing for external removal) + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } + fxNow = undefined; +}; + +jQuery.fx.timer = function( timer ) { + jQuery.timers.push( timer ); + jQuery.fx.start(); +}; + +jQuery.fx.interval = 13; +jQuery.fx.start = function() { + if ( inProgress ) { + return; + } + + inProgress = true; + schedule(); +}; + +jQuery.fx.stop = function() { + inProgress = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + + // Default speed + _default: 400 +}; + + +// Based off of the plugin by Clint Helfers, with permission. +// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/ +jQuery.fn.delay = function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = window.setTimeout( next, time ); + hooks.stop = function() { + window.clearTimeout( timeout ); + }; + } ); +}; + + +( function() { + var input = document.createElement( "input" ), + select = document.createElement( "select" ), + opt = select.appendChild( document.createElement( "option" ) ); + + input.type = "checkbox"; + + // Support: Android <=4.3 only + // Default value for a checkbox should be "on" + support.checkOn = input.value !== ""; + + // Support: IE <=11 only + // Must access selectedIndex to make default options select + support.optSelected = opt.selected; + + // Support: IE <=11 only + // An input loses its value after becoming a radio + input = document.createElement( "input" ); + input.value = "t"; + input.type = "radio"; + support.radioValue = input.value === "t"; +} )(); + + +var boolHook, + attrHandle = jQuery.expr.attrHandle; + +jQuery.fn.extend( { + attr: function( name, value ) { + return access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each( function() { + jQuery.removeAttr( this, name ); + } ); + } +} ); + +jQuery.extend( { + attr: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set attributes on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + // Attribute hooks are determined by the lowercase version + // Grab necessary hook if one is defined + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + hooks = jQuery.attrHooks[ name.toLowerCase() ] || + ( jQuery.expr.match.bool.test( name ) ? boolHook : undefined ); + } + + if ( value !== undefined ) { + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + } + + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + elem.setAttribute( name, value + "" ); + return value; + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + ret = jQuery.find.attr( elem, name ); + + // Non-existent attributes return null, we normalize to undefined + return ret == null ? undefined : ret; + }, + + attrHooks: { + type: { + set: function( elem, value ) { + if ( !support.radioValue && value === "radio" && + nodeName( elem, "input" ) ) { + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + } + }, + + removeAttr: function( elem, value ) { + var name, + i = 0, + + // Attribute names can contain non-HTML whitespace characters + // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2 + attrNames = value && value.match( rnothtmlwhite ); + + if ( attrNames && elem.nodeType === 1 ) { + while ( ( name = attrNames[ i++ ] ) ) { + elem.removeAttribute( name ); + } + } + } +} ); + +// Hooks for boolean attributes +boolHook = { + set: function( elem, value, name ) { + if ( value === false ) { + + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + elem.setAttribute( name, name ); + } + return name; + } +}; + +jQuery.each( jQuery.expr.match.bool.source.match( /\w+/g ), function( _i, name ) { + var getter = attrHandle[ name ] || jQuery.find.attr; + + attrHandle[ name ] = function( elem, name, isXML ) { + var ret, handle, + lowercaseName = name.toLowerCase(); + + if ( !isXML ) { + + // Avoid an infinite loop by temporarily removing this function from the getter + handle = attrHandle[ lowercaseName ]; + attrHandle[ lowercaseName ] = ret; + ret = getter( elem, name, isXML ) != null ? + lowercaseName : + null; + attrHandle[ lowercaseName ] = handle; + } + return ret; + }; +} ); + + + + +var rfocusable = /^(?:input|select|textarea|button)$/i, + rclickable = /^(?:a|area)$/i; + +jQuery.fn.extend( { + prop: function( name, value ) { + return access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + return this.each( function() { + delete this[ jQuery.propFix[ name ] || name ]; + } ); + } +} ); + +jQuery.extend( { + prop: function( elem, name, value ) { + var ret, hooks, + nType = elem.nodeType; + + // Don't get/set properties on text, comment and attribute nodes + if ( nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) { + + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && + ( ret = hooks.set( elem, value, name ) ) !== undefined ) { + return ret; + } + + return ( elem[ name ] = value ); + } + + if ( hooks && "get" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) { + return ret; + } + + return elem[ name ]; + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + + // Support: IE <=9 - 11 only + // elem.tabIndex doesn't always return the + // correct value when it hasn't been explicitly set + // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + // Use proper attribute retrieval(#12072) + var tabindex = jQuery.find.attr( elem, "tabindex" ); + + if ( tabindex ) { + return parseInt( tabindex, 10 ); + } + + if ( + rfocusable.test( elem.nodeName ) || + rclickable.test( elem.nodeName ) && + elem.href + ) { + return 0; + } + + return -1; + } + } + }, + + propFix: { + "for": "htmlFor", + "class": "className" + } +} ); + +// Support: IE <=11 only +// Accessing the selectedIndex property +// forces the browser to respect setting selected +// on the option +// The getter ensures a default option is selected +// when in an optgroup +// eslint rule "no-unused-expressions" is disabled for this code +// since it considers such accessions noop +if ( !support.optSelected ) { + jQuery.propHooks.selected = { + get: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent && parent.parentNode ) { + parent.parentNode.selectedIndex; + } + return null; + }, + set: function( elem ) { + + /* eslint no-unused-expressions: "off" */ + + var parent = elem.parentNode; + if ( parent ) { + parent.selectedIndex; + + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + } + }; +} + +jQuery.each( [ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable" +], function() { + jQuery.propFix[ this.toLowerCase() ] = this; +} ); + + + + + // Strip and collapse whitespace according to HTML spec + // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace + function stripAndCollapse( value ) { + var tokens = value.match( rnothtmlwhite ) || []; + return tokens.join( " " ); + } + + +function getClass( elem ) { + return elem.getAttribute && elem.getAttribute( "class" ) || ""; +} + +function classesToArray( value ) { + if ( Array.isArray( value ) ) { + return value; + } + if ( typeof value === "string" ) { + return value.match( rnothtmlwhite ) || []; + } + return []; +} + +jQuery.fn.extend( { + addClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).addClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + if ( cur.indexOf( " " + clazz + " " ) < 0 ) { + cur += clazz + " "; + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var classes, elem, cur, curValue, clazz, j, finalValue, + i = 0; + + if ( isFunction( value ) ) { + return this.each( function( j ) { + jQuery( this ).removeClass( value.call( this, j, getClass( this ) ) ); + } ); + } + + if ( !arguments.length ) { + return this.attr( "class", "" ); + } + + classes = classesToArray( value ); + + if ( classes.length ) { + while ( ( elem = this[ i++ ] ) ) { + curValue = getClass( elem ); + + // This expression is here for better compressibility (see addClass) + cur = elem.nodeType === 1 && ( " " + stripAndCollapse( curValue ) + " " ); + + if ( cur ) { + j = 0; + while ( ( clazz = classes[ j++ ] ) ) { + + // Remove *all* instances + while ( cur.indexOf( " " + clazz + " " ) > -1 ) { + cur = cur.replace( " " + clazz + " ", " " ); + } + } + + // Only assign if different to avoid unneeded rendering. + finalValue = stripAndCollapse( cur ); + if ( curValue !== finalValue ) { + elem.setAttribute( "class", finalValue ); + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isValidValue = type === "string" || Array.isArray( value ); + + if ( typeof stateVal === "boolean" && isValidValue ) { + return stateVal ? this.addClass( value ) : this.removeClass( value ); + } + + if ( isFunction( value ) ) { + return this.each( function( i ) { + jQuery( this ).toggleClass( + value.call( this, i, getClass( this ), stateVal ), + stateVal + ); + } ); + } + + return this.each( function() { + var className, i, self, classNames; + + if ( isValidValue ) { + + // Toggle individual class names + i = 0; + self = jQuery( this ); + classNames = classesToArray( value ); + + while ( ( className = classNames[ i++ ] ) ) { + + // Check each className given, space separated list + if ( self.hasClass( className ) ) { + self.removeClass( className ); + } else { + self.addClass( className ); + } + } + + // Toggle whole class name + } else if ( value === undefined || type === "boolean" ) { + className = getClass( this ); + if ( className ) { + + // Store className if set + dataPriv.set( this, "__className__", className ); + } + + // If the element has a class name or if we're passed `false`, + // then remove the whole classname (if there was one, the above saved it). + // Otherwise bring back whatever was previously saved (if anything), + // falling back to the empty string if nothing was stored. + if ( this.setAttribute ) { + this.setAttribute( "class", + className || value === false ? + "" : + dataPriv.get( this, "__className__" ) || "" + ); + } + } + } ); + }, + + hasClass: function( selector ) { + var className, elem, + i = 0; + + className = " " + selector + " "; + while ( ( elem = this[ i++ ] ) ) { + if ( elem.nodeType === 1 && + ( " " + stripAndCollapse( getClass( elem ) ) + " " ).indexOf( className ) > -1 ) { + return true; + } + } + + return false; + } +} ); + + + + +var rreturn = /\r/g; + +jQuery.fn.extend( { + val: function( value ) { + var hooks, ret, valueIsFunction, + elem = this[ 0 ]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || + jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && + "get" in hooks && + ( ret = hooks.get( elem, "value" ) ) !== undefined + ) { + return ret; + } + + ret = elem.value; + + // Handle most common string cases + if ( typeof ret === "string" ) { + return ret.replace( rreturn, "" ); + } + + // Handle cases where value is null/undef or number + return ret == null ? "" : ret; + } + + return; + } + + valueIsFunction = isFunction( value ); + + return this.each( function( i ) { + var val; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( valueIsFunction ) { + val = value.call( this, i, jQuery( this ).val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + + } else if ( typeof val === "number" ) { + val += ""; + + } else if ( Array.isArray( val ) ) { + val = jQuery.map( val, function( value ) { + return value == null ? "" : value + ""; + } ); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !( "set" in hooks ) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + } ); + } +} ); + +jQuery.extend( { + valHooks: { + option: { + get: function( elem ) { + + var val = jQuery.find.attr( elem, "value" ); + return val != null ? + val : + + // Support: IE <=10 - 11 only + // option.text throws exceptions (#14686, #14858) + // Strip and collapse whitespace + // https://html.spec.whatwg.org/#strip-and-collapse-whitespace + stripAndCollapse( jQuery.text( elem ) ); + } + }, + select: { + get: function( elem ) { + var value, option, i, + options = elem.options, + index = elem.selectedIndex, + one = elem.type === "select-one", + values = one ? null : [], + max = one ? index + 1 : options.length; + + if ( index < 0 ) { + i = max; + + } else { + i = one ? index : 0; + } + + // Loop through all the selected options + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Support: IE <=9 only + // IE8-9 doesn't update selected after form reset (#2551) + if ( ( option.selected || i === index ) && + + // Don't return options that are disabled or in a disabled optgroup + !option.disabled && + ( !option.parentNode.disabled || + !nodeName( option.parentNode, "optgroup" ) ) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + }, + + set: function( elem, value ) { + var optionSet, option, + options = elem.options, + values = jQuery.makeArray( value ), + i = options.length; + + while ( i-- ) { + option = options[ i ]; + + /* eslint-disable no-cond-assign */ + + if ( option.selected = + jQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1 + ) { + optionSet = true; + } + + /* eslint-enable no-cond-assign */ + } + + // Force browsers to behave consistently when non-matching value is set + if ( !optionSet ) { + elem.selectedIndex = -1; + } + return values; + } + } + } +} ); + +// Radios and checkboxes getter/setter +jQuery.each( [ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + set: function( elem, value ) { + if ( Array.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 ); + } + } + }; + if ( !support.checkOn ) { + jQuery.valHooks[ this ].get = function( elem ) { + return elem.getAttribute( "value" ) === null ? "on" : elem.value; + }; + } +} ); + + + + +// Return jQuery for attributes-only inclusion + + +support.focusin = "onfocusin" in window; + + +var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + stopPropagationCallback = function( e ) { + e.stopPropagation(); + }; + +jQuery.extend( jQuery.event, { + + trigger: function( event, data, elem, onlyHandlers ) { + + var i, cur, tmp, bubbleType, ontype, handle, special, lastElement, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split( "." ) : []; + + cur = lastElement = tmp = elem = elem || document; + + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "." ) > -1 ) { + + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split( "." ); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf( ":" ) < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join( "." ); + event.rnamespace = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === ( elem.ownerDocument || document ) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) { + lastElement = cur; + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( + dataPriv.get( cur, "events" ) || Object.create( null ) + )[ event.type ] && + dataPriv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( ( !special._default || + special._default.apply( eventPath.pop(), data ) === false ) && + acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name as the event. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && isFunction( elem[ type ] ) && !isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + + if ( event.isPropagationStopped() ) { + lastElement.addEventListener( type, stopPropagationCallback ); + } + + elem[ type ](); + + if ( event.isPropagationStopped() ) { + lastElement.removeEventListener( type, stopPropagationCallback ); + } + + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } + } + + return event.result; + }, + + // Piggyback on a donor event to simulate a different one + // Used only for `focus(in | out)` events + simulate: function( type, elem, event ) { + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true + } + ); + + jQuery.event.trigger( e, null, elem ); + } + +} ); + +jQuery.fn.extend( { + + trigger: function( type, data ) { + return this.each( function() { + jQuery.event.trigger( type, data, this ); + } ); + }, + triggerHandler: function( type, data ) { + var elem = this[ 0 ]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } + } +} ); + + +// Support: Firefox <=44 +// Firefox doesn't have focus(in | out) events +// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787 +// +// Support: Chrome <=48 - 49, Safari <=9.0 - 9.1 +// focus(in | out) events fire after focus & blur events, +// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order +// Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857 +if ( !support.focusin ) { + jQuery.each( { focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + + // Handle: regular nodes (via `this.ownerDocument`), window + // (via `this.document`) & document (via `this`). + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + dataPriv.access( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this.document || this, + attaches = dataPriv.access( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + dataPriv.remove( doc, fix ); + + } else { + dataPriv.access( doc, fix, attaches ); + } + } + }; + } ); +} +var location = window.location; + +var nonce = { guid: Date.now() }; + +var rquery = ( /\?/ ); + + + +// Cross-browser xml parsing +jQuery.parseXML = function( data ) { + var xml; + if ( !data || typeof data !== "string" ) { + return null; + } + + // Support: IE 9 - 11 only + // IE throws on parseFromString with invalid input. + try { + xml = ( new window.DOMParser() ).parseFromString( data, "text/xml" ); + } catch ( e ) { + xml = undefined; + } + + if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; +}; + + +var + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i, + rsubmittable = /^(?:input|select|textarea|keygen)/i; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( Array.isArray( obj ) ) { + + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + + // Item is non-scalar (array or object), encode its numeric index. + buildParams( + prefix + "[" + ( typeof v === "object" && v != null ? i : "" ) + "]", + v, + traditional, + add + ); + } + } ); + + } else if ( !traditional && toType( obj ) === "object" ) { + + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + + // Serialize scalar item. + add( prefix, obj ); + } +} + +// Serialize an array of form elements or a set of +// key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, valueOrFunction ) { + + // If value is a function, invoke it and use its return value + var value = isFunction( valueOrFunction ) ? + valueOrFunction() : + valueOrFunction; + + s[ s.length ] = encodeURIComponent( key ) + "=" + + encodeURIComponent( value == null ? "" : value ); + }; + + if ( a == null ) { + return ""; + } + + // If an array was passed in, assume that it is an array of form elements. + if ( Array.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + } ); + + } else { + + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ); +}; + +jQuery.fn.extend( { + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map( function() { + + // Can add propHook for "elements" to filter or add form elements + var elements = jQuery.prop( this, "elements" ); + return elements ? jQuery.makeArray( elements ) : this; + } ) + .filter( function() { + var type = this.type; + + // Use .is( ":disabled" ) so that fieldset[disabled] works + return this.name && !jQuery( this ).is( ":disabled" ) && + rsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) && + ( this.checked || !rcheckableType.test( type ) ); + } ) + .map( function( _i, elem ) { + var val = jQuery( this ).val(); + + if ( val == null ) { + return null; + } + + if ( Array.isArray( val ) ) { + return jQuery.map( val, function( val ) { + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ); + } + + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + } ).get(); + } +} ); + + +var + r20 = /%20/g, + rhash = /#.*$/, + rantiCache = /([?&])_=[^&]*/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg, + + // #7653, #8125, #8152: local protocol detection + rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression + allTypes = "*/".concat( "*" ), + + // Anchor tag for parsing the document origin + originAnchor = document.createElement( "a" ); + originAnchor.href = location.href; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, + i = 0, + dataTypes = dataTypeExpression.toLowerCase().match( rnothtmlwhite ) || []; + + if ( isFunction( func ) ) { + + // For each dataType in the dataTypeExpression + while ( ( dataType = dataTypes[ i++ ] ) ) { + + // Prepend if requested + if ( dataType[ 0 ] === "+" ) { + dataType = dataType.slice( 1 ) || "*"; + ( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func ); + + // Otherwise append + } else { + ( structure[ dataType ] = structure[ dataType ] || [] ).push( func ); + } + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) { + + var inspected = {}, + seekingTransport = ( structure === transports ); + + function inspect( dataType ) { + var selected; + inspected[ dataType ] = true; + jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) { + var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR ); + if ( typeof dataTypeOrTransport === "string" && + !seekingTransport && !inspected[ dataTypeOrTransport ] ) { + + options.dataTypes.unshift( dataTypeOrTransport ); + inspect( dataTypeOrTransport ); + return false; + } else if ( seekingTransport ) { + return !( selected = dataTypeOrTransport ); + } + } ); + return selected; + } + + return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" ); +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes #9887 +function ajaxExtend( target, src ) { + var key, deep, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } + + return target; +} + +/* Handles responses to an ajax request: + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + + var ct, type, finalDataType, firstDataType, + contents = s.contents, + dataTypes = s.dataTypes; + + // Remove auto dataType and get content-type in the process + while ( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader( "Content-Type" ); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[ 0 ] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +/* Chain conversions given the request and the original response + * Also sets the responseXXX fields on the jqXHR instance + */ +function ajaxConvert( s, response, jqXHR, isSuccess ) { + var conv2, current, conv, tmp, prev, + converters = {}, + + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(); + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + current = dataTypes.shift(); + + // Convert to each sequential dataType + while ( current ) { + + if ( s.responseFields[ current ] ) { + jqXHR[ s.responseFields[ current ] ] = response; + } + + // Apply the dataFilter if provided + if ( !prev && isSuccess && s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + prev = current; + current = dataTypes.shift(); + + if ( current ) { + + // There's only work to do if current dataType is non-auto + if ( current === "*" ) { + + current = prev; + + // Convert response if prev dataType is non-auto and differs from current + } else if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split( " " ); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.unshift( tmp[ 1 ] ); + } + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s.throws ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { + state: "parsererror", + error: conv ? e : "No conversion from " + prev + " to " + current + }; + } + } + } + } + } + } + + return { state: "success", data: response }; +} + +jQuery.extend( { + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {}, + + ajaxSettings: { + url: location.href, + type: "GET", + isLocal: rlocalProtocol.test( location.protocol ), + global: true, + processData: true, + async: true, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + "*": allTypes, + text: "text/plain", + html: "text/html", + xml: "application/xml, text/xml", + json: "application/json, text/javascript" + }, + + contents: { + xml: /\bxml\b/, + html: /\bhtml/, + json: /\bjson\b/ + }, + + responseFields: { + xml: "responseXML", + text: "responseText", + json: "responseJSON" + }, + + // Data converters + // Keys separate source (or catchall "*") and destination types with a single space + converters: { + + // Convert anything to text + "* text": String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": JSON.parse, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + url: true, + context: true + } + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + return settings ? + + // Building a settings object + ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) : + + // Extending ajaxSettings + ajaxExtend( jQuery.ajaxSettings, target ); + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var transport, + + // URL without anti-cache param + cacheURL, + + // Response headers + responseHeadersString, + responseHeaders, + + // timeout handle + timeoutTimer, + + // Url cleanup var + urlAnchor, + + // Request state (becomes false upon send and true upon completion) + completed, + + // To know if global events are to be dispatched + fireGlobals, + + // Loop variable + i, + + // uncached part of the url + uncached, + + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + + // Callbacks context + callbackContext = s.context || s, + + // Context for global events is callbackContext if it is a DOM node or jQuery collection + globalEventContext = s.context && + ( callbackContext.nodeType || callbackContext.jquery ) ? + jQuery( callbackContext ) : + jQuery.event, + + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks( "once memory" ), + + // Status-dependent callbacks + statusCode = s.statusCode || {}, + + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + + // Default abort message + strAbort = "canceled", + + // Fake xhr + jqXHR = { + readyState: 0, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( completed ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while ( ( match = rheaders.exec( responseHeadersString ) ) ) { + responseHeaders[ match[ 1 ].toLowerCase() + " " ] = + ( responseHeaders[ match[ 1 ].toLowerCase() + " " ] || [] ) + .concat( match[ 2 ] ); + } + } + match = responseHeaders[ key.toLowerCase() + " " ]; + } + return match == null ? null : match.join( ", " ); + }, + + // Raw string + getAllResponseHeaders: function() { + return completed ? responseHeadersString : null; + }, + + // Caches the header + setRequestHeader: function( name, value ) { + if ( completed == null ) { + name = requestHeadersNames[ name.toLowerCase() ] = + requestHeadersNames[ name.toLowerCase() ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( completed == null ) { + s.mimeType = type; + } + return this; + }, + + // Status-dependent callbacks + statusCode: function( map ) { + var code; + if ( map ) { + if ( completed ) { + + // Execute the appropriate callbacks + jqXHR.always( map[ jqXHR.status ] ); + } else { + + // Lazy-add the new callbacks in a way that preserves old ones + for ( code in map ) { + statusCode[ code ] = [ statusCode[ code ], map[ code ] ]; + } + } + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + var finalText = statusText || strAbort; + if ( transport ) { + transport.abort( finalText ); + } + done( 0, finalText ); + return this; + } + }; + + // Attach deferreds + deferred.promise( jqXHR ); + + // Add protocol if not provided (prefilters might expect it) + // Handle falsy url in the settings object (#10093: consistency with old signature) + // We also use the url parameter if available + s.url = ( ( url || s.url || location.href ) + "" ) + .replace( rprotocol, location.protocol + "//" ); + + // Alias method option to type as per ticket #12004 + s.type = options.method || options.type || s.method || s.type; + + // Extract dataTypes list + s.dataTypes = ( s.dataType || "*" ).toLowerCase().match( rnothtmlwhite ) || [ "" ]; + + // A cross-domain request is in order when the origin doesn't match the current origin. + if ( s.crossDomain == null ) { + urlAnchor = document.createElement( "a" ); + + // Support: IE <=8 - 11, Edge 12 - 15 + // IE throws exception on accessing the href property if url is malformed, + // e.g. http://example.com:80x/ + try { + urlAnchor.href = s.url; + + // Support: IE <=8 - 11 only + // Anchor's host property isn't correctly set when s.url is relative + urlAnchor.href = urlAnchor.href; + s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== + urlAnchor.protocol + "//" + urlAnchor.host; + } catch ( e ) { + + // If there is an error parsing the URL, assume it is crossDomain, + // it can be rejected by the transport if it is invalid + s.crossDomain = true; + } + } + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // If request was aborted inside a prefilter, stop there + if ( completed ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + // Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118) + fireGlobals = jQuery.event && s.global; + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger( "ajaxStart" ); + } + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Save the URL in case we're toying with the If-Modified-Since + // and/or If-None-Match header later on + // Remove hash to simplify url manipulation + cacheURL = s.url.replace( rhash, "" ); + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // Remember the hash so we can put it back + uncached = s.url.slice( cacheURL.length ); + + // If data is available and should be processed, append data to url + if ( s.data && ( s.processData || typeof s.data === "string" ) ) { + cacheURL += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data; + + // #9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Add or update anti-cache param if needed + if ( s.cache === false ) { + cacheURL = cacheURL.replace( rantiCache, "$1" ); + uncached = ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + ( nonce.guid++ ) + + uncached; + } + + // Put hash and anti-cache on the URL that will be requested (gh-1732) + s.url = cacheURL + uncached; + + // Change '%20' to '+' if this is encoded form body content (gh-2658) + } else if ( s.data && s.processData && + ( s.contentType || "" ).indexOf( "application/x-www-form-urlencoded" ) === 0 ) { + s.data = s.data.replace( r20, "+" ); + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + if ( jQuery.lastModified[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] ); + } + if ( jQuery.etag[ cacheURL ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ? + s.accepts[ s.dataTypes[ 0 ] ] + + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && + ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || completed ) ) { + + // Abort if not done already and return + return jqXHR.abort(); + } + + // Aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + completeDeferred.add( s.complete ); + jqXHR.done( s.success ); + jqXHR.fail( s.error ); + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + + // If request was aborted inside ajaxSend, stop there + if ( completed ) { + return jqXHR; + } + + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = window.setTimeout( function() { + jqXHR.abort( "timeout" ); + }, s.timeout ); + } + + try { + completed = false; + transport.send( requestHeaders, done ); + } catch ( e ) { + + // Rethrow post-completion exceptions + if ( completed ) { + throw e; + } + + // Propagate others as results + done( -1, e ); + } + } + + // Callback for when everything is done + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Ignore repeat invocations + if ( completed ) { + return; + } + + completed = true; + + // Clear timeout if it exists + if ( timeoutTimer ) { + window.clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Determine if successful + isSuccess = status >= 200 && status < 300 || status === 304; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // Use a noop converter for missing script + if ( !isSuccess && jQuery.inArray( "script", s.dataTypes ) > -1 ) { + s.converters[ "text script" ] = function() {}; + } + + // Convert no matter what (that way responseXXX fields are always set) + response = ajaxConvert( s, response, jqXHR, isSuccess ); + + // If successful, handle type chaining + if ( isSuccess ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + modified = jqXHR.getResponseHeader( "Last-Modified" ); + if ( modified ) { + jQuery.lastModified[ cacheURL ] = modified; + } + modified = jqXHR.getResponseHeader( "etag" ); + if ( modified ) { + jQuery.etag[ cacheURL ] = modified; + } + } + + // if no content + if ( status === 204 || s.type === "HEAD" ) { + statusText = "nocontent"; + + // if not modified + } else if ( status === 304 ) { + statusText = "notmodified"; + + // If we have data, let's convert it + } else { + statusText = response.state; + success = response.data; + error = response.error; + isSuccess = !error; + } + } else { + + // Extract error from statusText and normalize for non-aborts + error = statusText; + if ( status || !statusText ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = ( nativeStatusText || statusText ) + ""; + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError", + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger( "ajaxStop" ); + } + } + } + + return jqXHR; + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + } +} ); + +jQuery.each( [ "get", "post" ], function( _i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + + // Shift arguments if data argument was omitted + if ( isFunction( data ) ) { + type = type || callback; + callback = data; + data = undefined; + } + + // The url can be an options object (which then must have .url) + return jQuery.ajax( jQuery.extend( { + url: url, + type: method, + dataType: type, + data: data, + success: callback + }, jQuery.isPlainObject( url ) && url ) ); + }; +} ); + +jQuery.ajaxPrefilter( function( s ) { + var i; + for ( i in s.headers ) { + if ( i.toLowerCase() === "content-type" ) { + s.contentType = s.headers[ i ] || ""; + } + } +} ); + + +jQuery._evalUrl = function( url, options, doc ) { + return jQuery.ajax( { + url: url, + + // Make this explicit, since user can override this through ajaxSetup (#11264) + type: "GET", + dataType: "script", + cache: true, + async: false, + global: false, + + // Only evaluate the response if it is successful (gh-4126) + // dataFilter is not invoked for failure responses, so using it instead + // of the default converter is kludgy but it works. + converters: { + "text script": function() {} + }, + dataFilter: function( response ) { + jQuery.globalEval( response, options, doc ); + } + } ); +}; + + +jQuery.fn.extend( { + wrapAll: function( html ) { + var wrap; + + if ( this[ 0 ] ) { + if ( isFunction( html ) ) { + html = html.call( this[ 0 ] ); + } + + // The elements to wrap the target around + wrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true ); + + if ( this[ 0 ].parentNode ) { + wrap.insertBefore( this[ 0 ] ); + } + + wrap.map( function() { + var elem = this; + + while ( elem.firstElementChild ) { + elem = elem.firstElementChild; + } + + return elem; + } ).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( isFunction( html ) ) { + return this.each( function( i ) { + jQuery( this ).wrapInner( html.call( this, i ) ); + } ); + } + + return this.each( function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + } ); + }, + + wrap: function( html ) { + var htmlIsFunction = isFunction( html ); + + return this.each( function( i ) { + jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html ); + } ); + }, + + unwrap: function( selector ) { + this.parent( selector ).not( "body" ).each( function() { + jQuery( this ).replaceWith( this.childNodes ); + } ); + return this; + } +} ); + + +jQuery.expr.pseudos.hidden = function( elem ) { + return !jQuery.expr.pseudos.visible( elem ); +}; +jQuery.expr.pseudos.visible = function( elem ) { + return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); +}; + + + + +jQuery.ajaxSettings.xhr = function() { + try { + return new window.XMLHttpRequest(); + } catch ( e ) {} +}; + +var xhrSuccessStatus = { + + // File protocol always yields status code 0, assume 200 + 0: 200, + + // Support: IE <=9 only + // #1450: sometimes IE returns 1223 when it should be 204 + 1223: 204 + }, + xhrSupported = jQuery.ajaxSettings.xhr(); + +support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported ); +support.ajax = xhrSupported = !!xhrSupported; + +jQuery.ajaxTransport( function( options ) { + var callback, errorCallback; + + // Cross domain only allowed if supported through XMLHttpRequest + if ( support.cors || xhrSupported && !options.crossDomain ) { + return { + send: function( headers, complete ) { + var i, + xhr = options.xhr(); + + xhr.open( + options.type, + options.url, + options.async, + options.username, + options.password + ); + + // Apply custom fields if provided + if ( options.xhrFields ) { + for ( i in options.xhrFields ) { + xhr[ i ] = options.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( options.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( options.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !options.crossDomain && !headers[ "X-Requested-With" ] ) { + headers[ "X-Requested-With" ] = "XMLHttpRequest"; + } + + // Set headers + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + + // Callback + callback = function( type ) { + return function() { + if ( callback ) { + callback = errorCallback = xhr.onload = + xhr.onerror = xhr.onabort = xhr.ontimeout = + xhr.onreadystatechange = null; + + if ( type === "abort" ) { + xhr.abort(); + } else if ( type === "error" ) { + + // Support: IE <=9 only + // On a manual native abort, IE9 throws + // errors on any property access that is not readyState + if ( typeof xhr.status !== "number" ) { + complete( 0, "error" ); + } else { + complete( + + // File: protocol always yields status 0; see #8605, #14207 + xhr.status, + xhr.statusText + ); + } + } else { + complete( + xhrSuccessStatus[ xhr.status ] || xhr.status, + xhr.statusText, + + // Support: IE <=9 only + // IE9 has no XHR2 but throws on binary (trac-11426) + // For XHR2 non-text, let the caller handle it (gh-2498) + ( xhr.responseType || "text" ) !== "text" || + typeof xhr.responseText !== "string" ? + { binary: xhr.response } : + { text: xhr.responseText }, + xhr.getAllResponseHeaders() + ); + } + } + }; + }; + + // Listen to events + xhr.onload = callback(); + errorCallback = xhr.onerror = xhr.ontimeout = callback( "error" ); + + // Support: IE 9 only + // Use onreadystatechange to replace onabort + // to handle uncaught aborts + if ( xhr.onabort !== undefined ) { + xhr.onabort = errorCallback; + } else { + xhr.onreadystatechange = function() { + + // Check readyState before timeout as it changes + if ( xhr.readyState === 4 ) { + + // Allow onerror to be called first, + // but that will not handle a native abort + // Also, save errorCallback to a variable + // as xhr.onerror cannot be accessed + window.setTimeout( function() { + if ( callback ) { + errorCallback(); + } + } ); + } + }; + } + + // Create the abort callback + callback = callback( "abort" ); + + try { + + // Do send the request (this may raise an exception) + xhr.send( options.hasContent && options.data || null ); + } catch ( e ) { + + // #14683: Only rethrow if this hasn't been notified as an error yet + if ( callback ) { + throw e; + } + } + }, + + abort: function() { + if ( callback ) { + callback(); + } + } + }; + } +} ); + + + + +// Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432) +jQuery.ajaxPrefilter( function( s ) { + if ( s.crossDomain ) { + s.contents.script = false; + } +} ); + +// Install script dataType +jQuery.ajaxSetup( { + accepts: { + script: "text/javascript, application/javascript, " + + "application/ecmascript, application/x-ecmascript" + }, + contents: { + script: /\b(?:java|ecma)script\b/ + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +} ); + +// Handle cache's special case and crossDomain +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + if ( s.crossDomain ) { + s.type = "GET"; + } +} ); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function( s ) { + + // This transport only deals with cross domain or forced-by-attrs requests + if ( s.crossDomain || s.scriptAttrs ) { + var script, callback; + return { + send: function( _, complete ) { + script = jQuery( " + ``` + +- `tabReplace` and `useBR` that were used in different places are also unified + into the global options object and are to be set using `configure(options)`. + This function is documented in our [API docs][]. Also note that these + parameters are gone from `highlightBlock` and `fixMarkup` which are now also + rely on `configure`. + +- We removed public-facing (though undocumented) object `hljs.LANGUAGES` which + was used to register languages with the library in favor of two new methods: + `registerLanguage` and `getLanguage`. Both are documented in our [API docs][]. + +- Result returned from `highlight` and `highlightAuto` no longer contains two + separate attributes contributing to relevance score, `relevance` and + `keyword_count`. They are now unified in `relevance`. + +Another technically compatible change that nonetheless might need attention: + +- The structure of the NPM package was refactored, so if you had installed it + locally, you'll have to update your paths. The usual `require('highlight.js')` + works as before. This is contributed by [Dmitry Smolin][]. + +New features: + +- Languages now can be recognized by multiple names like "js" for JavaScript or + "html" for, well, HTML (which earlier insisted on calling it "xml"). These + aliases can be specified in the class attribute of the code container in your + HTML as well as in various API calls. For now there are only a few very common + aliases but we'll expand it in the future. All of them are listed in the + [class reference][]. + +- Language detection can now be restricted to a subset of languages relevant in + a given context — a web page or even a single highlighting call. This is + especially useful for node.js build that includes all the known languages. + Another example is a StackOverflow-style site where users specify languages + as tags rather than in the markdown-formatted code snippets. This is + documented in the [API reference][] (see methods `highlightAuto` and + `configure`). + +- Language definition syntax streamlined with [variants][] and + [beginKeywords][]. + +New languages and styles: + +- *Oxygene* by [Carlo Kok][] +- *Mathematica* by [Daniel Kvasnička][] +- *Autohotkey* by [Seongwon Lee][] +- *Atelier* family of styles in 10 variants by [Bram de Haan][] +- *Paraíso* styles by [Jan T. Sott][] + +Miscelleanous improvements: + +- Highlighting `=>` prompts in Clojure. +- [Jeremy Hull][] fixed a lot of styles for consistency. +- Finally, highlighting PHP and HTML [mixed in peculiar ways][php-html]. +- Objective C and C# now properly highlight titles in method definition. +- Big overhaul of relevance counting for a number of languages. Please do report + bugs about mis-detection of non-trivial code snippets! + +[cr]: http://highlightjs.readthedocs.org/en/latest/css-classes-reference.html +[api docs]: http://highlightjs.readthedocs.org/en/latest/api.html +[variants]: https://groups.google.com/d/topic/highlightjs/VoGC9-1p5vk/discussion +[beginKeywords]: https://github.com/isagalaev/highlight.js/commit/6c7fdea002eb3949577a85b3f7930137c7c3038d +[php-html]: https://twitter.com/highlightjs/status/408890903017689088 + +[Carlo Kok]: https://github.com/carlokok +[Bram de Haan]: https://github.com/atelierbram +[Daniel Kvasnička]: https://github.com/dkvasnicka +[Dmitry Smolin]: https://github.com/dimsmol +[Jeremy Hull]: https://github.com/sourrust +[Seongwon Lee]: https://github.com/dlimpid +[Jan T. Sott]: https://github.com/idleberg + + +## Version 7.5 + +A catch-up release dealing with some of the accumulated contributions. This one +is probably will be the last before the 8.0 which will be slightly backwards +incompatible regarding some advanced use-cases. + +One outstanding change in this version is the addition of 6 languages to the +[hosted script][d]: Markdown, ObjectiveC, CoffeeScript, Apache, Nginx and +Makefile. It now weighs about 6K more but we're going to keep it under 30K. + +New languages: + +- OCaml by [Mehdi Dogguy][mehdid] and [Nicolas Braud-Santoni][nbraud] +- [LiveCode Server][lcs] by [Ralf Bitter][revig] +- Scilab by [Sylvestre Ledru][sylvestre] +- basic support for Makefile by [Ivan Sagalaev][isagalaev] + +Improvements: + +- Ruby's got support for characters like `?A`, `?1`, `?\012` etc. and `%r{..}` + regexps. +- Clojure now allows a function call in the beginning of s-expressions + `(($filter "myCount") (arr 1 2 3 4 5))`. +- Haskell's got new keywords and now recognizes more things like pragmas, + preprocessors, modules, containers, FFIs etc. Thanks to [Zena Treep][treep] + for the implementation and to [Jeremy Hull][sourrust] for guiding it. +- Miscelleanous fixes in PHP, Brainfuck, SCSS, Asciidoc, CMake, Python and F#. + +[mehdid]: https://github.com/mehdid +[nbraud]: https://github.com/nbraud +[revig]: https://github.com/revig +[lcs]: http://livecode.com/developers/guides/server/ +[sylvestre]: https://github.com/sylvestre +[isagalaev]: https://github.com/isagalaev +[treep]: https://github.com/treep +[sourrust]: https://github.com/sourrust +[d]: http://highlightjs.org/download/ + + +## New core developers + +The latest long period of almost complete inactivity in the project coincided +with growing interest to it led to a decision that now seems completely obvious: +we need more core developers. + +So without further ado let me welcome to the core team two long-time +contributors: [Jeremy Hull][] and [Oleg +Efimov][]. + +Hope now we'll be able to work through stuff faster! + +P.S. The historical commit is [here][1] for the record. + +[Jeremy Hull]: https://github.com/sourrust +[Oleg Efimov]: https://github.com/sannis +[1]: https://github.com/isagalaev/highlight.js/commit/f3056941bda56d2b72276b97bc0dd5f230f2473f + + +## Version 7.4 + +This long overdue version is a snapshot of the current source tree with all the +changes that happened during the past year. Sorry for taking so long! + +Along with the changes in code highlight.js has finally got its new home at +, moving from its craddle on Software Maniacs which it +outgrew a long time ago. Be sure to report any bugs about the site to +. + +On to what's new… + +New languages: + +- Handlebars templates by [Robin Ward][] +- Oracle Rules Language by [Jason Jacobson][] +- F# by [Joans Follesø][] +- AsciiDoc and Haml by [Dan Allen][] +- Lasso by [Eric Knibbe][] +- SCSS by [Kurt Emch][] +- VB.NET by [Poren Chiang][] +- Mizar by [Kelley van Evert][] + +[Robin Ward]: https://github.com/eviltrout +[Jason Jacobson]: https://github.com/jayce7 +[Joans Follesø]: https://github.com/follesoe +[Dan Allen]: https://github.com/mojavelinux +[Eric Knibbe]: https://github.com/EricFromCanada +[Kurt Emch]: https://github.com/kemch +[Poren Chiang]: https://github.com/rschiang +[Kelley van Evert]: https://github.com/kelleyvanevert + +New style themes: + +- Monokai Sublime by [noformnocontent][] +- Railscasts by [Damien White][] +- Obsidian by [Alexander Marenin][] +- Docco by [Simon Madine][] +- Mono Blue by [Ivan Sagalaev][] (uses a single color hue for everything) +- Foundation by [Dan Allen][] + +[noformnocontent]: http://nn.mit-license.org/ +[Damien White]: https://github.com/visoft +[Alexander Marenin]: https://github.com/ioncreature +[Simon Madine]: https://github.com/thingsinjars +[Ivan Sagalaev]: https://github.com/isagalaev + +Other notable changes: + +- Corrected many corner cases in CSS. +- Dropped Python 2 version of the build tool. +- Implemented building for the AMD format. +- Updated Rust keywords (thanks to [Dmitry Medvinsky][]). +- Literal regexes can now be used in language definitions. +- CoffeeScript highlighting is now significantly more robust and rich due to + input from [Cédric Néhémie][]. + +[Dmitry Medvinsky]: https://github.com/dmedvinsky +[Cédric Néhémie]: https://github.com/abe33 + + +## Version 7.3 + +- Since this version highlight.js no longer works in IE version 8 and older. + It's made it possible to reduce the library size and dramatically improve code + readability and made it easier to maintain. Time to go forward! + +- New languages: AppleScript (by [Nathan Grigg][ng] and [Dr. Drang][dd]) and + Brainfuck (by [Evgeny Stepanischev][bolk]). + +- Improvements to existing languages: + + - interpreter prompt in Python (`>>>` and `...`) + - @-properties and classes in CoffeeScript + - E4X in JavaScript (by [Oleg Efimov][oe]) + - new keywords in Perl (by [Kirk Kimmel][kk]) + - big Ruby syntax update (by [Vasily Polovnyov][vast]) + - small fixes in Bash + +- Also Oleg Efimov did a great job of moving all the docs for language and style + developers and contributors from the old wiki under the source code in the + "docs" directory. Now these docs are nicely presented at + . + +[ng]: https://github.com/nathan11g +[dd]: https://github.com/drdrang +[bolk]: https://github.com/bolknote +[oe]: https://github.com/Sannis +[kk]: https://github.com/kimmel +[vast]: https://github.com/vast + + +## Version 7.2 + +A regular bug-fix release without any significant new features. Enjoy! + + +## Version 7.1 + +A Summer crop: + +- [Marc Fornos][mf] made the definition for Clojure along with the matching + style Rainbow (which, of course, works for other languages too). +- CoffeeScript support continues to improve getting support for regular + expressions. +- Yoshihide Jimbo ported to highlight.js [five Tomorrow styles][tm] from the + [project by Chris Kempson][tm0]. +- Thanks to [Casey Duncun][cd] the library can now be built in the popular + [AMD format][amd]. +- And last but not least, we've got a fair number of correctness and consistency + fixes, including a pretty significant refactoring of Ruby. + +[mf]: https://github.com/mfornos +[tm]: http://jmblog.github.com/color-themes-for-highlightjs/ +[tm0]: https://github.com/ChrisKempson/Tomorrow-Theme +[cd]: https://github.com/caseman +[amd]: http://requirejs.org/docs/whyamd.html + + +## Version 7.0 + +The reason for the new major version update is a global change of keyword syntax +which resulted in the library getting smaller once again. For example, the +hosted build is 2K less than at the previous version while supporting two new +languages. + +Notable changes: + +- The library now works not only in a browser but also with [node.js][]. It is + installable with `npm install highlight.js`. [API][] docs are available on our + wiki. + +- The new unique feature (apparently) among syntax highlighters is highlighting + *HTTP* headers and an arbitrary language in the request body. The most useful + languages here are *XML* and *JSON* both of which highlight.js does support. + Here's [the detailed post][p] about the feature. + +- Two new style themes: a dark "south" *[Pojoaque][]* by Jason Tate and an + emulation of*XCode* IDE by [Angel Olloqui][ao]. + +- Three new languages: *D* by [Aleksandar Ružičić][ar], *R* by [Joe Cheng][jc] + and *GLSL* by [Sergey Tikhomirov][st]. + +- *Nginx* syntax has become a million times smaller and more universal thanks to + remaking it in a more generic manner that doesn't require listing all the + directives in the known universe. + +- Function titles are now highlighted in *PHP*. + +- *Haskell* and *VHDL* were significantly reworked to be more rich and correct + by their respective maintainers [Jeremy Hull][sr] and [Igor Kalnitsky][ik]. + +And last but not least, many bugs have been fixed around correctness and +language detection. + +Overall highlight.js currently supports 51 languages and 20 style themes. + +[node.js]: http://nodejs.org/ +[api]: http://softwaremaniacs.org/wiki/doku.php/highlight.js:api +[p]: http://softwaremaniacs.org/blog/2012/05/10/http-and-json-in-highlight-js/en/ +[pojoaque]: http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html +[ao]: https://github.com/angelolloqui +[ar]: https://github.com/raleksandar +[jc]: https://github.com/jcheng5 +[st]: https://github.com/tikhomirov +[sr]: https://github.com/sourrust +[ik]: https://github.com/ikalnitsky + + +## Version 6.2 + +A lot of things happened in highlight.js since the last version! We've got nine +new contributors, the discussion group came alive, and the main branch on GitHub +now counts more than 350 followers. Here are most significant results coming +from all this activity: + +- 5 (five!) new languages: Rust, ActionScript, CoffeeScript, MatLab and + experimental support for markdown. Thanks go to [Andrey Vlasovskikh][av], + [Alexander Myadzel][am], [Dmytrii Nagirniak][dn], [Oleg Efimov][oe], [Denis + Bardadym][db] and [John Crepezzi][jc]. + +- 2 new style themes: Monokai by [Luigi Maselli][lm] and stylistic imitation of + another well-known highlighter Google Code Prettify by [Aahan Krish][ak]. + +- A vast number of [correctness fixes and code refactorings][log], mostly made + by [Oleg Efimov][oe] and [Evgeny Stepanischev][es]. + +[av]: https://github.com/vlasovskikh +[am]: https://github.com/myadzel +[dn]: https://github.com/dnagir +[oe]: https://github.com/Sannis +[db]: https://github.com/btd +[jc]: https://github.com/seejohnrun +[lm]: http://grigio.org/ +[ak]: https://github.com/geekpanth3r +[es]: https://github.com/bolknote +[log]: https://github.com/isagalaev/highlight.js/commits/ + + +## Version 6.1 — Solarized + +[Jeremy Hull][jh] has implemented my dream feature — a port of [Solarized][] +style theme famous for being based on the intricate color theory to achieve +correct contrast and color perception. It is now available for highlight.js in +both variants — light and dark. + +This version also adds a new original style Arta. Its author pumbur maintains a +[heavily modified fork of highlight.js][pb] on GitHub. + +[jh]: https://github.com/sourrust +[solarized]: http://ethanschoonover.com/solarized +[pb]: https://github.com/pumbur/highlight.js + + +## Version 6.0 + +New major version of the highlighter has been built on a significantly +refactored syntax. Due to this it's even smaller than the previous one while +supporting more languages! + +New languages are: + +- Haskell by [Jeremy Hull][sourrust] +- Erlang in two varieties — module and REPL — made collectively by [Nikolay + Zakharov][desh], [Dmitry Kovega][arhibot] and [Sergey Ignatov][ignatov] +- Objective C by [Valerii Hiora][vhbit] +- Vala by [Antono Vasiljev][antono] +- Go by [Stephan Kountso][steplg] + +[sourrust]: https://github.com/sourrust +[desh]: http://desh.su/ +[arhibot]: https://github.com/arhibot +[ignatov]: https://github.com/ignatov +[vhbit]: https://github.com/vhbit +[antono]: https://github.com/antono +[steplg]: https://github.com/steplg + +Also this version is marginally faster and fixes a number of small long-standing +bugs. + +Developer overview of the new language syntax is available in a [blog post about +recent beta release][beta]. + +[beta]: http://softwaremaniacs.org/blog/2011/04/25/highlight-js-60-beta/en/ + +P.S. New version is not yet available on a Yandex' CDN, so for now you have to +download [your own copy][d]. + +[d]: /soft/highlight/en/download/ + + +## Version 5.14 + +Fixed bugs in HTML/XML detection and relevance introduced in previous +refactoring. + +Also test.html now shows the second best result of language detection by +relevance. + + +## Version 5.13 + +Past weekend began with a couple of simple additions for existing languages but +ended up in a big code refactoring bringing along nice improvements for language +developers. + +### For users + +- Description of C++ has got new keywords from the upcoming [C++ 0x][] standard. +- Description of HTML has got new tags from [HTML 5][]. +- CSS-styles have been unified to use consistent padding and also have lost + pop-outs with names of detected languages. +- [Igor Kalnitsky][ik] has sent two new language descriptions: CMake и VHDL. + +This makes total number of languages supported by highlight.js to reach 35. + +Bug fixes: + +- Custom classes on `
      ` tags are not being overridden anymore
      +- More correct highlighting of code blocks inside non-`
      ` containers:
      +  highlighter now doesn't insist on replacing them with its own container and
      +  just replaces the contents.
      +- Small fixes in browser compatibility and heuristics.
      +
      +[c++ 0x]: http://ru.wikipedia.org/wiki/C%2B%2B0x
      +[html 5]: http://en.wikipedia.org/wiki/HTML5
      +[ik]: http://kalnitsky.org.ua/
      +
      +### For developers
      +
      +The most significant change is the ability to include language submodes right
      +under `contains` instead of defining explicit named submodes in the main array:
      +
      +    contains: [
      +      'string',
      +      'number',
      +      {begin: '\\n', end: hljs.IMMEDIATE_RE}
      +    ]
      +
      +This is useful for auxiliary modes needed only in one place to define parsing.
      +Note that such modes often don't have `className` and hence won't generate a
      +separate `` in the resulting markup. This is similar in effect to
      +`noMarkup: true`. All existing languages have been refactored accordingly.
      +
      +Test file test.html has at last become a real test. Now it not only puts the
      +detected language name under the code snippet but also tests if it matches the
      +expected one. Test summary is displayed right above all language snippets.
      +
      +
      +## CDN
      +
      +Fine people at [Yandex][] agreed to host highlight.js on their big fast servers.
      +[Link up][l]!
      +
      +[yandex]: http://yandex.com/
      +[l]: http://softwaremaniacs.org/soft/highlight/en/download/
      +
      +
      +## Version 5.10 — "Paris".
      +
      +Though I'm on a vacation in Paris, I decided to release a new version with a
      +couple of small fixes:
      +
      +- Tomas Vitvar discovered that TAB replacement doesn't always work when used
      +  with custom markup in code
      +- SQL parsing is even more rigid now and doesn't step over SmallTalk in tests
      +
      +
      +## Version 5.9
      +
      +A long-awaited version is finally released.
      +
      +New languages:
      +
      +- Andrew Fedorov made a definition for Lua
      +- a long-time highlight.js contributor [Peter Leonov][pl] made a definition for
      +  Nginx config
      +- [Vladimir Moskva][vm] made a definition for TeX
      +
      +[pl]: http://kung-fu-tzu.ru/
      +[vm]: http://fulc.ru/
      +
      +Fixes for existing languages:
      +
      +- [Loren Segal][ls] reworked the Ruby definition and added highlighting for
      +  [YARD][] inline documentation
      +- the definition of SQL has become more solid and now it shouldn't be overly
      +  greedy when it comes to language detection
      +
      +[ls]: http://gnuu.org/
      +[yard]: http://yardoc.org/
      +
      +The highlighter has become more usable as a library allowing to do highlighting
      +from initialization code of JS frameworks and in ajax methods (see.
      +readme.eng.txt).
      +
      +Also this version drops support for the [WordPress][wp] plugin. Everyone is
      +welcome to [pick up its maintenance][p] if needed.
      +
      +[wp]: http://wordpress.org/
      +[p]: http://bazaar.launchpad.net/~isagalaev/+junk/highlight/annotate/342/src/wp_highlight.js.php
      +
      +
      +## Version 5.8
      +
      +- Jan Berkel has contributed a definition for Scala. +1 to hotness!
      +- All CSS-styles are rewritten to work only inside `
      ` tags to avoid
      +  conflicts with host site styles.
      +
      +
      +## Version 5.7.
      +
      +Fixed escaping of quotes in VBScript strings.
      +
      +
      +## Version 5.5
      +
      +This version brings a small change: now .ini-files allow digits, underscores and
      +square brackets in key names.
      +
      +
      +## Version 5.4
      +
      +Fixed small but upsetting bug in the packer which caused incorrect highlighting
      +of explicitly specified languages. Thanks to Andrew Fedorov for precise
      +diagnostics!
      +
      +
      +## Version 5.3
      +
      +The version to fulfil old promises.
      +
      +The most significant change is that highlight.js now preserves custom user
      +markup in code along with its own highlighting markup. This means that now it's
      +possible to use, say, links in code. Thanks to [Vladimir Dolzhenko][vd] for the
      +[initial proposal][1] and for making a proof-of-concept patch.
      +
      +Also in this version:
      +
      +- [Vasily Polovnyov][vp] has sent a GitHub-like style and has implemented
      +  support for CSS @-rules and Ruby symbols.
      +- Yura Zaripov has sent two styles: Brown Paper and School Book.
      +- Oleg Volchkov has sent a definition for [Parser 3][p3].
      +
      +[1]: http://softwaremaniacs.org/forum/highlightjs/6612/
      +[p3]: http://www.parser.ru/
      +[vp]: http://vasily.polovnyov.ru/
      +[vd]: http://dolzhenko.blogspot.com/
      +
      +
      +## Version 5.2
      +
      +- at last it's possible to replace indentation TABs with something sensible (e.g. 2 or 4 spaces)
      +- new keywords and built-ins for 1C by Sergey Baranov
      +- a couple of small fixes to Apache highlighting
      +
      +
      +## Version 5.1
      +
      +This is one of those nice version consisting entirely of new and shiny
      +contributions!
      +
      +- [Vladimir Ermakov][vooon] created highlighting for AVR Assembler
      +- [Ruslan Keba][rukeba] created highlighting for Apache config file. Also his
      +  original visual style for it is now available for all highlight.js languages
      +  under the name "Magula".
      +- [Shuen-Huei Guan][drake] (aka Drake) sent new keywords for RenderMan
      +  languages. Also thanks go to [Konstantin Evdokimenko][ke] for his advice on
      +  the matter.
      +
      +[vooon]: http://vehq.ru/about/
      +[rukeba]: http://rukeba.com/
      +[drake]: http://drakeguan.org/
      +[ke]: http://k-evdokimenko.moikrug.ru/
      +
      +
      +## Version 5.0
      +
      +The main change in the new major version of highlight.js is a mechanism for
      +packing several languages along with the library itself into a single compressed
      +file. Now sites using several languages will load considerably faster because
      +the library won't dynamically include additional files while loading.
      +
      +Also this version fixes a long-standing bug with Javascript highlighting that
      +couldn't distinguish between regular expressions and division operations.
      +
      +And as usually there were a couple of minor correctness fixes.
      +
      +Great thanks to all contributors! Keep using highlight.js.
      +
      +
      +## Version 4.3
      +
      +This version comes with two contributions from [Jason Diamond][jd]:
      +
      +- language definition for C# (yes! it was a long-missed thing!)
      +- Visual Studio-like highlighting style
      +
      +Plus there are a couple of minor bug fixes for parsing HTML and XML attributes.
      +
      +[jd]: http://jason.diamond.name/weblog/
      +
      +
      +## Version 4.2
      +
      +The biggest news is highlighting for Lisp, courtesy of Vasily Polovnyov. It's
      +somewhat experimental meaning that for highlighting "keywords" it doesn't use
      +any pre-defined set of a Lisp dialect. Instead it tries to highlight first word
      +in parentheses wherever it makes sense. I'd like to ask people programming in
      +Lisp to confirm if it's a good idea and send feedback to [the forum][f].
      +
      +Other changes:
      +
      +- Smalltalk was excluded from DEFAULT_LANGUAGES to save traffic
      +- [Vladimir Epifanov][voldmar] has implemented javascript style switcher for
      +  test.html
      +- comments now allowed inside Ruby function definition
      +- [MEL][] language from [Shuen-Huei Guan][drake]
      +- whitespace now allowed between `
      ` and ``
      +- better auto-detection of C++ and PHP
      +- HTML allows embedded VBScript (`<% .. %>`)
      +
      +[f]: http://softwaremaniacs.org/forum/highlightjs/
      +[voldmar]: http://voldmar.ya.ru/
      +[mel]: http://en.wikipedia.org/wiki/Maya_Embedded_Language
      +[drake]: http://drakeguan.org/
      +
      +
      +## Version 4.1
      +
      +Languages:
      +
      +- Bash from Vah
      +- DOS bat-files from Alexander Makarov (Sam)
      +- Diff files from Vasily Polovnyov
      +- Ini files from myself though initial idea was from Sam
      +
      +Styles:
      +
      +- Zenburn from Vladimir Epifanov, this is an imitation of a
      +  [well-known theme for Vim][zenburn].
      +- Ascetic from myself, as a realization of ideals of non-flashy highlighting:
      +  just one color in only three gradations :-)
      +
      +In other news. [One small bug][bug] was fixed, built-in keywords were added for
      +Python and C++ which improved auto-detection for the latter (it was shame that
      +[my wife's blog][alenacpp] had issues with it from time to time). And lastly
      +thanks go to Sam for getting rid of my stylistic comments in code that were
      +getting in the way of [JSMin][].
      +
      +[zenburn]: http://en.wikipedia.org/wiki/Zenburn
      +[alenacpp]: http://alenacpp.blogspot.com/
      +[bug]: http://softwaremaniacs.org/forum/viewtopic.php?id=1823
      +[jsmin]: http://code.google.com/p/jsmin-php/
      +
      +
      +## Version 4.0
      +
      +New major version is a result of vast refactoring and of many contributions.
      +
      +Visible new features:
      +
      +- Highlighting of embedded languages. Currently is implemented highlighting of
      +  Javascript and CSS inside HTML.
      +- Bundled 5 ready-made style themes!
      +
      +Invisible new features:
      +
      +- Highlight.js no longer pollutes global namespace. Only one object and one
      +  function for backward compatibility.
      +- Performance is further increased by about 15%.
      +
      +Changing of a major version number caused by a new format of language definition
      +files. If you use some third-party language files they should be updated.
      +
      +
      +## Version 3.5
      +
      +A very nice version in my opinion fixing a number of small bugs and slightly
      +increased speed in a couple of corner cases. Thanks to everybody who reports
      +bugs in he [forum][f] and by email!
      +
      +There is also a new language — XML. A custom XML formerly was detected as HTML
      +and didn't highlight custom tags. In this version I tried to make custom XML to
      +be detected and highlighted by its own rules. Which by the way include such
      +things as CDATA sections and processing instructions (``).
      +
      +[f]: http://softwaremaniacs.org/forum/viewforum.php?id=6
      +
      +
      +## Version 3.3
      +
      +[Vladimir Gubarkov][xonix] has provided an interesting and useful addition.
      +File export.html contains a little program that shows and allows to copy and
      +paste an HTML code generated by the highlighter for any code snippet. This can
      +be useful in situations when one can't use the script itself on a site.
      +
      +
      +[xonix]: http://xonixx.blogspot.com/
      +
      +
      +## Version 3.2 consists completely of contributions:
      +
      +- Vladimir Gubarkov has described SmallTalk
      +- Yuri Ivanov has described 1C
      +- Peter Leonov has packaged the highlighter as a Firefox extension
      +- Vladimir Ermakov has compiled a mod for phpBB
      +
      +Many thanks to you all!
      +
      +
      +## Version 3.1
      +
      +Three new languages are available: Django templates, SQL and Axapta. The latter
      +two are sent by [Dmitri Roudakov][1]. However I've almost entirely rewrote an
      +SQL definition but I'd never started it be it from the ground up :-)
      +
      +The engine itself has got a long awaited feature of grouping keywords
      +("keyword", "built-in function", "literal"). No more hacks!
      +
      +[1]: http://roudakov.ru/
      +
      +
      +## Version 3.0
      +
      +It is major mainly because now highlight.js has grown large and has become
      +modular. Now when you pass it a list of languages to highlight it will
      +dynamically load into a browser only those languages.
      +
      +Also:
      +
      +- Konstantin Evdokimenko of [RibKit][] project has created a highlighting for
      +  RenderMan Shading Language and RenderMan Interface Bytestream. Yay for more
      +  languages!
      +- Heuristics for C++ and HTML got better.
      +- I've implemented (at last) a correct handling of backslash escapes in C-like
      +  languages.
      +
      +There is also a small backwards incompatible change in the new version. The
      +function initHighlighting that was used to initialize highlighting instead of
      +initHighlightingOnLoad a long time ago no longer works. If you by chance still
      +use it — replace it with the new one.
      +
      +[RibKit]: http://ribkit.sourceforge.net/
      +
      +
      +## Version 2.9
      +
      +Highlight.js is a parser, not just a couple of regular expressions. That said
      +I'm glad to announce that in the new version 2.9 has support for:
      +
      +- in-string substitutions for Ruby -- `#{...}`
      +- strings from from numeric symbol codes (like #XX) for Delphi
      +
      +
      +## Version 2.8
      +
      +A maintenance release with more tuned heuristics. Fully backwards compatible.
      +
      +
      +## Version 2.7
      +
      +- Nikita Ledyaev presents highlighting for VBScript, yay!
      +- A couple of bugs with escaping in strings were fixed thanks to Mickle
      +- Ongoing tuning of heuristics
      +
      +Fixed bugs were rather unpleasant so I encourage everyone to upgrade!
      +
      +
      +## Version 2.4
      +
      +- Peter Leonov provides another improved highlighting for Perl
      +- Javascript gets a new kind of keywords — "literals". These are the words
      +  "true", "false" and "null"
      +
      +Also highlight.js homepage now lists sites that use the library. Feel free to
      +add your site by [dropping me a message][mail] until I find the time to build a
      +submit form.
      +
      +[mail]: mailto:Maniac@SoftwareManiacs.Org
      +
      +
      +## Version 2.3
      +
      +This version fixes IE breakage in previous version. My apologies to all who have
      +already downloaded that one!
      +
      +
      +## Version 2.2
      +
      +- added highlighting for Javascript
      +- at last fixed parsing of Delphi's escaped apostrophes in strings
      +- in Ruby fixed highlighting of keywords 'def' and 'class', same for 'sub' in
      +  Perl
      +
      +
      +## Version 2.0
      +
      +- Ruby support by [Anton Kovalyov][ak]
      +- speed increased by orders of magnitude due to new way of parsing
      +- this same way allows now correct highlighting of keywords in some tricky
      +  places (like keyword "End" at the end of Delphi classes)
      +
      +[ak]: http://anton.kovalyov.net/
      +
      +
      +## Version 1.0
      +
      +Version 1.0 of javascript syntax highlighter is released!
      +
      +It's the first version available with English description. Feel free to post
      +your comments and question to [highlight.js forum][forum]. And don't be afraid
      +if you find there some fancy Cyrillic letters -- it's for Russian users too :-)
      +
      +[forum]: http://softwaremaniacs.org/forum/viewforum.php?id=6
      diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/LICENSE b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/LICENSE
      new file mode 100644
      index 0000000000..422deb7350
      --- /dev/null
      +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/LICENSE
      @@ -0,0 +1,24 @@
      +Copyright (c) 2006, Ivan Sagalaev
      +All rights reserved.
      +Redistribution and use in source and binary forms, with or without
      +modification, are permitted provided that the following conditions are met:
      +
      +    * Redistributions of source code must retain the above copyright
      +      notice, this list of conditions and the following disclaimer.
      +    * Redistributions in binary form must reproduce the above copyright
      +      notice, this list of conditions and the following disclaimer in the
      +      documentation and/or other materials provided with the distribution.
      +    * Neither the name of highlight.js nor the names of its contributors 
      +      may be used to endorse or promote products derived from this software 
      +      without specific prior written permission.
      +
      +THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
      +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
      +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
      +DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
      +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
      +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
      +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
      +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
      +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
      +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
      diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/README.ru.md b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/README.ru.md
      new file mode 100644
      index 0000000000..be85f6ada9
      --- /dev/null
      +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/README.ru.md
      @@ -0,0 +1,171 @@
      +# Highlight.js
      +
      +Highlight.js нужен для подсветки синтаксиса в примерах кода в блогах,
      +форумах и вообще на любых веб-страницах. Пользоваться им очень просто,
      +потому что работает он автоматически: сам находит блоки кода, сам
      +определяет язык, сам подсвечивает.
      +
      +Автоопределением языка можно управлять, когда оно не справляется само (см.
      +дальше "Эвристика").
      +
      +
      +## Простое использование
      +
      +Подключите библиотеку и стиль на страницу и повесть вызов подсветки на
      +загрузку страницы:
      +
      +```html
      +
      +
      +
      +```
      +
      +Весь код на странице, обрамлённый в теги `
       .. 
      ` +будет автоматически подсвечен. Если вы используете другие теги или хотите +подсвечивать блоки кода динамически, читайте "Инициализацию вручную" ниже. + +- Вы можете скачать собственную версию "highlight.pack.js" или сослаться + на захостенный файл, как описано на странице загрузки: + + +- Стилевые темы можно найти в загруженном архиве или также использовать + захостенные. Чтобы сделать собственный стиль для своего сайта, вам + будет полезен [CSS classes reference][cr], который тоже есть в архиве. + +[cr]: http://highlightjs.readthedocs.org/en/latest/css-classes-reference.html + + +## node.js + +Highlight.js можно использовать в node.js. Библиотеку со всеми возможными языками можно +установить с NPM: + + npm install highlight.js + +Также её можно собрать из исходников с только теми языками, которые нужны: + + python3 tools/build.py -tnode lang1 lang2 .. + +Использование библиотеки: + +```javascript +var hljs = require('highlight.js'); + +// Если вы знаете язык +hljs.highlight(lang, code).value; + +// Автоопределение языка +hljs.highlightAuto(code).value; +``` + + +## AMD + +Highlight.js можно использовать с загрузчиком AMD-модулей. Для этого его +нужно собрать из исходников следующей командой: + +```bash +$ python3 tools/build.py -tamd lang1 lang2 .. +``` + +Она создаст файл `build/highlight.pack.js`, который является загружаемым +AMD-модулем и содержит все выбранные при сборке языки. Используется он так: + +```javascript +require(["highlight.js/build/highlight.pack"], function(hljs){ + + // Если вы знаете язык + hljs.highlight(lang, code).value; + + // Автоопределение языка + hljs.highlightAuto(code).value; +}); +``` + + +## Замена TABов + +Также вы можете заменить символы TAB ('\x09'), используемые для отступов, на +фиксированное количество пробелов или на отдельный ``, чтобы задать ему +какой-нибудь специальный стиль: + +```html + +``` + + +## Инициализация вручную + +Если вы используете другие теги для блоков кода, вы можете инициализировать их +явно с помощью функции `highlightBlock(code)`. Она принимает DOM-элемент с +текстом расцвечиваемого кода и опционально - строчку для замены символов TAB. + +Например с использованием jQuery код инициализации может выглядеть так: + +```javascript +$(document).ready(function() { + $('pre code').each(function(i, e) {hljs.highlightBlock(e)}); +}); +``` + +`highlightBlock` можно также использовать, чтобы подсветить блоки кода, +добавленные на страницу динамически. Только убедитесь, что вы не делаете этого +повторно для уже раскрашенных блоков. + +Если ваш блок кода использует `
      ` вместо переводов строки (т.е. если это не +`
      `), включите опцию `useBR`:
      +
      +```javascript
      +hljs.configure({useBR: true});
      +$('div.code').each(function(i, e) {hljs.highlightBlock(e)});
      +```
      +
      +
      +## Эвристика
      +
      +Определение языка, на котором написан фрагмент, делается с помощью
      +довольно простой эвристики: программа пытается расцветить фрагмент всеми
      +языками подряд, и для каждого языка считает количество подошедших
      +синтаксически конструкций и ключевых слов. Для какого языка нашлось больше,
      +тот и выбирается.
      +
      +Это означает, что в коротких фрагментах высока вероятность ошибки, что
      +периодически и случается. Чтобы указать язык фрагмента явно, надо написать
      +его название в виде класса к элементу ``:
      +
      +```html
      +
      ...
      +``` + +Можно использовать рекомендованные в HTML5 названия классов: +"language-html", "language-php". Также можно назначать классы на элемент +`
      `.
      +
      +Чтобы запретить расцветку фрагмента вообще, используется класс "no-highlight":
      +
      +```html
      +
      ...
      +``` + + +## Экспорт + +В файле export.html находится небольшая программка, которая показывает и дает +скопировать непосредственно HTML-код подсветки для любого заданного фрагмента кода. +Это может понадобится например на сайте, на котором нельзя подключить сам скрипт +highlight.js. + + +## Координаты + +- Версия: 8.0 +- URL: http://highlightjs.org/ + +Лицензионное соглашение читайте в файле LICENSE. +Список авторов и соавторов читайте в файле AUTHORS.ru.txt diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/highlight.pack.js b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/highlight.pack.js new file mode 100644 index 0000000000..627f79e240 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/highlight.pack.js @@ -0,0 +1 @@ +var hljs=new function(){function k(v){return v.replace(/&/gm,"&").replace(//gm,">")}function t(v){return v.nodeName.toLowerCase()}function i(w,x){var v=w&&w.exec(x);return v&&v.index==0}function d(v){return Array.prototype.map.call(v.childNodes,function(w){if(w.nodeType==3){return b.useBR?w.nodeValue.replace(/\n/g,""):w.nodeValue}if(t(w)=="br"){return"\n"}return d(w)}).join("")}function r(w){var v=(w.className+" "+(w.parentNode?w.parentNode.className:"")).split(/\s+/);v=v.map(function(x){return x.replace(/^language-/,"")});return v.filter(function(x){return j(x)||x=="no-highlight"})[0]}function o(x,y){var v={};for(var w in x){v[w]=x[w]}if(y){for(var w in y){v[w]=y[w]}}return v}function u(x){var v=[];(function w(y,z){for(var A=y.firstChild;A;A=A.nextSibling){if(A.nodeType==3){z+=A.nodeValue.length}else{if(t(A)=="br"){z+=1}else{if(A.nodeType==1){v.push({event:"start",offset:z,node:A});z=w(A,z);v.push({event:"stop",offset:z,node:A})}}}}return z})(x,0);return v}function q(w,y,C){var x=0;var F="";var z=[];function B(){if(!w.length||!y.length){return w.length?w:y}if(w[0].offset!=y[0].offset){return(w[0].offset"}function E(G){F+=""}function v(G){(G.event=="start"?A:E)(G.node)}while(w.length||y.length){var D=B();F+=k(C.substr(x,D[0].offset-x));x=D[0].offset;if(D==w){z.reverse().forEach(E);do{v(D.splice(0,1)[0]);D=B()}while(D==w&&D.length&&D[0].offset==x);z.reverse().forEach(A)}else{if(D[0].event=="start"){z.push(D[0].node)}else{z.pop()}v(D.splice(0,1)[0])}}return F+k(C.substr(x))}function m(y){function v(z){return(z&&z.source)||z}function w(A,z){return RegExp(v(A),"m"+(y.cI?"i":"")+(z?"g":""))}function x(D,C){if(D.compiled){return}D.compiled=true;D.k=D.k||D.bK;if(D.k){var z={};function E(G,F){if(y.cI){F=F.toLowerCase()}F.split(" ").forEach(function(H){var I=H.split("|");z[I[0]]=[G,I[1]?Number(I[1]):1]})}if(typeof D.k=="string"){E("keyword",D.k)}else{Object.keys(D.k).forEach(function(F){E(F,D.k[F])})}D.k=z}D.lR=w(D.l||/\b[A-Za-z0-9_]+\b/,true);if(C){if(D.bK){D.b=D.bK.split(" ").join("|")}if(!D.b){D.b=/\B|\b/}D.bR=w(D.b);if(!D.e&&!D.eW){D.e=/\B|\b/}if(D.e){D.eR=w(D.e)}D.tE=v(D.e)||"";if(D.eW&&C.tE){D.tE+=(D.e?"|":"")+C.tE}}if(D.i){D.iR=w(D.i)}if(D.r===undefined){D.r=1}if(!D.c){D.c=[]}var B=[];D.c.forEach(function(F){if(F.v){F.v.forEach(function(G){B.push(o(F,G))})}else{B.push(F=="self"?D:F)}});D.c=B;D.c.forEach(function(F){x(F,D)});if(D.starts){x(D.starts,C)}var A=D.c.map(function(F){return F.bK?"\\.?\\b("+F.b+")\\b\\.?":F.b}).concat([D.tE]).concat([D.i]).map(v).filter(Boolean);D.t=A.length?w(A.join("|"),true):{exec:function(F){return null}};D.continuation={}}x(y)}function c(S,L,J,R){function v(U,V){for(var T=0;T";U+=Z+'">';return U+X+Y}function N(){var U=k(C);if(!I.k){return U}var T="";var X=0;I.lR.lastIndex=0;var V=I.lR.exec(U);while(V){T+=U.substr(X,V.index-X);var W=E(I,V);if(W){H+=W[1];T+=w(W[0],V[0])}else{T+=V[0]}X=I.lR.lastIndex;V=I.lR.exec(U)}return T+U.substr(X)}function F(){if(I.sL&&!f[I.sL]){return k(C)}var T=I.sL?c(I.sL,C,true,I.continuation.top):g(C);if(I.r>0){H+=T.r}if(I.subLanguageMode=="continuous"){I.continuation.top=T.top}return w(T.language,T.value,false,true)}function Q(){return I.sL!==undefined?F():N()}function P(V,U){var T=V.cN?w(V.cN,"",true):"";if(V.rB){D+=T;C=""}else{if(V.eB){D+=k(U)+T;C=""}else{D+=T;C=U}}I=Object.create(V,{parent:{value:I}})}function G(T,X){C+=T;if(X===undefined){D+=Q();return 0}var V=v(X,I);if(V){D+=Q();P(V,X);return V.rB?0:X.length}var W=z(I,X);if(W){var U=I;if(!(U.rE||U.eE)){C+=X}D+=Q();do{if(I.cN){D+=""}H+=I.r;I=I.parent}while(I!=W.parent);if(U.eE){D+=k(X)}C="";if(W.starts){P(W.starts,"")}return U.rE?0:X.length}if(A(X,I)){throw new Error('Illegal lexeme "'+X+'" for mode "'+(I.cN||"")+'"')}C+=X;return X.length||1}var M=j(S);if(!M){throw new Error('Unknown language: "'+S+'"')}m(M);var I=R||M;var D="";for(var K=I;K!=M;K=K.parent){if(K.cN){D=w(K.cN,D,true)}}var C="";var H=0;try{var B,y,x=0;while(true){I.t.lastIndex=x;B=I.t.exec(L);if(!B){break}y=G(L.substr(x,B.index-x),B[0]);x=B.index+y}G(L.substr(x));for(var K=I;K.parent;K=K.parent){if(K.cN){D+=""}}return{r:H,value:D,language:S,top:I}}catch(O){if(O.message.indexOf("Illegal")!=-1){return{r:0,value:k(L)}}else{throw O}}}function g(y,x){x=x||b.languages||Object.keys(f);var v={r:0,value:k(y)};var w=v;x.forEach(function(z){if(!j(z)){return}var A=c(z,y,false);A.language=z;if(A.r>w.r){w=A}if(A.r>v.r){w=v;v=A}});if(w.language){v.second_best=w}return v}function h(v){if(b.tabReplace){v=v.replace(/^((<[^>]+>|\t)+)/gm,function(w,z,y,x){return z.replace(/\t/g,b.tabReplace)})}if(b.useBR){v=v.replace(/\n/g,"
      ")}return v}function p(z){var y=d(z);var A=r(z);if(A=="no-highlight"){return}var v=A?c(A,y,true):g(y);var w=u(z);if(w.length){var x=document.createElementNS("http://www.w3.org/1999/xhtml","pre");x.innerHTML=v.value;v.value=q(w,u(x),y)}v.value=h(v.value);z.innerHTML=v.value;z.className+=" hljs "+(!A&&v.language||"");z.result={language:v.language,re:v.r};if(v.second_best){z.second_best={language:v.second_best.language,re:v.second_best.r}}}var b={classPrefix:"hljs-",tabReplace:null,useBR:false,languages:undefined};function s(v){b=o(b,v)}function l(){if(l.called){return}l.called=true;var v=document.querySelectorAll("pre code");Array.prototype.forEach.call(v,p)}function a(){addEventListener("DOMContentLoaded",l,false);addEventListener("load",l,false)}var f={};var n={};function e(v,x){var w=f[v]=x(this);if(w.aliases){w.aliases.forEach(function(y){n[y]=v})}}function j(v){return f[v]||f[n[v]]}this.highlight=c;this.highlightAuto=g;this.fixMarkup=h;this.highlightBlock=p;this.configure=s;this.initHighlighting=l;this.initHighlightingOnLoad=a;this.registerLanguage=e;this.getLanguage=j;this.inherit=o;this.IR="[a-zA-Z][a-zA-Z0-9_]*";this.UIR="[a-zA-Z_][a-zA-Z0-9_]*";this.NR="\\b\\d+(\\.\\d+)?";this.CNR="(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)";this.BNR="\\b(0b[01]+)";this.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~";this.BE={b:"\\\\[\\s\\S]",r:0};this.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[this.BE]};this.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[this.BE]};this.CLCM={cN:"comment",b:"//",e:"$"};this.CBLCLM={cN:"comment",b:"/\\*",e:"\\*/"};this.HCM={cN:"comment",b:"#",e:"$"};this.NM={cN:"number",b:this.NR,r:0};this.CNM={cN:"number",b:this.CNR,r:0};this.BNM={cN:"number",b:this.BNR,r:0};this.REGEXP_MODE={cN:"regexp",b:/\//,e:/\/[gim]*/,i:/\n/,c:[this.BE,{b:/\[/,e:/\]/,r:0,c:[this.BE]}]};this.TM={cN:"title",b:this.IR,r:0};this.UTM={cN:"title",b:this.UIR,r:0}}();hljs.registerLanguage("bash",function(b){var a={cN:"variable",v:[{b:/\$[\w\d#@][\w\d_]*/},{b:/\$\{(.*?)\}/}]};var d={cN:"string",b:/"/,e:/"/,c:[b.BE,a,{cN:"variable",b:/\$\(/,e:/\)/,c:[b.BE]}]};var c={cN:"string",b:/'/,e:/'/};return{l:/-?[a-z\.]+/,k:{keyword:"if then else elif fi for break continue while in do done exit return set declare case esac export exec",literal:"true false",built_in:"printf echo read cd pwd pushd popd dirs let eval unset typeset readonly getopts source shopt caller type hash bind help sudo",operator:"-ne -eq -lt -gt -f -d -e -s -l -a"},c:[{cN:"shebang",b:/^#![^\n]+sh\s*$/,r:10},{cN:"function",b:/\w[\w\d_]*\s*\(\s*\)\s*\{/,rB:true,c:[b.inherit(b.TM,{b:/\w[\w\d_]*/})],r:0},b.HCM,b.NM,d,c,a]}});hljs.registerLanguage("cs",function(b){var a="abstract as base bool break byte case catch char checked const continue decimal default delegate do double else enum event explicit extern false finally fixed float for foreach goto if implicit in int interface internal is lock long new null object operator out override params private protected public readonly ref return sbyte sealed short sizeof stackalloc static string struct switch this throw true try typeof uint ulong unchecked unsafe ushort using virtual volatile void while async await ascending descending from get group into join let orderby partial select set value var where yield";return{k:a,c:[{cN:"comment",b:"///",e:"$",rB:true,c:[{cN:"xmlDocTag",b:"///|"},{cN:"xmlDocTag",b:""}]},b.CLCM,b.CBLCLM,{cN:"preprocessor",b:"#",e:"$",k:"if else elif endif define undef warning error line region endregion pragma checksum"},{cN:"string",b:'@"',e:'"',c:[{b:'""'}]},b.ASM,b.QSM,b.CNM,{bK:"protected public private internal",e:/[{;=]/,k:a,c:[{bK:"class namespace interface",starts:{c:[b.TM]}},{b:b.IR+"\\s*\\(",rB:true,c:[b.TM]}]}]}});hljs.registerLanguage("ruby",function(e){var h="[a-zA-Z_]\\w*[!?=]?|[-+~]\\@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?";var g="and false then defined module in return redo if BEGIN retry end for true self when next until do begin unless END rescue nil else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor";var a={cN:"yardoctag",b:"@[A-Za-z]+"};var i={cN:"comment",v:[{b:"#",e:"$",c:[a]},{b:"^\\=begin",e:"^\\=end",c:[a],r:10},{b:"^__END__",e:"\\n$"}]};var c={cN:"subst",b:"#\\{",e:"}",k:g};var d={cN:"string",c:[e.BE,c],v:[{b:/'/,e:/'/},{b:/"/,e:/"/},{b:"%[qw]?\\(",e:"\\)"},{b:"%[qw]?\\[",e:"\\]"},{b:"%[qw]?{",e:"}"},{b:"%[qw]?<",e:">",r:10},{b:"%[qw]?/",e:"/",r:10},{b:"%[qw]?%",e:"%",r:10},{b:"%[qw]?-",e:"-",r:10},{b:"%[qw]?\\|",e:"\\|",r:10},{b:/\B\?(\\\d{1,3}|\\x[A-Fa-f0-9]{1,2}|\\u[A-Fa-f0-9]{4}|\\?\S)\b/}]};var b={cN:"params",b:"\\(",e:"\\)",k:g};var f=[d,i,{cN:"class",bK:"class module",e:"$|;",i:/=/,c:[e.inherit(e.TM,{b:"[A-Za-z_]\\w*(::\\w+)*(\\?|\\!)?"}),{cN:"inheritance",b:"<\\s*",c:[{cN:"parent",b:"("+e.IR+"::)?"+e.IR}]},i]},{cN:"function",bK:"def",e:" |$|;",r:0,c:[e.inherit(e.TM,{b:h}),b,i]},{cN:"constant",b:"(::)?(\\b[A-Z]\\w*(::)?)+",r:0},{cN:"symbol",b:":",c:[d,{b:h}],r:0},{cN:"symbol",b:e.UIR+"(\\!|\\?)?:",r:0},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{cN:"variable",b:"(\\$\\W)|((\\$|\\@\\@?)(\\w+))"},{b:"("+e.RSR+")\\s*",c:[i,{cN:"regexp",c:[e.BE,c],i:/\n/,v:[{b:"/",e:"/[a-z]*"},{b:"%r{",e:"}[a-z]*"},{b:"%r\\(",e:"\\)[a-z]*"},{b:"%r!",e:"![a-z]*"},{b:"%r\\[",e:"\\][a-z]*"}]}],r:0}];c.c=f;b.c=f;return{k:g,c:f}});hljs.registerLanguage("diff",function(a){return{c:[{cN:"chunk",r:10,v:[{b:/^\@\@ +\-\d+,\d+ +\+\d+,\d+ +\@\@$/},{b:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{b:/^\-\-\- +\d+,\d+ +\-\-\-\-$/}]},{cN:"header",v:[{b:/Index: /,e:/$/},{b:/=====/,e:/=====$/},{b:/^\-\-\-/,e:/$/},{b:/^\*{3} /,e:/$/},{b:/^\+\+\+/,e:/$/},{b:/\*{5}/,e:/\*{5}$/}]},{cN:"addition",b:"^\\+",e:"$"},{cN:"deletion",b:"^\\-",e:"$"},{cN:"change",b:"^\\!",e:"$"}]}});hljs.registerLanguage("javascript",function(a){return{aliases:["js"],k:{keyword:"in if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class",literal:"true false null undefined NaN Infinity",built_in:"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require"},c:[{cN:"pi",b:/^\s*('|")use strict('|")/,r:10},a.ASM,a.QSM,a.CLCM,a.CBLCLM,a.CNM,{b:"("+a.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[a.CLCM,a.CBLCLM,a.REGEXP_MODE,{b:/;/,r:0,sL:"xml"}],r:0},{cN:"function",bK:"function",e:/\{/,c:[a.inherit(a.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:"params",b:/\(/,e:/\)/,c:[a.CLCM,a.CBLCLM],i:/["'\(]/}],i:/\[|%/},{b:/\$[(.]/},{b:"\\."+a.IR,r:0}]}});hljs.registerLanguage("xml",function(a){var c="[A-Za-z0-9\\._:-]+";var d={b:/<\?(php)?(?!\w)/,e:/\?>/,sL:"php",subLanguageMode:"continuous"};var b={eW:true,i:/]+/}]}]}]};return{aliases:["html"],cI:true,c:[{cN:"doctype",b:"",r:10,c:[{b:"\\[",e:"\\]"}]},{cN:"comment",b:"",r:10},{cN:"cdata",b:"<\\!\\[CDATA\\[",e:"\\]\\]>",r:10},{cN:"tag",b:"|$)",e:">",k:{title:"style"},c:[b],starts:{e:"",rE:true,sL:"css"}},{cN:"tag",b:"|$)",e:">",k:{title:"script"},c:[b],starts:{e:"<\/script>",rE:true,sL:"javascript"}},{b:"<%",e:"%>",sL:"vbscript"},d,{cN:"pi",b:/<\?\w+/,e:/\?>/,r:10},{cN:"tag",b:"",c:[{cN:"title",b:"[^ /><]+",r:0},b]}]}});hljs.registerLanguage("markdown",function(a){return{c:[{cN:"header",v:[{b:"^#{1,6}",e:"$"},{b:"^.+?\\n[=-]{2,}$"}]},{b:"<",e:">",sL:"xml",r:0},{cN:"bullet",b:"^([*+-]|(\\d+\\.))\\s+"},{cN:"strong",b:"[*_]{2}.+?[*_]{2}"},{cN:"emphasis",v:[{b:"\\*.+?\\*"},{b:"_.+?_",r:0}]},{cN:"blockquote",b:"^>\\s+",e:"$"},{cN:"code",v:[{b:"`.+?`"},{b:"^( {4}|\t)",e:"$",r:0}]},{cN:"horizontal_rule",b:"^[-\\*]{3,}",e:"$"},{b:"\\[.+?\\][\\(\\[].+?[\\)\\]]",rB:true,c:[{cN:"link_label",b:"\\[",e:"\\]",eB:true,rE:true,r:0},{cN:"link_url",b:"\\]\\(",e:"\\)",eB:true,eE:true},{cN:"link_reference",b:"\\]\\[",e:"\\]",eB:true,eE:true,}],r:10},{b:"^\\[.+\\]:",e:"$",rB:true,c:[{cN:"link_reference",b:"\\[",e:"\\]",eB:true,eE:true},{cN:"link_url",b:"\\s",e:"$"}]}]}});hljs.registerLanguage("css",function(a){var b="[a-zA-Z-][a-zA-Z0-9_-]*";var c={cN:"function",b:b+"\\(",e:"\\)",c:["self",a.NM,a.ASM,a.QSM]};return{cI:true,i:"[=/|']",c:[a.CBLCLM,{cN:"id",b:"\\#[A-Za-z0-9_-]+"},{cN:"class",b:"\\.[A-Za-z0-9_-]+",r:0},{cN:"attr_selector",b:"\\[",e:"\\]",i:"$"},{cN:"pseudo",b:":(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\\\"\\']+"},{cN:"at_rule",b:"@(font-face|page)",l:"[a-z-]+",k:"font-face page"},{cN:"at_rule",b:"@",e:"[{;]",c:[{cN:"keyword",b:/\S+/},{b:/\s/,eW:true,eE:true,r:0,c:[c,a.ASM,a.QSM,a.NM]}]},{cN:"tag",b:b,r:0},{cN:"rules",b:"{",e:"}",i:"[^\\s]",r:0,c:[a.CBLCLM,{cN:"rule",b:"[^\\s]",rB:true,e:";",eW:true,c:[{cN:"attribute",b:"[A-Z\\_\\.\\-]+",e:":",eE:true,i:"[^\\s]",starts:{cN:"value",eW:true,eE:true,c:[c,a.NM,a.QSM,a.ASM,a.CBLCLM,{cN:"hexcolor",b:"#[0-9A-Fa-f]+"},{cN:"important",b:"!important"}]}}]}]}]}});hljs.registerLanguage("http",function(a){return{i:"\\S",c:[{cN:"status",b:"^HTTP/[0-9\\.]+",e:"$",c:[{cN:"number",b:"\\b\\d{3}\\b"}]},{cN:"request",b:"^[A-Z]+ (.*?) HTTP/[0-9\\.]+$",rB:true,e:"$",c:[{cN:"string",b:" ",e:" ",eB:true,eE:true}]},{cN:"attribute",b:"^\\w",e:": ",eE:true,i:"\\n|\\s|=",starts:{cN:"string",e:"$"}},{b:"\\n\\n",starts:{sL:"",eW:true}}]}});hljs.registerLanguage("java",function(b){var a="false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws";return{k:a,i:/<\//,c:[{cN:"javadoc",b:"/\\*\\*",e:"\\*/",c:[{cN:"javadoctag",b:"(^|\\s)@[A-Za-z]+"}],r:10},b.CLCM,b.CBLCLM,b.ASM,b.QSM,{bK:"protected public private",e:/[{;=]/,k:a,c:[{cN:"class",bK:"class interface",eW:true,i:/[:"<>]/,c:[{bK:"extends implements",r:10},b.UTM]},{b:b.UIR+"\\s*\\(",rB:true,c:[b.UTM]}]},b.CNM,{cN:"annotation",b:"@[A-Za-z]+"}]}});hljs.registerLanguage("php",function(b){var e={cN:"variable",b:"\\$+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*"};var a={cN:"preprocessor",b:/<\?(php)?|\?>/};var c={cN:"string",c:[b.BE,a],v:[{b:'b"',e:'"'},{b:"b'",e:"'"},b.inherit(b.ASM,{i:null}),b.inherit(b.QSM,{i:null})]};var d={v:[b.BNM,b.CNM]};return{cI:true,k:"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally",c:[b.CLCM,b.HCM,{cN:"comment",b:"/\\*",e:"\\*/",c:[{cN:"phpdoc",b:"\\s@[A-Za-z]+"},a]},{cN:"comment",b:"__halt_compiler.+?;",eW:true,k:"__halt_compiler",l:b.UIR},{cN:"string",b:"<<<['\"]?\\w+['\"]?$",e:"^\\w+;",c:[b.BE]},a,e,{cN:"function",bK:"function",e:/[;{]/,i:"\\$|\\[|%",c:[b.UTM,{cN:"params",b:"\\(",e:"\\)",c:["self",e,b.CBLCLM,c,d]}]},{cN:"class",bK:"class interface",e:"{",i:/[:\(\$"]/,c:[{bK:"extends implements",r:10},b.UTM]},{bK:"namespace",e:";",i:/[\.']/,c:[b.UTM]},{bK:"use",e:";",c:[b.UTM]},{b:"=>"},c,d]}});hljs.registerLanguage("python",function(a){var f={cN:"prompt",b:/^(>>>|\.\.\.) /};var b={cN:"string",c:[a.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[f],r:10},{b:/(u|b)?r?"""/,e:/"""/,c:[f],r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)"/,e:/"/,r:10},{b:/(b|br)'/,e:/'/,},{b:/(b|br)"/,e:/"/,},a.ASM,a.QSM]};var d={cN:"number",r:0,v:[{b:a.BNR+"[lLjJ]?"},{b:"\\b(0o[0-7]+)[lLjJ]?"},{b:a.CNR+"[lLjJ]?"}]};var e={cN:"params",b:/\(/,e:/\)/,c:["self",f,d,b]};var c={e:/:/,i:/[${=;\n]/,c:[a.UTM,e]};return{k:{keyword:"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda nonlocal|10 None True False",built_in:"Ellipsis NotImplemented"},i:/(<\/|->|\?)/,c:[f,d,b,a.HCM,a.inherit(c,{cN:"function",bK:"def",r:10}),a.inherit(c,{cN:"class",bK:"class"}),{cN:"decorator",b:/@/,e:/$/},{b:/\b(print|exec)\(/}]}});hljs.registerLanguage("sql",function(a){return{cI:true,i:/[<>]/,c:[{cN:"operator",b:"\\b(begin|end|start|commit|rollback|savepoint|lock|alter|create|drop|rename|call|delete|do|handler|insert|load|replace|select|truncate|update|set|show|pragma|grant|merge)\\b(?!:)",e:";",eW:true,k:{keyword:"all partial global month current_timestamp using go revoke smallint indicator end-exec disconnect zone with character assertion to add current_user usage input local alter match collate real then rollback get read timestamp session_user not integer bit unique day minute desc insert execute like ilike|2 level decimal drop continue isolation found where constraints domain right national some module transaction relative second connect escape close system_user for deferred section cast current sqlstate allocate intersect deallocate numeric public preserve full goto initially asc no key output collation group by union session both last language constraint column of space foreign deferrable prior connection unknown action commit view or first into float year primary cascaded except restrict set references names table outer open select size are rows from prepare distinct leading create only next inner authorization schema corresponding option declare precision immediate else timezone_minute external varying translation true case exception join hour default double scroll value cursor descriptor values dec fetch procedure delete and false int is describe char as at in varchar null trailing any absolute current_time end grant privileges when cross check write current_date pad begin temporary exec time update catalog user sql date on identity timezone_hour natural whenever interval work order cascade diagnostics nchar having left call do handler load replace truncate start lock show pragma exists number trigger if before after each row merge matched database",aggregate:"count sum min max avg"},c:[{cN:"string",b:"'",e:"'",c:[a.BE,{b:"''"}]},{cN:"string",b:'"',e:'"',c:[a.BE,{b:'""'}]},{cN:"string",b:"`",e:"`",c:[a.BE]},a.CNM]},a.CBLCLM,{cN:"comment",b:"--",e:"$"}]}});hljs.registerLanguage("ini",function(a){return{cI:true,i:/\S/,c:[{cN:"comment",b:";",e:"$"},{cN:"title",b:"^\\[",e:"\\]"},{cN:"setting",b:"^[a-z0-9\\[\\]_-]+[ \\t]*=[ \\t]*",e:"$",c:[{cN:"value",eW:true,k:"on off true false yes no",c:[a.QSM,a.NM],r:0}]}]}});hljs.registerLanguage("perl",function(c){var d="getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when";var f={cN:"subst",b:"[$@]\\{",e:"\\}",k:d};var g={b:"->{",e:"}"};var a={cN:"variable",v:[{b:/\$\d/},{b:/[\$\%\@\*](\^\w\b|#\w+(\:\:\w+)*|{\w+}|\w+(\:\:\w*)*)/},{b:/[\$\%\@\*][^\s\w{]/,r:0}]};var e={cN:"comment",b:"^(__END__|__DATA__)",e:"\\n$",r:5};var h=[c.BE,f,a];var b=[a,c.HCM,e,{cN:"comment",b:"^\\=\\w",e:"\\=cut",eW:true},g,{cN:"string",c:h,v:[{b:"q[qwxr]?\\s*\\(",e:"\\)",r:5},{b:"q[qwxr]?\\s*\\[",e:"\\]",r:5},{b:"q[qwxr]?\\s*\\{",e:"\\}",r:5},{b:"q[qwxr]?\\s*\\|",e:"\\|",r:5},{b:"q[qwxr]?\\s*\\<",e:"\\>",r:5},{b:"qw\\s+q",e:"q",r:5},{b:"'",e:"'",c:[c.BE]},{b:'"',e:'"'},{b:"`",e:"`",c:[c.BE]},{b:"{\\w+}",c:[],r:0},{b:"-?\\w+\\s*\\=\\>",c:[],r:0}]},{cN:"number",b:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",r:0},{b:"(\\/\\/|"+c.RSR+"|\\b(split|return|print|reverse|grep)\\b)\\s*",k:"split return print reverse grep",r:0,c:[c.HCM,e,{cN:"regexp",b:"(s|tr|y)/(\\\\.|[^/])*/(\\\\.|[^/])*/[a-z]*",r:10},{cN:"regexp",b:"(m|qr)?/",e:"/[a-z]*",c:[c.BE],r:0}]},{cN:"sub",bK:"sub",e:"(\\s*\\(.*?\\))?[;{]",r:5},{cN:"operator",b:"-\\w\\b",r:0}];f.c=b;g.c=b;return{k:d,c:b}});hljs.registerLanguage("objectivec",function(a){var d={keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign self synchronized id nonatomic super unichar IBOutlet IBAction strong weak @private @protected @public @try @property @end @throw @catch @finally @synthesize @dynamic @selector @optional @required",literal:"false true FALSE TRUE nil YES NO NULL",built_in:"NSString NSDictionary CGRect CGPoint UIButton UILabel UITextView UIWebView MKMapView UISegmentedControl NSObject UITableViewDelegate UITableViewDataSource NSThread UIActivityIndicator UITabbar UIToolBar UIBarButtonItem UIImageView NSAutoreleasePool UITableView BOOL NSInteger CGFloat NSException NSLog NSMutableString NSMutableArray NSMutableDictionary NSURL NSIndexPath CGSize UITableViewCell UIView UIViewController UINavigationBar UINavigationController UITabBarController UIPopoverController UIPopoverControllerDelegate UIImage NSNumber UISearchBar NSFetchedResultsController NSFetchedResultsChangeType UIScrollView UIScrollViewDelegate UIEdgeInsets UIColor UIFont UIApplication NSNotFound NSNotificationCenter NSNotification UILocalNotification NSBundle NSFileManager NSTimeInterval NSDate NSCalendar NSUserDefaults UIWindow NSRange NSArray NSError NSURLRequest NSURLConnection UIInterfaceOrientation MPMoviePlayerController dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once"};var c=/[a-zA-Z@][a-zA-Z0-9_]*/;var b="@interface @class @protocol @implementation";return{k:d,l:c,i:""}]},{cN:"preprocessor",b:"#",e:"$"},{cN:"class",b:"("+b.split(" ").join("|")+")\\b",e:"({|$)",k:b,l:c,c:[a.UTM]},{cN:"variable",b:"\\."+a.UIR,r:0}]}});hljs.registerLanguage("coffeescript",function(c){var b={keyword:"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super then unless until loop of by when and or is isnt not",literal:"true false null undefined yes no on off",reserved:"case default function var void with const let enum export import native __hasProp __extends __slice __bind __indexOf",built_in:"npm require console print module exports global window document"};var a="[A-Za-z$_][0-9A-Za-z$_]*";var f=c.inherit(c.TM,{b:a});var e={cN:"subst",b:/#\{/,e:/}/,k:b};var d=[c.BNM,c.inherit(c.CNM,{starts:{e:"(\\s*/)?",r:0}}),{cN:"string",v:[{b:/'''/,e:/'''/,c:[c.BE]},{b:/'/,e:/'/,c:[c.BE]},{b:/"""/,e:/"""/,c:[c.BE,e]},{b:/"/,e:/"/,c:[c.BE,e]}]},{cN:"regexp",v:[{b:"///",e:"///",c:[e,c.HCM]},{b:"//[gim]*",r:0},{b:"/\\S(\\\\.|[^\\n])*?/[gim]*(?=\\s|\\W|$)"}]},{cN:"property",b:"@"+a},{b:"`",e:"`",eB:true,eE:true,sL:"javascript"}];e.c=d;return{k:b,c:d.concat([{cN:"comment",b:"###",e:"###"},c.HCM,{cN:"function",b:"("+a+"\\s*=\\s*)?(\\(.*\\))?\\s*\\B[-=]>",e:"[-=]>",rB:true,c:[f,{cN:"params",b:"\\(",rB:true,c:[{b:/\(/,e:/\)/,k:b,c:["self"].concat(d)}]}]},{cN:"class",bK:"class",e:"$",i:/[:="\[\]]/,c:[{bK:"extends",eW:true,i:/[:="\[\]]/,c:[f]},f]},{cN:"attribute",b:a+":",e:":",rB:true,eE:true,r:0}])}});hljs.registerLanguage("nginx",function(c){var b={cN:"variable",v:[{b:/\$\d+/},{b:/\$\{/,e:/}/},{b:"[\\$\\@]"+c.UIR}]};var a={eW:true,l:"[a-z/_]+",k:{built_in:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll"},r:0,i:"=>",c:[c.HCM,{cN:"string",c:[c.BE,b],v:[{b:/"/,e:/"/},{b:/'/,e:/'/}]},{cN:"url",b:"([a-z]+):/",e:"\\s",eW:true,eE:true},{cN:"regexp",c:[c.BE,b],v:[{b:"\\s\\^",e:"\\s|{|;",rE:true},{b:"~\\*?\\s+",e:"\\s|{|;",rE:true},{b:"\\*(\\.[a-z\\-]+)+"},{b:"([a-z\\-]+\\.)+\\*"}]},{cN:"number",b:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{cN:"number",b:"\\b\\d+[kKmMgGdshdwy]*\\b",r:0},b]};return{c:[c.HCM,{b:c.UIR+"\\s",e:";|{",rB:true,c:[c.inherit(c.UTM,{starts:a})],r:0}],i:"[^\\s\\}]"}});hljs.registerLanguage("json",function(a){var e={literal:"true false null"};var d=[a.QSM,a.CNM];var c={cN:"value",e:",",eW:true,eE:true,c:d,k:e};var b={b:"{",e:"}",c:[{cN:"attribute",b:'\\s*"',e:'"\\s*:\\s*',eB:true,eE:true,c:[a.BE],i:"\\n",starts:c}],i:"\\S"};var f={b:"\\[",e:"\\]",c:[a.inherit(c,{cN:null})],i:"\\S"};d.splice(d.length,0,b,f);return{c:d,k:e,i:"\\S"}});hljs.registerLanguage("apache",function(a){var b={cN:"number",b:"[\\$%]\\d+"};return{cI:true,c:[a.HCM,{cN:"tag",b:""},{cN:"keyword",b:/\w+/,r:0,k:{common:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername"},starts:{e:/$/,r:0,k:{literal:"on off all"},c:[{cN:"sqbracket",b:"\\s\\[",e:"\\]$"},{cN:"cbracket",b:"[\\$%]\\{",e:"\\}",c:["self",b]},b,a.QSM]}}],i:/\S/}});hljs.registerLanguage("cpp",function(a){var b={keyword:"false int float while private char catch export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long throw volatile static protected bool template mutable if public friend do return goto auto void enum else break new extern using true class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue wchar_t inline delete alignof char16_t char32_t constexpr decltype noexcept nullptr static_assert thread_local restrict _Bool complex _Complex _Imaginary",built_in:"std string cin cout cerr clog stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf"};return{aliases:["c"],k:b,i:"",i:"\\n"},a.CLCM]},{cN:"stl_container",b:"\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\s*<",e:">",k:b,r:10,c:["self"]}]}});hljs.registerLanguage("makefile",function(a){var b={cN:"variable",b:/\$\(/,e:/\)/,c:[a.BE]};return{c:[a.HCM,{b:/^\w+\s*\W*=/,rB:true,r:0,starts:{cN:"constant",e:/\s*\W*=/,eE:true,starts:{e:/$/,r:0,c:[b],}}},{cN:"title",b:/^[\w]+:\s*$/},{cN:"phony",b:/^\.PHONY:/,e:/$/,k:".PHONY",l:/[\.\w]+/},{b:/^\t+/,e:/$/,c:[a.QSM,b]}]}}); diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/arta.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/arta.css new file mode 100644 index 0000000000..c2a55bbe2b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/arta.css @@ -0,0 +1,160 @@ +/* +Date: 17.V.2011 +Author: pumbur +*/ + +.hljs +{ + display: block; padding: 0.5em; + background: #222; +} + +.profile .hljs-header *, +.ini .hljs-title, +.nginx .hljs-title +{ + color: #fff; +} + +.hljs-comment, +.hljs-javadoc, +.hljs-preprocessor, +.hljs-preprocessor .hljs-title, +.hljs-pragma, +.hljs-shebang, +.profile .hljs-summary, +.diff, +.hljs-pi, +.hljs-doctype, +.hljs-tag, +.hljs-template_comment, +.css .hljs-rules, +.tex .hljs-special +{ + color: #444; +} + +.hljs-string, +.hljs-symbol, +.diff .hljs-change, +.hljs-regexp, +.xml .hljs-attribute, +.smalltalk .hljs-char, +.xml .hljs-value, +.ini .hljs-value, +.clojure .hljs-attribute, +.coffeescript .hljs-attribute +{ + color: #ffcc33; +} + +.hljs-number, +.hljs-addition +{ + color: #00cc66; +} + +.hljs-built_in, +.hljs-literal, +.vhdl .hljs-typename, +.go .hljs-constant, +.go .hljs-typename, +.ini .hljs-keyword, +.lua .hljs-title, +.perl .hljs-variable, +.php .hljs-variable, +.mel .hljs-variable, +.django .hljs-variable, +.css .funtion, +.smalltalk .method, +.hljs-hexcolor, +.hljs-important, +.hljs-flow, +.hljs-inheritance, +.parser3 .hljs-variable +{ + color: #32AAEE; +} + +.hljs-keyword, +.hljs-tag .hljs-title, +.css .hljs-tag, +.css .hljs-class, +.css .hljs-id, +.css .hljs-pseudo, +.css .hljs-attr_selector, +.lisp .hljs-title, +.clojure .hljs-built_in, +.hljs-winutils, +.tex .hljs-command, +.hljs-request, +.hljs-status +{ + color: #6644aa; +} + +.hljs-title, +.ruby .hljs-constant, +.vala .hljs-constant, +.hljs-parent, +.hljs-deletion, +.hljs-template_tag, +.css .hljs-keyword, +.objectivec .hljs-class .hljs-id, +.smalltalk .hljs-class, +.lisp .hljs-keyword, +.apache .hljs-tag, +.nginx .hljs-variable, +.hljs-envvar, +.bash .hljs-variable, +.go .hljs-built_in, +.vbscript .hljs-built_in, +.lua .hljs-built_in, +.rsl .hljs-built_in, +.tail, +.avrasm .hljs-label, +.tex .hljs-formula, +.tex .hljs-formula * +{ + color: #bb1166; +} + +.hljs-yardoctag, +.hljs-phpdoc, +.profile .hljs-header, +.ini .hljs-title, +.apache .hljs-tag, +.parser3 .hljs-title +{ + font-weight: bold; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata +{ + opacity: 0.6; +} + +.hljs, +.javascript, +.css, +.xml, +.hljs-subst, +.diff .hljs-chunk, +.css .hljs-value, +.css .hljs-attribute, +.lisp .hljs-string, +.lisp .hljs-number, +.tail .hljs-params, +.hljs-container, +.haskell *, +.erlang *, +.erlang_repl * +{ + color: #aaa; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/ascetic.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/ascetic.css new file mode 100644 index 0000000000..89c5fe2fee --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/ascetic.css @@ -0,0 +1,50 @@ +/* + +Original style from softwaremaniacs.org (c) Ivan Sagalaev + +*/ + +.hljs { + display: block; padding: 0.5em; + background: white; color: black; +} + +.hljs-string, +.hljs-tag .hljs-value, +.hljs-filter .hljs-argument, +.hljs-addition, +.hljs-change, +.apache .hljs-tag, +.apache .hljs-cbracket, +.nginx .hljs-built_in, +.tex .hljs-formula { + color: #888; +} + +.hljs-comment, +.hljs-template_comment, +.hljs-shebang, +.hljs-doctype, +.hljs-pi, +.hljs-javadoc, +.hljs-deletion, +.apache .hljs-sqbracket { + color: #CCC; +} + +.hljs-keyword, +.hljs-tag .hljs-title, +.ini .hljs-title, +.lisp .hljs-title, +.clojure .hljs-title, +.http .hljs-title, +.nginx .hljs-title, +.css .hljs-tag, +.hljs-winutils, +.hljs-flow, +.apache .hljs-tag, +.tex .hljs-command, +.hljs-request, +.hljs-status { + font-weight: bold; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-dune.dark.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-dune.dark.css new file mode 100644 index 0000000000..4cfc77ca66 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-dune.dark.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Dune Dark - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Dune Dark Comment */ +.hljs-comment, +.hljs-title { + color: #999580; +} + +/* Atelier Dune Dark Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #d73737; +} + +/* Atelier Dune Dark Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #b65611; +} + +/* Atelier Dune Dark Yellow */ +.ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #cfb017; +} + +/* Atelier Dune Dark Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #60ac39; +} + +/* Atelier Dune Dark Aqua */ +.css .hljs-hexcolor { + color: #1fad83; +} + +/* Atelier Dune Dark Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #6684e1; +} + +/* Atelier Dune Dark Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #b854d4; +} + +.hljs { + display: block; + background: #292824; + color: #a6a28c; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-dune.light.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-dune.light.css new file mode 100644 index 0000000000..3501bf829b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-dune.light.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Dune Light - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Dune Light Comment */ +.hljs-comment, +.hljs-title { + color: #7d7a68; +} + +/* Atelier Dune Light Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #d73737; +} + +/* Atelier Dune Light Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #b65611; +} + +/* Atelier Dune Light Yellow */ +.hljs-ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #cfb017; +} + +/* Atelier Dune Light Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #60ac39; +} + +/* Atelier Dune Light Aqua */ +.css .hljs-hexcolor { + color: #1fad83; +} + +/* Atelier Dune Light Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #6684e1; +} + +/* Atelier Dune Light Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #b854d4; +} + +.hljs { + display: block; + background: #fefbec; + color: #6e6b5e; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-forest.dark.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-forest.dark.css new file mode 100644 index 0000000000..9c26b7be06 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-forest.dark.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Forest Dark - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Forest Dark Comment */ +.hljs-comment, +.hljs-title { + color: #9c9491; +} + +/* Atelier Forest Dark Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #f22c40; +} + +/* Atelier Forest Dark Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #df5320; +} + +/* Atelier Forest Dark Yellow */ +.hljs-ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #d5911a; +} + +/* Atelier Forest Dark Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #5ab738; +} + +/* Atelier Forest Dark Aqua */ +.css .hljs-hexcolor { + color: #00ad9c; +} + +/* Atelier Forest Dark Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #407ee7; +} + +/* Atelier Forest Dark Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #6666ea; +} + +.hljs { + display: block; + background: #2c2421; + color: #a8a19f; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-forest.light.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-forest.light.css new file mode 100644 index 0000000000..3de3dadb95 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-forest.light.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Forest Light - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/forest) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Forest Light Comment */ +.hljs-comment, +.hljs-title { + color: #766e6b; +} + +/* Atelier Forest Light Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #f22c40; +} + +/* Atelier Forest Light Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #df5320; +} + +/* Atelier Forest Light Yellow */ +.hljs-ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #d5911a; +} + +/* Atelier Forest Light Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #5ab738; +} + +/* Atelier Forest Light Aqua */ +.css .hljs-hexcolor { + color: #00ad9c; +} + +/* Atelier Forest Light Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #407ee7; +} + +/* Atelier Forest Light Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #6666ea; +} + +.hljs { + display: block; + background: #f1efee; + color: #68615e; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-heath.dark.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-heath.dark.css new file mode 100644 index 0000000000..df1446c18b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-heath.dark.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Heath Dark - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Heath Dark Comment */ +.hljs-comment, +.hljs-title { + color: #9e8f9e; +} + +/* Atelier Heath Dark Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #ca402b; +} + +/* Atelier Heath Dark Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #a65926; +} + +/* Atelier Heath Dark Yellow */ +.hljs-ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #bb8a35; +} + +/* Atelier Heath Dark Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #379a37; +} + +/* Atelier Heath Dark Aqua */ +.css .hljs-hexcolor { + color: #159393; +} + +/* Atelier Heath Dark Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #516aec; +} + +/* Atelier Heath Dark Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #7b59c0; +} + +.hljs { + display: block; + background: #292329; + color: #ab9bab; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-heath.light.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-heath.light.css new file mode 100644 index 0000000000..a737a08257 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-heath.light.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Heath Light - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Heath Light Comment */ +.hljs-comment, +.hljs-title { + color: #776977; +} + +/* Atelier Heath Light Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #ca402b; +} + +/* Atelier Heath Light Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #a65926; +} + +/* Atelier Heath Light Yellow */ +.hljs-ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #bb8a35; +} + +/* Atelier Heath Light Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #379a37; +} + +/* Atelier Heath Light Aqua */ +.css .hljs-hexcolor { + color: #159393; +} + +/* Atelier Heath Light Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #516aec; +} + +/* Atelier Heath Light Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #7b59c0; +} + +.hljs { + display: block; + background: #f7f3f7; + color: #695d69; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-lakeside.dark.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-lakeside.dark.css new file mode 100644 index 0000000000..43c5b4ea82 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-lakeside.dark.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Lakeside Dark - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Lakeside Dark Comment */ +.hljs-comment, +.hljs-title { + color: #7195a8; +} + +/* Atelier Lakeside Dark Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #d22d72; +} + +/* Atelier Lakeside Dark Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #935c25; +} + +/* Atelier Lakeside Dark Yellow */ +.hljs-ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #8a8a0f; +} + +/* Atelier Lakeside Dark Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #568c3b; +} + +/* Atelier Lakeside Dark Aqua */ +.css .hljs-hexcolor { + color: #2d8f6f; +} + +/* Atelier Lakeside Dark Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #257fad; +} + +/* Atelier Lakeside Dark Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #5d5db1; +} + +.hljs { + display: block; + background: #1f292e; + color: #7ea2b4; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-lakeside.light.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-lakeside.light.css new file mode 100644 index 0000000000..5a782694d3 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-lakeside.light.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Lakeside Light - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Lakeside Light Comment */ +.hljs-comment, +.hljs-title { + color: #5a7b8c; +} + +/* Atelier Lakeside Light Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #d22d72; +} + +/* Atelier Lakeside Light Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #935c25; +} + +/* Atelier Lakeside Light Yellow */ +.hljs-ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #8a8a0f; +} + +/* Atelier Lakeside Light Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #568c3b; +} + +/* Atelier Lakeside Light Aqua */ +.css .hljs-hexcolor { + color: #2d8f6f; +} + +/* Atelier Lakeside Light Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #257fad; +} + +/* Atelier Lakeside Light Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #5d5db1; +} + +.hljs { + display: block; + background: #ebf8ff; + color: #516d7b; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-seaside.dark.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-seaside.dark.css new file mode 100644 index 0000000000..3bea9b36dd --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-seaside.dark.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Seaside Dark - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Seaside Dark Comment */ +.hljs-comment, +.hljs-title { + color: #809980; +} + +/* Atelier Seaside Dark Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #e6193c; +} + +/* Atelier Seaside Dark Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #87711d; +} + +/* Atelier Seaside Dark Yellow */ +.hljs-ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #c3c322; +} + +/* Atelier Seaside Dark Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #29a329; +} + +/* Atelier Seaside Dark Aqua */ +.css .hljs-hexcolor { + color: #1999b3; +} + +/* Atelier Seaside Dark Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #3d62f5; +} + +/* Atelier Seaside Dark Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #ad2bee; +} + +.hljs { + display: block; + background: #242924; + color: #8ca68c; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-seaside.light.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-seaside.light.css new file mode 100644 index 0000000000..e86c44d6f0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-seaside.light.css @@ -0,0 +1,93 @@ +/* Base16 Atelier Seaside Light - Theme */ +/* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) */ +/* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */ +/* https://github.com/jmblog/color-themes-for-highlightjs */ + +/* Atelier Seaside Light Comment */ +.hljs-comment, +.hljs-title { + color: #687d68; +} + +/* Atelier Seaside Light Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #e6193c; +} + +/* Atelier Seaside Light Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #87711d; +} + +/* Atelier Seaside Light Yellow */ +.hljs-ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #c3c322; +} + +/* Atelier Seaside Light Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #29a329; +} + +/* Atelier Seaside Light Aqua */ +.css .hljs-hexcolor { + color: #1999b3; +} + +/* Atelier Seaside Light Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #3d62f5; +} + +/* Atelier Seaside Light Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #ad2bee; +} + +.hljs { + display: block; + background: #f0fff0; + color: #5e6e5e; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_paper.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_paper.css new file mode 100644 index 0000000000..0838fb8f98 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_paper.css @@ -0,0 +1,105 @@ +/* + +Brown Paper style from goldblog.com.ua (c) Zaripov Yura + +*/ + +.hljs { + display: block; padding: 0.5em; + background:#b7a68e url(./brown_papersq.png); +} + +.hljs-keyword, +.hljs-literal, +.hljs-change, +.hljs-winutils, +.hljs-flow, +.lisp .hljs-title, +.clojure .hljs-built_in, +.nginx .hljs-title, +.tex .hljs-special, +.hljs-request, +.hljs-status { + color:#005599; + font-weight:bold; +} + +.hljs, +.hljs-subst, +.hljs-tag .hljs-keyword { + color: #363C69; +} + +.hljs-string, +.hljs-title, +.haskell .hljs-type, +.hljs-tag .hljs-value, +.css .hljs-rules .hljs-value, +.hljs-preprocessor, +.hljs-pragma, +.ruby .hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.ruby .hljs-class .hljs-parent, +.hljs-built_in, +.sql .hljs-aggregate, +.django .hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.hljs-javadoc, +.ruby .hljs-string, +.django .hljs-filter .hljs-argument, +.smalltalk .hljs-localvars, +.smalltalk .hljs-array, +.hljs-attr_selector, +.hljs-pseudo, +.hljs-addition, +.hljs-stream, +.hljs-envvar, +.apache .hljs-tag, +.apache .hljs-cbracket, +.tex .hljs-number { + color: #2C009F; +} + +.hljs-comment, +.java .hljs-annotation, +.python .hljs-decorator, +.hljs-template_comment, +.hljs-pi, +.hljs-doctype, +.hljs-deletion, +.hljs-shebang, +.apache .hljs-sqbracket, +.nginx .hljs-built_in, +.tex .hljs-formula { + color: #802022; +} + +.hljs-keyword, +.hljs-literal, +.css .hljs-id, +.hljs-phpdoc, +.hljs-title, +.haskell .hljs-type, +.vbscript .hljs-built_in, +.sql .hljs-aggregate, +.rsl .hljs-built_in, +.smalltalk .hljs-class, +.diff .hljs-header, +.hljs-chunk, +.hljs-winutils, +.bash .hljs-variable, +.apache .hljs-tag, +.tex .hljs-command { + font-weight: bold; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.8; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_papersq.png b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_papersq.png new file mode 100644 index 0000000000..3813903dbf Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_papersq.png differ diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/dark.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/dark.css new file mode 100644 index 0000000000..b9426c37f5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/dark.css @@ -0,0 +1,105 @@ +/* + +Dark style from softwaremaniacs.org (c) Ivan Sagalaev + +*/ + +.hljs { + display: block; padding: 0.5em; + background: #444; +} + +.hljs-keyword, +.hljs-literal, +.hljs-change, +.hljs-winutils, +.hljs-flow, +.lisp .hljs-title, +.clojure .hljs-built_in, +.nginx .hljs-title, +.tex .hljs-special { + color: white; +} + +.hljs, +.hljs-subst { + color: #DDD; +} + +.hljs-string, +.hljs-title, +.haskell .hljs-type, +.ini .hljs-title, +.hljs-tag .hljs-value, +.css .hljs-rules .hljs-value, +.hljs-preprocessor, +.hljs-pragma, +.ruby .hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.ruby .hljs-class .hljs-parent, +.hljs-built_in, +.sql .hljs-aggregate, +.django .hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.hljs-javadoc, +.ruby .hljs-string, +.django .hljs-filter .hljs-argument, +.smalltalk .hljs-localvars, +.smalltalk .hljs-array, +.hljs-attr_selector, +.hljs-pseudo, +.hljs-addition, +.hljs-stream, +.hljs-envvar, +.apache .hljs-tag, +.apache .hljs-cbracket, +.tex .hljs-command, +.hljs-prompt, +.coffeescript .hljs-attribute { + color: #D88; +} + +.hljs-comment, +.java .hljs-annotation, +.python .hljs-decorator, +.hljs-template_comment, +.hljs-pi, +.hljs-doctype, +.hljs-deletion, +.hljs-shebang, +.apache .hljs-sqbracket, +.tex .hljs-formula { + color: #777; +} + +.hljs-keyword, +.hljs-literal, +.hljs-title, +.css .hljs-id, +.hljs-phpdoc, +.haskell .hljs-type, +.vbscript .hljs-built_in, +.sql .hljs-aggregate, +.rsl .hljs-built_in, +.smalltalk .hljs-class, +.diff .hljs-header, +.hljs-chunk, +.hljs-winutils, +.bash .hljs-variable, +.apache .hljs-tag, +.tex .hljs-special, +.hljs-request, +.hljs-status { + font-weight: bold; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/default.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/default.css new file mode 100644 index 0000000000..ae9af35362 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/default.css @@ -0,0 +1,153 @@ +/* + +Original style from softwaremaniacs.org (c) Ivan Sagalaev + +*/ + +.hljs { + display: block; padding: 0.5em; + background: #F0F0F0; +} + +.hljs, +.hljs-subst, +.hljs-tag .hljs-title, +.lisp .hljs-title, +.clojure .hljs-built_in, +.nginx .hljs-title { + color: black; +} + +.hljs-string, +.hljs-title, +.hljs-constant, +.hljs-parent, +.hljs-tag .hljs-value, +.hljs-rules .hljs-value, +.hljs-rules .hljs-value .hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.haml .hljs-symbol, +.ruby .hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.hljs-aggregate, +.hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.hljs-addition, +.hljs-flow, +.hljs-stream, +.bash .hljs-variable, +.apache .hljs-tag, +.apache .hljs-cbracket, +.tex .hljs-command, +.tex .hljs-special, +.erlang_repl .hljs-function_or_atom, +.asciidoc .hljs-header, +.markdown .hljs-header, +.coffeescript .hljs-attribute { + color: #800; +} + +.smartquote, +.hljs-comment, +.hljs-annotation, +.hljs-template_comment, +.diff .hljs-header, +.hljs-chunk, +.asciidoc .hljs-blockquote, +.markdown .hljs-blockquote { + color: #888; +} + +.hljs-number, +.hljs-date, +.hljs-regexp, +.hljs-literal, +.hljs-hexcolor, +.smalltalk .hljs-symbol, +.smalltalk .hljs-char, +.go .hljs-constant, +.hljs-change, +.lasso .hljs-variable, +.makefile .hljs-variable, +.asciidoc .hljs-bullet, +.markdown .hljs-bullet, +.asciidoc .hljs-link_url, +.markdown .hljs-link_url { + color: #080; +} + +.hljs-label, +.hljs-javadoc, +.ruby .hljs-string, +.hljs-decorator, +.hljs-filter .hljs-argument, +.hljs-localvars, +.hljs-array, +.hljs-attr_selector, +.hljs-important, +.hljs-pseudo, +.hljs-pi, +.haml .hljs-bullet, +.hljs-doctype, +.hljs-deletion, +.hljs-envvar, +.hljs-shebang, +.apache .hljs-sqbracket, +.nginx .hljs-built_in, +.tex .hljs-formula, +.erlang_repl .hljs-reserved, +.hljs-prompt, +.asciidoc .hljs-link_label, +.markdown .hljs-link_label, +.vhdl .hljs-attribute, +.clojure .hljs-attribute, +.asciidoc .hljs-attribute, +.lasso .hljs-attribute, +.coffeescript .hljs-property, +.hljs-phony { + color: #88F +} + +.hljs-keyword, +.hljs-id, +.hljs-title, +.hljs-built_in, +.hljs-aggregate, +.css .hljs-tag, +.hljs-javadoctag, +.hljs-phpdoc, +.hljs-yardoctag, +.smalltalk .hljs-class, +.hljs-winutils, +.bash .hljs-variable, +.apache .hljs-tag, +.go .hljs-typename, +.tex .hljs-command, +.asciidoc .hljs-strong, +.markdown .hljs-strong, +.hljs-request, +.hljs-status { + font-weight: bold; +} + +.asciidoc .hljs-emphasis, +.markdown .hljs-emphasis { + font-style: italic; +} + +.nginx .hljs-built_in { + font-weight: normal; +} + +.coffeescript .javascript, +.javascript .xml, +.lasso .markup, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/docco.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/docco.css new file mode 100644 index 0000000000..5026d6cf84 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/docco.css @@ -0,0 +1,132 @@ +/* +Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars) +*/ + +.hljs { + display: block; padding: 0.5em; + color: #000; + background: #f8f8ff +} + +.hljs-comment, +.hljs-template_comment, +.diff .hljs-header, +.hljs-javadoc { + color: #408080; + font-style: italic +} + +.hljs-keyword, +.assignment, +.hljs-literal, +.css .rule .hljs-keyword, +.hljs-winutils, +.javascript .hljs-title, +.lisp .hljs-title, +.hljs-subst { + color: #954121; +} + +.hljs-number, +.hljs-hexcolor { + color: #40a070 +} + +.hljs-string, +.hljs-tag .hljs-value, +.hljs-phpdoc, +.tex .hljs-formula { + color: #219161; +} + +.hljs-title, +.hljs-id { + color: #19469D; +} +.hljs-params { + color: #00F; +} + +.javascript .hljs-title, +.lisp .hljs-title, +.hljs-subst { + font-weight: normal +} + +.hljs-class .hljs-title, +.haskell .hljs-label, +.tex .hljs-command { + color: #458; + font-weight: bold +} + +.hljs-tag, +.hljs-tag .hljs-title, +.hljs-rules .hljs-property, +.django .hljs-tag .hljs-keyword { + color: #000080; + font-weight: normal +} + +.hljs-attribute, +.hljs-variable, +.instancevar, +.lisp .hljs-body { + color: #008080 +} + +.hljs-regexp { + color: #B68 +} + +.hljs-class { + color: #458; + font-weight: bold +} + +.hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.ruby .hljs-symbol .hljs-keyword, +.ruby .hljs-symbol .keymethods, +.lisp .hljs-keyword, +.tex .hljs-special, +.input_number { + color: #990073 +} + +.builtin, +.constructor, +.hljs-built_in, +.lisp .hljs-title { + color: #0086b3 +} + +.hljs-preprocessor, +.hljs-pragma, +.hljs-pi, +.hljs-doctype, +.hljs-shebang, +.hljs-cdata { + color: #999; + font-weight: bold +} + +.hljs-deletion { + background: #fdd +} + +.hljs-addition { + background: #dfd +} + +.diff .hljs-change { + background: #0086b3 +} + +.hljs-chunk { + color: #aaa +} + +.tex .hljs-formula { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/far.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/far.css new file mode 100644 index 0000000000..be505362b1 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/far.css @@ -0,0 +1,113 @@ +/* + +FAR Style (c) MajestiC + +*/ + +.hljs { + display: block; padding: 0.5em; + background: #000080; +} + +.hljs, +.hljs-subst { + color: #0FF; +} + +.hljs-string, +.ruby .hljs-string, +.haskell .hljs-type, +.hljs-tag .hljs-value, +.css .hljs-rules .hljs-value, +.css .hljs-rules .hljs-value .hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.ruby .hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.hljs-built_in, +.sql .hljs-aggregate, +.django .hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.hljs-addition, +.apache .hljs-tag, +.apache .hljs-cbracket, +.tex .hljs-command, +.clojure .hljs-title, +.coffeescript .hljs-attribute { + color: #FF0; +} + +.hljs-keyword, +.css .hljs-id, +.hljs-title, +.haskell .hljs-type, +.vbscript .hljs-built_in, +.sql .hljs-aggregate, +.rsl .hljs-built_in, +.smalltalk .hljs-class, +.xml .hljs-tag .hljs-title, +.hljs-winutils, +.hljs-flow, +.hljs-change, +.hljs-envvar, +.bash .hljs-variable, +.tex .hljs-special, +.clojure .hljs-built_in { + color: #FFF; +} + +.hljs-comment, +.hljs-phpdoc, +.hljs-javadoc, +.java .hljs-annotation, +.hljs-template_comment, +.hljs-deletion, +.apache .hljs-sqbracket, +.tex .hljs-formula { + color: #888; +} + +.hljs-number, +.hljs-date, +.hljs-regexp, +.hljs-literal, +.smalltalk .hljs-symbol, +.smalltalk .hljs-char, +.clojure .hljs-attribute { + color: #0F0; +} + +.python .hljs-decorator, +.django .hljs-filter .hljs-argument, +.smalltalk .hljs-localvars, +.smalltalk .hljs-array, +.hljs-attr_selector, +.hljs-pseudo, +.xml .hljs-pi, +.diff .hljs-header, +.hljs-chunk, +.hljs-shebang, +.nginx .hljs-built_in, +.hljs-prompt { + color: #008080; +} + +.hljs-keyword, +.css .hljs-id, +.hljs-title, +.haskell .hljs-type, +.vbscript .hljs-built_in, +.sql .hljs-aggregate, +.rsl .hljs-built_in, +.smalltalk .hljs-class, +.hljs-winutils, +.hljs-flow, +.apache .hljs-tag, +.nginx .hljs-built_in, +.tex .hljs-command, +.tex .hljs-special, +.hljs-request, +.hljs-status { + font-weight: bold; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/foundation.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/foundation.css new file mode 100644 index 0000000000..0710a10fdc --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/foundation.css @@ -0,0 +1,133 @@ +/* +Description: Foundation 4 docs style for highlight.js +Author: Dan Allen +Website: http://foundation.zurb.com/docs/ +Version: 1.0 +Date: 2013-04-02 +*/ + +.hljs { + display: block; padding: 0.5em; + background: #eee; +} + +.hljs-header, +.hljs-decorator, +.hljs-annotation { + color: #000077; +} + +.hljs-horizontal_rule, +.hljs-link_url, +.hljs-emphasis, +.hljs-attribute { + color: #070; +} + +.hljs-emphasis { + font-style: italic; +} + +.hljs-link_label, +.hljs-strong, +.hljs-value, +.hljs-string, +.scss .hljs-value .hljs-string { + color: #d14; +} + +.hljs-strong { + font-weight: bold; +} + +.hljs-blockquote, +.hljs-comment { + color: #998; + font-style: italic; +} + +.asciidoc .hljs-title, +.hljs-function .hljs-title { + color: #900; +} + +.hljs-class { + color: #458; +} + +.hljs-id, +.hljs-pseudo, +.hljs-constant, +.hljs-hexcolor { + color: teal; +} + +.hljs-variable { + color: #336699; +} + +.hljs-bullet, +.hljs-javadoc { + color: #997700; +} + +.hljs-pi, +.hljs-doctype { + color: #3344bb; +} + +.hljs-code, +.hljs-number { + color: #099; +} + +.hljs-important { + color: #f00; +} + +.smartquote, +.hljs-label { + color: #970; +} + +.hljs-preprocessor, +.hljs-pragma { + color: #579; +} + +.hljs-reserved, +.hljs-keyword, +.scss .hljs-value { + color: #000; +} + +.hljs-regexp { + background-color: #fff0ff; + color: #880088; +} + +.hljs-symbol { + color: #990073; +} + +.hljs-symbol .hljs-string { + color: #a60; +} + +.hljs-tag { + color: #007700; +} + +.hljs-at_rule, +.hljs-at_rule .hljs-keyword { + color: #088; +} + +.hljs-at_rule .hljs-preprocessor { + color: #808; +} + +.scss .hljs-tag, +.scss .hljs-attribute { + color: #339; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/github.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/github.css new file mode 100644 index 0000000000..5517086b94 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/github.css @@ -0,0 +1,125 @@ +/* + +github.com style (c) Vasily Polovnyov + +*/ + +.hljs { + display: block; padding: 0.5em; + color: #333; + background: #f8f8f8 +} + +.hljs-comment, +.hljs-template_comment, +.diff .hljs-header, +.hljs-javadoc { + color: #998; + font-style: italic +} + +.hljs-keyword, +.css .rule .hljs-keyword, +.hljs-winutils, +.javascript .hljs-title, +.nginx .hljs-title, +.hljs-subst, +.hljs-request, +.hljs-status { + color: #333; + font-weight: bold +} + +.hljs-number, +.hljs-hexcolor, +.ruby .hljs-constant { + color: #099; +} + +.hljs-string, +.hljs-tag .hljs-value, +.hljs-phpdoc, +.tex .hljs-formula { + color: #d14 +} + +.hljs-title, +.hljs-id, +.coffeescript .hljs-params, +.scss .hljs-preprocessor { + color: #900; + font-weight: bold +} + +.javascript .hljs-title, +.lisp .hljs-title, +.clojure .hljs-title, +.hljs-subst { + font-weight: normal +} + +.hljs-class .hljs-title, +.haskell .hljs-type, +.vhdl .hljs-literal, +.tex .hljs-command { + color: #458; + font-weight: bold +} + +.hljs-tag, +.hljs-tag .hljs-title, +.hljs-rules .hljs-property, +.django .hljs-tag .hljs-keyword { + color: #000080; + font-weight: normal +} + +.hljs-attribute, +.hljs-variable, +.lisp .hljs-body { + color: #008080 +} + +.hljs-regexp { + color: #009926 +} + +.hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.lisp .hljs-keyword, +.tex .hljs-special, +.hljs-prompt { + color: #990073 +} + +.hljs-built_in, +.lisp .hljs-title, +.clojure .hljs-built_in { + color: #0086b3 +} + +.hljs-preprocessor, +.hljs-pragma, +.hljs-pi, +.hljs-doctype, +.hljs-shebang, +.hljs-cdata { + color: #999; + font-weight: bold +} + +.hljs-deletion { + background: #fdd +} + +.hljs-addition { + background: #dfd +} + +.diff .hljs-change { + background: #0086b3 +} + +.hljs-chunk { + color: #aaa +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/googlecode.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/googlecode.css new file mode 100644 index 0000000000..5cc49b68f1 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/googlecode.css @@ -0,0 +1,147 @@ +/* + +Google Code style (c) Aahan Krish + +*/ + +.hljs { + display: block; padding: 0.5em; + background: white; color: black; +} + +.hljs-comment, +.hljs-template_comment, +.hljs-javadoc, +.hljs-comment * { + color: #800; +} + +.hljs-keyword, +.method, +.hljs-list .hljs-title, +.clojure .hljs-built_in, +.nginx .hljs-title, +.hljs-tag .hljs-title, +.setting .hljs-value, +.hljs-winutils, +.tex .hljs-command, +.http .hljs-title, +.hljs-request, +.hljs-status { + color: #008; +} + +.hljs-envvar, +.tex .hljs-special { + color: #660; +} + +.hljs-string, +.hljs-tag .hljs-value, +.hljs-cdata, +.hljs-filter .hljs-argument, +.hljs-attr_selector, +.apache .hljs-cbracket, +.hljs-date, +.hljs-regexp, +.coffeescript .hljs-attribute { + color: #080; +} + +.hljs-sub .hljs-identifier, +.hljs-pi, +.hljs-tag, +.hljs-tag .hljs-keyword, +.hljs-decorator, +.ini .hljs-title, +.hljs-shebang, +.hljs-prompt, +.hljs-hexcolor, +.hljs-rules .hljs-value, +.css .hljs-value .hljs-number, +.hljs-literal, +.hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.hljs-number, +.css .hljs-function, +.clojure .hljs-attribute { + color: #066; +} + +.hljs-class .hljs-title, +.haskell .hljs-type, +.smalltalk .hljs-class, +.hljs-javadoctag, +.hljs-yardoctag, +.hljs-phpdoc, +.hljs-typename, +.hljs-tag .hljs-attribute, +.hljs-doctype, +.hljs-class .hljs-id, +.hljs-built_in, +.setting, +.hljs-params, +.hljs-variable, +.clojure .hljs-title { + color: #606; +} + +.css .hljs-tag, +.hljs-rules .hljs-property, +.hljs-pseudo, +.hljs-subst { + color: #000; +} + +.css .hljs-class, +.css .hljs-id { + color: #9B703F; +} + +.hljs-value .hljs-important { + color: #ff7700; + font-weight: bold; +} + +.hljs-rules .hljs-keyword { + color: #C5AF75; +} + +.hljs-annotation, +.apache .hljs-sqbracket, +.nginx .hljs-built_in { + color: #9B859D; +} + +.hljs-preprocessor, +.hljs-preprocessor *, +.hljs-pragma { + color: #444; +} + +.tex .hljs-formula { + background-color: #EEE; + font-style: italic; +} + +.diff .hljs-header, +.hljs-chunk { + color: #808080; + font-weight: bold; +} + +.diff .hljs-change { + background-color: #BCCFF9; +} + +.hljs-addition { + background-color: #BAEEBA; +} + +.hljs-deletion { + background-color: #FFC8BD; +} + +.hljs-comment .hljs-yardoctag { + font-weight: bold; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/idea.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/idea.css new file mode 100644 index 0000000000..3e810c5f6f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/idea.css @@ -0,0 +1,122 @@ +/* + +Intellij Idea-like styling (c) Vasily Polovnyov + +*/ + +.hljs { + display: block; padding: 0.5em; + color: #000; + background: #fff; +} + +.hljs-subst, +.hljs-title { + font-weight: normal; + color: #000; +} + +.hljs-comment, +.hljs-template_comment, +.hljs-javadoc, +.diff .hljs-header { + color: #808080; + font-style: italic; +} + +.hljs-annotation, +.hljs-decorator, +.hljs-preprocessor, +.hljs-pragma, +.hljs-doctype, +.hljs-pi, +.hljs-chunk, +.hljs-shebang, +.apache .hljs-cbracket, +.hljs-prompt, +.http .hljs-title { + color: #808000; +} + +.hljs-tag, +.hljs-pi { + background: #efefef; +} + +.hljs-tag .hljs-title, +.hljs-id, +.hljs-attr_selector, +.hljs-pseudo, +.hljs-literal, +.hljs-keyword, +.hljs-hexcolor, +.css .hljs-function, +.ini .hljs-title, +.css .hljs-class, +.hljs-list .hljs-title, +.clojure .hljs-title, +.nginx .hljs-title, +.tex .hljs-command, +.hljs-request, +.hljs-status { + font-weight: bold; + color: #000080; +} + +.hljs-attribute, +.hljs-rules .hljs-keyword, +.hljs-number, +.hljs-date, +.hljs-regexp, +.tex .hljs-special { + font-weight: bold; + color: #0000ff; +} + +.hljs-number, +.hljs-regexp { + font-weight: normal; +} + +.hljs-string, +.hljs-value, +.hljs-filter .hljs-argument, +.css .hljs-function .hljs-params, +.apache .hljs-tag { + color: #008000; + font-weight: bold; +} + +.hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.hljs-char, +.tex .hljs-formula { + color: #000; + background: #d0eded; + font-style: italic; +} + +.hljs-phpdoc, +.hljs-yardoctag, +.hljs-javadoctag { + text-decoration: underline; +} + +.hljs-variable, +.hljs-envvar, +.apache .hljs-sqbracket, +.nginx .hljs-built_in { + color: #660e7a; +} + +.hljs-addition { + background: #baeeba; +} + +.hljs-deletion { + background: #ffc8bd; +} + +.diff .hljs-change { + background: #bccff9; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/ir_black.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/ir_black.css new file mode 100644 index 0000000000..66f7c193f7 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/ir_black.css @@ -0,0 +1,105 @@ +/* + IR_Black style (c) Vasily Mikhailitchenko +*/ + +.hljs { + display: block; padding: 0.5em; + background: #000; color: #f8f8f8; +} + +.hljs-shebang, +.hljs-comment, +.hljs-template_comment, +.hljs-javadoc { + color: #7c7c7c; +} + +.hljs-keyword, +.hljs-tag, +.tex .hljs-command, +.hljs-request, +.hljs-status, +.clojure .hljs-attribute { + color: #96CBFE; +} + +.hljs-sub .hljs-keyword, +.method, +.hljs-list .hljs-title, +.nginx .hljs-title { + color: #FFFFB6; +} + +.hljs-string, +.hljs-tag .hljs-value, +.hljs-cdata, +.hljs-filter .hljs-argument, +.hljs-attr_selector, +.apache .hljs-cbracket, +.hljs-date, +.coffeescript .hljs-attribute { + color: #A8FF60; +} + +.hljs-subst { + color: #DAEFA3; +} + +.hljs-regexp { + color: #E9C062; +} + +.hljs-title, +.hljs-sub .hljs-identifier, +.hljs-pi, +.hljs-decorator, +.tex .hljs-special, +.haskell .hljs-type, +.hljs-constant, +.smalltalk .hljs-class, +.hljs-javadoctag, +.hljs-yardoctag, +.hljs-phpdoc, +.nginx .hljs-built_in { + color: #FFFFB6; +} + +.hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.hljs-number, +.hljs-variable, +.vbscript, +.hljs-literal { + color: #C6C5FE; +} + +.css .hljs-tag { + color: #96CBFE; +} + +.css .hljs-rules .hljs-property, +.css .hljs-id { + color: #FFFFB6; +} + +.css .hljs-class { + color: #FFF; +} + +.hljs-hexcolor { + color: #C6C5FE; +} + +.hljs-number { + color:#FF73FD; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.7; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/magula.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/magula.css new file mode 100644 index 0000000000..bc69a3771b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/magula.css @@ -0,0 +1,122 @@ +/* +Description: Magula style for highligh.js +Author: Ruslan Keba +Website: http://rukeba.com/ +Version: 1.0 +Date: 2009-01-03 +Music: Aphex Twin / Xtal +*/ + +.hljs { + display: block; padding: 0.5em; + background-color: #f4f4f4; +} + +.hljs, +.hljs-subst, +.lisp .hljs-title, +.clojure .hljs-built_in { + color: black; +} + +.hljs-string, +.hljs-title, +.hljs-parent, +.hljs-tag .hljs-value, +.hljs-rules .hljs-value, +.hljs-rules .hljs-value .hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.ruby .hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.hljs-aggregate, +.hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.hljs-addition, +.hljs-flow, +.hljs-stream, +.bash .hljs-variable, +.apache .hljs-cbracket, +.coffeescript .hljs-attribute { + color: #050; +} + +.hljs-comment, +.hljs-annotation, +.hljs-template_comment, +.diff .hljs-header, +.hljs-chunk { + color: #777; +} + +.hljs-number, +.hljs-date, +.hljs-regexp, +.hljs-literal, +.smalltalk .hljs-symbol, +.smalltalk .hljs-char, +.hljs-change, +.tex .hljs-special { + color: #800; +} + +.hljs-label, +.hljs-javadoc, +.ruby .hljs-string, +.hljs-decorator, +.hljs-filter .hljs-argument, +.hljs-localvars, +.hljs-array, +.hljs-attr_selector, +.hljs-pseudo, +.hljs-pi, +.hljs-doctype, +.hljs-deletion, +.hljs-envvar, +.hljs-shebang, +.apache .hljs-sqbracket, +.nginx .hljs-built_in, +.tex .hljs-formula, +.hljs-prompt, +.clojure .hljs-attribute { + color: #00e; +} + +.hljs-keyword, +.hljs-id, +.hljs-phpdoc, +.hljs-title, +.hljs-built_in, +.hljs-aggregate, +.smalltalk .hljs-class, +.hljs-winutils, +.bash .hljs-variable, +.apache .hljs-tag, +.xml .hljs-tag, +.tex .hljs-command, +.hljs-request, +.hljs-status { + font-weight: bold; + color: navy; +} + +.nginx .hljs-built_in { + font-weight: normal; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} + +/* --- */ +.apache .hljs-tag { + font-weight: bold; + color: blue; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/mono-blue.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/mono-blue.css new file mode 100644 index 0000000000..bfe2495b16 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/mono-blue.css @@ -0,0 +1,62 @@ +/* + Five-color theme from a single blue hue. +*/ +.hljs { + display: block; padding: 0.5em; + background: #EAEEF3; color: #00193A; +} + +.hljs-keyword, +.hljs-title, +.hljs-important, +.hljs-request, +.hljs-header, +.hljs-javadoctag { + font-weight: bold; +} + +.hljs-comment, +.hljs-chunk, +.hljs-template_comment { + color: #738191; +} + +.hljs-string, +.hljs-title, +.hljs-parent, +.hljs-built_in, +.hljs-literal, +.hljs-filename, +.hljs-value, +.hljs-addition, +.hljs-tag, +.hljs-argument, +.hljs-link_label, +.hljs-blockquote, +.hljs-header { + color: #0048AB; +} + +.hljs-decorator, +.hljs-prompt, +.hljs-yardoctag, +.hljs-subst, +.hljs-symbol, +.hljs-doctype, +.hljs-regexp, +.hljs-preprocessor, +.hljs-pragma, +.hljs-pi, +.hljs-attribute, +.hljs-attr_selector, +.hljs-javadoc, +.hljs-xmlDocTag, +.hljs-deletion, +.hljs-shebang, +.hljs-string .hljs-variable, +.hljs-link_url, +.hljs-bullet, +.hljs-sqbracket, +.hljs-phony { + color: #4C81C9; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/monokai.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/monokai.css new file mode 100644 index 0000000000..34cd4f9ea9 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/monokai.css @@ -0,0 +1,127 @@ +/* +Monokai style - ported by Luigi Maselli - http://grigio.org +*/ + +.hljs { + display: block; padding: 0.5em; + background: #272822; +} + +.hljs-tag, +.hljs-tag .hljs-title, +.hljs-keyword, +.hljs-literal, +.hljs-strong, +.hljs-change, +.hljs-winutils, +.hljs-flow, +.lisp .hljs-title, +.clojure .hljs-built_in, +.nginx .hljs-title, +.tex .hljs-special { + color: #F92672; +} + +.hljs { + color: #DDD; +} + +.hljs .hljs-constant, +.asciidoc .hljs-code { + color: #66D9EF; +} + +.hljs-code, +.hljs-class .hljs-title, +.hljs-header { + color: white; +} + +.hljs-link_label, +.hljs-attribute, +.hljs-symbol, +.hljs-symbol .hljs-string, +.hljs-value, +.hljs-regexp { + color: #BF79DB; +} + +.hljs-link_url, +.hljs-tag .hljs-value, +.hljs-string, +.hljs-bullet, +.hljs-subst, +.hljs-title, +.hljs-emphasis, +.haskell .hljs-type, +.hljs-preprocessor, +.hljs-pragma, +.ruby .hljs-class .hljs-parent, +.hljs-built_in, +.sql .hljs-aggregate, +.django .hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.hljs-javadoc, +.django .hljs-filter .hljs-argument, +.smalltalk .hljs-localvars, +.smalltalk .hljs-array, +.hljs-attr_selector, +.hljs-pseudo, +.hljs-addition, +.hljs-stream, +.hljs-envvar, +.apache .hljs-tag, +.apache .hljs-cbracket, +.tex .hljs-command, +.hljs-prompt { + color: #A6E22E; +} + +.hljs-comment, +.java .hljs-annotation, +.smartquote, +.hljs-blockquote, +.hljs-horizontal_rule, +.python .hljs-decorator, +.hljs-template_comment, +.hljs-pi, +.hljs-doctype, +.hljs-deletion, +.hljs-shebang, +.apache .hljs-sqbracket, +.tex .hljs-formula { + color: #75715E; +} + +.hljs-keyword, +.hljs-literal, +.css .hljs-id, +.hljs-phpdoc, +.hljs-title, +.hljs-header, +.haskell .hljs-type, +.vbscript .hljs-built_in, +.sql .hljs-aggregate, +.rsl .hljs-built_in, +.smalltalk .hljs-class, +.diff .hljs-header, +.hljs-chunk, +.hljs-winutils, +.bash .hljs-variable, +.apache .hljs-tag, +.tex .hljs-special, +.hljs-request, +.hljs-status { + font-weight: bold; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/monokai_sublime.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/monokai_sublime.css new file mode 100644 index 0000000000..2d21633380 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/monokai_sublime.css @@ -0,0 +1,149 @@ +/* + +Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/ + +*/ + +.hljs { + display: block; + padding: 0.5em; + background: #23241f; +} + +.hljs, +.hljs-tag, +.css .hljs-rules, +.css .hljs-value, +.css .hljs-function +.hljs-preprocessor, +.hljs-pragma { + color: #f8f8f2; +} + +.hljs-strongemphasis, +.hljs-strong, +.hljs-emphasis { + color: #a8a8a2; +} + +.hljs-bullet, +.hljs-blockquote, +.hljs-horizontal_rule, +.hljs-number, +.hljs-regexp, +.alias .hljs-keyword, +.hljs-literal, +.hljs-hexcolor { + color: #ae81ff; +} + +.hljs-tag .hljs-value, +.hljs-code, +.hljs-title, +.css .hljs-class, +.hljs-class .hljs-title:last-child { + color: #a6e22e; +} + +.hljs-link_url { + font-size: 80%; +} + +.hljs-strong, +.hljs-strongemphasis { + font-weight: bold; +} + +.hljs-emphasis, +.hljs-strongemphasis, +.hljs-class .hljs-title:last-child { + font-style: italic; +} + +.hljs-keyword, +.hljs-function, +.hljs-change, +.hljs-winutils, +.hljs-flow, +.lisp .hljs-title, +.clojure .hljs-built_in, +.nginx .hljs-title, +.tex .hljs-special, +.hljs-header, +.hljs-attribute, +.hljs-symbol, +.hljs-symbol .hljs-string, +.hljs-tag .hljs-title, +.hljs-value, +.alias .hljs-keyword:first-child, +.css .hljs-tag, +.css .unit, +.css .hljs-important { + color: #F92672; +} + +.hljs-function .hljs-keyword, +.hljs-class .hljs-keyword:first-child, +.hljs-constant, +.css .hljs-attribute { + color: #66d9ef; +} + +.hljs-variable, +.hljs-params, +.hljs-class .hljs-title { + color: #f8f8f2; +} + +.hljs-string, +.css .hljs-id, +.hljs-subst, +.haskell .hljs-type, +.ruby .hljs-class .hljs-parent, +.hljs-built_in, +.sql .hljs-aggregate, +.django .hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.django .hljs-filter .hljs-argument, +.smalltalk .hljs-localvars, +.smalltalk .hljs-array, +.hljs-attr_selector, +.hljs-pseudo, +.hljs-addition, +.hljs-stream, +.hljs-envvar, +.apache .hljs-tag, +.apache .hljs-cbracket, +.tex .hljs-command, +.hljs-prompt, +.hljs-link_label, +.hljs-link_url { + color: #e6db74; +} + +.hljs-comment, +.hljs-javadoc, +.java .hljs-annotation, +.python .hljs-decorator, +.hljs-template_comment, +.hljs-pi, +.hljs-doctype, +.hljs-deletion, +.hljs-shebang, +.apache .hljs-sqbracket, +.tex .hljs-formula { + color: #75715e; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata, +.xml .php, +.php .xml { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/obsidian.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/obsidian.css new file mode 100644 index 0000000000..68259fc802 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/obsidian.css @@ -0,0 +1,154 @@ +/** + * Obsidian style + * ported by Alexander Marenin (http://github.com/ioncreature) + */ + +.hljs { + display: block; padding: 0.5em; + background: #282B2E; +} + +.hljs-keyword, +.hljs-literal, +.hljs-change, +.hljs-winutils, +.hljs-flow, +.lisp .hljs-title, +.clojure .hljs-built_in, +.nginx .hljs-title, +.css .hljs-id, +.tex .hljs-special { + color: #93C763; +} + +.hljs-number { + color: #FFCD22; +} + +.hljs { + color: #E0E2E4; +} + +.css .hljs-tag, +.css .hljs-pseudo { + color: #D0D2B5; +} + +.hljs-attribute, +.hljs .hljs-constant { + color: #668BB0; +} + +.xml .hljs-attribute { + color: #B3B689; +} + +.xml .hljs-tag .hljs-value { + color: #E8E2B7; +} + +.hljs-code, +.hljs-class .hljs-title, +.hljs-header { + color: white; +} + +.hljs-class, +.hljs-hexcolor { + color: #93C763; +} + +.hljs-regexp { + color: #D39745; +} + +.hljs-at_rule, +.hljs-at_rule .hljs-keyword { + color: #A082BD; +} + +.hljs-doctype { + color: #557182; +} + +.hljs-link_url, +.hljs-tag, +.hljs-tag .hljs-title, +.hljs-bullet, +.hljs-subst, +.hljs-emphasis, +.haskell .hljs-type, +.hljs-preprocessor, +.hljs-pragma, +.ruby .hljs-class .hljs-parent, +.hljs-built_in, +.sql .hljs-aggregate, +.django .hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.hljs-javadoc, +.django .hljs-filter .hljs-argument, +.smalltalk .hljs-localvars, +.smalltalk .hljs-array, +.hljs-attr_selector, +.hljs-pseudo, +.hljs-addition, +.hljs-stream, +.hljs-envvar, +.apache .hljs-tag, +.apache .hljs-cbracket, +.tex .hljs-command, +.hljs-prompt { + color: #8CBBAD; +} + +.hljs-string { + color: #EC7600; +} + +.hljs-comment, +.java .hljs-annotation, +.hljs-blockquote, +.hljs-horizontal_rule, +.python .hljs-decorator, +.hljs-template_comment, +.hljs-pi, +.hljs-deletion, +.hljs-shebang, +.apache .hljs-sqbracket, +.tex .hljs-formula { + color: #818E96; +} + +.hljs-keyword, +.hljs-literal, +.css .hljs-id, +.hljs-phpdoc, +.hljs-title, +.hljs-header, +.haskell .hljs-type, +.vbscript .hljs-built_in, +.sql .hljs-aggregate, +.rsl .hljs-built_in, +.smalltalk .hljs-class, +.diff .hljs-header, +.hljs-chunk, +.hljs-winutils, +.bash .hljs-variable, +.apache .hljs-tag, +.tex .hljs-special, +.hljs-request, +.hljs-at_rule .hljs-keyword, +.hljs-status { + font-weight: bold; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/paraiso.dark.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/paraiso.dark.css new file mode 100644 index 0000000000..55d02f1d5c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/paraiso.dark.css @@ -0,0 +1,93 @@ +/* + Paraíso (dark) + Created by Jan T. Sott (http://github.com/idleberg) + Inspired by the art of Rubens LP (http://www.rubenslp.com.br) +*/ + +/* Paraíso Comment */ +.hljs-comment, +.hljs-title { + color: #8d8687; +} + +/* Paraíso Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #ef6155; +} + +/* Paraíso Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #f99b15; +} + +/* Paraíso Yellow */ +.ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #fec418; +} + +/* Paraíso Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #48b685; +} + +/* Paraíso Aqua */ +.css .hljs-hexcolor { + color: #5bc4bf; +} + +/* Paraíso Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #06b6ef; +} + +/* Paraíso Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #815ba4; +} + +.hljs { + display: block; + background: #2f1e2e; + color: #a39e9b; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/paraiso.light.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/paraiso.light.css new file mode 100644 index 0000000000..d29ee1b7f4 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/paraiso.light.css @@ -0,0 +1,93 @@ +/* + Paraíso (light) + Created by Jan T. Sott (http://github.com/idleberg) + Inspired by the art of Rubens LP (http://www.rubenslp.com.br) +*/ + +/* Paraíso Comment */ +.hljs-comment, +.hljs-title { + color: #776e71; +} + +/* Paraíso Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #ef6155; +} + +/* Paraíso Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #f99b15; +} + +/* Paraíso Yellow */ +.ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #fec418; +} + +/* Paraíso Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #48b685; +} + +/* Paraíso Aqua */ +.css .hljs-hexcolor { + color: #5bc4bf; +} + +/* Paraíso Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #06b6ef; +} + +/* Paraíso Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #815ba4; +} + +.hljs { + display: block; + background: #e7e9db; + color: #4f424c; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.css new file mode 100644 index 0000000000..86307929da --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.css @@ -0,0 +1,106 @@ +/* + +Pojoaque Style by Jason Tate +http://web-cms-designs.com/ftopict-10-pojoaque-style-for-highlight-js-code-highlighter.html +Based on Solarized Style from http://ethanschoonover.com/solarized + +*/ + +.hljs { + display: block; padding: 0.5em; + color: #DCCF8F; + background: url(./pojoaque.jpg) repeat scroll left top #181914; +} + +.hljs-comment, +.hljs-template_comment, +.diff .hljs-header, +.hljs-doctype, +.lisp .hljs-string, +.hljs-javadoc { + color: #586e75; + font-style: italic; +} + +.hljs-keyword, +.css .rule .hljs-keyword, +.hljs-winutils, +.javascript .hljs-title, +.method, +.hljs-addition, +.css .hljs-tag, +.clojure .hljs-title, +.nginx .hljs-title { + color: #B64926; +} + +.hljs-number, +.hljs-command, +.hljs-string, +.hljs-tag .hljs-value, +.hljs-phpdoc, +.tex .hljs-formula, +.hljs-regexp, +.hljs-hexcolor { + color: #468966; +} + +.hljs-title, +.hljs-localvars, +.hljs-function .hljs-title, +.hljs-chunk, +.hljs-decorator, +.hljs-built_in, +.lisp .hljs-title, +.clojure .hljs-built_in, +.hljs-identifier, +.hljs-id { + color: #FFB03B; +} + +.hljs-attribute, +.hljs-variable, +.lisp .hljs-body, +.smalltalk .hljs-number, +.hljs-constant, +.hljs-class .hljs-title, +.hljs-parent, +.haskell .hljs-type { + color: #b58900; +} + +.css .hljs-attribute { + color: #b89859; +} + +.css .hljs-number, +.css .hljs-hexcolor { + color: #DCCF8F; +} + +.css .hljs-class { + color: #d3a60c; +} + +.hljs-preprocessor, +.hljs-pragma, +.hljs-pi, +.hljs-shebang, +.hljs-symbol, +.hljs-symbol .hljs-string, +.diff .hljs-change, +.hljs-special, +.hljs-attr_selector, +.hljs-important, +.hljs-subst, +.hljs-cdata { + color: #cb4b16; +} + +.hljs-deletion { + color: #dc322f; +} + +.tex .hljs-formula { + background: #073642; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.jpg b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.jpg new file mode 100644 index 0000000000..9c07d4ab40 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.jpg differ diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/railscasts.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/railscasts.css new file mode 100644 index 0000000000..83d0cde5a7 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/railscasts.css @@ -0,0 +1,182 @@ +/* + +Railscasts-like style (c) Visoft, Inc. (Damien White) + +*/ + +.hljs { + display: block; + padding: 0.5em; + background: #232323; + color: #E6E1DC; +} + +.hljs-comment, +.hljs-template_comment, +.hljs-javadoc, +.hljs-shebang { + color: #BC9458; + font-style: italic; +} + +.hljs-keyword, +.ruby .hljs-function .hljs-keyword, +.hljs-request, +.hljs-status, +.nginx .hljs-title, +.method, +.hljs-list .hljs-title { + color: #C26230; +} + +.hljs-string, +.hljs-number, +.hljs-regexp, +.hljs-tag .hljs-value, +.hljs-cdata, +.hljs-filter .hljs-argument, +.hljs-attr_selector, +.apache .hljs-cbracket, +.hljs-date, +.tex .hljs-command, +.markdown .hljs-link_label { + color: #A5C261; +} + +.hljs-subst { + color: #519F50; +} + +.hljs-tag, +.hljs-tag .hljs-keyword, +.hljs-tag .hljs-title, +.hljs-doctype, +.hljs-sub .hljs-identifier, +.hljs-pi, +.input_number { + color: #E8BF6A; +} + +.hljs-identifier { + color: #D0D0FF; +} + +.hljs-class .hljs-title, +.haskell .hljs-type, +.smalltalk .hljs-class, +.hljs-javadoctag, +.hljs-yardoctag, +.hljs-phpdoc { + text-decoration: none; +} + +.hljs-constant { + color: #DA4939; +} + + +.hljs-symbol, +.hljs-built_in, +.ruby .hljs-symbol .hljs-string, +.ruby .hljs-symbol .hljs-identifier, +.markdown .hljs-link_url, +.hljs-attribute { + color: #6D9CBE; +} + +.markdown .hljs-link_url { + text-decoration: underline; +} + + + +.hljs-params, +.hljs-variable, +.clojure .hljs-attribute { + color: #D0D0FF; +} + +.css .hljs-tag, +.hljs-rules .hljs-property, +.hljs-pseudo, +.tex .hljs-special { + color: #CDA869; +} + +.css .hljs-class { + color: #9B703F; +} + +.hljs-rules .hljs-keyword { + color: #C5AF75; +} + +.hljs-rules .hljs-value { + color: #CF6A4C; +} + +.css .hljs-id { + color: #8B98AB; +} + +.hljs-annotation, +.apache .hljs-sqbracket, +.nginx .hljs-built_in { + color: #9B859D; +} + +.hljs-preprocessor, +.hljs-preprocessor *, +.hljs-pragma { + color: #8996A8 !important; +} + +.hljs-hexcolor, +.css .hljs-value .hljs-number { + color: #A5C261; +} + +.hljs-title, +.hljs-decorator, +.css .hljs-function { + color: #FFC66D; +} + +.diff .hljs-header, +.hljs-chunk { + background-color: #2F33AB; + color: #E6E1DC; + display: inline-block; + width: 100%; +} + +.diff .hljs-change { + background-color: #4A410D; + color: #F8F8F8; + display: inline-block; + width: 100%; +} + +.hljs-addition { + background-color: #144212; + color: #E6E1DC; + display: inline-block; + width: 100%; +} + +.hljs-deletion { + background-color: #600; + color: #E6E1DC; + display: inline-block; + width: 100%; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.7; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/rainbow.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/rainbow.css new file mode 100644 index 0000000000..08142466cf --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/rainbow.css @@ -0,0 +1,112 @@ +/* + +Style with support for rainbow parens + +*/ + +.hljs { + display: block; padding: 0.5em; + background: #474949; color: #D1D9E1; +} + + +.hljs-body, +.hljs-collection { + color: #D1D9E1; +} + +.hljs-comment, +.hljs-template_comment, +.diff .hljs-header, +.hljs-doctype, +.lisp .hljs-string, +.hljs-javadoc { + color: #969896; + font-style: italic; +} + +.hljs-keyword, +.clojure .hljs-attribute, +.hljs-winutils, +.javascript .hljs-title, +.hljs-addition, +.css .hljs-tag { + color: #cc99cc; +} + +.hljs-number { color: #f99157; } + +.hljs-command, +.hljs-string, +.hljs-tag .hljs-value, +.hljs-phpdoc, +.tex .hljs-formula, +.hljs-regexp, +.hljs-hexcolor { + color: #8abeb7; +} + +.hljs-title, +.hljs-localvars, +.hljs-function .hljs-title, +.hljs-chunk, +.hljs-decorator, +.hljs-built_in, +.lisp .hljs-title, +.hljs-identifier +{ + color: #b5bd68; +} + +.hljs-class .hljs-keyword +{ + color: #f2777a; +} + +.hljs-variable, +.lisp .hljs-body, +.smalltalk .hljs-number, +.hljs-constant, +.hljs-class .hljs-title, +.hljs-parent, +.haskell .hljs-label, +.hljs-id, +.lisp .hljs-title, +.clojure .hljs-title .hljs-built_in { + color: #ffcc66; +} + +.hljs-tag .hljs-title, +.hljs-rules .hljs-property, +.django .hljs-tag .hljs-keyword, +.clojure .hljs-title .hljs-built_in { + font-weight: bold; +} + +.hljs-attribute, +.clojure .hljs-title { + color: #81a2be; +} + +.hljs-preprocessor, +.hljs-pragma, +.hljs-pi, +.hljs-shebang, +.hljs-symbol, +.hljs-symbol .hljs-string, +.diff .hljs-change, +.hljs-special, +.hljs-attr_selector, +.hljs-important, +.hljs-subst, +.hljs-cdata { + color: #f99157; +} + +.hljs-deletion { + color: #dc322f; +} + +.tex .hljs-formula { + background: #eee8d5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.css new file mode 100644 index 0000000000..a36e836279 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.css @@ -0,0 +1,113 @@ +/* + +School Book style from goldblog.com.ua (c) Zaripov Yura + +*/ + +.hljs { + display: block; padding: 15px 0.5em 0.5em 30px; + font-size: 11px !important; + line-height:16px !important; +} + +pre{ + background:#f6f6ae url(./school_book.png); + border-top: solid 2px #d2e8b9; + border-bottom: solid 1px #d2e8b9; +} + +.hljs-keyword, +.hljs-literal, +.hljs-change, +.hljs-winutils, +.hljs-flow, +.lisp .hljs-title, +.clojure .hljs-built_in, +.nginx .hljs-title, +.tex .hljs-special { + color:#005599; + font-weight:bold; +} + +.hljs, +.hljs-subst, +.hljs-tag .hljs-keyword { + color: #3E5915; +} + +.hljs-string, +.hljs-title, +.haskell .hljs-type, +.hljs-tag .hljs-value, +.css .hljs-rules .hljs-value, +.hljs-preprocessor, +.hljs-pragma, +.ruby .hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.ruby .hljs-class .hljs-parent, +.hljs-built_in, +.sql .hljs-aggregate, +.django .hljs-template_tag, +.django .hljs-variable, +.smalltalk .hljs-class, +.hljs-javadoc, +.ruby .hljs-string, +.django .hljs-filter .hljs-argument, +.smalltalk .hljs-localvars, +.smalltalk .hljs-array, +.hljs-attr_selector, +.hljs-pseudo, +.hljs-addition, +.hljs-stream, +.hljs-envvar, +.apache .hljs-tag, +.apache .hljs-cbracket, +.nginx .hljs-built_in, +.tex .hljs-command, +.coffeescript .hljs-attribute { + color: #2C009F; +} + +.hljs-comment, +.java .hljs-annotation, +.python .hljs-decorator, +.hljs-template_comment, +.hljs-pi, +.hljs-doctype, +.hljs-deletion, +.hljs-shebang, +.apache .hljs-sqbracket { + color: #E60415; +} + +.hljs-keyword, +.hljs-literal, +.css .hljs-id, +.hljs-phpdoc, +.hljs-title, +.haskell .hljs-type, +.vbscript .hljs-built_in, +.sql .hljs-aggregate, +.rsl .hljs-built_in, +.smalltalk .hljs-class, +.xml .hljs-tag .hljs-title, +.diff .hljs-header, +.hljs-chunk, +.hljs-winutils, +.bash .hljs-variable, +.apache .hljs-tag, +.tex .hljs-command, +.hljs-request, +.hljs-status { + font-weight: bold; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.png b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.png new file mode 100644 index 0000000000..956e9790a0 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.png differ diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/solarized_dark.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/solarized_dark.css new file mode 100644 index 0000000000..970d5f816e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/solarized_dark.css @@ -0,0 +1,107 @@ +/* + +Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull + +*/ + +.hljs { + display: block; + padding: 0.5em; + background: #002b36; + color: #839496; +} + +.hljs-comment, +.hljs-template_comment, +.diff .hljs-header, +.hljs-doctype, +.hljs-pi, +.lisp .hljs-string, +.hljs-javadoc { + color: #586e75; +} + +/* Solarized Green */ +.hljs-keyword, +.hljs-winutils, +.method, +.hljs-addition, +.css .hljs-tag, +.hljs-request, +.hljs-status, +.nginx .hljs-title { + color: #859900; +} + +/* Solarized Cyan */ +.hljs-number, +.hljs-command, +.hljs-string, +.hljs-tag .hljs-value, +.hljs-rules .hljs-value, +.hljs-phpdoc, +.tex .hljs-formula, +.hljs-regexp, +.hljs-hexcolor, +.hljs-link_url { + color: #2aa198; +} + +/* Solarized Blue */ +.hljs-title, +.hljs-localvars, +.hljs-chunk, +.hljs-decorator, +.hljs-built_in, +.hljs-identifier, +.vhdl .hljs-literal, +.hljs-id, +.css .hljs-function { + color: #268bd2; +} + +/* Solarized Yellow */ +.hljs-attribute, +.hljs-variable, +.lisp .hljs-body, +.smalltalk .hljs-number, +.hljs-constant, +.hljs-class .hljs-title, +.hljs-parent, +.haskell .hljs-type, +.hljs-link_reference { + color: #b58900; +} + +/* Solarized Orange */ +.hljs-preprocessor, +.hljs-preprocessor .hljs-keyword, +.hljs-pragma, +.hljs-shebang, +.hljs-symbol, +.hljs-symbol .hljs-string, +.diff .hljs-change, +.hljs-special, +.hljs-attr_selector, +.hljs-subst, +.hljs-cdata, +.clojure .hljs-title, +.css .hljs-pseudo, +.hljs-header { + color: #cb4b16; +} + +/* Solarized Red */ +.hljs-deletion, +.hljs-important { + color: #dc322f; +} + +/* Solarized Violet */ +.hljs-link_label { + color: #6c71c4; +} + +.tex .hljs-formula { + background: #073642; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/solarized_light.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/solarized_light.css new file mode 100644 index 0000000000..8e1f43654c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/solarized_light.css @@ -0,0 +1,107 @@ +/* + +Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull + +*/ + +.hljs { + display: block; + padding: 0.5em; + background: #fdf6e3; + color: #657b83; +} + +.hljs-comment, +.hljs-template_comment, +.diff .hljs-header, +.hljs-doctype, +.hljs-pi, +.lisp .hljs-string, +.hljs-javadoc { + color: #93a1a1; +} + +/* Solarized Green */ +.hljs-keyword, +.hljs-winutils, +.method, +.hljs-addition, +.css .hljs-tag, +.hljs-request, +.hljs-status, +.nginx .hljs-title { + color: #859900; +} + +/* Solarized Cyan */ +.hljs-number, +.hljs-command, +.hljs-string, +.hljs-tag .hljs-value, +.hljs-rules .hljs-value, +.hljs-phpdoc, +.tex .hljs-formula, +.hljs-regexp, +.hljs-hexcolor, +.hljs-link_url { + color: #2aa198; +} + +/* Solarized Blue */ +.hljs-title, +.hljs-localvars, +.hljs-chunk, +.hljs-decorator, +.hljs-built_in, +.hljs-identifier, +.vhdl .hljs-literal, +.hljs-id, +.css .hljs-function { + color: #268bd2; +} + +/* Solarized Yellow */ +.hljs-attribute, +.hljs-variable, +.lisp .hljs-body, +.smalltalk .hljs-number, +.hljs-constant, +.hljs-class .hljs-title, +.hljs-parent, +.haskell .hljs-type, +.hljs-link_reference { + color: #b58900; +} + +/* Solarized Orange */ +.hljs-preprocessor, +.hljs-preprocessor .hljs-keyword, +.hljs-pragma, +.hljs-shebang, +.hljs-symbol, +.hljs-symbol .hljs-string, +.diff .hljs-change, +.hljs-special, +.hljs-attr_selector, +.hljs-subst, +.hljs-cdata, +.clojure .hljs-title, +.css .hljs-pseudo, +.hljs-header { + color: #cb4b16; +} + +/* Solarized Red */ +.hljs-deletion, +.hljs-important { + color: #dc322f; +} + +/* Solarized Violet */ +.hljs-link_label { + color: #6c71c4; +} + +.tex .hljs-formula { + background: #eee8d5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/sunburst.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/sunburst.css new file mode 100644 index 0000000000..8816520c7f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/sunburst.css @@ -0,0 +1,160 @@ +/* + +Sunburst-like style (c) Vasily Polovnyov + +*/ + +.hljs { + display: block; padding: 0.5em; + background: #000; color: #f8f8f8; +} + +.hljs-comment, +.hljs-template_comment, +.hljs-javadoc { + color: #aeaeae; + font-style: italic; +} + +.hljs-keyword, +.ruby .hljs-function .hljs-keyword, +.hljs-request, +.hljs-status, +.nginx .hljs-title { + color: #E28964; +} + +.hljs-function .hljs-keyword, +.hljs-sub .hljs-keyword, +.method, +.hljs-list .hljs-title { + color: #99CF50; +} + +.hljs-string, +.hljs-tag .hljs-value, +.hljs-cdata, +.hljs-filter .hljs-argument, +.hljs-attr_selector, +.apache .hljs-cbracket, +.hljs-date, +.tex .hljs-command, +.coffeescript .hljs-attribute { + color: #65B042; +} + +.hljs-subst { + color: #DAEFA3; +} + +.hljs-regexp { + color: #E9C062; +} + +.hljs-title, +.hljs-sub .hljs-identifier, +.hljs-pi, +.hljs-tag, +.hljs-tag .hljs-keyword, +.hljs-decorator, +.hljs-shebang, +.hljs-prompt { + color: #89BDFF; +} + +.hljs-class .hljs-title, +.haskell .hljs-type, +.smalltalk .hljs-class, +.hljs-javadoctag, +.hljs-yardoctag, +.hljs-phpdoc { + text-decoration: underline; +} + +.hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.hljs-number { + color: #3387CC; +} + +.hljs-params, +.hljs-variable, +.clojure .hljs-attribute { + color: #3E87E3; +} + +.css .hljs-tag, +.hljs-rules .hljs-property, +.hljs-pseudo, +.tex .hljs-special { + color: #CDA869; +} + +.css .hljs-class { + color: #9B703F; +} + +.hljs-rules .hljs-keyword { + color: #C5AF75; +} + +.hljs-rules .hljs-value { + color: #CF6A4C; +} + +.css .hljs-id { + color: #8B98AB; +} + +.hljs-annotation, +.apache .hljs-sqbracket, +.nginx .hljs-built_in { + color: #9B859D; +} + +.hljs-preprocessor, +.hljs-pragma { + color: #8996A8; +} + +.hljs-hexcolor, +.css .hljs-value .hljs-number { + color: #DD7B3B; +} + +.css .hljs-function { + color: #DAD085; +} + +.diff .hljs-header, +.hljs-chunk, +.tex .hljs-formula { + background-color: #0E2231; + color: #F8F8F8; + font-style: italic; +} + +.diff .hljs-change { + background-color: #4A410D; + color: #F8F8F8; +} + +.hljs-addition { + background-color: #253B22; + color: #F8F8F8; +} + +.hljs-deletion { + background-color: #420E09; + color: #F8F8F8; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night-blue.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night-blue.css new file mode 100644 index 0000000000..e63ab3deba --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night-blue.css @@ -0,0 +1,93 @@ +/* Tomorrow Night Blue Theme */ +/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ +/* Original theme - https://github.com/chriskempson/tomorrow-theme */ +/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ + +/* Tomorrow Comment */ +.hljs-comment, +.hljs-title { + color: #7285b7; +} + +/* Tomorrow Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #ff9da4; +} + +/* Tomorrow Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #ffc58f; +} + +/* Tomorrow Yellow */ +.ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #ffeead; +} + +/* Tomorrow Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #d1f1a9; +} + +/* Tomorrow Aqua */ +.css .hljs-hexcolor { + color: #99ffff; +} + +/* Tomorrow Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #bbdaff; +} + +/* Tomorrow Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #ebbbff; +} + +.hljs { + display: block; + background: #002451; + color: white; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night-bright.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night-bright.css new file mode 100644 index 0000000000..3bbf367d3d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night-bright.css @@ -0,0 +1,92 @@ +/* Tomorrow Night Bright Theme */ +/* Original theme - https://github.com/chriskempson/tomorrow-theme */ +/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ + +/* Tomorrow Comment */ +.hljs-comment, +.hljs-title { + color: #969896; +} + +/* Tomorrow Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #d54e53; +} + +/* Tomorrow Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #e78c45; +} + +/* Tomorrow Yellow */ +.ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #e7c547; +} + +/* Tomorrow Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #b9ca4a; +} + +/* Tomorrow Aqua */ +.css .hljs-hexcolor { + color: #70c0b1; +} + +/* Tomorrow Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #7aa6da; +} + +/* Tomorrow Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #c397d8; +} + +.hljs { + display: block; + background: black; + color: #eaeaea; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night-eighties.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night-eighties.css new file mode 100644 index 0000000000..b8de0dbf74 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night-eighties.css @@ -0,0 +1,92 @@ +/* Tomorrow Night Eighties Theme */ +/* Original theme - https://github.com/chriskempson/tomorrow-theme */ +/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ + +/* Tomorrow Comment */ +.hljs-comment, +.hljs-title { + color: #999999; +} + +/* Tomorrow Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #f2777a; +} + +/* Tomorrow Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #f99157; +} + +/* Tomorrow Yellow */ +.ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #ffcc66; +} + +/* Tomorrow Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #99cc99; +} + +/* Tomorrow Aqua */ +.css .hljs-hexcolor { + color: #66cccc; +} + +/* Tomorrow Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #6699cc; +} + +/* Tomorrow Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #cc99cc; +} + +.hljs { + display: block; + background: #2d2d2d; + color: #cccccc; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night.css new file mode 100644 index 0000000000..54ceb58508 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow-night.css @@ -0,0 +1,93 @@ +/* Tomorrow Night Theme */ +/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ +/* Original theme - https://github.com/chriskempson/tomorrow-theme */ +/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ + +/* Tomorrow Comment */ +.hljs-comment, +.hljs-title { + color: #969896; +} + +/* Tomorrow Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #cc6666; +} + +/* Tomorrow Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #de935f; +} + +/* Tomorrow Yellow */ +.ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #f0c674; +} + +/* Tomorrow Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #b5bd68; +} + +/* Tomorrow Aqua */ +.css .hljs-hexcolor { + color: #8abeb7; +} + +/* Tomorrow Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #81a2be; +} + +/* Tomorrow Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #b294bb; +} + +.hljs { + display: block; + background: #1d1f21; + color: #c5c8c6; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow.css new file mode 100644 index 0000000000..a81a2e85c4 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/tomorrow.css @@ -0,0 +1,90 @@ +/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */ + +/* Tomorrow Comment */ +.hljs-comment, +.hljs-title { + color: #8e908c; +} + +/* Tomorrow Red */ +.hljs-variable, +.hljs-attribute, +.hljs-tag, +.hljs-regexp, +.ruby .hljs-constant, +.xml .hljs-tag .hljs-title, +.xml .hljs-pi, +.xml .hljs-doctype, +.html .hljs-doctype, +.css .hljs-id, +.css .hljs-class, +.css .hljs-pseudo { + color: #c82829; +} + +/* Tomorrow Orange */ +.hljs-number, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.hljs-literal, +.hljs-params, +.hljs-constant { + color: #f5871f; +} + +/* Tomorrow Yellow */ +.ruby .hljs-class .hljs-title, +.css .hljs-rules .hljs-attribute { + color: #eab700; +} + +/* Tomorrow Green */ +.hljs-string, +.hljs-value, +.hljs-inheritance, +.hljs-header, +.ruby .hljs-symbol, +.xml .hljs-cdata { + color: #718c00; +} + +/* Tomorrow Aqua */ +.css .hljs-hexcolor { + color: #3e999f; +} + +/* Tomorrow Blue */ +.hljs-function, +.python .hljs-decorator, +.python .hljs-title, +.ruby .hljs-function .hljs-title, +.ruby .hljs-title .hljs-keyword, +.perl .hljs-sub, +.javascript .hljs-title, +.coffeescript .hljs-title { + color: #4271ae; +} + +/* Tomorrow Purple */ +.hljs-keyword, +.javascript .hljs-function { + color: #8959a8; +} + +.hljs { + display: block; + background: white; + color: #4d4d4c; + padding: 0.5em; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/vs.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/vs.css new file mode 100644 index 0000000000..5ebf454193 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/vs.css @@ -0,0 +1,89 @@ +/* + +Visual Studio-like style based on original C# coloring by Jason Diamond + +*/ +.hljs { + display: block; padding: 0.5em; + background: white; color: black; +} + +.hljs-comment, +.hljs-annotation, +.hljs-template_comment, +.diff .hljs-header, +.hljs-chunk, +.apache .hljs-cbracket { + color: #008000; +} + +.hljs-keyword, +.hljs-id, +.hljs-built_in, +.smalltalk .hljs-class, +.hljs-winutils, +.bash .hljs-variable, +.tex .hljs-command, +.hljs-request, +.hljs-status, +.nginx .hljs-title, +.xml .hljs-tag, +.xml .hljs-tag .hljs-value { + color: #00f; +} + +.hljs-string, +.hljs-title, +.hljs-parent, +.hljs-tag .hljs-value, +.hljs-rules .hljs-value, +.hljs-rules .hljs-value .hljs-number, +.ruby .hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.hljs-aggregate, +.hljs-template_tag, +.django .hljs-variable, +.hljs-addition, +.hljs-flow, +.hljs-stream, +.apache .hljs-tag, +.hljs-date, +.tex .hljs-formula, +.coffeescript .hljs-attribute { + color: #a31515; +} + +.ruby .hljs-string, +.hljs-decorator, +.hljs-filter .hljs-argument, +.hljs-localvars, +.hljs-array, +.hljs-attr_selector, +.hljs-pseudo, +.hljs-pi, +.hljs-doctype, +.hljs-deletion, +.hljs-envvar, +.hljs-shebang, +.hljs-preprocessor, +.hljs-pragma, +.userType, +.apache .hljs-sqbracket, +.nginx .hljs-built_in, +.tex .hljs-special, +.hljs-prompt { + color: #2b91af; +} + +.hljs-phpdoc, +.hljs-javadoc, +.hljs-xmlDocTag { + color: #808080; +} + +.vhdl .hljs-typename { font-weight: bold; } +.vhdl .hljs-string { color: #666666; } +.vhdl .hljs-literal { color: #a31515; } +.vhdl .hljs-attribute { color: #00B0E8; } + +.xml .hljs-attribute { color: #f00; } diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/xcode.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/xcode.css new file mode 100644 index 0000000000..8d54da7274 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/xcode.css @@ -0,0 +1,158 @@ +/* + +XCode style (c) Angel Garcia + +*/ + +.hljs { + display: block; padding: 0.5em; + background: #fff; color: black; +} + +.hljs-comment, +.hljs-template_comment, +.hljs-javadoc, +.hljs-comment * { + color: #006a00; +} + +.hljs-keyword, +.hljs-literal, +.nginx .hljs-title { + color: #aa0d91; +} +.method, +.hljs-list .hljs-title, +.hljs-tag .hljs-title, +.setting .hljs-value, +.hljs-winutils, +.tex .hljs-command, +.http .hljs-title, +.hljs-request, +.hljs-status { + color: #008; +} + +.hljs-envvar, +.tex .hljs-special { + color: #660; +} + +.hljs-string { + color: #c41a16; +} +.hljs-tag .hljs-value, +.hljs-cdata, +.hljs-filter .hljs-argument, +.hljs-attr_selector, +.apache .hljs-cbracket, +.hljs-date, +.hljs-regexp { + color: #080; +} + +.hljs-sub .hljs-identifier, +.hljs-pi, +.hljs-tag, +.hljs-tag .hljs-keyword, +.hljs-decorator, +.ini .hljs-title, +.hljs-shebang, +.hljs-prompt, +.hljs-hexcolor, +.hljs-rules .hljs-value, +.css .hljs-value .hljs-number, +.hljs-symbol, +.hljs-symbol .hljs-string, +.hljs-number, +.css .hljs-function, +.clojure .hljs-title, +.clojure .hljs-built_in, +.hljs-function .hljs-title, +.coffeescript .hljs-attribute { + color: #1c00cf; +} + +.hljs-class .hljs-title, +.haskell .hljs-type, +.smalltalk .hljs-class, +.hljs-javadoctag, +.hljs-yardoctag, +.hljs-phpdoc, +.hljs-typename, +.hljs-tag .hljs-attribute, +.hljs-doctype, +.hljs-class .hljs-id, +.hljs-built_in, +.setting, +.hljs-params, +.clojure .hljs-attribute { + color: #5c2699; +} + +.hljs-variable { + color: #3f6e74; +} +.css .hljs-tag, +.hljs-rules .hljs-property, +.hljs-pseudo, +.hljs-subst { + color: #000; +} + +.css .hljs-class, +.css .hljs-id { + color: #9B703F; +} + +.hljs-value .hljs-important { + color: #ff7700; + font-weight: bold; +} + +.hljs-rules .hljs-keyword { + color: #C5AF75; +} + +.hljs-annotation, +.apache .hljs-sqbracket, +.nginx .hljs-built_in { + color: #9B859D; +} + +.hljs-preprocessor, +.hljs-preprocessor *, +.hljs-pragma { + color: #643820; +} + +.tex .hljs-formula { + background-color: #EEE; + font-style: italic; +} + +.diff .hljs-header, +.hljs-chunk { + color: #808080; + font-weight: bold; +} + +.diff .hljs-change { + background-color: #BCCFF9; +} + +.hljs-addition { + background-color: #BAEEBA; +} + +.hljs-deletion { + background-color: #FFC8BD; +} + +.hljs-comment .hljs-yardoctag { + font-weight: bold; +} + +.method .hljs-id { + color: #000; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/zenburn.css b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/zenburn.css new file mode 100644 index 0000000000..3e6a68719b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/zenburn.css @@ -0,0 +1,116 @@ +/* + +Zenburn style from voldmar.ru (c) Vladimir Epifanov +based on dark.css by Ivan Sagalaev + +*/ + +.hljs { + display: block; padding: 0.5em; + background: #3F3F3F; + color: #DCDCDC; +} + +.hljs-keyword, +.hljs-tag, +.css .hljs-class, +.css .hljs-id, +.lisp .hljs-title, +.nginx .hljs-title, +.hljs-request, +.hljs-status, +.clojure .hljs-attribute { + color: #E3CEAB; +} + +.django .hljs-template_tag, +.django .hljs-variable, +.django .hljs-filter .hljs-argument { + color: #DCDCDC; +} + +.hljs-number, +.hljs-date { + color: #8CD0D3; +} + +.dos .hljs-envvar, +.dos .hljs-stream, +.hljs-variable, +.apache .hljs-sqbracket { + color: #EFDCBC; +} + +.dos .hljs-flow, +.diff .hljs-change, +.python .exception, +.python .hljs-built_in, +.hljs-literal, +.tex .hljs-special { + color: #EFEFAF; +} + +.diff .hljs-chunk, +.hljs-subst { + color: #8F8F8F; +} + +.dos .hljs-keyword, +.python .hljs-decorator, +.hljs-title, +.haskell .hljs-type, +.diff .hljs-header, +.ruby .hljs-class .hljs-parent, +.apache .hljs-tag, +.nginx .hljs-built_in, +.tex .hljs-command, +.hljs-prompt { + color: #efef8f; +} + +.dos .hljs-winutils, +.ruby .hljs-symbol, +.ruby .hljs-symbol .hljs-string, +.ruby .hljs-string { + color: #DCA3A3; +} + +.diff .hljs-deletion, +.hljs-string, +.hljs-tag .hljs-value, +.hljs-preprocessor, +.hljs-pragma, +.hljs-built_in, +.sql .hljs-aggregate, +.hljs-javadoc, +.smalltalk .hljs-class, +.smalltalk .hljs-localvars, +.smalltalk .hljs-array, +.css .hljs-rules .hljs-value, +.hljs-attr_selector, +.hljs-pseudo, +.apache .hljs-cbracket, +.tex .hljs-formula, +.coffeescript .hljs-attribute { + color: #CC9393; +} + +.hljs-shebang, +.diff .hljs-addition, +.hljs-comment, +.java .hljs-annotation, +.hljs-template_comment, +.hljs-pi, +.hljs-doctype { + color: #7F9F7F; +} + +.coffeescript .javascript, +.javascript .xml, +.tex .hljs-formula, +.xml .javascript, +.xml .vbscript, +.xml .css, +.xml .hljs-cdata { + opacity: 0.5; +} diff --git a/static/ckeditor/ckeditor/plugins/codesnippet/plugin.js b/static/ckeditor/ckeditor/plugins/codesnippet/plugin.js new file mode 100644 index 0000000000..f648a5f20b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/codesnippet/plugin.js @@ -0,0 +1,12 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){function d(a){CKEDITOR.tools.extend(this,a);this.queue=[];this.init?this.init(CKEDITOR.tools.bind(function(){for(var a;a=this.queue.pop();)a.call(this);this.ready=!0},this)):this.ready=!0}function l(a){var b=a.config.codeSnippet_codeClass,c=/\r?\n/g,h=new CKEDITOR.dom.element("textarea");a.widgets.add("codeSnippet",{allowedContent:"pre; code(language-*)",requiredContent:"pre",styleableElements:"pre",template:'
      ',dialog:"codeSnippet",pathName:a.lang.codesnippet.pathName, +mask:!0,parts:{pre:"pre",code:"code"},highlight:function(){var e=this,f=this.data,b=function(a){e.parts.code.setHtml(k?a:a.replace(c,"
      "))};b(CKEDITOR.tools.htmlEncode(f.code));a._.codesnippet.highlighter.highlight(f.code,f.lang,function(e){a.fire("lockSnapshot");b(e);a.fire("unlockSnapshot")})},data:function(){var a=this.data,b=this.oldData;a.code&&this.parts.code.setHtml(CKEDITOR.tools.htmlEncode(a.code));b&&a.lang!=b.lang&&this.parts.code.removeClass("language-"+b.lang);a.lang&&(this.parts.code.addClass("language-"+ +a.lang),this.highlight());this.oldData=CKEDITOR.tools.copy(a)},upcast:function(e,f){if("pre"==e.name){for(var c=[],d=e.children,i,j=d.length-1;0<=j;j--)i=d[j],(i.type!=CKEDITOR.NODE_TEXT||!i.value.match(m))&&c.push(i);var g;if(!(1!=c.length||"code"!=(g=c[0]).name))if(!(1!=g.children.length||g.children[0].type!=CKEDITOR.NODE_TEXT)){if(c=a._.codesnippet.langsRegex.exec(g.attributes["class"]))f.lang=c[1];h.setHtml(g.getHtml());f.code=h.getValue();g.addClass(b);return e}}},downcast:function(a){var c= +a.getFirst("code");c.children.length=0;c.removeClass(b);c.add(new CKEDITOR.htmlParser.text(CKEDITOR.tools.htmlEncode(this.data.code)));return a}});var m=/^[\s\n\r]*$/}var k=!CKEDITOR.env.ie||8=c;c++)b[c]=parseInt(a.substr(2*c,2),16);return 165<=.2126*b[0]+.7152*b[1]+.0722*b[2]}function z(a){!a.name&&(a=new CKEDITOR.event(a));var c=!/mouse/.test(a.name),b=a.data.getTarget(),f;"td"==b.getName()&&(f=b.getChild(0).getHtml())&&(q(a),c?d=b:A=b,c&&b.addClass(D(f)?"cke_colordialog_focused_light":"cke_colordialog_focused_dark"),r(f))}function B(){d&&(d.removeClass("cke_colordialog_focused_light"),d.removeClass("cke_colordialog_focused_dark"));r(!1);d=null} +function q(a){if(a=!/mouse/.test(a.name)&&d)a.removeClass("cke_colordialog_focused_light"),a.removeClass("cke_colordialog_focused_dark");d||A||r(!1)}function r(a){a?(h.getById(t).setStyle("background-color",a),h.getById(u).setHtml(a)):(h.getById(t).removeStyle("background-color"),h.getById(u).setHtml("\x26nbsp;"))}function E(a){var c=a.data,b=c.getTarget(),f=c.getKeystroke(),d="rtl"==w.lang.dir;switch(f){case 38:if(a=b.getParent().getPrevious())a=a.getChild([b.getIndex()]),a.focus();c.preventDefault(); +break;case 40:(a=b.getParent().getNext())&&(a=a.getChild([b.getIndex()]))&&1==a.type&&a.focus();c.preventDefault();break;case 32:case 13:y(a);c.preventDefault();break;case d?37:39:(a=b.getNext())?1==a.type&&(a.focus(),c.preventDefault(!0)):(a=b.getParent().getNext())&&(a=a.getChild([0]))&&1==a.type&&(a.focus(),c.preventDefault(!0));break;case d?39:37:if(a=b.getPrevious())a.focus(),c.preventDefault(!0);else if(a=b.getParent().getPrevious())a=a.getLast(),a.focus(),c.preventDefault(!0)}}var v=CKEDITOR.dom.element, +h=CKEDITOR.document,g=w.lang.colordialog,m,e,C={type:"html",html:"\x26nbsp;"},n=function(a){return CKEDITOR.tools.getNextId()+"_"+a},t=n("hicolor"),u=n("hicolortext"),p=n("selhicolor"),k,d,A;(function(){function a(a,d){for(var e=a;eh;h++)c(f.$,"#"+b[g]+b[h]+b[e])}}function c(a,c){var b=new v(a.insertCell(-1));b.setAttribute("class","ColorCell cke_colordialog_colorcell");b.setAttribute("tabIndex", +-1);b.setAttribute("role","gridcell");b.on("keydown",E);b.on("click",y);b.on("focus",z);b.on("blur",q);b.setStyle("background-color",c);var d=n("color_table_cell");b.setAttribute("aria-labelledby",d);b.append(CKEDITOR.dom.element.createFromHtml('\x3cspan id\x3d"'+d+'" class\x3d"cke_voice_label"\x3e'+c+"\x3c/span\x3e",CKEDITOR.document))}k=CKEDITOR.dom.element.createFromHtml('\x3ctable tabIndex\x3d"-1" class\x3d"cke_colordialog_table" aria-label\x3d"'+g.options+'" role\x3d"grid" style\x3d"border-collapse:separate;" cellspacing\x3d"0"\x3e\x3ccaption class\x3d"cke_voice_label"\x3e'+ +g.options+'\x3c/caption\x3e\x3ctbody role\x3d"presentation"\x3e\x3c/tbody\x3e\x3c/table\x3e');k.on("mouseover",z);k.on("mouseout",q);var b="00 33 66 99 cc ff".split(" ");a(0,0);a(3,0);a(0,3);a(3,3);var f=new v(k.$.insertRow(-1));f.setAttribute("role","row");c(f.$,"#000000");for(var d=0;16>d;d++){var e=d.toString(16);c(f.$,"#"+e+e+e+e+e+e)}c(f.$,"#ffffff")})();CKEDITOR.document.appendStyleSheet(CKEDITOR.getUrl(CKEDITOR.plugins.get("colordialog").path+"dialogs/colordialog.css"));return{title:g.title, +minWidth:360,minHeight:220,onShow:function(a){if(!a.data.selectionColor||a.data.selectionColor==a.data.automaticTextColor||"#rgba(0, 0, 0, 0)"==a.data.selectionColor&&"back"==a.data.type)l(),B();else{var c=a.data.selectionColor;a=this.parts.contents.getElementsByTag("td").toArray();var b;m.getContentElement("picker","selectedColor").setValue(c);CKEDITOR.tools.array.forEach(a,function(a){b=CKEDITOR.tools.convertRgbToHex(a.getStyle("background-color"));c===b&&(a.focus(),d=a)})}},onLoad:function(){m= +this},onHide:function(){l();B()},contents:[{id:"picker",label:g.title,accessKey:"I",elements:[{type:"hbox",padding:0,widths:["70%","10%","30%"],children:[{type:"html",html:"\x3cdiv\x3e\x3c/div\x3e",onLoad:function(){CKEDITOR.document.getById(this.domId).append(k)},focus:function(){(d||this.getElement().getElementsByTag("td").getItem(0)).focus()}},C,{type:"vbox",padding:0,widths:["70%","5%","25%"],children:[{type:"html",html:"\x3cspan\x3e"+g.highlight+'\x3c/span\x3e\x3cdiv id\x3d"'+t+'" style\x3d"border: 1px solid; height: 74px; width: 74px;"\x3e\x3c/div\x3e\x3cdiv id\x3d"'+ +u+'"\x3e\x26nbsp;\x3c/div\x3e\x3cspan\x3e'+g.selected+'\x3c/span\x3e\x3cdiv id\x3d"'+p+'" style\x3d"border: 1px solid; height: 20px; width: 74px;"\x3e\x3c/div\x3e'},{type:"text",label:g.selected,labelStyle:"display:none",id:"selectedColor",style:"width: 76px;margin-top:4px",onChange:function(){try{h.getById(p).setStyle("background-color",this.getValue())}catch(a){l()}}},C,{type:"button",id:"clear",label:g.clear,onClick:l}]}]}]}]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/copyformatting/cursors/cursor-disabled.svg b/static/ckeditor/ckeditor/plugins/copyformatting/cursors/cursor-disabled.svg new file mode 100644 index 0000000000..9298aefd8a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/copyformatting/cursors/cursor-disabled.svg @@ -0,0 +1,25 @@ + + + + cursor_disabled + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/copyformatting/cursors/cursor.svg b/static/ckeditor/ckeditor/plugins/copyformatting/cursors/cursor.svg new file mode 100644 index 0000000000..95951478f0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/copyformatting/cursors/cursor.svg @@ -0,0 +1,14 @@ + + + cursor + + + + + + + + + + + diff --git a/static/ckeditor/ckeditor/plugins/copyformatting/styles/copyformatting.css b/static/ckeditor/ckeditor/plugins/copyformatting/styles/copyformatting.css new file mode 100644 index 0000000000..d39fcf87d5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/copyformatting/styles/copyformatting.css @@ -0,0 +1,45 @@ +/* +Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ + +html.cke_copyformatting_active { + min-height: 100%; +} + +/* There is no cursor in CUR format for IE/Edge as that browser + does not support custom cursor in [contenteditable] area. + Ticket for this issue: + https://connect.microsoft.com/IE/feedback/details/1070215/cant-change-cursor-in-contenteditable-using-css */ +.cke_copyformatting_disabled, +.cke_copyformatting_disabled a, +.cke_copyformatting_disabled .cke_editable { + cursor: url(../cursors/cursor-disabled.svg) 12 1, auto; +} + +.cke_copyformatting_disabled .cke_top a, +.cke_copyformatting_disabled .cke_bottom a { + cursor: default; +} + +/* Added `!important` rule as a fix for overriding the cursor by the Table Resize plugin. + The `!important` rule is used because the Table Resize plugin creates a `
      ` which changes the cursor using inlined styles. */ +.cke_copyformatting_active, +.cke_copyformatting_active.cke_editable, +.cke_copyformatting_active .cke_editable, +.cke_copyformatting_active a, +.cke_copyformatting_active table, +.cke_copyformatting_active div[data-cke-temp], +.cke_copyformatting_tableresize_cursor div[data-cke-temp] { + cursor: url(../cursors/cursor.svg) 12 1, auto !important; +} + +.cke_screen_reader_only { + position: absolute; + clip: rect(1px, 1px, 1px, 1px); + padding: 0; + border: 0; + height: 1px; + width: 1px; + overflow: hidden; +} diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/_translationstatus.txt b/static/ckeditor/ckeditor/plugins/devtools/lang/_translationstatus.txt new file mode 100644 index 0000000000..e1c1da5406 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/_translationstatus.txt @@ -0,0 +1,27 @@ +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license + +bg.js Found: 5 Missing: 0 +cs.js Found: 5 Missing: 0 +cy.js Found: 5 Missing: 0 +da.js Found: 5 Missing: 0 +de.js Found: 5 Missing: 0 +el.js Found: 5 Missing: 0 +eo.js Found: 5 Missing: 0 +et.js Found: 5 Missing: 0 +fa.js Found: 5 Missing: 0 +fi.js Found: 5 Missing: 0 +fr.js Found: 5 Missing: 0 +gu.js Found: 5 Missing: 0 +he.js Found: 5 Missing: 0 +hr.js Found: 5 Missing: 0 +it.js Found: 5 Missing: 0 +nb.js Found: 5 Missing: 0 +nl.js Found: 5 Missing: 0 +no.js Found: 5 Missing: 0 +pl.js Found: 5 Missing: 0 +tr.js Found: 5 Missing: 0 +ug.js Found: 5 Missing: 0 +uk.js Found: 5 Missing: 0 +vi.js Found: 5 Missing: 0 +zh-cn.js Found: 5 Missing: 0 diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/ar.js b/static/ckeditor/ckeditor/plugins/devtools/lang/ar.js new file mode 100644 index 0000000000..9355fc15e2 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/ar.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","ar",{title:"معلومات العنصر",dialogName:"إسم نافذة الحوار",tabName:"إسم التبويب",elementId:"إسم العنصر",elementType:"نوع العنصر"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/bg.js b/static/ckeditor/ckeditor/plugins/devtools/lang/bg.js new file mode 100644 index 0000000000..5746bcae21 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/bg.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","bg",{title:"Информация за елемента",dialogName:"Име на диалоговия прозорец",tabName:"Име на таб",elementId:"ID на елемента",elementType:"Тип на елемента"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/ca.js b/static/ckeditor/ckeditor/plugins/devtools/lang/ca.js new file mode 100644 index 0000000000..4064597fb8 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/ca.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","ca",{title:"Informació de l'element",dialogName:"Nom de la finestra de quadre de diàleg",tabName:"Nom de la pestanya",elementId:"ID de l'element",elementType:"Tipus d'element"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/cs.js b/static/ckeditor/ckeditor/plugins/devtools/lang/cs.js new file mode 100644 index 0000000000..b218c49dfe --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/cs.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","cs",{title:"Informace o prvku",dialogName:"Název dialogového okna",tabName:"Název karty",elementId:"ID prvku",elementType:"Typ prvku"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/cy.js b/static/ckeditor/ckeditor/plugins/devtools/lang/cy.js new file mode 100644 index 0000000000..de29267f84 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/cy.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","cy",{title:"Gwybodaeth am yr Elfen",dialogName:"Enw ffenestr y deialog",tabName:"Enw'r tab",elementId:"ID yr Elfen",elementType:"Math yr elfen"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/da.js b/static/ckeditor/ckeditor/plugins/devtools/lang/da.js new file mode 100644 index 0000000000..481af36c1f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/da.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","da",{title:"Information på elementet",dialogName:"Dialogboks",tabName:"Tab beskrivelse",elementId:"ID på element",elementType:"Type af element"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/de.js b/static/ckeditor/ckeditor/plugins/devtools/lang/de.js new file mode 100644 index 0000000000..24ddbe324d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/de.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","de",{title:"Elementinformation",dialogName:"Dialogfenstername",tabName:"Reitername",elementId:"Elementkennung",elementType:"Elementtyp"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/el.js b/static/ckeditor/ckeditor/plugins/devtools/lang/el.js new file mode 100644 index 0000000000..6159451f43 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/el.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","el",{title:"Πληροφορίες Στοιχείου",dialogName:"Όνομα παραθύρου διαλόγου",tabName:"Όνομα καρτέλας",elementId:"Αναγνωριστικό Στοιχείου",elementType:"Τύπος στοιχείου"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/en-gb.js b/static/ckeditor/ckeditor/plugins/devtools/lang/en-gb.js new file mode 100644 index 0000000000..a5a0faeef0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/en-gb.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","en-gb",{title:"Element Information",dialogName:"Dialogue window name",tabName:"Tab name",elementId:"Element ID",elementType:"Element type"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/en.js b/static/ckeditor/ckeditor/plugins/devtools/lang/en.js new file mode 100644 index 0000000000..3b0c0ec792 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/en.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","en",{title:"Element Information",dialogName:"Dialog window name",tabName:"Tab name",elementId:"Element ID",elementType:"Element type"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/eo.js b/static/ckeditor/ckeditor/plugins/devtools/lang/eo.js new file mode 100644 index 0000000000..58b9a3217b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/eo.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","eo",{title:"Informo pri la elemento",dialogName:"Nomo de la dialogfenestro",tabName:"Langetnomo",elementId:"ID de la elemento",elementType:"Tipo de la elemento"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/es.js b/static/ckeditor/ckeditor/plugins/devtools/lang/es.js new file mode 100644 index 0000000000..2cb40de2f7 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/es.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","es",{title:"Información del Elemento",dialogName:"Nombre de la ventana de diálogo",tabName:"Nombre de la pestaña",elementId:"ID del Elemento",elementType:"Tipo del elemento"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/et.js b/static/ckeditor/ckeditor/plugins/devtools/lang/et.js new file mode 100644 index 0000000000..3257e0e9aa --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/et.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","et",{title:"Elemendi andmed",dialogName:"Dialoogiakna nimi",tabName:"Saki nimi",elementId:"Elemendi ID",elementType:"Elemendi liik"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/eu.js b/static/ckeditor/ckeditor/plugins/devtools/lang/eu.js new file mode 100644 index 0000000000..dcd0f25873 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/eu.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","eu",{title:"Elementuaren Informazioa",dialogName:"Elkarrizketa leihoaren izena",tabName:"Fitxaren izena",elementId:"Elementuaren ID-a",elementType:"Elementu mota"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/fa.js b/static/ckeditor/ckeditor/plugins/devtools/lang/fa.js new file mode 100644 index 0000000000..548f368bd1 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/fa.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","fa",{title:"اطلاعات عنصر",dialogName:"نام پنجره محاوره‌ای",tabName:"نام برگه",elementId:"ID عنصر",elementType:"نوع عنصر"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/fi.js b/static/ckeditor/ckeditor/plugins/devtools/lang/fi.js new file mode 100644 index 0000000000..a519460703 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/fi.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","fi",{title:"Elementin tiedot",dialogName:"Dialogi-ikkunan nimi",tabName:"Välilehden nimi",elementId:"Elementin ID",elementType:"Elementin tyyppi"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/fr-ca.js b/static/ckeditor/ckeditor/plugins/devtools/lang/fr-ca.js new file mode 100644 index 0000000000..4832c1f6ff --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/fr-ca.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","fr-ca",{title:"Information de l'élément",dialogName:"Nom de la fenêtre",tabName:"Nom de l'onglet",elementId:"ID de l'élément",elementType:"Type de l'élément"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/fr.js b/static/ckeditor/ckeditor/plugins/devtools/lang/fr.js new file mode 100644 index 0000000000..24227081f0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/fr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","fr",{title:"Information sur l'élément",dialogName:"Nom de la fenêtre de dialogue",tabName:"Nom de l'onglet",elementId:"ID de l'élément",elementType:"Type de l'élément"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/gl.js b/static/ckeditor/ckeditor/plugins/devtools/lang/gl.js new file mode 100644 index 0000000000..bc4743e7ab --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/gl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","gl",{title:"Información do elemento",dialogName:"Nome da xanela de diálogo",tabName:"Nome da lapela",elementId:"ID do elemento",elementType:"Tipo do elemento"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/gu.js b/static/ckeditor/ckeditor/plugins/devtools/lang/gu.js new file mode 100644 index 0000000000..a92cba229c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/gu.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","gu",{title:"પ્રાથમિક માહિતી",dialogName:"વિન્ડોનું નામ",tabName:"ટેબનું નામ",elementId:"પ્રાથમિક આઈડી",elementType:"પ્રાથમિક પ્રકાર"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/he.js b/static/ckeditor/ckeditor/plugins/devtools/lang/he.js new file mode 100644 index 0000000000..9c44035402 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/he.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","he",{title:"מידע על האלמנט",dialogName:"שם הדיאלוג",tabName:"שם הטאב",elementId:"ID של האלמנט",elementType:"סוג האלמנט"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/hr.js b/static/ckeditor/ckeditor/plugins/devtools/lang/hr.js new file mode 100644 index 0000000000..24f0b98c01 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/hr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","hr",{title:"Informacije elementa",dialogName:"Naziv prozora za dijalog",tabName:"Naziva jahača",elementId:"ID elementa",elementType:"Vrsta elementa"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/hu.js b/static/ckeditor/ckeditor/plugins/devtools/lang/hu.js new file mode 100644 index 0000000000..e76bdac122 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/hu.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","hu",{title:"Elem információ",dialogName:"Párbeszédablak neve",tabName:"Fül neve",elementId:"Elem ID",elementType:"Elem típusa"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/id.js b/static/ckeditor/ckeditor/plugins/devtools/lang/id.js new file mode 100644 index 0000000000..7a827c5232 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/id.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","id",{title:"Informasi Elemen",dialogName:"Nama jendela dialog",tabName:"Nama tab",elementId:"ID Elemen",elementType:"Tipe elemen"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/it.js b/static/ckeditor/ckeditor/plugins/devtools/lang/it.js new file mode 100644 index 0000000000..2a54807e55 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/it.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","it",{title:"Informazioni elemento",dialogName:"Nome finestra di dialogo",tabName:"Nome Tab",elementId:"ID Elemento",elementType:"Tipo elemento"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/ja.js b/static/ckeditor/ckeditor/plugins/devtools/lang/ja.js new file mode 100644 index 0000000000..6c19cf9688 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/ja.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","ja",{title:"エレメント情報",dialogName:"ダイアログウィンドウ名",tabName:"タブ名",elementId:"エレメントID",elementType:"要素タイプ"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/km.js b/static/ckeditor/ckeditor/plugins/devtools/lang/km.js new file mode 100644 index 0000000000..20f7e68dbd --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/km.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","km",{title:"ព័ត៌មាន​នៃ​ធាតុ",dialogName:"ឈ្មោះ​ប្រអប់​វីនដូ",tabName:"ឈ្មោះ​ផ្ទាំង",elementId:"អត្តលេខ​ធាតុ",elementType:"ប្រភេទ​ធាតុ"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/ko.js b/static/ckeditor/ckeditor/plugins/devtools/lang/ko.js new file mode 100644 index 0000000000..921519139c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/ko.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","ko",{title:"구성 요소 정보",dialogName:"다이얼로그 윈도우 이름",tabName:"탭 이름",elementId:"요소 ID",elementType:"요소 형식"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/ku.js b/static/ckeditor/ckeditor/plugins/devtools/lang/ku.js new file mode 100644 index 0000000000..8ff78d6ddb --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/ku.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","ku",{title:"زانیاری توخم",dialogName:"ناوی پەنجەرەی دیالۆگ",tabName:"ناوی بازدەر تاب",elementId:"ناسنامەی توخم",elementType:"جۆری توخم"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/lt.js b/static/ckeditor/ckeditor/plugins/devtools/lang/lt.js new file mode 100644 index 0000000000..9074f69877 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/lt.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","lt",{title:"Elemento informacija",dialogName:"Dialogo lango pavadinimas",tabName:"Auselės pavadinimas",elementId:"Elemento ID",elementType:"Elemento tipas"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/lv.js b/static/ckeditor/ckeditor/plugins/devtools/lang/lv.js new file mode 100644 index 0000000000..2929c6ccc2 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/lv.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","lv",{title:"Elementa informācija",dialogName:"Dialoga loga nosaukums",tabName:"Cilnes nosaukums",elementId:"Elementa ID",elementType:"Elementa tips"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/nb.js b/static/ckeditor/ckeditor/plugins/devtools/lang/nb.js new file mode 100644 index 0000000000..a408087302 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/nb.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","nb",{title:"Elementinformasjon",dialogName:"Navn på dialogvindu",tabName:"Navn på fane",elementId:"Element-ID",elementType:"Elementtype"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/nl.js b/static/ckeditor/ckeditor/plugins/devtools/lang/nl.js new file mode 100644 index 0000000000..3f062b9191 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/nl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","nl",{title:"Elementinformatie",dialogName:"Naam dialoogvenster",tabName:"Tabnaam",elementId:"Element ID",elementType:"Elementtype"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/no.js b/static/ckeditor/ckeditor/plugins/devtools/lang/no.js new file mode 100644 index 0000000000..ecc2e5a794 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/no.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","no",{title:"Elementinformasjon",dialogName:"Navn på dialogvindu",tabName:"Navn på fane",elementId:"Element-ID",elementType:"Elementtype"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/pl.js b/static/ckeditor/ckeditor/plugins/devtools/lang/pl.js new file mode 100644 index 0000000000..dad1ef0d8c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/pl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","pl",{title:"Informacja o elemencie",dialogName:"Nazwa okna dialogowego",tabName:"Nazwa zakładki",elementId:"ID elementu",elementType:"Typ elementu"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/pt-br.js b/static/ckeditor/ckeditor/plugins/devtools/lang/pt-br.js new file mode 100644 index 0000000000..65dadf009d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/pt-br.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","pt-br",{title:"Informação do Elemento",dialogName:"Nome da janela de diálogo",tabName:"Nome da aba",elementId:"ID do Elemento",elementType:"Tipo do elemento"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/pt.js b/static/ckeditor/ckeditor/plugins/devtools/lang/pt.js new file mode 100644 index 0000000000..562cba964e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/pt.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","pt",{title:"Informação do elemento",dialogName:"Nome da janela de diálogo",tabName:"Nome do separador",elementId:"ID do elemento",elementType:"Tipo de Elemento"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/ro.js b/static/ckeditor/ckeditor/plugins/devtools/lang/ro.js new file mode 100644 index 0000000000..80ec857b71 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/ro.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","ro",{title:"Informația elementului",dialogName:"Numele ferestrei de dialog",tabName:"Denumire de tab",elementId:"ID Element",elementType:"Tipul elementului"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/ru.js b/static/ckeditor/ckeditor/plugins/devtools/lang/ru.js new file mode 100644 index 0000000000..4e37375b92 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/ru.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","ru",{title:"Информация об элементе",dialogName:"Имя окна диалога",tabName:"Имя вкладки",elementId:"ID элемента",elementType:"Тип элемента"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/si.js b/static/ckeditor/ckeditor/plugins/devtools/lang/si.js new file mode 100644 index 0000000000..c8a5199e0d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/si.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","si",{title:"මුලද්‍රව්‍ය ",dialogName:"දෙබස් කවුළුවේ නම",tabName:"තීරුවේ නම",elementId:"මුලද්‍රව්‍ය කේතය",elementType:"මුලද්‍රව්‍ය වර්ගය"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/sk.js b/static/ckeditor/ckeditor/plugins/devtools/lang/sk.js new file mode 100644 index 0000000000..61583f0063 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/sk.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","sk",{title:"Informácie o prvku",dialogName:"Názov okna dialógu",tabName:"Názov záložky",elementId:"ID prvku",elementType:"Typ prvku"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/sl.js b/static/ckeditor/ckeditor/plugins/devtools/lang/sl.js new file mode 100644 index 0000000000..092bf8f3ba --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/sl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","sl",{title:"Podatki elementa",dialogName:"Ime pogovornega okna",tabName:"Ime zavihka",elementId:"ID elementa",elementType:"Tip elementa"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/sq.js b/static/ckeditor/ckeditor/plugins/devtools/lang/sq.js new file mode 100644 index 0000000000..794b939f02 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/sq.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","sq",{title:"Të dhënat e elementit",dialogName:"Emri i dritares së dialogut",tabName:"Emri i fletës",elementId:"ID e elementit",elementType:"Lloji i elementit"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/sv.js b/static/ckeditor/ckeditor/plugins/devtools/lang/sv.js new file mode 100644 index 0000000000..b8bdb4d797 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/sv.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","sv",{title:"Elementinformation",dialogName:"Dialogrutans namn",tabName:"Fliknamn",elementId:"Element-ID",elementType:"Element-typ"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/tr.js b/static/ckeditor/ckeditor/plugins/devtools/lang/tr.js new file mode 100644 index 0000000000..0e40959229 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/tr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","tr",{title:"Eleman Bilgisi",dialogName:"İletişim pencere ismi",tabName:"Sekme adı",elementId:"Eleman ID",elementType:"Eleman türü"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/tt.js b/static/ckeditor/ckeditor/plugins/devtools/lang/tt.js new file mode 100644 index 0000000000..1360d5d52f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/tt.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","tt",{title:"Элемент тасвирламасы",dialogName:"Диалог тәрәзәсе исеме",tabName:"Өстәмә бит исеме",elementId:"Элемент идентификаторы",elementType:"Элемент төре"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/ug.js b/static/ckeditor/ckeditor/plugins/devtools/lang/ug.js new file mode 100644 index 0000000000..2509224a58 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/ug.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","ug",{title:"ئېلېمېنت ئۇچۇرى",dialogName:"سۆزلەشكۈ كۆزنەك ئاتى",tabName:"Tab ئاتى",elementId:"ئېلېمېنت كىملىكى",elementType:"ئېلېمېنت تىپى"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/uk.js b/static/ckeditor/ckeditor/plugins/devtools/lang/uk.js new file mode 100644 index 0000000000..f833beec41 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/uk.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","uk",{title:"Відомості про Елемент",dialogName:"Заголовок діалогового вікна",tabName:"Назва вкладки",elementId:"Ідентифікатор Елемента",elementType:"Тип Елемента"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/vi.js b/static/ckeditor/ckeditor/plugins/devtools/lang/vi.js new file mode 100644 index 0000000000..795cb80a7c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/vi.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","vi",{title:"Thông tin thành ph",dialogName:"Tên hộp tho",tabName:"Tên th",elementId:"Mã thành ph",elementType:"Loại thành ph"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/zh-cn.js b/static/ckeditor/ckeditor/plugins/devtools/lang/zh-cn.js new file mode 100644 index 0000000000..4231f20b8b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/zh-cn.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","zh-cn",{title:"元素信息",dialogName:"对话框窗口名称",tabName:"选项卡名称",elementId:"元素 ID",elementType:"元素类型"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/lang/zh.js b/static/ckeditor/ckeditor/plugins/devtools/lang/zh.js new file mode 100644 index 0000000000..5ef9b3dd5a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/lang/zh.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("devtools","zh",{title:"元件資訊",dialogName:"對話視窗名稱",tabName:"標籤名稱",elementId:"元件 ID",elementType:"元件類型"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/devtools/plugin.js b/static/ckeditor/ckeditor/plugins/devtools/plugin.js new file mode 100644 index 0000000000..b778537790 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/devtools/plugin.js @@ -0,0 +1,9 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.add("devtools",{lang:"ar,bg,ca,cs,cy,da,de,el,en,en-gb,eo,es,et,eu,fa,fi,fr,fr-ca,gl,gu,he,hr,hu,id,it,ja,km,ko,ku,lt,lv,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sv,tr,tt,ug,uk,vi,zh,zh-cn",init:function(i){i._.showDialogDefinitionTooltips=1},onLoad:function(){CKEDITOR.document.appendStyleText(CKEDITOR.config.devtools_styles||"#cke_tooltip { padding: 5px; border: 2px solid #333; background: #ffffff }#cke_tooltip h2 { font-size: 1.1em; border-bottom: 1px solid; margin: 0; padding: 1px; }#cke_tooltip ul { padding: 0pt; list-style-type: none; }")}}); +(function(){function i(a,c,b,f){var a=a.lang.devtools,j=''+(b?b.type:"content")+"",c="

      "+a.title+"

      • "+a.dialogName+" : "+c.getName()+"
      • "+a.tabName+" : "+f+"
      • ";b&&(c+="
      • "+a.elementId+" : "+b.id+"
      • ");c+="
      • "+a.elementType+" : "+j+"
      • ";return c+"
      "}function k(d, +c,b,f,j,g){var e=c.getDocumentPosition(),h={"z-index":CKEDITOR.dialog._.currentZIndex+10,top:e.y+c.getSize("height")+"px"};a.setHtml(d(b,f,j,g));a.show();"rtl"==b.lang.dir?(d=CKEDITOR.document.getWindow().getViewPaneSize(),h.right=d.width-e.x-c.getSize("width")+"px"):h.left=e.x+"px";a.setStyles(h)}var a;CKEDITOR.on("reset",function(){a&&a.remove();a=null});CKEDITOR.on("dialogDefinition",function(d){var c=d.editor;if(c._.showDialogDefinitionTooltips){a||(a=CKEDITOR.dom.element.createFromHtml('
      ', +CKEDITOR.document),a.hide(),a.on("mouseover",function(){this.show()}),a.on("mouseout",function(){this.hide()}),a.appendTo(CKEDITOR.document.getBody()));var b=d.data.definition.dialog,f=c.config.devtools_textCallback||i;b.on("load",function(){for(var d=b.parts.tabs.getChildren(),g,e=0,h=d.count();e
      ');a.ui.space("contents").append(b);b=a.editable(b);b.detach=CKEDITOR.tools.override(b.detach,function(a){return function(){a.apply(this,arguments);this.remove()}});a.setData(a.getData(1),c);a.fire("contentDom")})}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/dialogs/docprops.js b/static/ckeditor/ckeditor/plugins/docprops/dialogs/docprops.js new file mode 100644 index 0000000000..06ab51aa48 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/dialogs/docprops.js @@ -0,0 +1,25 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("docProps",function(g){function p(a,d){var e=function(){b(this);d(this,this._.parentDialog)},b=function(a){a.removeListener("ok",e);a.removeListener("cancel",b)},f=function(a){a.on("ok",e);a.on("cancel",b)};g.execCommand(a);if(g._.storedDialogs.colordialog)f(g._.storedDialogs.colordialog);else CKEDITOR.on("dialogDefinition",function(b){if(b.data.name==a){var d=b.data.definition;b.removeListener();d.onLoad=CKEDITOR.tools.override(d.onLoad,function(a){return function(){f(this);d.onLoad= +a;"function"==typeof a&&a.call(this)}})}})}function l(){var a=this.getDialog().getContentElement("general",this.id+"Other");a&&("other"==this.getValue()?(a.getInputElement().removeAttribute("readOnly"),a.focus(),a.getElement().removeClass("cke_disabled")):(a.getInputElement().setAttribute("readOnly",!0),a.getElement().addClass("cke_disabled")))}function i(a,d,e){return function(b,f,c){f=k;b="undefined"!=typeof e?e:this.getValue();!b&&a in f?f[a].remove():b&&a in f?f[a].setAttribute("content",b):b&& +(f=new CKEDITOR.dom.element("meta",g.document),f.setAttribute(d?"http-equiv":"name",a),f.setAttribute("content",b),c.append(f))}}function j(a,d){return function(){var e=k,e=a in e?e[a].getAttribute("content")||"":"";if(d)return e;this.setValue(e);return null}}function m(a){return function(d,e,b,f){f.removeAttribute("margin"+a);d=this.getValue();""!==d?f.setStyle("margin-"+a,CKEDITOR.tools.cssLength(d)):f.removeStyle("margin-"+a)}}function n(a,d,e){a.removeStyle(d);a.getComputedStyle(d)!=e&&a.setStyle(d, +e)}var c=g.lang.docprops,h=g.lang.common,k={},o=function(a,d,e){return{type:"hbox",padding:0,widths:["60%","40%"],children:[CKEDITOR.tools.extend({type:"text",id:a,label:c[d]},e||{},1),{type:"button",id:a+"Choose",label:c.chooseColor,className:"colorChooser",onClick:function(){var b=this;p("colordialog",function(d){var e=b.getDialog();e.getContentElement(e._.currentTabId,a).setValue(d.getContentElement("picker","selectedColor").getValue())})}}]}},q="javascript:void((function(){"+encodeURIComponent("document.open();"+ +(CKEDITOR.env.ie?"("+CKEDITOR.tools.fixDomain+")();":"")+'document.write( \''+c.previewHtml+"' );document.close();")+"})())";return{title:c.title,minHeight:330,minWidth:500,onShow:function(){for(var a=g.document,d=a.getElementsByTag("html").getItem(0),e=a.getHead(),b=a.getBody(),f={},c=a.getElementsByTag("meta"),h=c.count(),i=0;i'],["XHTML 1.0 Transitional",''],["XHTML 1.0 Strict",''],["XHTML 1.0 Frameset",''], +["HTML 5",""],["HTML 4.01 Transitional",''],["HTML 4.01 Strict",''],["HTML 4.01 Frameset",''],["HTML 3.2",''],["HTML 2.0",''],[c.other, +"other"]],onChange:l,setup:function(){if(g.docType&&(this.setValue(g.docType),!this.getValue())){this.setValue("other");var a=this.getDialog().getContentElement("general","docTypeOther");a&&a.setValue(g.docType)}l.call(this)},commit:function(a,d,c,b,f){f||(a=this.getValue(),d=this.getDialog().getContentElement("general","docTypeOther"),g.docType="other"==a?d?d.getValue():"":a)}},{type:"text",id:"docTypeOther",label:c.docTypeOther}]},{type:"checkbox",id:"xhtmlDec",label:c.xhtmlDec,setup:function(){this.setValue(!!g.xmlDeclaration)}, +commit:function(a,d,c,b,f){f||(this.getValue()?(g.xmlDeclaration='',d.setAttribute("xmlns","http://www.w3.org/1999/xhtml")):(g.xmlDeclaration="",d.removeAttribute("xmlns")))}}]},{id:"design",label:c.design,elements:[{type:"hbox",widths:["60%","40%"],children:[{type:"vbox",children:[o("txtColor","txtColor",{setup:function(a,d,c,b){this.setValue(b.getComputedStyle("color"))},commit:function(a,d,c,b,f){if(this.isChanged()|| +f)b.removeAttribute("text"),(a=this.getValue())?b.setStyle("color",a):b.removeStyle("color")}}),o("bgColor","bgColor",{setup:function(a,d,c,b){a=b.getComputedStyle("background-color")||"";this.setValue("transparent"==a?"":a)},commit:function(a,d,c,b,f){if(this.isChanged()||f)b.removeAttribute("bgcolor"),(a=this.getValue())?b.setStyle("background-color",a):n(b,"background-color","transparent")}}),{type:"hbox",widths:["60%","40%"],padding:1,children:[{type:"text",id:"bgImage",label:c.bgImage,setup:function(a, +d,c,b){a=b.getComputedStyle("background-image")||"";a="none"==a?"":a.replace(/url\(\s*(["']?)\s*([^\)]*)\s*\1\s*\)/i,function(a,b,d){return d});this.setValue(a)},commit:function(a,d,c,b){b.removeAttribute("background");(a=this.getValue())?b.setStyle("background-image","url("+a+")"):n(b,"background-image","none")}},{type:"button",id:"bgImageChoose",label:h.browseServer,style:"display:inline-block;margin-top:10px;",hidden:!0,filebrowser:"design:bgImage"}]},{type:"checkbox",id:"bgFixed",label:c.bgFixed, +setup:function(a,d,c,b){this.setValue("fixed"==b.getComputedStyle("background-attachment"))},commit:function(a,d,c,b){this.getValue()?b.setStyle("background-attachment","fixed"):n(b,"background-attachment","scroll")}}]},{type:"vbox",children:[{type:"html",id:"marginTitle",html:'
      '+c.margin+"
      "},{type:"text",id:"marginTop",label:c.marginTop,style:"width: 80px; text-align: center",align:"center",inputStyle:"text-align: center", +setup:function(a,d,c,b){this.setValue(b.getStyle("margin-top")||b.getAttribute("margintop")||"")},commit:m("top")},{type:"hbox",children:[{type:"text",id:"marginLeft",label:c.marginLeft,style:"width: 80px; text-align: center",align:"center",inputStyle:"text-align: center",setup:function(a,d,c,b){this.setValue(b.getStyle("margin-left")||b.getAttribute("marginleft")||"")},commit:m("left")},{type:"text",id:"marginRight",label:c.marginRight,style:"width: 80px; text-align: center",align:"center",inputStyle:"text-align: center", +setup:function(a,d,c,b){this.setValue(b.getStyle("margin-right")||b.getAttribute("marginright")||"")},commit:m("right")}]},{type:"text",id:"marginBottom",label:c.marginBottom,style:"width: 80px; text-align: center",align:"center",inputStyle:"text-align: center",setup:function(a,c,e,b){this.setValue(b.getStyle("margin-bottom")||b.getAttribute("marginbottom")||"")},commit:m("bottom")}]}]}]},{id:"meta",label:c.meta,elements:[{type:"textarea",id:"metaKeywords",label:c.metaKeywords,setup:j("keywords"), +commit:i("keywords")},{type:"textarea",id:"metaDescription",label:c.metaDescription,setup:j("description"),commit:i("description")},{type:"text",id:"metaAuthor",label:c.metaAuthor,setup:j("author"),commit:i("author")},{type:"text",id:"metaCopyright",label:c.metaCopyright,setup:j("copyright"),commit:i("copyright")}]},{id:"preview",label:h.preview,elements:[{type:"html",id:"previewHtml",html:'',onLoad:function(){var a= +this.getElement();this.getDialog().on("selectPage",function(c){if("preview"==c.data.page){var e=this;setTimeout(function(){var b=a.getFrameDocument(),c=b.getElementsByTag("html").getItem(0),d=b.getHead(),g=b.getBody();e.commitContent(b,c,d,g,1)},50)}});a.getAscendant("table").setStyle("height","100%")}}]}]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/icons/docprops-rtl.png b/static/ckeditor/ckeditor/plugins/docprops/icons/docprops-rtl.png new file mode 100644 index 0000000000..ed286a2587 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/docprops/icons/docprops-rtl.png differ diff --git a/static/ckeditor/ckeditor/plugins/docprops/icons/docprops.png b/static/ckeditor/ckeditor/plugins/docprops/icons/docprops.png new file mode 100644 index 0000000000..8bfdcb914d Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/docprops/icons/docprops.png differ diff --git a/static/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops-rtl.png b/static/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops-rtl.png new file mode 100644 index 0000000000..4a966da039 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops-rtl.png differ diff --git a/static/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops.png b/static/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops.png new file mode 100644 index 0000000000..a66c869760 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops.png differ diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/af.js b/static/ckeditor/ckeditor/plugins/docprops/lang/af.js new file mode 100644 index 0000000000..dbda4d7ba1 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/af.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","af",{bgColor:"Agtergrond kleur",bgFixed:"Vasgeklemde Agtergrond",bgImage:"Agtergrond Beeld URL",charset:"Karakterstel Kodeering",charsetASCII:"ASCII",charsetCE:"Sentraal Europa",charsetCR:"Cyrillic",charsetCT:"Chinees Traditioneel (Big5)",charsetGR:"Grieks",charsetJP:"Japanees",charsetKR:"Koreans",charsetOther:"Ander Karakterstel Kodeering",charsetTR:"Turks",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Kies",design:"Design",docTitle:"Bladsy Opskrif", +docType:"Dokument Opskrif Soort",docTypeOther:"Ander Dokument Opskrif Soort",label:"Dokument Eienskappe",margin:"Bladsy Rante",marginBottom:"Onder",marginLeft:"Links",marginRight:"Regs",marginTop:"Bo",meta:"Meta Data",metaAuthor:"Skrywer",metaCopyright:"Kopiereg",metaDescription:"Dokument Beskrywing",metaKeywords:"Dokument Index Sleutelwoorde(comma verdeelt)",other:"",previewHtml:'

      This is some sample text. You are using CKEditor.

      ',title:"Dokument Eienskappe", +txtColor:"Tekskleur",xhtmlDec:"Voeg XHTML verklaring by"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/ar.js b/static/ckeditor/ckeditor/plugins/docprops/lang/ar.js new file mode 100644 index 0000000000..bd26b4915f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/ar.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("docprops","ar",{bgColor:"لون الخلفية",bgFixed:"جعلها علامة مائية",bgImage:"رابط الصورة الخلفية",charset:"ترميز الحروف",charsetASCII:"ASCII",charsetCE:"أوروبا الوسطى",charsetCR:"السيريلية",charsetCT:"الصينية التقليدية (Big5)",charsetGR:"اليونانية",charsetJP:"اليابانية",charsetKR:"الكورية",charsetOther:"ترميز آخر",charsetTR:"التركية",charsetUN:"Unicode (UTF-8)",charsetWE:"أوروبا الغربية",chooseColor:"اختر",design:"تصميم",docTitle:"عنوان الصفحة",docType:"ترويسة نوع الصفحة", +docTypeOther:"ترويسة نوع صفحة أخرى",label:"خصائص الصفحة",margin:"هوامش الصفحة",marginBottom:"سفلي",marginLeft:"أيسر",marginRight:"أيمن",marginTop:"علوي",meta:"المعرّفات الرأسية",metaAuthor:"الكاتب",metaCopyright:"المالك",metaDescription:"وصف الصفحة",metaKeywords:"الكلمات الأساسية (مفصولة بفواصل)َ",other:"<أخرى>",previewHtml:'

      هذه مجرد كتابة بسيطةمن أجل التمثيل. CKEditor.

      ',title:"خصائص الصفحة",txtColor:"لون النص",xhtmlDec:"تضمين إعلانات لغة XHTMLَ"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/bg.js b/static/ckeditor/ckeditor/plugins/docprops/lang/bg.js new file mode 100644 index 0000000000..5faba47d1c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/bg.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","bg",{bgColor:"Фон",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"Background Image URL",charset:"Кодова таблица",charsetASCII:"ASCII",charsetCE:"Централна европейска",charsetCR:"Cyrillic",charsetCT:"Китайски традиционен",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Друга кодова таблица",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Изберете",design:"Дизайн",docTitle:"Заглавие на страницата", +docType:"Document Type Heading",docTypeOther:"Other Document Type Heading",label:"Настройки на документа",margin:"Page Margins",marginBottom:"Долу",marginLeft:"Ляво",marginRight:"Дясно",marginTop:"Горе",meta:"Мета етикети",metaAuthor:"Author",metaCopyright:"Copyright",metaDescription:"Document Description",metaKeywords:"Document Indexing Keywords (comma separated)",other:"Други...",previewHtml:'

      This is some sample text. You are using CKEditor.

      ', +title:"Настройки на документа",txtColor:"Цвят на шрифт",xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/bn.js b/static/ckeditor/ckeditor/plugins/docprops/lang/bn.js new file mode 100644 index 0000000000..838cbc8fc0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/bn.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","bn",{bgColor:"ব্যাকগ্রাউন্ড রং",bgFixed:"স্ক্রলহীন ব্যাকগ্রাউন্ড",bgImage:"ব্যাকগ্রাউন্ড ছবির URL",charset:"ক্যারেক্টার সেট এনকোডিং",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"অন্য ক্যারেক্টার সেট এনকোডিং",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design",docTitle:"পেজ শীর্ষক", +docType:"ডক্যুমেন্ট টাইপ হেডিং",docTypeOther:"অন্য ডক্যুমেন্ট টাইপ হেডিং",label:"ডক্যুমেন্ট প্রোপার্টি",margin:"পেজ মার্জিন",marginBottom:"নীচে",marginLeft:"বামে",marginRight:"ডানে",marginTop:"উপর",meta:"মেটাডেটা",metaAuthor:"লেখক",metaCopyright:"কপীরাইট",metaDescription:"ডক্যূমেন্ট বর্ণনা",metaKeywords:"ডক্যুমেন্ট ইন্ডেক্স কিওয়ার্ড (কমা দ্বারা বিচ্ছিন্ন)",other:"",previewHtml:'

      This is some sample text. You are using CKEditor.

      ',title:"ডক্যুমেন্ট প্রোপার্টি", +txtColor:"টেক্স্ট রং",xhtmlDec:"XHTML ডেক্লারেশন যুক্ত কর"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/bs.js b/static/ckeditor/ckeditor/plugins/docprops/lang/bs.js new file mode 100644 index 0000000000..624acfc43b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/bs.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","bs",{bgColor:"Background Color",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"Background Image URL",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Other Character Set Encoding",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design", +docTitle:"Page Title",docType:"Document Type Heading",docTypeOther:"Other Document Type Heading",label:"Document Properties",margin:"Page Margins",marginBottom:"Dno",marginLeft:"Lijevo",marginRight:"Desno",marginTop:"Vrh",meta:"Meta Tags",metaAuthor:"Author",metaCopyright:"Copyright",metaDescription:"Document Description",metaKeywords:"Document Indexing Keywords (comma separated)",other:"Other...",previewHtml:'

      This is some sample text. You are using CKEditor.

      ', +title:"Document Properties",txtColor:"Boja teksta",xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/ca.js b/static/ckeditor/ckeditor/plugins/docprops/lang/ca.js new file mode 100644 index 0000000000..6eafe7fe5e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/ca.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","ca",{bgColor:"Color de fons",bgFixed:"Fons sense desplaçament (Fixe)",bgImage:"URL de la imatge de fons",charset:"Codificació de conjunt de caràcters",charsetASCII:"ASCII",charsetCE:"Europeu Central",charsetCR:"Ciríl·lic",charsetCT:"Xinès tradicional (Big5)",charsetGR:"Grec",charsetJP:"Japonès",charsetKR:"Coreà",charsetOther:"Una altra codificació de caràcters",charsetTR:"Turc",charsetUN:"Unicode (UTF-8)",charsetWE:"Europeu occidental",chooseColor:"Triar",design:"Disseny", +docTitle:"Títol de la pàgina",docType:"Capçalera de tipus de document",docTypeOther:"Un altra capçalera de tipus de document",label:"Propietats del document",margin:"Marges de pàgina",marginBottom:"Peu",marginLeft:"Esquerra",marginRight:"Dreta",marginTop:"Cap",meta:"Metadades",metaAuthor:"Autor",metaCopyright:"Copyright",metaDescription:"Descripció del document",metaKeywords:"Paraules clau per a indexació (separats per coma)",other:"Altre...",previewHtml:'

      Aquest és un text d\'exemple. Estàs utilitzant CKEditor.

      ', +title:"Propietats del document",txtColor:"Color de Text",xhtmlDec:"Incloure declaracions XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/cs.js b/static/ckeditor/ckeditor/plugins/docprops/lang/cs.js new file mode 100644 index 0000000000..568bac8572 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/cs.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","cs",{bgColor:"Barva pozadí",bgFixed:"Nerolovatelné (Pevné) pozadí",bgImage:"URL obrázku na pozadí",charset:"Znaková sada",charsetASCII:"ASCII",charsetCE:"Středoevropské jazyky",charsetCR:"Cyrilice",charsetCT:"Tradiční čínština (Big5)",charsetGR:"Řečtina",charsetJP:"Japonština",charsetKR:"Korejština",charsetOther:"Další znaková sada",charsetTR:"Turečtina",charsetUN:"Unicode (UTF-8)",charsetWE:"Západoevropské jazyky",chooseColor:"Výběr",design:"Vzhled",docTitle:"Titulek stránky", +docType:"Typ dokumentu",docTypeOther:"Jiný typ dokumetu",label:"Vlastnosti dokumentu",margin:"Okraje stránky",marginBottom:"Dolní",marginLeft:"Levý",marginRight:"Pravý",marginTop:"Horní",meta:"Metadata",metaAuthor:"Autor",metaCopyright:"Autorská práva",metaDescription:"Popis dokumentu",metaKeywords:"Klíčová slova (oddělená čárkou)",other:"",previewHtml:'

      Toto je ukázkový text. Používáte CKEditor.

      ',title:"Vlastnosti dokumentu",txtColor:"Barva textu", +xhtmlDec:"Zahrnout deklarace XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/cy.js b/static/ckeditor/ckeditor/plugins/docprops/lang/cy.js new file mode 100644 index 0000000000..ef7e1cc943 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/cy.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","cy",{bgColor:"Lliw Cefndir",bgFixed:"Cefndir Sefydlog (Ddim yn Sgrolio)",bgImage:"URL Delwedd Cefndir",charset:"Amgodio Set Nodau",charsetASCII:"ASCII",charsetCE:"Ewropeaidd Canol",charsetCR:"Syrilig",charsetCT:"Tsieinëeg Traddodiadol (Big5)",charsetGR:"Groeg",charsetJP:"Siapanëeg",charsetKR:"Corëeg",charsetOther:"Amgodio Set Nodau Arall",charsetTR:"Tyrceg",charsetUN:"Unicode (UTF-8)",charsetWE:"Ewropeaidd Gorllewinol",chooseColor:"Dewis",design:"Cynllunio",docTitle:"Teitl y Dudalen", +docType:"Pennawd Math y Ddogfen",docTypeOther:"Pennawd Math y Ddogfen Arall",label:"Priodweddau Dogfen",margin:"Ffin y Dudalen",marginBottom:"Gwaelod",marginLeft:"Chwith",marginRight:"Dde",marginTop:"Brig",meta:"Tagiau Meta",metaAuthor:"Awdur",metaCopyright:"Hawlfraint",metaDescription:"Disgrifiad y Ddogfen",metaKeywords:"Allweddeiriau Indecsio Dogfen (gwahanu gyda choma)",other:"Arall...",previewHtml:'

      Dyma ychydig o destun sampl. Rydych chi\'n defnyddio CKEditor.

      ', +title:"Priodweddau Dogfen",txtColor:"Lliw y Testun",xhtmlDec:"Cynnwys Datganiadau XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/da.js b/static/ckeditor/ckeditor/plugins/docprops/lang/da.js new file mode 100644 index 0000000000..0a10cf0987 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/da.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","da",{bgColor:"Baggrundsfarve",bgFixed:"Fastlåst baggrund",bgImage:"Baggrundsbillede URL",charset:"Tegnsætskode",charsetASCII:"ASCII",charsetCE:"Centraleuropæisk",charsetCR:"Kyrillisk",charsetCT:"Traditionel kinesisk (Big5)",charsetGR:"Græsk",charsetJP:"Japansk",charsetKR:"Koreansk",charsetOther:"Anden tegnsætskode",charsetTR:"Tyrkisk",charsetUN:"Unicode (UTF-8)",charsetWE:"Vesteuropæisk",chooseColor:"Vælg",design:"Design",docTitle:"Sidetitel",docType:"Dokumenttype kategori", +docTypeOther:"Anden dokumenttype kategori",label:"Egenskaber for dokument",margin:"Sidemargen",marginBottom:"Nederst",marginLeft:"Venstre",marginRight:"Højre",marginTop:"Øverst",meta:"Metatags",metaAuthor:"Forfatter",metaCopyright:"Copyright",metaDescription:"Dokumentbeskrivelse",metaKeywords:"Dokument index nøgleord (kommasepareret)",other:"",previewHtml:'

      Dette er et eksempel på noget tekst. Du benytter CKEditor.

      ',title:"Egenskaber for dokument", +txtColor:"Tekstfarve",xhtmlDec:"Inkludere XHTML deklartion"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/de.js b/static/ckeditor/ckeditor/plugins/docprops/lang/de.js new file mode 100644 index 0000000000..6b32751002 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/de.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","de",{bgColor:"Hintergrundfarbe",bgFixed:"Nichtrollender (feststehender) Hintergrund",bgImage:"Hintergrundbild-URL",charset:"Zeichensatzkodierung",charsetASCII:"ASCII",charsetCE:"Zentraleuropäisch",charsetCR:"Kyrillisch",charsetCT:"Traditionelles Chinesisch (Big5)",charsetGR:"Griechisch",charsetJP:"Japanisch",charsetKR:"Koreanisch",charsetOther:"Andere Zeichensatzkodierung",charsetTR:"Türkisch",charsetUN:"Unicode (UTF-8)",charsetWE:"Westeuropäisch",chooseColor:"Auswählen", +design:"Design",docTitle:"Seitentitel",docType:"Dokumententypüberschrift",docTypeOther:"Andere Dokumententypüberschrift",label:"Dokumenteigenschaften",margin:"Seitenränder",marginBottom:"Unten",marginLeft:"Links",marginRight:"Rechts",marginTop:"Oben",meta:"Metadaten",metaAuthor:"Autor",metaCopyright:"Copyright",metaDescription:"Dokumentbeschreibung",metaKeywords:"Schlüsselwörter (durch Komma getrennt)",other:"Andere...",previewHtml:'

      Das ist ein Beispieltext. Du schreibst in CKEditor.

      ', +title:"Dokumenteigenschaften",txtColor:"Textfarbe",xhtmlDec:"Beziehe XHTML Deklarationen ein"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/el.js b/static/ckeditor/ckeditor/plugins/docprops/lang/el.js new file mode 100644 index 0000000000..3f0999c5e6 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/el.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","el",{bgColor:"Χρώμα Φόντου",bgFixed:"Φόντο Χωρίς Κύλιση (Σταθερό)",bgImage:"Διεύθυνση Εικόνας Φόντου",charset:"Κωδικοποίηση Χαρακτήρων",charsetASCII:"ASCII",charsetCE:"Κεντρικής Ευρώπης",charsetCR:"Κυριλλική",charsetCT:"Παραδοσιακή Κινέζικη (Big5)",charsetGR:"Ελληνική",charsetJP:"Ιαπωνική",charsetKR:"Κορεάτικη",charsetOther:"Άλλη Κωδικοποίηση Χαρακτήρων",charsetTR:"Τουρκική",charsetUN:"Διεθνής (UTF-8)",charsetWE:"Δυτικής Ευρώπης",chooseColor:"Επιλέξτε",design:"Σχεδιασμός", +docTitle:"Τίτλος Σελίδας",docType:"Κεφαλίδα Τύπου Εγγράφου",docTypeOther:"Άλλη Κεφαλίδα Τύπου Εγγράφου",label:"Ιδιότητες Εγγράφου",margin:"Περιθώρια Σελίδας",marginBottom:"Κάτω",marginLeft:"Αριστερά",marginRight:"Δεξιά",marginTop:"Κορυφή",meta:"Μεταδεδομένα",metaAuthor:"Δημιουργός",metaCopyright:"Πνευματικά Δικαιώματα",metaDescription:"Περιγραφή Εγγράφου",metaKeywords:"Λέξεις κλειδιά δείκτες εγγράφου (διαχωρισμός με κόμμα)",other:"Άλλο...",previewHtml:'

      Αυτό είναι ένα παραδειγματικό κείμενο. Χρησιμοποιείτε το CKEditor.

      ', +title:"Ιδιότητες Εγγράφου",txtColor:"Χρώμα Κειμένου",xhtmlDec:"Να Συμπεριληφθούν οι Δηλώσεις XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/en-au.js b/static/ckeditor/ckeditor/plugins/docprops/lang/en-au.js new file mode 100644 index 0000000000..1991fce719 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/en-au.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","en-au",{bgColor:"Background Color",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"Background Image URL",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Other Character Set Encoding",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design", +docTitle:"Page Title",docType:"Document Type Heading",docTypeOther:"Other Document Type Heading",label:"Document Properties",margin:"Page Margins",marginBottom:"Bottom",marginLeft:"Left",marginRight:"Right",marginTop:"Top",meta:"Meta Tags",metaAuthor:"Author",metaCopyright:"Copyright",metaDescription:"Document Description",metaKeywords:"Document Indexing Keywords (comma separated)",other:"Other...",previewHtml:'

      This is some sample text. You are using CKEditor.

      ', +title:"Document Properties",txtColor:"Text Color",xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/en-ca.js b/static/ckeditor/ckeditor/plugins/docprops/lang/en-ca.js new file mode 100644 index 0000000000..f135acfa9b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/en-ca.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","en-ca",{bgColor:"Background Color",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"Background Image URL",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Other Character Set Encoding",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design", +docTitle:"Page Title",docType:"Document Type Heading",docTypeOther:"Other Document Type Heading",label:"Document Properties",margin:"Page Margins",marginBottom:"Bottom",marginLeft:"Left",marginRight:"Right",marginTop:"Top",meta:"Meta Tags",metaAuthor:"Author",metaCopyright:"Copyright",metaDescription:"Document Description",metaKeywords:"Document Indexing Keywords (comma separated)",other:"Other...",previewHtml:'

      This is some sample text. You are using CKEditor.

      ', +title:"Document Properties",txtColor:"Text Color",xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/en-gb.js b/static/ckeditor/ckeditor/plugins/docprops/lang/en-gb.js new file mode 100644 index 0000000000..4ae5c6f361 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/en-gb.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","en-gb",{bgColor:"Background Colour",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"Background Image URL",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Other Character Set Encoding",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design", +docTitle:"Page Title",docType:"Document Type Heading",docTypeOther:"Other Document Type Heading",label:"Document Properties",margin:"Page Margins",marginBottom:"Bottom",marginLeft:"Left",marginRight:"Right",marginTop:"Top",meta:"Meta Tags",metaAuthor:"Author",metaCopyright:"Copyright",metaDescription:"Document Description",metaKeywords:"Document Indexing Keywords (comma-separated)",other:"Other...",previewHtml:'

      This is some sample text. You are using CKEditor.

      ', +title:"Document Properties",txtColor:"Text Colour",xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/en.js b/static/ckeditor/ckeditor/plugins/docprops/lang/en.js new file mode 100644 index 0000000000..73926df28e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/en.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","en",{bgColor:"Background Color",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"Background Image URL",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Other Character Set Encoding",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design", +docTitle:"Page Title",docType:"Document Type Heading",docTypeOther:"Other Document Type Heading",label:"Document Properties",margin:"Page Margins",marginBottom:"Bottom",marginLeft:"Left",marginRight:"Right",marginTop:"Top",meta:"Meta Tags",metaAuthor:"Author",metaCopyright:"Copyright",metaDescription:"Document Description",metaKeywords:"Document Indexing Keywords (comma separated)",other:"Other...",previewHtml:'

      This is some sample text. You are using CKEditor.

      ', +title:"Document Properties",txtColor:"Text Color",xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/eo.js b/static/ckeditor/ckeditor/plugins/docprops/lang/eo.js new file mode 100644 index 0000000000..182ea18bc4 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/eo.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","eo",{bgColor:"Fona Koloro",bgFixed:"Neruluma Fono",bgImage:"URL de Fona Bildo",charset:"Signara Kodo",charsetASCII:"ASCII",charsetCE:"Centra Eŭropa",charsetCR:"Cirila",charsetCT:"Tradicia Ĉina (Big5)",charsetGR:"Greka",charsetJP:"Japana",charsetKR:"Korea",charsetOther:"Alia Signara Kodo",charsetTR:"Turka",charsetUN:"Unikodo (UTF-8)",charsetWE:"Okcidenta Eŭropa",chooseColor:"Elektu",design:"Dizajno",docTitle:"Paĝotitolo",docType:"Dokumenta Tipo",docTypeOther:"Alia Dokumenta Tipo", +label:"Dokumentaj Atributoj",margin:"Paĝaj Marĝenoj",marginBottom:"Malsupra",marginLeft:"Maldekstra",marginRight:"Dekstra",marginTop:"Supra",meta:"Metadatenoj",metaAuthor:"Verkinto",metaCopyright:"Kopirajto",metaDescription:"Dokumenta Priskribo",metaKeywords:"Ŝlosilvortoj de la Dokumento (apartigitaj de komoj)",other:"",previewHtml:'

      Tio estas sampla teksto. Vi estas uzanta CKEditor.

      ',title:"Dokumentaj Atributoj",txtColor:"Teksta Koloro", +xhtmlDec:"Inkluzivi XHTML Deklarojn"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/es.js b/static/ckeditor/ckeditor/plugins/docprops/lang/es.js new file mode 100644 index 0000000000..8170464f0e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/es.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","es",{bgColor:"Color de fondo",bgFixed:"Fondo fijo (no se desplaza)",bgImage:"Imagen de fondo",charset:"Codificación de caracteres",charsetASCII:"ASCII",charsetCE:"Centro Europeo",charsetCR:"Ruso",charsetCT:"Chino Tradicional (Big5)",charsetGR:"Griego",charsetJP:"Japonés",charsetKR:"Koreano",charsetOther:"Otra codificación de caracteres",charsetTR:"Turco",charsetUN:"Unicode (UTF-8)",charsetWE:"Europeo occidental",chooseColor:"Elegir",design:"Diseño",docTitle:"Título de página", +docType:"Tipo de documento",docTypeOther:"Otro tipo de documento",label:"Propiedades del documento",margin:"Márgenes",marginBottom:"Inferior",marginLeft:"Izquierdo",marginRight:"Derecho",marginTop:"Superior",meta:"Meta Tags",metaAuthor:"Autor",metaCopyright:"Copyright",metaDescription:"Descripción del documento",metaKeywords:"Palabras claves del documento separadas por coma (meta keywords)",other:"Otro...",previewHtml:'

      Este es un texto de ejemplo. Usted está usando CKEditor.

      ', +title:"Propiedades del documento",txtColor:"Color del texto",xhtmlDec:"Incluir declaración XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/et.js b/static/ckeditor/ckeditor/plugins/docprops/lang/et.js new file mode 100644 index 0000000000..43ad55d2fa --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/et.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","et",{bgColor:"Taustavärv",bgFixed:"Mittekeritav tagataust",bgImage:"Taustapildi URL",charset:"Märgistiku kodeering",charsetASCII:"ASCII",charsetCE:"Kesk-Euroopa",charsetCR:"Kirillisa",charsetCT:"Hiina traditsiooniline (Big5)",charsetGR:"Kreeka",charsetJP:"Jaapani",charsetKR:"Korea",charsetOther:"Ülejäänud märgistike kodeeringud",charsetTR:"Türgi",charsetUN:"Unicode (UTF-8)",charsetWE:"Lääne-Euroopa",chooseColor:"Vali",design:"Disain",docTitle:"Lehekülje tiitel", +docType:"Dokumendi tüüppäis",docTypeOther:"Teised dokumendi tüüppäised",label:"Dokumendi omadused",margin:"Lehekülje äärised",marginBottom:"Alaserv",marginLeft:"Vasakserv",marginRight:"Paremserv",marginTop:"Ülaserv",meta:"Meta andmed",metaAuthor:"Autor",metaCopyright:"Autoriõigus",metaDescription:"Dokumendi kirjeldus",metaKeywords:"Dokumendi võtmesõnad (eraldatud komadega)",other:"",previewHtml:'

      See on näidistekst. Sa kasutad CKEditori.

      ', +title:"Dokumendi omadused",txtColor:"Teksti värv",xhtmlDec:"Arva kaasa XHTML deklaratsioonid"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/eu.js b/static/ckeditor/ckeditor/plugins/docprops/lang/eu.js new file mode 100644 index 0000000000..16175cc1f8 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/eu.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","eu",{bgColor:"Atzeko Kolorea",bgFixed:"Korritze gabeko Atzealdea",bgImage:"Atzeko Irudiaren URL-a",charset:"Karaktere Multzoaren Kodeketa",charsetASCII:"ASCII",charsetCE:"Erdialdeko Europakoa",charsetCR:"Zirilikoa",charsetCT:"Txinatar Tradizionala (Big5)",charsetGR:"Grekoa",charsetJP:"Japoniarra",charsetKR:"Korearra",charsetOther:"Beste Karaktere Multzoko Kodeketa",charsetTR:"Turkiarra",charsetUN:"Unicode (UTF-8)",charsetWE:"Mendebaldeko Europakoa",chooseColor:"Choose", +design:"Diseinua",docTitle:"Orriaren Izenburua",docType:"Document Type Goiburua",docTypeOther:"Beste Document Type Goiburua",label:"Dokumentuaren Ezarpenak",margin:"Orrialdearen marjinak",marginBottom:"Behean",marginLeft:"Ezkerrean",marginRight:"Eskuman",marginTop:"Goian",meta:"Meta Informazioa",metaAuthor:"Egilea",metaCopyright:"Copyright",metaDescription:"Dokumentuaren Deskribapena",metaKeywords:"Dokumentuaren Gako-hitzak (komarekin bananduta)",other:"",previewHtml:'

      Hau adibideko testua da. CKEditor erabiltzen ari zara.

      ', +title:"Dokumentuaren Ezarpenak",txtColor:"Testu Kolorea",xhtmlDec:"XHTML Ezarpenak"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/fa.js b/static/ckeditor/ckeditor/plugins/docprops/lang/fa.js new file mode 100644 index 0000000000..078e38380a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/fa.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("docprops","fa",{bgColor:"رنگ پس​زمینه",bgFixed:"پس​زمینهٴ ثابت (بدون حرکت)",bgImage:"URL تصویر پسزمینه",charset:"رمزگذاری نویسه​گان",charsetASCII:"اسکی",charsetCE:"اروپای مرکزی",charsetCR:"سیریلیک",charsetCT:"چینی رسمی (Big5)",charsetGR:"یونانی",charsetJP:"ژاپنی",charsetKR:"کره​ای",charsetOther:"رمزگذاری نویسه​گان دیگر",charsetTR:"ترکی",charsetUN:"یونیکد (UTF-8)",charsetWE:"اروپای غربی",chooseColor:"انتخاب",design:"طراحی",docTitle:"عنوان صفحه",docType:"عنوان نوع سند",docTypeOther:"عنوان نوع سند دیگر", +label:"ویژگی​های سند",margin:"حاشیه​های صفحه",marginBottom:"پایین",marginLeft:"چپ",marginRight:"راست",marginTop:"بالا",meta:"فراداده",metaAuthor:"نویسنده",metaCopyright:"حق انتشار",metaDescription:"توصیف سند",metaKeywords:"کلیدواژگان نمایه​گذاری سند (با کاما جدا شوند)",other:"<سایر>",previewHtml:'

      این یک متن نمونه است. شما در حال استفاده از CKEditor هستید.

      ',title:"ویژگی​های سند",txtColor:"رنگ متن",xhtmlDec:"شامل تعاریف XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/fi.js b/static/ckeditor/ckeditor/plugins/docprops/lang/fi.js new file mode 100644 index 0000000000..22a9740ac4 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/fi.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","fi",{bgColor:"Taustaväri",bgFixed:"Paikallaanpysyvä tausta",bgImage:"Taustakuva",charset:"Merkistökoodaus",charsetASCII:"ASCII",charsetCE:"Keskieurooppalainen",charsetCR:"Kyrillinen",charsetCT:"Kiina, perinteinen (Big5)",charsetGR:"Kreikka",charsetJP:"Japani",charsetKR:"Korealainen",charsetOther:"Muu merkistökoodaus",charsetTR:"Turkkilainen",charsetUN:"Unicode (UTF-8)",charsetWE:"Länsieurooppalainen",chooseColor:"Valitse",design:"Sommittelu",docTitle:"Sivun nimi", +docType:"Dokumentin tyyppi",docTypeOther:"Muu dokumentin tyyppi",label:"Dokumentin ominaisuudet",margin:"Sivun marginaalit",marginBottom:"Ala",marginLeft:"Vasen",marginRight:"Oikea",marginTop:"Ylä",meta:"Metatieto",metaAuthor:"Tekijä",metaCopyright:"Tekijänoikeudet",metaDescription:"Kuvaus",metaKeywords:"Hakusanat (pilkulla erotettuna)",other:"",previewHtml:'

      Tämä on esimerkkitekstiä. Käytät juuri CKEditoria.

      ',title:"Dokumentin ominaisuudet", +txtColor:"Tekstiväri",xhtmlDec:"Lisää XHTML julistukset"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/fo.js b/static/ckeditor/ckeditor/plugins/docprops/lang/fo.js new file mode 100644 index 0000000000..ef35269832 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/fo.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","fo",{bgColor:"Bakgrundslitur",bgFixed:"Læst bakgrund (rullar ikki)",bgImage:"Leið til bakgrundsmynd (URL)",charset:"Teknsett koda",charsetASCII:"ASCII",charsetCE:"Miðeuropa",charsetCR:"Cyrilliskt",charsetCT:"Kinesiskt traditionelt (Big5)",charsetGR:"Grikst",charsetJP:"Japanskt",charsetKR:"Koreanskt",charsetOther:"Onnur teknsett koda",charsetTR:"Turkiskt",charsetUN:"Unicode (UTF-8)",charsetWE:"Vestureuropa",chooseColor:"Vel",design:"Design",docTitle:"Síðuheiti", +docType:"Dokumentslag yvirskrift",docTypeOther:"Annað dokumentslag yvirskrift",label:"Eginleikar fyri dokument",margin:"Síðubreddar",marginBottom:"Niðast",marginLeft:"Vinstra",marginRight:"Høgra",marginTop:"Ovast",meta:"META-upplýsingar",metaAuthor:"Høvundur",metaCopyright:"Upphavsrættindi",metaDescription:"Dokumentlýsing",metaKeywords:"Dokument index lyklaorð (sundurbýtt við komma)",other:"",previewHtml:'

      Hetta er ein royndartekstur. Tygum brúka CKEditor.

      ', +title:"Eginleikar fyri dokument",txtColor:"Tekstlitur",xhtmlDec:"Viðfest XHTML deklaratiónir"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/fr-ca.js b/static/ckeditor/ckeditor/plugins/docprops/lang/fr-ca.js new file mode 100644 index 0000000000..31a809e87d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/fr-ca.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","fr-ca",{bgColor:"Couleur de fond",bgFixed:"Image fixe sans défilement",bgImage:"Image de fond",charset:"Encodage",charsetASCII:"ACSII",charsetCE:"Europe Centrale",charsetCR:"Cyrillique",charsetCT:"Chinois Traditionnel (Big5)",charsetGR:"Grecque",charsetJP:"Japonais",charsetKR:"Coréen",charsetOther:"Autre encodage",charsetTR:"Turque",charsetUN:"Unicode (UTF-8)",charsetWE:"Occidental",chooseColor:"Sélectionner",design:"Design",docTitle:"Titre de la page",docType:"Type de document", +docTypeOther:"Autre type de document",label:"Propriétés du document",margin:"Marges",marginBottom:"Bas",marginLeft:"Gauche",marginRight:"Droite",marginTop:"Haut",meta:"Méta-données",metaAuthor:"Auteur",metaCopyright:"Copyright",metaDescription:"Description",metaKeywords:"Mots-clés (séparés par des virgules)",other:"Autre...",previewHtml:'

      Voici un example de texte. Vous utilisez CKEditor.

      ',title:"Propriétés du document",txtColor:"Couleur de caractère", +xhtmlDec:"Inclure les déclarations XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/fr.js b/static/ckeditor/ckeditor/plugins/docprops/lang/fr.js new file mode 100644 index 0000000000..f22e24939f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/fr.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","fr",{bgColor:"Couleur de fond",bgFixed:"Image fixe sans défilement",bgImage:"Image de fond",charset:"Encodage de caractère",charsetASCII:"ASCII",charsetCE:"Europe Centrale",charsetCR:"Cyrillique",charsetCT:"Chinois Traditionnel (Big5)",charsetGR:"Grec",charsetJP:"Japonais",charsetKR:"Coréen",charsetOther:"Autre encodage de caractère",charsetTR:"Turc",charsetUN:"Unicode (UTF-8)",charsetWE:"Occidental",chooseColor:"Choisissez",design:"Design",docTitle:"Titre de la page", +docType:"Type de document",docTypeOther:"Autre type de document",label:"Propriétés du document",margin:"Marges",marginBottom:"Bas",marginLeft:"Gauche",marginRight:"Droite",marginTop:"Haut",meta:"Métadonnées",metaAuthor:"Auteur",metaCopyright:"Copyright",metaDescription:"Description",metaKeywords:"Mots-clés (séparés par des virgules)",other:"",previewHtml:'

      Ceci est un texte d\'exemple. Vous utilisez CKEditor.

      ',title:"Propriétés du document", +txtColor:"Couleur de texte",xhtmlDec:"Inclure les déclarations XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/gl.js b/static/ckeditor/ckeditor/plugins/docprops/lang/gl.js new file mode 100644 index 0000000000..f8b0c21d1b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/gl.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","gl",{bgColor:"Cor do fondo",bgFixed:"Fondo fixo (non se despraza)",bgImage:"URL da imaxe do fondo",charset:"Codificación de caracteres",charsetASCII:"ASCII",charsetCE:"Centro europeo",charsetCR:"Cirílico",charsetCT:"Chinés tradicional (Big5)",charsetGR:"Grego",charsetJP:"Xaponés",charsetKR:"Coreano",charsetOther:"Outra codificación de caracteres",charsetTR:"Turco",charsetUN:"Unicode (UTF-8)",charsetWE:"Europeo occidental",chooseColor:"Escoller",design:"Deseño", +docTitle:"Título da páxina",docType:"Cabeceira do tipo de documento",docTypeOther:"Outra cabeceira do tipo de documento",label:"Propiedades do documento",margin:"Marxes da páxina",marginBottom:"Abaixo",marginLeft:"Esquerda",marginRight:"Dereita",marginTop:"Arriba",meta:"Meta etiquetas",metaAuthor:"Autor",metaCopyright:"Dereito de autoría",metaDescription:"Descrición do documento",metaKeywords:"Palabras clave de indexación do documento (separadas por comas)",other:"Outro...",previewHtml:'

      Este é un texto de exemplo. Vostede esta a empregar o CKEditor.

      ', +title:"Propiedades do documento",txtColor:"Cor do texto",xhtmlDec:"Incluír as declaracións XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/gu.js b/static/ckeditor/ckeditor/plugins/docprops/lang/gu.js new file mode 100644 index 0000000000..7458ffe63c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/gu.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","gu",{bgColor:"બૅકગ્રાઉન્ડ રંગ",bgFixed:"સ્ક્રોલ ન થાય તેવું બૅકગ્રાઉન્ડ",bgImage:"બૅકગ્રાઉન્ડ ચિત્ર URL",charset:"કેરેક્ટર સેટ એન્કોડિંગ",charsetASCII:"ASCII",charsetCE:"મધ્ય યુરોપિઅન (Central European)",charsetCR:"સિરીલિક (Cyrillic)",charsetCT:"ચાઇનીઝ (Chinese Traditional Big5)",charsetGR:"ગ્રીક (Greek)",charsetJP:"જાપાનિઝ (Japanese)",charsetKR:"કોરીયન (Korean)",charsetOther:"અન્ય કેરેક્ટર સેટ એન્કોડિંગ",charsetTR:"ટર્કિ (Turkish)",charsetUN:"યૂનિકોડ (UTF-8)", +charsetWE:"પશ્ચિમ યુરોપિઅન (Western European)",chooseColor:"વિકલ્પ",design:"ડીસા",docTitle:"પેજ મથાળું/ટાઇટલ",docType:"ડૉક્યુમન્ટ પ્રકાર શીર્ષક",docTypeOther:"અન્ય ડૉક્યુમન્ટ પ્રકાર શીર્ષક",label:"ડૉક્યુમન્ટ ગુણ/પ્રૉપર્ટિઝ",margin:"પેજ માર્જિન",marginBottom:"નીચે",marginLeft:"ડાબી",marginRight:"જમણી",marginTop:"ઉપર",meta:"મેટાડૅટા",metaAuthor:"લેખક",metaCopyright:"કૉપિરાઇટ",metaDescription:"ડૉક્યુમન્ટ વર્ણન",metaKeywords:"ડૉક્યુમન્ટ ઇન્ડેક્સ સંકેતશબ્દ (અલ્પવિરામ (,) થી અલગ કરો)",other:"",previewHtml:'

      આ એક સેમ્પલ ટેક્ષ્ત્ છે. તમે CKEditor વાપરો છો.

      ', +title:"ડૉક્યુમન્ટ ગુણ/પ્રૉપર્ટિઝ",txtColor:"શબ્દનો રંગ",xhtmlDec:"XHTML સૂચના સમાવિષ્ટ કરવી"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/he.js b/static/ckeditor/ckeditor/plugins/docprops/lang/he.js new file mode 100644 index 0000000000..d71d158666 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/he.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("docprops","he",{bgColor:"צבע רקע",bgFixed:"רקע לא נגלל (צמוד)",bgImage:"כתובת של תמונת רקע",charset:"קידוד תווים",charsetASCII:"ASCII",charsetCE:"מרכז אירופאי",charsetCR:"קירילי",charsetCT:"סיני מסורתי (Big5)",charsetGR:"יווני",charsetJP:"יפני",charsetKR:"קוריאני",charsetOther:"קידוד תווים אחר",charsetTR:"טורקי",charsetUN:"יוניקוד (UTF-8)",charsetWE:"מערב אירופאי",chooseColor:"בחירה",design:"עיצוב",docTitle:"כותרת עמוד",docType:"כותר סוג מסמך",docTypeOther:"כותר סוג מסמך אחר", +label:"מאפייני מסמך",margin:"מרווחי עמוד",marginBottom:"תחתון",marginLeft:"שמאלי",marginRight:"ימני",marginTop:"עליון",meta:"תגי Meta",metaAuthor:"מחבר/ת",metaCopyright:"זכויות יוצרים",metaDescription:"תיאור המסמך",metaKeywords:"מילות מפתח של המסמך (מופרדות בפסיק)",other:"אחר...",previewHtml:'

      זהו טקסט הדגמה. את/ה משתמש/ת בCKEditor.

      ',title:"מאפייני מסמך",txtColor:"צבע טקסט",xhtmlDec:"כלול הכרזות XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/hi.js b/static/ckeditor/ckeditor/plugins/docprops/lang/hi.js new file mode 100644 index 0000000000..682661867b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/hi.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","hi",{bgColor:"बैक्ग्राउन्ड रंग",bgFixed:"स्क्रॉल न करने वाला बैक्ग्राउन्ड",bgImage:"बैक्ग्राउन्ड तस्वीर URL",charset:"करेक्टर सॅट ऍन्कोडिंग",charsetASCII:"ASCII",charsetCE:"मध्य यूरोपीय (Central European)",charsetCR:"सिरीलिक (Cyrillic)",charsetCT:"चीनी (Chinese Traditional Big5)",charsetGR:"यवन (Greek)",charsetJP:"जापानी (Japanese)",charsetKR:"कोरीयन (Korean)",charsetOther:"अन्य करेक्टर सॅट ऍन्कोडिंग",charsetTR:"तुर्की (Turkish)",charsetUN:"यूनीकोड (UTF-8)",charsetWE:"पश्चिम यूरोपीय (Western European)", +chooseColor:"Choose",design:"Design",docTitle:"पेज शीर्षक",docType:"डॉक्यूमॅन्ट प्रकार शीर्षक",docTypeOther:"अन्य डॉक्यूमॅन्ट प्रकार शीर्षक",label:"डॉक्यूमॅन्ट प्रॉपर्टीज़",margin:"पेज मार्जिन",marginBottom:"नीचे",marginLeft:"बायें",marginRight:"दायें",marginTop:"ऊपर",meta:"मॅटाडेटा",metaAuthor:"लेखक",metaCopyright:"कॉपीराइट",metaDescription:"डॉक्यूमॅन्ट करॅक्टरन",metaKeywords:"डॉक्युमॅन्ट इन्डेक्स संकेतशब्द (अल्पविराम से अलग करें)",other:"<अन्य>",previewHtml:'

      This is some sample text. You are using CKEditor.

      ', +title:"डॉक्यूमॅन्ट प्रॉपर्टीज़",txtColor:"टेक्स्ट रंग",xhtmlDec:"XHTML सूचना सम्मिलित करें"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/hr.js b/static/ckeditor/ckeditor/plugins/docprops/lang/hr.js new file mode 100644 index 0000000000..3477c6f01d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/hr.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","hr",{bgColor:"Boja pozadine",bgFixed:"Pozadine se ne pomiče",bgImage:"URL slike pozadine",charset:"Enkodiranje znakova",charsetASCII:"ASCII",charsetCE:"Središnja Europa",charsetCR:"Ćirilica",charsetCT:"Tradicionalna kineska (Big5)",charsetGR:"Grčka",charsetJP:"Japanska",charsetKR:"Koreanska",charsetOther:"Ostalo enkodiranje znakova",charsetTR:"Turska",charsetUN:"Unicode (UTF-8)",charsetWE:"Zapadna Europa",chooseColor:"Odaberi",design:"Dizajn",docTitle:"Naslov stranice", +docType:"Zaglavlje vrste dokumenta",docTypeOther:"Ostalo zaglavlje vrste dokumenta",label:"Svojstva dokumenta",margin:"Margine stranice",marginBottom:"Dolje",marginLeft:"Lijevo",marginRight:"Desno",marginTop:"Vrh",meta:"Meta Data",metaAuthor:"Autor",metaCopyright:"Autorska prava",metaDescription:"Opis dokumenta",metaKeywords:"Ključne riječi dokumenta (odvojene zarezom)",other:"",previewHtml:'

      Ovo je neki primjer teksta. Vi koristite CKEditor.

      ', +title:"Svojstva dokumenta",txtColor:"Boja teksta",xhtmlDec:"Ubaci XHTML deklaracije"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/hu.js b/static/ckeditor/ckeditor/plugins/docprops/lang/hu.js new file mode 100644 index 0000000000..beeed2b51c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/hu.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","hu",{bgColor:"Háttérszín",bgFixed:"Nem gördíthető háttér",bgImage:"Háttérkép cím",charset:"Karakterkódolás",charsetASCII:"ASCII",charsetCE:"Közép-Európai",charsetCR:"Cyrill",charsetCT:"Kínai Tradicionális (Big5)",charsetGR:"Görög",charsetJP:"Japán",charsetKR:"Koreai",charsetOther:"Más karakterkódolás",charsetTR:"Török",charsetUN:"Unicode (UTF-8)",charsetWE:"Nyugat-Európai",chooseColor:"Válasszon",design:"Design",docTitle:"Oldalcím",docType:"Dokumentum típus fejléc", +docTypeOther:"Más dokumentum típus fejléc",label:"Dokumentum tulajdonságai",margin:"Oldal margók",marginBottom:"Alsó",marginLeft:"Bal",marginRight:"Jobb",marginTop:"Felső",meta:"Meta adatok",metaAuthor:"Szerző",metaCopyright:"Szerzői jog",metaDescription:"Dokumentum leírás",metaKeywords:"Dokumentum keresőszavak (vesszővel elválasztva)",other:"",previewHtml:'

      Ez itt egy példa. A CKEditor-t használod.

      ',title:"Dokumentum tulajdonságai",txtColor:"Betűszín", +xhtmlDec:"XHTML deklarációk beillesztése"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/id.js b/static/ckeditor/ckeditor/plugins/docprops/lang/id.js new file mode 100644 index 0000000000..9716026d02 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/id.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","id",{bgColor:"Warna Latar Belakang",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"Background Image URL",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Other Character Set Encoding",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Pilih",design:"Design", +docTitle:"Page Title",docType:"Document Type Heading",docTypeOther:"Other Document Type Heading",label:"Document Properties",margin:"Page Margins",marginBottom:"Bawah",marginLeft:"Kiri",marginRight:"Kanan",marginTop:"Atas",meta:"Meta Tags",metaAuthor:"Author",metaCopyright:"Copyright",metaDescription:"Document Description",metaKeywords:"Document Indexing Keywords (comma separated)",other:"Other...",previewHtml:'

      This is some sample text. You are using CKEditor.

      ', +title:"Document Properties",txtColor:"Text Color",xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/is.js b/static/ckeditor/ckeditor/plugins/docprops/lang/is.js new file mode 100644 index 0000000000..9085a4f3e8 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/is.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","is",{bgColor:"Bakgrunnslitur",bgFixed:"Læstur bakgrunnur",bgImage:"Slóð bakgrunnsmyndar",charset:"Letursett",charsetASCII:"ASCII",charsetCE:"Mið-evrópskt",charsetCR:"Kýrilskt",charsetCT:"Kínverskt, hefðbundið (Big5)",charsetGR:"Grískt",charsetJP:"Japanskt",charsetKR:"Kóreskt",charsetOther:"Annað letursett",charsetTR:"Tyrkneskt",charsetUN:"Unicode (UTF-8)",charsetWE:"Vestur-evrópst",chooseColor:"Choose",design:"Design",docTitle:"Titill síðu",docType:"Flokkur skjalategunda", +docTypeOther:"Annar flokkur skjalategunda",label:"Eigindi skjals",margin:"Hliðarspássía",marginBottom:"Neðst",marginLeft:"Vinstri",marginRight:"Hægri",marginTop:"Efst",meta:"Lýsigögn",metaAuthor:"Höfundur",metaCopyright:"Höfundarréttur",metaDescription:"Lýsing skjals",metaKeywords:"Lykilorð efnisorðaskrár (aðgreind með kommum)",other:"",previewHtml:'

      This is some sample text. You are using CKEditor.

      ',title:"Eigindi skjals",txtColor:"Litur texta", +xhtmlDec:"Fella inn XHTML lýsingu"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/it.js b/static/ckeditor/ckeditor/plugins/docprops/lang/it.js new file mode 100644 index 0000000000..56edb3af99 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/it.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","it",{bgColor:"Colore di sfondo",bgFixed:"Sfondo fissato",bgImage:"Immagine di sfondo",charset:"Set di caretteri",charsetASCII:"ASCII",charsetCE:"Europa Centrale",charsetCR:"Cirillico",charsetCT:"Cinese Tradizionale (Big5)",charsetGR:"Greco",charsetJP:"Giapponese",charsetKR:"Coreano",charsetOther:"Altro set di caretteri",charsetTR:"Turco",charsetUN:"Unicode (UTF-8)",charsetWE:"Europa Occidentale",chooseColor:"Scegli",design:"Disegna",docTitle:"Titolo pagina",docType:"Intestazione DocType", +docTypeOther:"Altra intestazione DocType",label:"Proprietà del Documento",margin:"Margini",marginBottom:"In Basso",marginLeft:"A Sinistra",marginRight:"A Destra",marginTop:"In Alto",meta:"Meta Data",metaAuthor:"Autore",metaCopyright:"Copyright",metaDescription:"Descrizione documento",metaKeywords:"Chiavi di indicizzazione documento (separate da virgola)",other:"",previewHtml:'

      Questo è un testo di esempio. State usando CKEditor.

      ',title:"Proprietà del Documento", +txtColor:"Colore testo",xhtmlDec:"Includi dichiarazione XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/ja.js b/static/ckeditor/ckeditor/plugins/docprops/lang/ja.js new file mode 100644 index 0000000000..34f57912a5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/ja.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("docprops","ja",{bgColor:"背景色",bgFixed:"スクロールしない背景",bgImage:"背景画像 URL",charset:"文字コード",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"日本語",charsetKR:"Korean",charsetOther:"他の文字セット符号化",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"色の選択",design:"デザイン",docTitle:"ページタイトル",docType:"文書タイプヘッダー",docTypeOther:"その他文書タイプヘッダー",label:"文書 プロパティ",margin:"ページ・マージン", +marginBottom:"下部",marginLeft:"左",marginRight:"右",marginTop:"上部",meta:"メタデータ",metaAuthor:"文書の作者",metaCopyright:"文書の著作権",metaDescription:"文書の概要",metaKeywords:"文書のキーワード(カンマ区切り)",other:"<その他の>",previewHtml:'

      これはテキストサンプルです。 あなたは、CKEditorを使っています。

      ',title:"文書 プロパティ",txtColor:"テキスト色",xhtmlDec:"XHTML宣言をインクルード"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/ka.js b/static/ckeditor/ckeditor/plugins/docprops/lang/ka.js new file mode 100644 index 0000000000..50f71dee95 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/ka.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","ka",{bgColor:"ფონის ფერი",bgFixed:"უმოძრაო (ფიქსირებული) ფონი",bgImage:"ფონური სურათის URL",charset:"კოდირება",charsetASCII:"ამერიკული (ASCII)",charsetCE:"ცენტრალურ ევროპული",charsetCR:"კირილური",charsetCT:"ტრადიციული ჩინური (Big5)",charsetGR:"ბერძნული",charsetJP:"იაპონური",charsetKR:"კორეული",charsetOther:"სხვა კოდირებები",charsetTR:"თურქული",charsetUN:"უნიკოდი (UTF-8)",charsetWE:"დასავლეთ ევროპული",chooseColor:"არჩევა",design:"დიზაინი",docTitle:"გვერდის სათაური", +docType:"დოკუმენტის ტიპი",docTypeOther:"სხვა ტიპის დოკუმენტი",label:"დოკუმენტის პარამეტრები",margin:"გვერდის კიდეები",marginBottom:"ქვედა",marginLeft:"მარცხენა",marginRight:"მარჯვენა",marginTop:"ზედა",meta:"მეტაTag-ები",metaAuthor:"ავტორი",metaCopyright:"Copyright",metaDescription:"დოკუმენტის აღწერა",metaKeywords:"დოკუმენტის საკვანძო სიტყვები (მძიმით გამოყოფილი)",other:"სხვა...",previewHtml:'

      ეს არის საცდელი ტექსტი. თქვენ CKEditor-ით სარგებლობთ.

      ', +title:"დოკუმენტის პარამეტრები",txtColor:"ტექსტის ფერი",xhtmlDec:"XHTML დეკლარაციების ჩართვა"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/km.js b/static/ckeditor/ckeditor/plugins/docprops/lang/km.js new file mode 100644 index 0000000000..3427290403 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/km.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","km",{bgColor:"ពណ៌​ផ្ទៃ​ក្រោយ",bgFixed:"ផ្ទៃ​ក្រោយ​គ្មាន​ការ​រំកិល (នឹង​ថ្កល់)",bgImage:"URL រូបភាព​ផ្ទៃ​ក្រោយ",charset:"ការ​អ៊ិនកូដ​តួ​អក្សរ",charsetASCII:"ASCII",charsetCE:"អឺរ៉ុប​កណ្ដាល",charsetCR:"Cyrillic",charsetCT:"ចិន​បុរាណ (Big5)",charsetGR:"ក្រិក",charsetJP:"ជប៉ុន",charsetKR:"កូរ៉េ",charsetOther:"កំណត់លេខកូតភាសាផ្សេងទៀត",charsetTR:"ទួរគី",charsetUN:"យូនីកូដ (UTF-8)",charsetWE:"អឺរ៉ុប​ខាង​លិច",chooseColor:"រើស",design:"រចនា",docTitle:"ចំណងជើងទំព័រ",docType:"ប្រភេទក្បាលទំព័រ​ឯកសារ", +docTypeOther:"ប្រភេទក្បាលទំព័រឯកសារ​ផ្សេងទៀត",label:"លក្ខណៈ​សម្បត្តិ​ឯកសារ",margin:"រឹម​ទំព័រ",marginBottom:"បាត​ក្រោម",marginLeft:"ឆ្វេង",marginRight:"ស្ដាំ",marginTop:"លើ",meta:"ស្លាក​មេតា",metaAuthor:"អ្នកនិពន្ធ",metaCopyright:"រក្សាសិទ្ធិ",metaDescription:"សេចក្តីអត្ថាធិប្បាយអំពីឯកសារ",metaKeywords:"ពាក្យនៅក្នុងឯកសារ (ផ្តាច់ពីគ្នាដោយក្បៀស)",other:"ដទៃ​ទៀត...",previewHtml:'

      នេះ​គឺ​ជាអក្សរ​គំរូ​ខ្លះៗ។ អ្នក​កំពុង​ប្រើ CKEditor

      ',title:"ការកំណត់ ឯកសារ", +txtColor:"ពណ៌អក្សរ",xhtmlDec:"បញ្ជូល XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/ko.js b/static/ckeditor/ckeditor/plugins/docprops/lang/ko.js new file mode 100644 index 0000000000..c9a2e43a59 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/ko.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("docprops","ko",{bgColor:"배경 색상",bgFixed:"스크롤 되지 않는(고정된) 배경",bgImage:"배경 이미지 주소(URL)",charset:"문자열 인코딩",charsetASCII:"ASCII",charsetCE:"중앙 유럽",charsetCR:"키릴 문자",charsetCT:"중국어 (Big5)",charsetGR:"그리스어",charsetJP:"일본어",charsetKR:"한국어",charsetOther:"다른 문자열 인코딩",charsetTR:"터키어",charsetUN:"유니코드 (UTF-8)",charsetWE:"서유럽",chooseColor:"선택",design:"디자인",docTitle:"페이지 이름",docType:"문서 제목",docTypeOther:"다른 문서 제목",label:"문서 속성",margin:"페이지 여백",marginBottom:"아래",marginLeft:"왼쪽",marginRight:"오른쪽", +marginTop:"위",meta:"메타 데이터",metaAuthor:"작성자",metaCopyright:"저작권",metaDescription:"문서 설명",metaKeywords:"문서 핵심어 (쉼표로 구분)",other:"기타...",previewHtml:'

      이것은 예문입니다. 여러분은 지금 CKEditor를 사용하고 있습니다.

      ',title:"문서 속성",txtColor:"글자 색상",xhtmlDec:"XHTML 문서 정의 포함"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/ku.js b/static/ckeditor/ckeditor/plugins/docprops/lang/ku.js new file mode 100644 index 0000000000..f2dd284432 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/ku.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","ku",{bgColor:"ڕەنگی پاشبنەما",bgFixed:"بێ هاتووچوپێکردنی (چەسپاو) پاشبنەمای وێنه",bgImage:"ناونیشانی بەستەری وێنەی پاشبنەما",charset:"دەستەی نووسەی بەکۆدکەر",charsetASCII:"ASCII",charsetCE:"ناوەڕاستی ئەوروپا",charsetCR:"سیریلیك",charsetCT:"چینی(Big5)",charsetGR:"یۆنانی",charsetJP:"ژاپۆنی",charsetKR:"کۆریا",charsetOther:"دەستەی نووسەی بەکۆدکەری تر",charsetTR:"تورکی",charsetUN:"Unicode (UTF-8)",charsetWE:"ڕۆژئاوای ئەوروپا",chooseColor:"هەڵبژێرە",design:"شێوەکار", +docTitle:"سەردێڕی پەڕه",docType:"سەرپەڕەی جۆری پەڕه",docTypeOther:"سەرپەڕەی جۆری پەڕەی تر",label:"خاسییەتی پەڕه",margin:"تەنیشت پەڕه",marginBottom:"ژێرەوه",marginLeft:"چەپ",marginRight:"ڕاست",marginTop:"سەرەوه",meta:"زانیاری مێتا",metaAuthor:"نووسەر",metaCopyright:"مافی بڵاوکردنەوەی",metaDescription:"پێناسەی لاپەڕه",metaKeywords:"بەڵگەنامەی وشەی کاریگەر(به کۆما لێکیان جیابکەوه)",other:"هیتر...",previewHtml:'

      ئەمە وەك نموونەی دەقه. تۆ بەکاردەهێنیت CKEditor.

      ', +title:"خاسییەتی پەڕه",txtColor:"ڕەنگی دەق",xhtmlDec:"بەیاننامەکانی XHTML لەگەڵدابێت"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/lt.js b/static/ckeditor/ckeditor/plugins/docprops/lang/lt.js new file mode 100644 index 0000000000..b2e1ba9545 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/lt.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","lt",{bgColor:"Fono spalva",bgFixed:"Neslenkantis fonas",bgImage:"Fono paveikslėlio nuoroda (URL)",charset:"Simbolių kodavimo lentelė",charsetASCII:"ASCII",charsetCE:"Centrinės Europos",charsetCR:"Kirilica",charsetCT:"Tradicinės kinų (Big5)",charsetGR:"Graikų",charsetJP:"Japonų",charsetKR:"Korėjiečių",charsetOther:"Kita simbolių kodavimo lentelė",charsetTR:"Turkų",charsetUN:"Unikodas (UTF-8)",charsetWE:"Vakarų Europos",chooseColor:"Pasirinkite",design:"Išdėstymas", +docTitle:"Puslapio antraštė",docType:"Dokumento tipo antraštė",docTypeOther:"Kita dokumento tipo antraštė",label:"Dokumento savybės",margin:"Puslapio kraštinės",marginBottom:"Apačioje",marginLeft:"Kairėje",marginRight:"Dešinėje",marginTop:"Viršuje",meta:"Meta duomenys",metaAuthor:"Autorius",metaCopyright:"Autorinės teisės",metaDescription:"Dokumento apibūdinimas",metaKeywords:"Dokumento indeksavimo raktiniai žodžiai (atskirti kableliais)",other:"",previewHtml:'

      Tai yra pavyzdinis tekstas. Jūs naudojate CKEditor.

      ', +title:"Dokumento savybės",txtColor:"Teksto spalva",xhtmlDec:"Įtraukti XHTML deklaracijas"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/lv.js b/static/ckeditor/ckeditor/plugins/docprops/lang/lv.js new file mode 100644 index 0000000000..61014944e5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/lv.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","lv",{bgColor:"Fona krāsa",bgFixed:"Fona attēls ir fiksēts",bgImage:"Fona attēla hipersaite",charset:"Simbolu kodējums",charsetASCII:"ASCII",charsetCE:"Centrāleiropas",charsetCR:"Kirilica",charsetCT:"Ķīniešu tradicionālā (Big5)",charsetGR:"Grieķu",charsetJP:"Japāņu",charsetKR:"Korejiešu",charsetOther:"Cits simbolu kodējums",charsetTR:"Turku",charsetUN:"Unikods (UTF-8)",charsetWE:"Rietumeiropas",chooseColor:"Izvēlēties",design:"Dizains",docTitle:"Dokumenta virsraksts ", +docType:"Dokumenta tips",docTypeOther:"Cits dokumenta tips",label:"Dokumenta īpašības",margin:"Lapas robežas",marginBottom:"Apakšā",marginLeft:"Pa kreisi",marginRight:"Pa labi",marginTop:"Augšā",meta:"META dati",metaAuthor:"Autors",metaCopyright:"Autortiesības",metaDescription:"Dokumenta apraksts",metaKeywords:"Dokumentu aprakstoši atslēgvārdi (atdalīti ar komatu)",other:"<cits>",previewHtml:'<p>Šis ir <strong>parauga teksts</strong>. Jūs izmantojiet <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Dokumenta īpašības",txtColor:"Teksta krāsa",xhtmlDec:"Ietvert XHTML deklarācijas"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/mk.js b/static/ckeditor/ckeditor/plugins/docprops/lang/mk.js new file mode 100644 index 0000000000..7f48e61c07 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/mk.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","mk",{bgColor:"Background Color",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"Background Image URL",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Other Character Set Encoding",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design", +docTitle:"Page Title",docType:"Document Type Heading",docTypeOther:"Other Document Type Heading",label:"Document Properties",margin:"Page Margins",marginBottom:"Bottom",marginLeft:"Left",marginRight:"Right",marginTop:"Top",meta:"Meta Tags",metaAuthor:"Author",metaCopyright:"Copyright",metaDescription:"Document Description",metaKeywords:"Document Indexing Keywords (comma separated)",other:"Other...",previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Document Properties",txtColor:"Text Color",xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/mn.js b/static/ckeditor/ckeditor/plugins/docprops/lang/mn.js new file mode 100644 index 0000000000..8907ba39db --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/mn.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","mn",{bgColor:"Фоно өнгө",bgFixed:"Гүйдэггүй фоно",bgImage:"Фоно зурагны URL",charset:"Encoding тэмдэгт",charsetASCII:"ASCII",charsetCE:"Төв европ",charsetCR:"Крил",charsetCT:"Хятадын уламжлалт (Big5)",charsetGR:"Гред",charsetJP:"Япон",charsetKR:"Солонгос",charsetOther:"Encoding-д өөр тэмдэгт оноох",charsetTR:"Tурк",charsetUN:"Юникод (UTF-8)",charsetWE:"Баруун европ",chooseColor:"Сонгох",design:"Design",docTitle:"Хуудасны гарчиг",docType:"Баримт бичгийн төрөл Heading", +docTypeOther:"Бусад баримт бичгийн төрөл Heading",label:"Баримт бичиг шинж чанар",margin:"Хуудасны захын зай",marginBottom:"Доод тал",marginLeft:"Зүүн тал",marginRight:"Баруун тал",marginTop:"Дээд тал",meta:"Meta өгөгдөл",metaAuthor:"Зохиогч",metaCopyright:"Зохиогчийн эрх",metaDescription:"Баримт бичгийн тайлбар",metaKeywords:"Баримт бичгийн индекс түлхүүр үг (таслалаар тусгаарлагдана)",other:"<other>",previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Баримт бичиг шинж чанар",txtColor:"Фонтны өнгө",xhtmlDec:"XHTML-ийн мэдээллийг агуулах"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/ms.js b/static/ckeditor/ckeditor/plugins/docprops/lang/ms.js new file mode 100644 index 0000000000..fe51ef5aa3 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/ms.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","ms",{bgColor:"Warna Latarbelakang",bgFixed:"Imej Latarbelakang tanpa Skrol",bgImage:"URL Gambar Latarbelakang",charset:"Enkod Set Huruf",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Enkod Set Huruf yang Lain",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design",docTitle:"Tajuk Muka Surat", +docType:"Jenis Kepala Dokumen",docTypeOther:"Jenis Kepala Dokumen yang Lain",label:"Ciri-ciri dokumen",margin:"Margin Muka Surat",marginBottom:"Bawah",marginLeft:"Kiri",marginRight:"Kanan",marginTop:"Atas",meta:"Data Meta",metaAuthor:"Penulis",metaCopyright:"Hakcipta",metaDescription:"Keterangan Dokumen",metaKeywords:"Kata Kunci Indeks Dokumen (dipisahkan oleh koma)",other:"<lain>",previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Ciri-ciri dokumen",txtColor:"Warna Text",xhtmlDec:"Masukkan pemula kod XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/nb.js b/static/ckeditor/ckeditor/plugins/docprops/lang/nb.js new file mode 100644 index 0000000000..b505923a25 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/nb.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","nb",{bgColor:"Bakgrunnsfarge",bgFixed:"Lås bakgrunnsbilde",bgImage:"URL for bakgrunnsbilde",charset:"Tegnsett",charsetASCII:"ASCII",charsetCE:"Sentraleuropeisk",charsetCR:"Kyrillisk",charsetCT:"Tradisonell kinesisk (Big5)",charsetGR:"Gresk",charsetJP:"Japansk",charsetKR:"Koreansk",charsetOther:"Annet tegnsett",charsetTR:"Tyrkisk",charsetUN:"Unicode (UTF-8)",charsetWE:"Vesteuropeisk",chooseColor:"Velg",design:"Design",docTitle:"Sidetittel",docType:"Dokumenttype header", +docTypeOther:"Annet dokumenttype header",label:"Dokumentegenskaper",margin:"Sidemargin",marginBottom:"Bunn",marginLeft:"Venstre",marginRight:"Høyre",marginTop:"Topp",meta:"Meta-data",metaAuthor:"Forfatter",metaCopyright:"Kopirett",metaDescription:"Dokumentbeskrivelse",metaKeywords:"Dokument nøkkelord (kommaseparert)",other:"<annen>",previewHtml:'<p>Dette er en <strong>eksempeltekst</strong>. Du bruker <a href="javascript:void(0)">CKEditor</a>.</p>',title:"Dokumentegenskaper",txtColor:"Tekstfarge", +xhtmlDec:"Inkluder XHTML-deklarasjon"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/nl.js b/static/ckeditor/ckeditor/plugins/docprops/lang/nl.js new file mode 100644 index 0000000000..7425a0aaf2 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/nl.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","nl",{bgColor:"Achtergrondkleur",bgFixed:"Niet-scrollend (gefixeerde) achtergrond",bgImage:"Achtergrondafbeelding URL",charset:"Tekencodering",charsetASCII:"ASCII",charsetCE:"Centraal Europees",charsetCR:"Cyrillisch",charsetCT:"Traditioneel Chinees (Big5)",charsetGR:"Grieks",charsetJP:"Japans",charsetKR:"Koreaans",charsetOther:"Andere tekencodering",charsetTR:"Turks",charsetUN:"Unicode (UTF-8)",charsetWE:"West Europees",chooseColor:"Kies",design:"Ontwerp",docTitle:"Paginatitel", +docType:"Documenttype-definitie",docTypeOther:"Andere documenttype-definitie",label:"Documenteigenschappen",margin:"Pagina marges",marginBottom:"Onder",marginLeft:"Links",marginRight:"Rechts",marginTop:"Boven",meta:"Meta tags",metaAuthor:"Auteur",metaCopyright:"Auteursrechten",metaDescription:"Documentbeschrijving",metaKeywords:"Trefwoorden voor indexering (komma-gescheiden)",other:"Anders...",previewHtml:'<p>Dit is <strong>voorbeeld tekst</strong>. Je gebruikt <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Documenteigenschappen",txtColor:"Tekstkleur",xhtmlDec:"XHTML declaratie invoegen"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/no.js b/static/ckeditor/ckeditor/plugins/docprops/lang/no.js new file mode 100644 index 0000000000..11dddcff91 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/no.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","no",{bgColor:"Bakgrunnsfarge",bgFixed:"Lås bakgrunnsbilde",bgImage:"URL for bakgrunnsbilde",charset:"Tegnsett",charsetASCII:"ASCII",charsetCE:"Sentraleuropeisk",charsetCR:"Kyrillisk",charsetCT:"Tradisonell kinesisk(Big5)",charsetGR:"Gresk",charsetJP:"Japansk",charsetKR:"Koreansk",charsetOther:"Annet tegnsett",charsetTR:"Tyrkisk",charsetUN:"Unicode (UTF-8)",charsetWE:"Vesteuropeisk",chooseColor:"Velg",design:"Design",docTitle:"Sidetittel",docType:"Dokumenttype header", +docTypeOther:"Annet dokumenttype header",label:"Dokumentegenskaper",margin:"Sidemargin",marginBottom:"Bunn",marginLeft:"Venstre",marginRight:"Høyre",marginTop:"Topp",meta:"Meta-data",metaAuthor:"Forfatter",metaCopyright:"Kopirett",metaDescription:"Dokumentbeskrivelse",metaKeywords:"Dokument nøkkelord (kommaseparert)",other:"<annen>",previewHtml:'<p>Dette er en <strong>eksempeltekst</strong>. Du bruker <a href="javascript:void(0)">CKEditor</a>.</p>',title:"Dokumentegenskaper",txtColor:"Tekstfarge", +xhtmlDec:"Inkluder XHTML-deklarasjon"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/pl.js b/static/ckeditor/ckeditor/plugins/docprops/lang/pl.js new file mode 100644 index 0000000000..4fb4343875 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/pl.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","pl",{bgColor:"Kolor tła",bgFixed:"Tło nieruchome (nieprzewijające się)",bgImage:"Adres URL obrazka tła",charset:"Kodowanie znaków",charsetASCII:"ASCII",charsetCE:"Środkowoeuropejskie",charsetCR:"Cyrylica",charsetCT:"Chińskie tradycyjne (Big5)",charsetGR:"Greckie",charsetJP:"Japońskie",charsetKR:"Koreańskie",charsetOther:"Inne kodowanie znaków",charsetTR:"Tureckie",charsetUN:"Unicode (UTF-8)",charsetWE:"Zachodnioeuropejskie",chooseColor:"Wybierz",design:"Projekt strony", +docTitle:"Tytuł strony",docType:"Definicja typu dokumentu",docTypeOther:"Inna definicja typu dokumentu",label:"Właściwości dokumentu",margin:"Marginesy strony",marginBottom:"Dolny",marginLeft:"Lewy",marginRight:"Prawy",marginTop:"Górny",meta:"Znaczniki meta",metaAuthor:"Autor",metaCopyright:"Prawa autorskie",metaDescription:"Opis dokumentu",metaKeywords:"Słowa kluczowe dokumentu (oddzielone przecinkami)",other:"Inne",previewHtml:'<p>To jest <strong>przykładowy tekst</strong>. Korzystasz z programu <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Właściwości dokumentu",txtColor:"Kolor tekstu",xhtmlDec:"Uwzględnij deklaracje XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/pt-br.js b/static/ckeditor/ckeditor/plugins/docprops/lang/pt-br.js new file mode 100644 index 0000000000..c671fed0c0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/pt-br.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","pt-br",{bgColor:"Cor do Plano de Fundo",bgFixed:"Plano de Fundo Fixo",bgImage:"URL da Imagem de Plano de Fundo",charset:"Codificação de Caracteres",charsetASCII:"ASCII",charsetCE:"Europa Central",charsetCR:"Cirílico",charsetCT:"Chinês Tradicional (Big5)",charsetGR:"Grego",charsetJP:"Japonês",charsetKR:"Coreano",charsetOther:"Outra Codificação de Caracteres",charsetTR:"Turco",charsetUN:"Unicode (UTF-8)",charsetWE:"Europa Ocidental",chooseColor:"Escolher",design:"Design", +docTitle:"Título da Página",docType:"Cabeçalho Tipo de Documento",docTypeOther:"Outro Tipo de Documento",label:"Propriedades Documento",margin:"Margens da Página",marginBottom:"Inferior",marginLeft:"Inferior",marginRight:"Direita",marginTop:"Superior",meta:"Meta Dados",metaAuthor:"Autor",metaCopyright:"Direitos Autorais",metaDescription:"Descrição do Documento",metaKeywords:"Palavras-chave de Indexação do Documento (separadas por vírgula)",other:"<outro>",previewHtml:'<p>Este é um <strong>texto de exemplo</strong>. Você está usando <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Propriedades Documento",txtColor:"Cor do Texto",xhtmlDec:"Incluir Declarações XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/pt.js b/static/ckeditor/ckeditor/plugins/docprops/lang/pt.js new file mode 100644 index 0000000000..263394025e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/pt.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","pt",{bgColor:"Cor de Fundo",bgFixed:"Fundo Fixo",bgImage:"Caminho para a imagem de fundo",charset:"Codificação de caracteres",charsetASCII:"ASCII",charsetCE:"Europa Central",charsetCR:"Cirílico",charsetCT:"Chinês Traditional (Big5)",charsetGR:"Grego",charsetJP:"Japonês",charsetKR:"Coreano",charsetOther:"Outra Codificação de Caracteres",charsetTR:"Turco",charsetUN:"Unicode (UTF-8)",charsetWE:"Europa Ocidental",chooseColor:"Choose",design:"Desenho",docTitle:"Título da Página", +docType:"Tipo de Cabeçalho do Documento",docTypeOther:"Outro Tipo de Cabeçalho do Documento",label:"Propriedades do Documento",margin:"Margem das Páginas",marginBottom:"Fundo",marginLeft:"Esquerda",marginRight:"Direita",marginTop:"Topo",meta:"Meta Data",metaAuthor:"Autor",metaCopyright:"Direitos de Autor",metaDescription:"Descrição do Documento",metaKeywords:"Palavras de Indexação do Documento (separadas por virgula)",other:"<outro>",previewHtml:'<p>Isto é algum <strong>texto amostra</strong>. Está a usar o <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Propriedades do documento",txtColor:"Cor do Texto",xhtmlDec:"Incluir Declarações XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/ro.js b/static/ckeditor/ckeditor/plugins/docprops/lang/ro.js new file mode 100644 index 0000000000..feb0ec9ad8 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/ro.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","ro",{bgColor:"Culoarea fundalului (Background Color)",bgFixed:"Fundal neflotant, fix (Non-scrolling Background)",bgImage:"URL-ul imaginii din fundal (Background Image URL)",charset:"Encoding setului de caractere",charsetASCII:"ASCII",charsetCE:"Europa Centrală",charsetCR:"Chirilic",charsetCT:"Chinezesc tradiţional (Big5)",charsetGR:"Grecesc",charsetJP:"Japonez",charsetKR:"Corean",charsetOther:"Alt encoding al setului de caractere",charsetTR:"Turcesc",charsetUN:"Unicode (UTF-8)", +charsetWE:"Vest european",chooseColor:"Alege",design:"Proiect",docTitle:"Titlul paginii",docType:"Tip de document de antet",docTypeOther:"Alt Document Type Heading",label:"Proprietăţile documentului",margin:"Marginile paginii",marginBottom:"Jos",marginLeft:"Stânga",marginRight:"Dreapta",marginTop:"Sus",meta:"Tag-uri Meta",metaAuthor:"Autor",metaCopyright:"Drepturi de autor",metaDescription:"Descrierea documentului",metaKeywords:"Cuvinte cheie după care se va indexa documentul (separate prin virgulă)", +other:"Altele...",previewHtml:'<p>Acesta este un <strong>text exemplu</strong>. Folosiți <a href="javascript:void(0)">CKEditor</a>.</p>',title:"Proprietăţile documentului",txtColor:"Culoarea textului",xhtmlDec:"Include declaraţii XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/ru.js b/static/ckeditor/ckeditor/plugins/docprops/lang/ru.js new file mode 100644 index 0000000000..01d585f657 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/ru.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","ru",{bgColor:"Цвет фона",bgFixed:"Фон прикреплён (не проматывается)",bgImage:"Ссылка на фоновое изображение",charset:"Кодировка набора символов",charsetASCII:"ASCII",charsetCE:"Центрально-европейская",charsetCR:"Кириллица",charsetCT:"Китайская традиционная (Big5)",charsetGR:"Греческая",charsetJP:"Японская",charsetKR:"Корейская",charsetOther:"Другая кодировка набора символов",charsetTR:"Турецкая",charsetUN:"Юникод (UTF-8)",charsetWE:"Западно-европейская",chooseColor:"Выберите", +design:"Дизайн",docTitle:"Заголовок страницы",docType:"Заголовок типа документа",docTypeOther:"Другой заголовок типа документа",label:"Свойства документа",margin:"Отступы страницы",marginBottom:"Нижний",marginLeft:"Левый",marginRight:"Правый",marginTop:"Верхний",meta:"Метаданные",metaAuthor:"Автор",metaCopyright:"Авторские права",metaDescription:"Описание документа",metaKeywords:"Ключевые слова документа (через запятую)",other:"Другой ...",previewHtml:'<p>Это <strong>пример</strong> текста, написанного с помощью <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Свойства документа",txtColor:"Цвет текста",xhtmlDec:"Включить объявления XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/si.js b/static/ckeditor/ckeditor/plugins/docprops/lang/si.js new file mode 100644 index 0000000000..19a7d6faad --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/si.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("docprops","si",{bgColor:"පසුබිම් වර්ණය",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"පසුබිම් ",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"මාධ්‍ය ",charsetCR:"සිරිලික් හෝඩිය",charsetCT:"චීන සම්ප්‍රදාය",charsetGR:"ග්‍රීක",charsetJP:"ජපාන",charsetKR:"Korean",charsetOther:"අනෙකුත් අක්ෂර කොටස්",charsetTR:"තුර්කි",charsetUN:"Unicode (UTF-8)",charsetWE:"බස්නාහිර ",chooseColor:"තෝරන්න",design:"Design",docTitle:"පිටු මාතෘකාව",docType:"ලිපිගොනු වර්ගයේ මාතෘකාව", +docTypeOther:"අනෙකුත් ලිපිගොනු වර්ගයේ මාතෘකා",label:"ලිපිගොනු ",margin:"පිටු සීමාවන්",marginBottom:"පහල",marginLeft:"වම",marginRight:"දකුණ",marginTop:"ඉ",meta:"Meta Tags",metaAuthor:"Author",metaCopyright:"ප්‍රකාශන ",metaDescription:"ලිපිගොනු ",metaKeywords:"ලිපිගොනු පෙලගේසමේ විශේෂ වචන (කොමා වලින් වෙන්කරන ලද)",other:"අනෙකුත්",previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>',title:"පෝරමයේ ගුණ/",txtColor:"අක්ෂර වර්ණ",xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/sk.js b/static/ckeditor/ckeditor/plugins/docprops/lang/sk.js new file mode 100644 index 0000000000..b347ab05b5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/sk.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","sk",{bgColor:"Farba pozadia",bgFixed:"Fixné pozadie",bgImage:"URL obrázka na pozadí",charset:"Znaková sada",charsetASCII:"ASCII",charsetCE:"Stredoeurópska",charsetCR:"Cyrillika",charsetCT:"Čínština tradičná (Big5)",charsetGR:"Gréčtina",charsetJP:"Japončina",charsetKR:"Korejčina",charsetOther:"Iná znaková sada",charsetTR:"Turečtina",charsetUN:"Unicode (UTF-8)",charsetWE:"Západná európa",chooseColor:"Vybrať",design:"Design",docTitle:"Titulok stránky",docType:"Typ záhlavia dokumentu", +docTypeOther:"Iný typ záhlavia dokumentu",label:"Vlastnosti dokumentu",margin:"Okraje stránky (margins)",marginBottom:"Dolný",marginLeft:"Ľavý",marginRight:"Pravý",marginTop:"Horný",meta:"Meta značky",metaAuthor:"Autor",metaCopyright:"Autorské práva (copyright)",metaDescription:"Popis dokumentu",metaKeywords:"Indexované kľúčové slová dokumentu (oddelené čiarkou)",other:"Iný...",previewHtml:'<p>Toto je nejaký <strong>ukážkový text</strong>. Používate <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Vlastnosti dokumentu",txtColor:"Farba textu",xhtmlDec:"Vložiť deklarácie XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/sl.js b/static/ckeditor/ckeditor/plugins/docprops/lang/sl.js new file mode 100644 index 0000000000..7017e1bd74 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/sl.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","sl",{bgColor:"Barva ozadja",bgFixed:"Nepremično ozadje",bgImage:"URL slike za ozadje",charset:"Kodna tabela",charsetASCII:"ASCII",charsetCE:"Srednjeevropsko",charsetCR:"Cirilica",charsetCT:"Tradicionalno Kitajsko (Big5)",charsetGR:"Grško",charsetJP:"Japonsko",charsetKR:"Korejsko",charsetOther:"Druga kodna tabela",charsetTR:"Turško",charsetUN:"Unicode (UTF-8)",charsetWE:"Zahodnoevropsko",chooseColor:"Izberi",design:"Oblika",docTitle:"Naslov strani",docType:"Glava tipa dokumenta", +docTypeOther:"Druga glava tipa dokumenta",label:"Lastnosti dokumenta",margin:"Zamiki strani",marginBottom:"Spodaj",marginLeft:"Levo",marginRight:"Desno",marginTop:"Na vrhu",meta:"Meta podatki",metaAuthor:"Avtor",metaCopyright:"Avtorske pravice",metaDescription:"Opis strani",metaKeywords:"Ključne besede (ločene z vejicami)",other:"<drug>",previewHtml:'<p>Tole je<strong>primer besedila</strong>. Uporabljate <a href="javascript:void(0)">CKEditor</a>.</p>',title:"Lastnosti dokumenta",txtColor:"Barva besedila", +xhtmlDec:"Vstavi XHTML deklaracije"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/sq.js b/static/ckeditor/ckeditor/plugins/docprops/lang/sq.js new file mode 100644 index 0000000000..e08409b20f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/sq.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","sq",{bgColor:"Ngjyra e Prapavijës",bgFixed:"Prapavijë pa zvarritje (fiks)",bgImage:"URL e Fotografisë së Prapavijës",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"Evropës Qendrore",charsetCR:"Sllave",charsetCT:"Kinezisht Tradicional (Big5)",charsetGR:"Greke",charsetJP:"Japoneze",charsetKR:"Koreane",charsetOther:"Other Character Set Encoding",charsetTR:"Turke",charsetUN:"Unicode (UTF-8)",charsetWE:"Evropiano Perëndimor",chooseColor:"Përzgjidh", +design:"Dizajni",docTitle:"Titulli i Faqes",docType:"Document Type Heading",docTypeOther:"Koka e Llojit Tjetër të Dokumentit",label:"Karakteristikat e Dokumentit",margin:"Kufijtë e Faqes",marginBottom:"Poshtë",marginLeft:"Majtas",marginRight:"Djathtas",marginTop:"Lart",meta:"Meta Tags",metaAuthor:"Autori",metaCopyright:"Të drejtat e kopjimit",metaDescription:"Përshkrimi i Dokumentit",metaKeywords:"Fjalët kyçe të indeksimit të dokumentit (të ndarë me presje)",other:"Tjera...",previewHtml:'<p>Ky është nje <strong>tekst shembull</strong>. Ju jeni duke shfrytëzuar <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Karakteristikat e Dokumentit",txtColor:"Ngjyra e Tekstit",xhtmlDec:"Përfshij XHTML Deklarimet"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/sr-latn.js b/static/ckeditor/ckeditor/plugins/docprops/lang/sr-latn.js new file mode 100644 index 0000000000..77312ffb27 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/sr-latn.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","sr-latn",{bgColor:"Boja pozadine",bgFixed:"Fiksirana pozadina",bgImage:"URL pozadinske slike",charset:"Kodiranje skupa karaktera",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Ostala kodiranja skupa karaktera",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design",docTitle:"Naslov stranice", +docType:"Zaglavlje tipa dokumenta",docTypeOther:"Ostala zaglavlja tipa dokumenta",label:"Osobine dokumenta",margin:"Margine stranice",marginBottom:"Donja",marginLeft:"Leva",marginRight:"Desna",marginTop:"Gornja",meta:"Metapodaci",metaAuthor:"Autor",metaCopyright:"Autorska prava",metaDescription:"Opis dokumenta",metaKeywords:"Ključne reci za indeksiranje dokumenta (razdvojene zarezima)",other:"<остало>",previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Osobine dokumenta",txtColor:"Boja teksta",xhtmlDec:"Ukljuci XHTML deklaracije"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/sr.js b/static/ckeditor/ckeditor/plugins/docprops/lang/sr.js new file mode 100644 index 0000000000..f50c3e4a6c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/sr.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","sr",{bgColor:"Боја позадине",bgFixed:"Фиксирана позадина",bgImage:"УРЛ позадинске слике",charset:"Кодирање скупа карактера",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"Остала кодирања скупа карактера",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"Design",docTitle:"Наслов странице", +docType:"Заглавље типа документа",docTypeOther:"Остала заглавља типа документа",label:"Особине документа",margin:"Маргине странице",marginBottom:"Доња",marginLeft:"Лева",marginRight:"Десна",marginTop:"Горња",meta:"Метаподаци",metaAuthor:"Аутор",metaCopyright:"Ауторска права",metaDescription:"Опис документа",metaKeywords:"Кључне речи за индексирање документа (раздвојене зарезом)",other:"<other>",previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"Особине документа",txtColor:"Боја текста",xhtmlDec:"Улључи XHTML декларације"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/sv.js b/static/ckeditor/ckeditor/plugins/docprops/lang/sv.js new file mode 100644 index 0000000000..363de9bc13 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/sv.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("docprops","sv",{bgColor:"Bakgrundsfärg",bgFixed:"Fast bakgrund",bgImage:"Bakgrundsbildens URL",charset:"Teckenuppsättningar",charsetASCII:"ASCII",charsetCE:"Central Europa",charsetCR:"Kyrillisk",charsetCT:"Traditionell Kinesisk (Big5)",charsetGR:"Grekiska",charsetJP:"Japanska",charsetKR:"Koreanska",charsetOther:"Övriga teckenuppsättningar",charsetTR:"Turkiska",charsetUN:"Unicode (UTF-8)",charsetWE:"Väst Europa",chooseColor:"Välj",design:"Design",docTitle:"Sidtitel",docType:"Sidhuvud", +docTypeOther:"Övriga sidhuvuden",label:"Dokumentegenskaper",margin:"Sidmarginal",marginBottom:"Botten",marginLeft:"Vänster",marginRight:"Höger",marginTop:"Topp",meta:"Metadata",metaAuthor:"Författare",metaCopyright:"Upphovsrätt",metaDescription:"Sidans beskrivning",metaKeywords:"Sidans nyckelord (kommaseparerade)",other:"Annan...",previewHtml:'<p>Detta är en <strong>exempel text</strong>. Du använder <a href="javascript:void(0)">CKEditor</a>.</p>',title:"Dokumentegenskaper",txtColor:"Textfärg",xhtmlDec:"Inkludera XHTML deklaration"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/th.js b/static/ckeditor/ckeditor/plugins/docprops/lang/th.js new file mode 100644 index 0000000000..2befc7f77a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/th.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","th",{bgColor:"สีพื้นหลัง",bgFixed:"พื้นหลังแบบไม่มีแถบเลื่อน",bgImage:"ที่อยู่อ้างอิงออนไลน์ของรูปพื้นหลัง (Image URL)",charset:"ชุดตัวอักษร",charsetASCII:"ASCII",charsetCE:"Central European",charsetCR:"Cyrillic",charsetCT:"Chinese Traditional (Big5)",charsetGR:"Greek",charsetJP:"Japanese",charsetKR:"Korean",charsetOther:"ชุดตัวอักษรอื่นๆ",charsetTR:"Turkish",charsetUN:"Unicode (UTF-8)",charsetWE:"Western European",chooseColor:"Choose",design:"ออกแบบ",docTitle:"ชื่อไตเติ้ล", +docType:"ประเภทของเอกสาร",docTypeOther:"ประเภทเอกสารอื่นๆ",label:"คุณสมบัติของเอกสาร",margin:"ระยะขอบของหน้าเอกสาร",marginBottom:"ด้านล่าง",marginLeft:"ด้านซ้าย",marginRight:"ด้านขวา",marginTop:"ด้านบน",meta:"ข้อมูลสำหรับเสิร์ชเอนจิ้น",metaAuthor:"ผู้สร้างเอกสาร",metaCopyright:"สงวนลิขสิทธิ์",metaDescription:"ประโยคอธิบายเกี่ยวกับเอกสาร",metaKeywords:"คำสำคัญอธิบายเอกสาร (คั่นคำด้วย คอมม่า)",other:"<อื่น ๆ>",previewHtml:'<p>นี่เป็น <strong>ข้อความตัวอย่าง</strong>. คุณกำลังใช้งาน <a href="javascript:void(0)">CKEditor</a>.</p>', +title:"คุณสมบัติของเอกสาร",txtColor:"สีตัวอักษร",xhtmlDec:"รวมเอา XHTML Declarations ไว้ด้วย"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/tr.js b/static/ckeditor/ckeditor/plugins/docprops/lang/tr.js new file mode 100644 index 0000000000..00a35d43be --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/tr.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","tr",{bgColor:"Arka Plan Rengi",bgFixed:"Sabit Arka Plan",bgImage:"Arka Plan Resim URLsi",charset:"Karakter Kümesi Kodlaması",charsetASCII:"ASCII",charsetCE:"Orta Avrupa",charsetCR:"Kiril",charsetCT:"Geleneksel Çince (Big5)",charsetGR:"Yunanca",charsetJP:"Japonca",charsetKR:"Korece",charsetOther:"Diğer Karakter Kümesi Kodlaması",charsetTR:"Türkçe",charsetUN:"Evrensel Kod (UTF-8)",charsetWE:"Batı Avrupa",chooseColor:"Seçiniz",design:"Dizayn",docTitle:"Sayfa Başlığı", +docType:"Belge Türü Başlığı",docTypeOther:"Diğer Belge Türü Başlığı",label:"Belge Özellikleri",margin:"Kenar Boşlukları",marginBottom:"Alt",marginLeft:"Sol",marginRight:"Sağ",marginTop:"Tepe",meta:"Tanım Bilgisi (Meta)",metaAuthor:"Yazar",metaCopyright:"Telif",metaDescription:"Belge Tanımı",metaKeywords:"Belge Dizinleme Anahtar Kelimeleri (virgülle ayrılmış)",other:"<diğer>",previewHtml:'<p>Bu bir <strong>örnek metindir</strong>. <a href="javascript:void(0)">CKEditor</a> kullanıyorsunuz.</p>',title:"Belge Özellikleri", +txtColor:"Yazı Rengi",xhtmlDec:"XHTML Bildirimlerini Dahil Et"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/tt.js b/static/ckeditor/ckeditor/plugins/docprops/lang/tt.js new file mode 100644 index 0000000000..719cd4dceb --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/tt.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","tt",{bgColor:"Фон төсе",bgFixed:"Non-scrolling (Fixed) Background",bgImage:"Background Image URL",charset:"Character Set Encoding",charsetASCII:"ASCII",charsetCE:"Урта Ауропа",charsetCR:"Кириллик",charsetCT:"Гадәти кытай (Big5)",charsetGR:"Грек",charsetJP:"Япон",charsetKR:"Корей",charsetOther:"Other Character Set Encoding",charsetTR:"Төрек",charsetUN:"Юникод (UTF-8)",charsetWE:"Көнбатыш Ауропа",chooseColor:"Сайлау",design:"Дизайн",docTitle:"Бит исеме",docType:"Document Type Heading", +docTypeOther:"Other Document Type Heading",label:"Документ үзлекләре",margin:"Page Margins",marginBottom:"Аска",marginLeft:"Сул",marginRight:"Уң як",marginTop:"Өскә",meta:"Метатег",metaAuthor:"Автор",metaCopyright:"Хокук иясе",metaDescription:"Документ тасвирламасы",metaKeywords:"Document Indexing Keywords (comma separated)",other:"Башка...",previewHtml:'<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>',title:"Документ үзлекләре",txtColor:"Текст төсе", +xhtmlDec:"Include XHTML Declarations"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/ug.js b/static/ckeditor/ckeditor/plugins/docprops/lang/ug.js new file mode 100644 index 0000000000..424d13a05f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/ug.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","ug",{bgColor:"تەگلىك رەڭگى",bgFixed:"تەگلىك سۈرەتنى دومىلاتما",bgImage:"تەگلىك سۈرەت",charset:"ھەرپ كودلىنىشى",charsetASCII:"ASCII",charsetCE:"ئوتتۇرا ياۋرۇپا",charsetCR:"سىلاۋيانچە",charsetCT:"مۇرەككەپ خەنزۇچە (Big5)",charsetGR:"گىرېكچە",charsetJP:"ياپونچە",charsetKR:"كۆرىيەچە",charsetOther:"باشقا ھەرپ كودلىنىشى",charsetTR:"تۈركچە",charsetUN:"يۇنىكود (UTF-8)",charsetWE:"غەربىي ياۋرۇپا",chooseColor:"تاللاڭ",design:"لايىھە",docTitle:"بەت ماۋزۇسى",docType:"پۈتۈك تىپى", +docTypeOther:"باشقا پۈتۈك تىپى",label:"بەت خاسلىقى",margin:"بەت گىرۋەك",marginBottom:"ئاستى",marginLeft:"سول",marginRight:"ئوڭ",marginTop:"ئۈستى",meta:"مېتا سانلىق مەلۇمات",metaAuthor:"يازغۇچى",metaCopyright:"نەشر ھوقۇقى",metaDescription:"بەت يۈزى چۈشەندۈرۈشى",metaKeywords:"بەت يۈزى ئىندېكىس ھالقىلىق سۆزى (ئىنگلىزچە پەش [,] بىلەن ئايرىلىدۇ)",other:"باشقا",previewHtml:'<p>بۇ بىر قىسىم <strong>كۆرسەتمىگە ئىشلىتىدىغان تېكىست </strong>سىز نۆۋەتتە <a href="javascript:void(0)">CKEditor</a>.نى ئىشلىتىۋاتىسىز.</p>', +title:"بەت خاسلىقى",txtColor:"تېكىست رەڭگى",xhtmlDec:"XHTML ئېنىقلىمىسىنى ئۆز ئىچىگە ئالىدۇ"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/uk.js b/static/ckeditor/ckeditor/plugins/docprops/lang/uk.js new file mode 100644 index 0000000000..c1027967e4 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/uk.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","uk",{bgColor:"Колір тла",bgFixed:"Тло без прокрутки",bgImage:"URL зображення тла",charset:"Кодування набору символів",charsetASCII:"ASCII",charsetCE:"Центрально-європейська",charsetCR:"Кирилиця",charsetCT:"Китайська традиційна (Big5)",charsetGR:"Грецька",charsetJP:"Японська",charsetKR:"Корейська",charsetOther:"Інше кодування набору символів",charsetTR:"Турецька",charsetUN:"Юнікод (UTF-8)",charsetWE:"Західно-европейская",chooseColor:"Обрати",design:"Дизайн",docTitle:"Заголовок сторінки", +docType:"Заголовок типу документу",docTypeOther:"Інший заголовок типу документу",label:"Властивості документа",margin:"Відступи сторінки",marginBottom:"Нижній",marginLeft:"Лівий",marginRight:"Правий",marginTop:"Верхній",meta:"Мета дані",metaAuthor:"Автор",metaCopyright:"Авторські права",metaDescription:"Опис документа",metaKeywords:"Ключові слова документа (розділені комами)",other:"<інший>",previewHtml:'<p>Це приклад<strong>тексту</strong>. Ви використовуєте<a href="javascript:void(0)"> CKEditor </a>.</p>', +title:"Властивості документа",txtColor:"Колір тексту",xhtmlDec:"Ввімкнути XHTML оголошення"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/vi.js b/static/ckeditor/ckeditor/plugins/docprops/lang/vi.js new file mode 100644 index 0000000000..b458376774 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/vi.js @@ -0,0 +1,3 @@ +CKEDITOR.plugins.setLang("docprops","vi",{bgColor:"Màu nền",bgFixed:"Không cuộn nền",bgImage:"URL của Hình ảnh nền",charset:"Bảng mã ký tự",charsetASCII:"ASCII",charsetCE:"Trung Âu",charsetCR:"Tiếng Kirin",charsetCT:"Tiếng Trung Quốc (Big5)",charsetGR:"Tiếng Hy Lạp",charsetJP:"Tiếng Nhật",charsetKR:"Tiếng Hàn",charsetOther:"Bảng mã ký tự khác",charsetTR:"Tiếng Thổ Nhĩ Kỳ",charsetUN:"Unicode (UTF-8)",charsetWE:"Tây Âu",chooseColor:"Chọn màu",design:"Thiết kế",docTitle:"Tiêu đề Trang",docType:"Kiểu Đề mục Tài liệu", +docTypeOther:"Kiểu Đề mục Tài liệu khác",label:"Thuộc tính Tài liệu",margin:"Đường biên của Trang",marginBottom:"Dưới",marginLeft:"Trái",marginRight:"Phải",marginTop:"Trên",meta:"Siêu dữ liệu",metaAuthor:"Tác giả",metaCopyright:"Bản quyền",metaDescription:"Mô tả tài liệu",metaKeywords:"Các từ khóa chỉ mục tài liệu (phân cách bởi dấu phẩy)",other:"<khác>",previewHtml:'<p>Đây là một số <strong>văn bản mẫu</strong>. Bạn đang sử dụng <a href="javascript:void(0)">CKEditor</a>.</p>',title:"Thuộc tính Tài liệu", +txtColor:"Màu chữ",xhtmlDec:"Bao gồm cả định nghĩa XHTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/zh-cn.js b/static/ckeditor/ckeditor/plugins/docprops/lang/zh-cn.js new file mode 100644 index 0000000000..d8c87e711d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/zh-cn.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("docprops","zh-cn",{bgColor:"背景颜色",bgFixed:"不滚动背景图像",bgImage:"背景图像",charset:"字符编码",charsetASCII:"ASCII",charsetCE:"中欧",charsetCR:"西里尔文",charsetCT:"繁体中文 (Big5)",charsetGR:"希腊文",charsetJP:"日文",charsetKR:"韩文",charsetOther:"其它字符编码",charsetTR:"土耳其文",charsetUN:"Unicode (UTF-8)",charsetWE:"西欧",chooseColor:"选择",design:"设计",docTitle:"页面标题",docType:"文档类型",docTypeOther:"其它文档类型",label:"页面属性",margin:"页面边距",marginBottom:"下",marginLeft:"左",marginRight:"右",marginTop:"上",meta:"Meta 数据",metaAuthor:"作者", +metaCopyright:"版权",metaDescription:"页面说明",metaKeywords:"页面索引关键字 (用半角逗号[,]分隔)",other:"<其他>",previewHtml:'<p>这是一些<strong>演示用文字</strong>。您当前正在使用<a href="javascript:void(0)">CKEditor</a>。</p>',title:"页面属性",txtColor:"文本颜色",xhtmlDec:"包含 XHTML 声明"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/lang/zh.js b/static/ckeditor/ckeditor/plugins/docprops/lang/zh.js new file mode 100644 index 0000000000..193a57daa9 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/lang/zh.js @@ -0,0 +1,2 @@ +CKEDITOR.plugins.setLang("docprops","zh",{bgColor:"背景顏色",bgFixed:"非捲動 (固定) 背景",bgImage:"背景圖像 URL",charset:"字元集編碼",charsetASCII:"ASCII",charsetCE:"中歐語系",charsetCR:"斯拉夫文",charsetCT:"正體中文 (Big5)",charsetGR:"希臘文",charsetJP:"日文",charsetKR:"韓文",charsetOther:"其他字元集編碼",charsetTR:"土耳其文",charsetUN:"Unicode (UTF-8)",charsetWE:"西歐語系",chooseColor:"選擇",design:"設計模式",docTitle:"頁面標題",docType:"文件類型標題",docTypeOther:"其他文件類型標題",label:"文件屬性",margin:"頁面邊界",marginBottom:"底端",marginLeft:"左",marginRight:"右",marginTop:"頂端", +meta:"Meta 標籤",metaAuthor:"作者",metaCopyright:"版權資訊",metaDescription:"文件描述",metaKeywords:"文件索引關鍵字 (以逗號分隔)",other:"其他…",previewHtml:'<p>此為簡短的<strong>範例文字</strong>。您正在使用 <a href="javascript:void(0)">CKEditor</a>。</p>',title:"文件屬性",txtColor:"文字顏色",xhtmlDec:"包含 XHTML 宣告"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/docprops/plugin.js b/static/ckeditor/ckeditor/plugins/docprops/plugin.js new file mode 100644 index 0000000000..2ca000c7ce --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/docprops/plugin.js @@ -0,0 +1,6 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.add("docprops",{requires:"wysiwygarea,dialog,colordialog",lang:"af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn",icons:"docprops,docprops-rtl",hidpi:!0,init:function(a){var b=new CKEDITOR.dialogCommand("docProps");b.modes={wysiwyg:a.config.fullPage};b.allowedContent={body:{styles:"*",attributes:"dir"},html:{attributes:"lang,xml:lang"}}; +b.requiredContent="body";a.addCommand("docProps",b);CKEDITOR.dialog.add("docProps",this.path+"dialogs/docprops.js");a.ui.addButton&&a.ui.addButton("DocProps",{label:a.lang.docprops.label,command:"docProps",toolbar:"document,30"})}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embed/icons/embed.png b/static/ckeditor/ckeditor/plugins/embed/icons/embed.png new file mode 100644 index 0000000000..9a9a73568e Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/embed/icons/embed.png differ diff --git a/static/ckeditor/ckeditor/plugins/embed/icons/hidpi/embed.png b/static/ckeditor/ckeditor/plugins/embed/icons/hidpi/embed.png new file mode 100644 index 0000000000..97dc754758 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/embed/icons/hidpi/embed.png differ diff --git a/static/ckeditor/ckeditor/plugins/embed/plugin.js b/static/ckeditor/ckeditor/plugins/embed/plugin.js new file mode 100644 index 0000000000..8b5c7738e6 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embed/plugin.js @@ -0,0 +1,6 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){CKEDITOR.plugins.add("embed",{icons:"embed",hidpi:!0,requires:"embedbase",init:function(b){var c=CKEDITOR.plugins.embedBase.createWidgetBaseDefinition(b);CKEDITOR.tools.extend(c,{dialog:"embedBase",button:b.lang.embedbase.button,allowedContent:"div[!data-oembed-url]",requiredContent:"div[data-oembed-url]",providerUrl:new CKEDITOR.template(b.config.embed_provider||"//ckeditor.iframe.ly/api/oembed?url={url}&callback={callback}"),styleToAllowedContentRules:function(a){return{div:{propertiesOnly:!0, +classes:a.getClassesArray(),attributes:"!data-oembed-url"}}},upcast:function(a,b){if("div"==a.name&&a.attributes["data-oembed-url"])return b.url=a.attributes["data-oembed-url"],!0},downcast:function(a){a.attributes["data-oembed-url"]=this.data.url}},!0);b.widgets.add("embed",c);b.filter.addElementCallback(function(a){if("data-oembed-url"in a.attributes)return CKEDITOR.FILTER_SKIP_TREE})}})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/dialogs/embedbase.js b/static/ckeditor/ckeditor/plugins/embedbase/dialogs/embedbase.js new file mode 100644 index 0000000000..674e87de8f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/dialogs/embedbase.js @@ -0,0 +1,6 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("embedBase",function(b){var c=b.lang.embedbase;return{title:c.title,minWidth:350,minHeight:50,onLoad:function(){function e(){a.setState(CKEDITOR.DIALOG_STATE_IDLE);d=null}var a=this,d=null;this.on("ok",function(f){f.data.hide=!1;f.stop();a.setState(CKEDITOR.DIALOG_STATE_BUSY);var c=a.getValueOf("info","url");d=a.widget.loadContent(c,{noNotifications:!0,callback:function(){a.widget.isReady()||b.widgets.finalizeCreation(a.widget.wrapper.getParent(!0));b.fire("saveSnapshot");a.hide(); +e()},errorCallback:function(b){a.getContentElement("info","url").select();alert(a.widget.getErrorMessage(b,c,"Given"));e()}})},null,null,15);this.on("cancel",function(a){a.data.hide&&d&&(d.cancel(),e())})},contents:[{id:"info",elements:[{type:"text",id:"url",label:b.lang.common.url,setup:function(b){this.setValue(b.data.url)},validate:function(){return!this.getDialog().widget.isUrlValid(this.getValue())?c.unsupportedUrlGiven:!0}}]}]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/cs.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/cs.js new file mode 100644 index 0000000000..b3e9fdc5d2 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/cs.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","cs",{pathName:"objekt média",title:"Vložení médií",button:"Vložit médium",unsupportedUrlGiven:"Zadaná URL není podporována.",unsupportedUrl:"URL {url} není podporována ",fetchingFailedGiven:"Pro zadanou adresu URL nelze získat obsah.",fetchingFailed:"Nelze získat obsah na {url}.",fetchingOne:"Získávání odpovědí oEmbed...",fetchingMany:"Získávání odpovědí oEmbed. {current} z {max} hotovo..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/da.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/da.js new file mode 100644 index 0000000000..46b7f9354f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/da.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","da",{pathName:"media objekt",title:"Media Embed",button:"Indsæt Media Embed",unsupportedUrlGiven:"Den angivende URL er ikke undersøttet.",unsupportedUrl:"URLen {url} er ikke undersøttet af Media Embed.",fetchingFailedGiven:"Kunne ikke hente indholdet fra den angivende URL.",fetchingFailed:"Kunne ikke hente indholdet fra {url}.",fetchingOne:"Henter oEmbed-svar",fetchingMany:"Henter oEmbed-svar, {current} af {max} færdige..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/de.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/de.js new file mode 100644 index 0000000000..8cea8638f1 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/de.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","de",{pathName:"Medienobjekt",title:"Media Embed",button:"Insert Media Embed",unsupportedUrlGiven:"Die angegebene URL wird nicht unterstützt.",unsupportedUrl:"The URL {url} is not supported by Media Embed.",fetchingFailedGiven:"Abrufen des Inhalts für die angegebene URL ist fehlgeschlagen.",fetchingFailed:"Abrufen des Inhalts für {url} ist fehlgeschlagen.",fetchingOne:"Fetching oEmbed response...",fetchingMany:"Fetching oEmbed responses, {current} of {max} done..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/en.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/en.js new file mode 100644 index 0000000000..30668c89af --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/en.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","en",{pathName:"media object",title:"Media Embed",button:"Insert Media Embed",unsupportedUrlGiven:"The specified URL is not supported.",unsupportedUrl:"The URL {url} is not supported by Media Embed.",fetchingFailedGiven:"Failed to fetch content for the given URL.",fetchingFailed:"Failed to fetch content for {url}.",fetchingOne:"Fetching oEmbed response...",fetchingMany:"Fetching oEmbed responses, {current} of {max} done..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/eo.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/eo.js new file mode 100644 index 0000000000..cbf9110dbd --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/eo.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","eo",{pathName:"Aŭdvidea objekto",title:"Media Embed",button:"Insert Media Embed",unsupportedUrlGiven:"The specified URL is not supported.",unsupportedUrl:"The URL {url} is not supported by Media Embed.",fetchingFailedGiven:"Failed to fetch content for the given URL.",fetchingFailed:"Failed to fetch content for {url}.",fetchingOne:"Fetching oEmbed response...",fetchingMany:"Fetching oEmbed responses, {current} of {max} done..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/fr.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/fr.js new file mode 100644 index 0000000000..3a04d999ec --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/fr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","fr",{pathName:"objet média",title:"Média Intégré",button:"Insérer le média intégré",unsupportedUrlGiven:"L'URL spécifiée n'est pas supportée.",unsupportedUrl:"L'URL {url} n'est pas supportée par Média Intégré",fetchingFailedGiven:"Échec de la récupération du contenu de l'URL donnée.",fetchingFailed:"Échec de la récupération du contenu pour {url}.",fetchingOne:"Récupération de la réponse oEmbed...",fetchingMany:"Récupération des réponse oEmbed, {current} sur {max} effectué..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/gl.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/gl.js new file mode 100644 index 0000000000..b8429ba290 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/gl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","gl",{pathName:"obxecto multimedia",title:"Multimedia integrado",button:"Inserir un multimedia integrado",unsupportedUrlGiven:"O URL especificado non está admitido.",unsupportedUrl:"O URL {url} non está admitido polo multimedia integrado.",fetchingFailedGiven:"Non foi posíbel obter o contido do URL indicado.",fetchingFailed:"Non foi posíbel obter o contido der {url}.",fetchingOne:"Obtendo a resposta oEmbed...",fetchingMany:"Obtendo as respostas oEmbed, feito {current} de {max}..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/it.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/it.js new file mode 100644 index 0000000000..aa6ed3165c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/it.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","it",{pathName:"oggetto multimediale",title:"Media incorporato",button:"Inserisci media incorporato",unsupportedUrlGiven:"L'URL specificato non è supportato.",unsupportedUrl:"L'URL {url} non è supportato da Media incorporato.",fetchingFailedGiven:"Non è stato possibile recuperareil contenuto per l'URL specificato.",fetchingFailed:"Non è stato possibile recuperare il contenuto per {url}.",fetchingOne:"Recupero della risposta oEmbed...",fetchingMany:"Recupero delle risposta oEmbed, {current} di {max} completati..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/ko.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/ko.js new file mode 100644 index 0000000000..f1f3f306db --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/ko.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","ko",{pathName:"미디어 오브젝트",title:"미디어 임베드",button:"미디어 임베드 삽입",unsupportedUrlGiven:"지원하지 않는 주소 형식입니다.",unsupportedUrl:"입력하신 주소 {url}은 지원되지 않는 형식입니다.",fetchingFailedGiven:"입력하신 주소에서 내용을 불러올 수 없습니다.",fetchingFailed:"입력하신 주소 {url}에서 내용을 불러올 수 없습니다.",fetchingOne:"oEmbed 응답을 가져오는 중...",fetchingMany:"총 {max} 개 중{current} 번째 oEmbed 응답을 가져오는 중..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/ku.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/ku.js new file mode 100644 index 0000000000..3f76a93310 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/ku.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","ku",{pathName:"ڕاگەیاندنی بەرکار",title:"خستنەناوی ڕاگەیاندن",button:"خستنەناوی ڕاگەیاندن",unsupportedUrlGiven:"بەستەری نیشانکراو پشتیوان نەکراوە.",unsupportedUrl:"بەستەری {url} پشتیواننەککراوە لەلایەن خستنەناوی ڕاگەیاندن.",fetchingFailedGiven:"سەرکەوتوونەبوو لە هێنانی ناوەڕۆکی بەستەری دراو",fetchingFailed:"سەرکەوتوونەبوو لە هێنانەی ناوەڕۆکی ئەم بەستەرە {url}.",fetchingOne:"لە هەوڵی وەڵامی خستنەناوە",fetchingMany:"لە هەوڵی هێنانی خستنەناوە, {current} لە {max} کۆتایهاتووە..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/nb.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/nb.js new file mode 100644 index 0000000000..1ded17360f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/nb.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","nb",{pathName:"mediaobjekt",title:"Media-innbygging",button:"Sett inn mediaobjekt",unsupportedUrlGiven:"Den oppgitte URL-en er ikke støttet.",unsupportedUrl:"URL-en {url} er ikke støttet av Media-innbygging.",fetchingFailedGiven:"Kunne ikke hente innhold for den oppgitte URL-en.",fetchingFailed:"Kunne ikke hente innhold for {url}.",fetchingOne:"Henter oEmbed-svar...",fetchingMany:"Henter oEmbed-svar, {current} av {max} fullført..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/nl.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/nl.js new file mode 100644 index 0000000000..2f5d699df0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/nl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","nl",{pathName:"media object",title:"Mediareferentie",button:"Mediareferentie invoegen",unsupportedUrlGiven:"De opgegeven URL wordt niet ondersteund.",unsupportedUrl:"De URL {url} wordt niet ondersteund door Mediareferentie.",fetchingFailedGiven:"Kon de inhoud van de opgegeven URL niet ophalen",fetchingFailed:"Kon de inhoud van {url} niet ophalen.",fetchingOne:"Ophalen van oEmbed antwoord…",fetchingMany:"Ophalen van oEmbed antwoorden, {current} van {max} klaar…"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/pl.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/pl.js new file mode 100644 index 0000000000..f50aec5d6d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/pl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","pl",{pathName:"obiekt multimediów",title:"Osadzenie multimediów (oEmbed)",button:"Osadź obiekt multimediów (oEmbed)",unsupportedUrlGiven:"Podany adres URL nie jest obsługiwany.",unsupportedUrl:"Adres URL {url} nie jest obsługiwany przez funkcjonalność osadzania multimediów.",fetchingFailedGiven:"Nie udało się pobrać zawartości dla podanego adresu URL.",fetchingFailed:"Nie udało się pobrać zawartości dla {url}.",fetchingOne:"Pobieranie odpowiedzi oEmbed...",fetchingMany:"Pobieranie odpowiedzi oEmbed, gotowe {current} z {max}..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/pt-br.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/pt-br.js new file mode 100644 index 0000000000..b42312143d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/pt-br.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","pt-br",{pathName:"objeto de mídia",title:"Incorporação de Mídia",button:"Inserir Incorporação de Mídia",unsupportedUrlGiven:"A URL especificada não é suportada.",unsupportedUrl:"A UTL {url} não é suportada pela Incorporação de Mídia.",fetchingFailedGiven:"Falha ao obter conteúdo para a URL informada.",fetchingFailed:"Falha ao obter conteúdo para {url}.",fetchingOne:"Obtendo resposta oEmbed...",fetchingMany:"Obtendo respostas oEmbed, {current} de {max} completos..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/ru.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/ru.js new file mode 100644 index 0000000000..1dc6be152d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/ru.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","ru",{pathName:"media object",title:"Вставка медиаконтента",button:"Вставить медиаконтент",unsupportedUrlGiven:"Данный URL не поддерживает возможность вставки медиаконтента",unsupportedUrl:"URL {url} не поддерживает возможность вставки медиаконтента",fetchingFailedGiven:"Не удалось извлечь контент для заданного URL",fetchingFailed:"Не удалось извлечь контент для {url}",fetchingOne:"Fetching oEmbed response...",fetchingMany:"Fetching oEmbed responses, {current} of {max} done..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/sv.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/sv.js new file mode 100644 index 0000000000..7fdd7abb60 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/sv.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","sv",{pathName:"mediaobjekt",title:"Media Embed",button:"Insert Media Embed",unsupportedUrlGiven:"Den angivna URL:en stöds inte.",unsupportedUrl:"The URL {url} is not supported by Media Embed.",fetchingFailedGiven:"Lyckades inte hämta innehållet från den angivna URL:en.",fetchingFailed:"Lyckades inte hämta innehåll från {url}.",fetchingOne:"Hämtar oEmbed-svar...",fetchingMany:"Hämtar oEmbed-svar, {current} av {max} färdiga..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/tr.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/tr.js new file mode 100644 index 0000000000..bd50191fb0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/tr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","tr",{pathName:"medya nesnesi",title:"Gömülmüş Medya",button:"Gömülü Medya Ekle",unsupportedUrlGiven:"Belirtmiş olduğunuz URL desteklenmiyor.",unsupportedUrl:"Belirttiğiniz URL {url} gömülü medya tarafından desteklenmiyor.",fetchingFailedGiven:"Vermiş olduğunuz URL'nin içeriği alınamadı.",fetchingFailed:"{url} içeriği alınamadı.",fetchingOne:"oEmbed cevabı alınıyor...",fetchingMany:"oEmbed cevabı alınıyor, {current} / {max} tamamlandı..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/zh-cn.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/zh-cn.js new file mode 100644 index 0000000000..6da3978011 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/zh-cn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","zh-cn",{pathName:"媒体对象",title:"嵌入媒体",button:"插入媒体",unsupportedUrlGiven:"不支持指定的 URL。",unsupportedUrl:"嵌入媒体不支持此 URL {url}。",fetchingFailedGiven:"无法抓取此 URL 的内容。",fetchingFailed:"无法抓取 {url} 的内容。",fetchingOne:"正在抓取……",fetchingMany:"正在抓取,{max} 中的 {current} ……"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/lang/zh.js b/static/ckeditor/ckeditor/plugins/embedbase/lang/zh.js new file mode 100644 index 0000000000..d753eccac7 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/lang/zh.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("embedbase","zh",{pathName:"媒體元件",title:"內嵌媒體",button:"插入內嵌媒體",unsupportedUrlGiven:"不支援指定的 URL。",unsupportedUrl:"內嵌媒體不支援 URL {url} 。",fetchingFailedGiven:"抓取指定 URL 的內容失敗。",fetchingFailed:"抓取 {url} 的內容失敗。",fetchingOne:"正在抓取 oEmbed 回應...",fetchingMany:"正在抓取 oEmbed 回應,{max} 中的 {current} 已完成..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedbase/plugin.js b/static/ckeditor/ckeditor/plugins/embedbase/plugin.js new file mode 100644 index 0000000000..b28f10011e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedbase/plugin.js @@ -0,0 +1,11 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){CKEDITOR.plugins.add("embedbase",{lang:"cs,da,de,en,eo,fr,gl,it,ko,ku,nb,nl,pl,pt-br,ru,sv,tr,zh,zh-cn",requires:"widget,notificationaggregator",onLoad:function(){CKEDITOR._.jsonpCallbacks={}},init:function(){CKEDITOR.dialog.add("embedBase",this.path+"dialogs/embedbase.js")}});var j={_attachScript:function(e,c){var d=new CKEDITOR.dom.element("script");d.setAttribute("src",e);d.on("error",c);CKEDITOR.document.getBody().append(d);return d},sendRequest:function(e,c,d,a){function b(){g&&(g.remove(), +delete CKEDITOR._.jsonpCallbacks[h],g=null)}var i={},c=c||{},h=CKEDITOR.tools.getNextNumber(),g;c.callback="CKEDITOR._.jsonpCallbacks["+h+"]";CKEDITOR._.jsonpCallbacks[h]=function(a){setTimeout(function(){b();d(a)})};g=this._attachScript(e.output(c),function(){b();a&&a()});i.cancel=b;return i}};CKEDITOR.plugins.embedBase={createWidgetBaseDefinition:function(e){var c,d=e.lang.embedbase;return{mask:!0,template:"<div></div>",pathName:d.pathName,_cache:{},urlRegExp:/^((https?:)?\/\/|www\.)/i,init:function(){this.on("sendRequest", +function(a){this._sendRequest(a.data)},this,null,999);this.on("dialog",function(a){a.data.widget=this},this);this.on("handleResponse",function(a){if(!a.data.html){var b=this._responseToHtml(a.data.url,a.data.response);null!==b?a.data.html=b:(a.data.errorMessage="unsupportedUrl",a.cancel())}},this,null,999)},loadContent:function(a,b){function c(e){f.response=e;d.editor.widgets.instances[d.id]?d._handleResponse(f)&&(d._cacheResponse(a,e),b.callback&&b.callback()):f.task&&f.task.done()}var b=b||{},d= +this,e=this._getCachedResponse(a),f={noNotifications:b.noNotifications,url:a,callback:c,errorCallback:function(a){d._handleError(f,a);b.errorCallback&&b.errorCallback(a)}};if(e)setTimeout(function(){c(e)});else return b.noNotifications||(f.task=this._createTask()),this.fire("sendRequest",f),f},isUrlValid:function(a){return this.urlRegExp.test(a)&&!1!==this.fire("validateUrl",a)},getErrorMessage:function(a,b,c){(c=e.lang.embedbase[a+(c||"")])||(c=a);return(new CKEDITOR.template(c)).output({url:b|| +""})},_sendRequest:function(a){var b=this,c=j.sendRequest(this.providerUrl,{url:encodeURIComponent(a.url)},a.callback,function(){a.errorCallback("fetchingFailed")});a.cancel=function(){c.cancel();b.fire("requestCanceled",a)}},_handleResponse:function(a){var b={url:a.url,html:"",response:a.response};if(!1!==this.fire("handleResponse",b))return a.task&&a.task.done(),this._setContent(a.url,b.html),!0;a.errorCallback(b.errorMessage);return!1},_handleError:function(a,b){a.task&&(a.task.cancel(),a.noNotifications|| +e.showNotification(this.getErrorMessage(b,a.url),"warning"))},_responseToHtml:function(a,b){return"photo"==b.type?'<img src="'+CKEDITOR.tools.htmlEncodeAttr(b.url)+'" alt="'+CKEDITOR.tools.htmlEncodeAttr(b.title||"")+'" style="max-width:100%;height:auto" />':"video"==b.type||"rich"==b.type?b.html:null},_setContent:function(a,b){this.setData("url",a);this.element.setHtml(b)},_createTask:function(){if(!c||c.isFinished())c=new CKEDITOR.plugins.notificationAggregator(e,d.fetchingMany,d.fetchingOne),c.on("finished", +function(){c.notification.hide()});return c.createTask()},_cacheResponse:function(a,b){this._cache[a]=b},_getCachedResponse:function(a){return this._cache[a]}}},_jsonp:j}})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/embedsemantic/icons/embedsemantic.png b/static/ckeditor/ckeditor/plugins/embedsemantic/icons/embedsemantic.png new file mode 100644 index 0000000000..9a9a73568e Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/embedsemantic/icons/embedsemantic.png differ diff --git a/static/ckeditor/ckeditor/plugins/embedsemantic/icons/hidpi/embedsemantic.png b/static/ckeditor/ckeditor/plugins/embedsemantic/icons/hidpi/embedsemantic.png new file mode 100644 index 0000000000..97dc754758 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/embedsemantic/icons/hidpi/embedsemantic.png differ diff --git a/static/ckeditor/ckeditor/plugins/embedsemantic/plugin.js b/static/ckeditor/ckeditor/plugins/embedsemantic/plugin.js new file mode 100644 index 0000000000..703e019a59 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/embedsemantic/plugin.js @@ -0,0 +1,7 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){CKEDITOR.plugins.add("embedsemantic",{icons:"embedsemantic",hidpi:!0,requires:"embedbase",onLoad:function(){this.registerOembedTag()},init:function(a){var b=CKEDITOR.plugins.embedBase.createWidgetBaseDefinition(a),d=b.init;CKEDITOR.tools.extend(b,{dialog:"embedBase",button:a.lang.embedbase.button,allowedContent:"oembed",requiredContent:"oembed",styleableElements:"oembed",providerUrl:new CKEDITOR.template(a.config.embed_provider||"//ckeditor.iframe.ly/api/oembed?url={url}&callback={callback}"), +init:function(){var e=this;d.call(this);this.once("ready",function(){this.data.loadOnReady&&this.loadContent(this.data.url,{callback:function(){e.setData("loadOnReady",!1);a.fire("updateSnapshot")}})})},upcast:function(a,b){if("oembed"==a.name){var c=a.children[0];if(c&&c.type==CKEDITOR.NODE_TEXT&&c.value)return b.url=c.value,b.loadOnReady=!0,c=new CKEDITOR.htmlParser.element("div"),a.replaceWith(c),c.attributes["class"]=a.attributes["class"],c}},downcast:function(a){var b=new CKEDITOR.htmlParser.element("oembed"); +b.add(new CKEDITOR.htmlParser.text(this.data.url));a.attributes["class"]&&(b.attributes["class"]=a.attributes["class"]);return b}},!0);a.widgets.add("embedSemantic",b)},registerOembedTag:function(){var a=CKEDITOR.dtd,b;a.oembed={"#":1};for(b in a)a[b].div&&(a[b].oembed=1)}})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/CHANGELOG.md b/static/ckeditor/ckeditor/plugins/exportpdf/CHANGELOG.md new file mode 100644 index 0000000000..13ebe74ef9 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/CHANGELOG.md @@ -0,0 +1,54 @@ +# CKEditor 4 Export to PDF Plugin Changelog + +## ckeditor4-plugin-exportpdf 1.0.3 + +Other Changes: + +* Updated test files. + +## ckeditor4-plugin-exportpdf 1.0.2 + +Other Changes: + +* Updated year in license headers. + +## ckeditor4-plugin-exportpdf 1.0.1 + +Other Changes: + +* Improved external CSS support for [Classic Editor](https://ckeditor.com/docs/ckeditor4/latest/examples/classic.html) by handling exceptions and displaying convenient [error messages](https://ckeditor.com/docs/ckeditor4/latest/guide/dev_errors.html#exportpdf-stylesheets-incaccessible). + +## ckeditor4-plugin-exportpdf 1.0.0 + +The first stable release of the CKEditor 4 WYSIWYG Editor Export to PDF plugin. After a few months of the beta phase, testing and listening to community feedback, the CKEditor 4 Export to PDF plugin is stable and can be used with full confidence. Enjoy! + +New Features: + +* Introduced access control mechanism. The plugin now can be configured with additional [exportPdf_tokenUrl](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-exportPdf_tokenUrl) option to allow commercial use. + +## ckeditor4-plugin-exportpdf 0.1.2 + +Other Changes: + +* Improved [plugin API documentation](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-exportPdf_fileName). +* Updated Export to PDF plugin npm readme to link to the [official plugin documentation](https://ckeditor.com/docs/ckeditor4/latest/features/exporttopdf.html). + +## ckeditor4-plugin-exportpdf 0.1.1 + +Other Changes: + +* Renamed the Export to PDF plugin button from `exportPdf` to `ExportPdf`. The `ExportPdf` name should now be used while setting up a custom toolbar with the [CKEDITOR.config.toolbar](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-toolbar) configuration option. + +## ckeditor4-plugin-exportpdf 0.1.0 + +The first beta release of the CKEditor 4 Export to PDF plugin. + +This plugin allows you to easily print your WYSIWYG editor content to a PDF file. When enabled, this feature sends the content of your editor together with the styles that are used to display it to the CKEditor Cloud Services HTML to PDF converter service. The service then generates a PDF document that can be downloaded by the user. + +Available features: + +* Exporting HTML content from CKEditor 4 WYSIWYG editor to PDF with a single click. +* Setting a custom name for the generated PDF file. +* Handling relative image paths. +* Changing the appearance of the PDF document (like margins, text styling, custom headers and footers etc.) with custom CSS styles. +* Pre-processing HTML content via synchronous and asynchronous code before the generation of the PDF file. diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/LICENSE.md b/static/ckeditor/ckeditor/plugins/exportpdf/LICENSE.md new file mode 100644 index 0000000000..3140b390cb --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/LICENSE.md @@ -0,0 +1,18 @@ +Software License Agreement +========================== + +**CKEditor 4 Export to PDF plugin** (https://ckeditor.com/ckeditor-4/)<br> +Copyright (c) 2003-2021, [CKSource](http://cksource.com) Frederico Knabben. All rights reserved. + +CKEditor 4 Export to PDF plugin is licensed under a commercial license and is protected by copyright law. +For more details about available licensing options please contact us at sales@cksource.com. + +Sources of Intellectual Property Included in CKEditor 4 export to PDF +--------------------------------------------------------------------- + +Where not otherwise indicated, all CKEditor 4 Export to PDF plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. + +Trademarks +---------- + +**CKEditor** is a trademark of [CKSource](http://cksource.com) Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders. diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/README.md b/static/ckeditor/ckeditor/plugins/exportpdf/README.md new file mode 100644 index 0000000000..9425407593 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/README.md @@ -0,0 +1,102 @@ +# CKEditor 4 Export to PDF Plugin + +The **Export to PDF** CKEditor 4 plugin allows you to easily print the WYSIWYG editor content to a PDF file. When enabled, this feature sends the content of your editor together with the styles that are used to display it to the CKEditor Cloud Services HTML to PDF converter service. The service then generates a PDF document that can be downloaded by the user. + +Thanks to this plugin, it takes exactly one button click to get a PDF file with content formatted in the same way as the one visible in CKEditor 4. + +CKEditor 4 **Export to PDF** also allows various customizations like changing the page size and margin, setting additional styling, adding custom headers and footers and pre-processing content. This gives great flexibility and control over the PDF output and allows to keep all the PDF documents consistent when it comes to styling. + +This is a premium feature. Please [contact us](https://ckeditor.com/contact/) if you would like to purchase a license. Let us know if you have any feedback or questions! You can also sign up for the [CKEditor Premium Features 30-day Free Trial](https://orders.ckeditor.com/trial/premium-features). + +If this feature is used without authorization, the resulting documents will be watermarked. + +![](https://c.cksource.com/a/1/img/npm/ckeditor4-pdf-export.gif) + +## Getting Started + +### Using with official CKEditor 4 presets + +Starting with CKEditor 4 version `4.15.0`, **Export to PDF** plugin is included in `standard-all`, `full` and `full-all` official presets. The `full` and `full-all` presets have the plugin active by default while for `standard-all` it needs to be enabled with the [`config.extraPlugins`](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-extraPlugins) configuration option: + +```js +CKEDITOR.replace( 'editor', { + extraPlugins: 'exportpdf' +} ); +``` + +### Installation from npm + +To instal the plugin via npm, simply run: + +```bash +npm i ckeditor4-plugin-exportpdf +``` + +Then add the plugin to your CKEditor 4 instance with the [`addExternal()` method](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_plugins.html#method-addExternal): + +```js +CKEDITOR.plugins.addExternal( 'exportpdf', './node_modules/ckeditor4-plugin-exportpdf/' ); +``` + +If you prefer not to link to the `node_modules` folder directly, you may simply copy the entire `./node_modules/ckeditor4-plugin-exportpdf/` directory as `ckeditor/plugins/exportpdf/` and add it with the [`config.extraPlugins`](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-extraPlugins) configuration option: + +```js +CKEDITOR.replace( 'editor', { + extraPlugins: 'exportpdf' +} ); +``` + +### Other Installation Methods + +You can also use the [CKEditor 4 Add-ons repository](https://ckeditor.com/cke4/addons/plugins/all) to obtain the plugin via: + +* [Custom build with online builder](https://ckeditor.com/cke4/builder) +* [Manual download](https://ckeditor.com/cke4/addon/exportpdf) + +Refer to [Export to PDF installation documentation](https://ckeditor.com/docs/ckeditor4/latest/features/exporttopdf.html#installation) for more details. If you are having trouble setting up the Export to PDF plugin, please [contact us](https://ckeditor.com/contact/). + +### Setting up a license key + +If you have a commercial license for **Export to PDF** plugin, [exportPdf_tokenUrl](https://ckeditor.com/docs/ckeditor4/latest/api/CKEDITOR_config.html#cfg-exportPdf_tokenUrl) configuration option should be set to remove watermark from generated documents: + +```js +CKEDITOR.replace( 'editor', { + exportPdf_tokenUrl: 'https://example.com/cs-token-endpoint' +} ); +``` + +This value is unique for each customer and can be found in the [CKEditor Ecosystem dashboard](https://dashboard.ckeditor.com). + +This is all. If you are having trouble in setting up Export to PDF plugin, please [contact us](https://ckeditor.com/contact/). + +## Features + +The CKEditor 4 Export to PDF plugin is really simple to use and works out-of-the-box. It does not require any additional configuration and due to its flexible nature, it covers a lot of cases internally while also providing an easy way to [customize output PDF files](https://ckeditor.com/docs/ckeditor4/latest/features/exporttopdf.html#configuration). + +The most important features are: + +* Exporting HTML content from CKEditor 4 WYSIWYG editor to PDF with a single click. +* [Setting a custom name](https://ckeditor.com/docs/ckeditor4/latest/features/exporttopdf.html#setting-dynamic-file-name) for the generated PDF file. +* [Handling relative image paths](https://ckeditor.com/docs/ckeditor4/latest/features/exporttopdf.html#relative-vs-absolute-urls). +* [Changing the appearance of the PDF document](https://ckeditor.com/docs/ckeditor4/latest/features/exporttopdf.html#custom-css-rules) (like margins, text styling, custom headers and footers etc.) with custom CSS styles. +* [Pre-processing HTML content](https://ckeditor.com/docs/ckeditor4/latest/features/exporttopdf.html#data-preprocessing) via synchronous and asynchronous code before the generation of the PDF file. + +## Browser and CKEditor 4 Support + +The CKEditor 4 Export to PDF plugin works in all the browsers [supported by CKEditor 4](https://ckeditor.com/docs/ckeditor4/latest/guide/dev_browsers.html) except for Internet Explorer versions older than version 11. The plugin is compatible with CKEditor 4 versions starting from `4.6.1`. + +## Demo + +See the working ["Exporting editor content to PDF"](https://ckeditor.com/docs/ckeditor4/latest/examples/exporttopdf.html) sample that showcases printing your HTML content to a PDF file. + +## License + +**CKEditor 4 Export to PDF plugin** (https://ckeditor.com/ckeditor-4/)<br> +Copyright (c) 2003-2021, [CKSource](http://cksource.com) Frederico Knabben. All rights reserved. + +CKEditor 4 export to PDF plugin is licensed under a commercial license and is protected by copyright law. +For more details about available licensing options please contact us at sales@cksource.com. + +### Trademarks + +**CKEditor** is a trademark of [CKSource](http://cksource.com) Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders. diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/plugindefinition.js b/static/ckeditor/ckeditor/plugins/exportpdf/plugindefinition.js new file mode 100644 index 0000000000..5f282702bb --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/plugindefinition.js @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/_helpers/tools.js b/static/ckeditor/ckeditor/plugins/exportpdf/tests/_helpers/tools.js new file mode 100644 index 0000000000..681a653036 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/_helpers/tools.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +(function(){window.exportPdfUtils={useXHR:function(b,a){var c=sinon.useFakeXMLHttpRequest(),d;c.onCreate=function(a){d=a};b.execCommand("exportPdf");a&&a(d);c.restore()},getDefaultConfig:function(b,a){return CKEDITOR.tools.object.merge({extraPlugins:"exportpdf",exportPdf_appId:"cke4-tests-"+b},a)},initManualTest:function(){bender.loadExternalPlugin("exportpdf","/apps/plugin/");bender.tools.ignoreUnsupportedEnvironment("exportpdf")},toAbsoluteUrl:function(b,a){return(a?a:window.location.origin)+b}}})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/authentication.js b/static/ckeditor/ckeditor/plugins/exportpdf/tests/authentication.js new file mode 100644 index 0000000000..1d6f9feb7b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/authentication.js @@ -0,0 +1,6 @@ +(function(){bender.loadExternalPlugin("exportpdf","/apps/plugin/");CKEDITOR.plugins.load("exportpdf",function(){function d(a,c){var b=exportPdfUtils.getDefaultConfig("unit",a||{});bender.editorBot.create({name:"editor"+Date.now(),config:b,startupData:"\x3cp\x3eHello World!\x3c/p\x3e"},function(a){c&&c(a.editor)})}var b=function(){var a=sinon.fakeServer.create(),c=0;a.respondWith(function(a){"/incremental_token"===a.url?(a.respond(200,{},"sample-token-value"+c),c+=1):"/empty-token"===a.url?a.respond(200, +{},""):a.respond(200,{},"sample-token-value")});return a}(),e;bender.test({setUp:function(){bender.tools.ignoreUnsupportedEnvironment("exportpdf");e=sinon.stub(CKEDITOR.plugins.exportpdf,"downloadFile")},tearDown:function(){e.restore()},"test token is fetched if tokenUrl is correct":function(){d({exportPdf_tokenUrl:"/custom-url"},function(a){a.on("exportPdf",function(a){assert.areEqual(a.data.token,"sample-token-value","Token value is incorrect.")},null,null,17);b.respond();a.execCommand("exportPdf"); +b.respond()})},"test authentication header is added if token is provided":function(){d({exportPdf_tokenUrl:"/custom-url"},function(a){b.respond();a.execCommand("exportPdf");b.respond();assert.areEqual("sample-token-value",b.requests[b.requests.length-1].requestHeaders.Authorization,"Authorization token was not set properly.")})},"test console.warn is called if tokenUrl is not provided":function(){CKEDITOR.once("log",function(a){a.cancel();assert.areEqual("exportpdf-no-token-url",a.data.errorCode, +"There should be URL error log.")});d({exportPdf_tokenUrl:""})},"test console.warn is called on POST request if token is empty":function(){var a=CKEDITOR.on("log",function(c){"exportpdf-no-token"===c.data.errorCode&&(c.cancel(),CKEDITOR.removeListener("log",a),assert.areEqual("exportpdf-no-token",c.data.errorCode,"`exportpdf-no-token` should occur."))});d({exportPdf_tokenUrl:"/empty-token"},function(a){b.respond();a.execCommand("exportPdf");b.respond()})},"test console.warn is called on POST request if token was not fetched at all":function(){var a= +CKEDITOR.on("log",function(c){"exportpdf-no-token"===c.data.errorCode&&(c.cancel(),CKEDITOR.removeListener("log",a),assert.areEqual("exportpdf-no-token",c.data.errorCode,"`exportpdf-no-token` should occur."))});d({exportPdf_tokenUrl:"/custom-url"},function(a){a.execCommand("exportPdf");b.respond()})},"test token refreshes in the declared intervals":function(){CKEDITOR.once("instanceCreated",function(a){a.editor.exportPdfTokenInterval=200});d({exportPdf_tokenUrl:"/incremental_token"},function(a){b.respond(); +setTimeout(function(){resume(function(){b.respond();a.on("exportPdf",function(a){assert.areNotSame(a.data.token,"sample-token-value0","Token was not refreshed.")},null,null,17);a.execCommand("exportPdf");b.respond()})},500);wait()})},"test file is downloaded also without token":function(){d({exportPdf_tokenUrl:"/empty-token"},function(a){b.respond();a.execCommand("exportPdf");b.respond();sinon.assert.calledOnce(e);assert.pass()})}})})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/exportpdf.js b/static/ckeditor/ckeditor/plugins/exportpdf/tests/exportpdf.js new file mode 100644 index 0000000000..8fbc4cfdbb --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/exportpdf.js @@ -0,0 +1,10 @@ +(function(){bender.loadExternalPlugin("exportpdf","/apps/plugin/");CKEDITOR.plugins.load("exportpdf",function(){bender.test({setUp:function(){bender.tools.ignoreUnsupportedEnvironment("exportpdf")},"test data is correct at read and send stages":function(){bender.editorBot.create({name:"editor1",config:exportPdfUtils.getDefaultConfig("unit")},function(c){var b=c.editor;c.setHtmlWithSelection('\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e^');b.once("exportPdf",function(a){assert.areEqual(a.data.html, +b.getData(),"Data from editor is incorrect.");assert.isTrue(CKEDITOR.tools.isEmpty(a.data.options),"`options` object should be initially empty.")});b.once("exportPdf",function(a){a.cancel();assert.areEqual('\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e'+b.getData()+"\x3c/div\x3e",a.data.html,"Preprocessed data sent to endpoint is incorrect.");assert.isNotNull(a.data.css,"CSS should be attached.")},null,null,16);b.execCommand("exportPdf")})},"test options provided via config":function(){bender.editorBot.create({name:"editor2", +config:exportPdfUtils.getDefaultConfig("unit",{exportPdf_options:{format:"A6"}})},function(c){var b=c.editor;c.setHtmlWithSelection('\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e^');b.once("exportPdf",function(a){a.cancel();assert.areEqual(a.data.options.format,"A6")});b.execCommand("exportPdf")})},"test html changed via event":function(){bender.editorBot.create({name:"editor3",config:exportPdfUtils.getDefaultConfig("unit")},function(c){var b=c.editor;c.setHtmlWithSelection('\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e^'); +b.once("exportPdf",function(a){a.cancel();assert.areEqual(a.data.html,"")});b.once("exportPdf",function(a){assert.areNotEqual(a.data.html,"");a.data.html=""},null,null,1);b.execCommand("exportPdf")})},"test options changed via event":function(){bender.editorBot.create({name:"editor4",config:exportPdfUtils.getDefaultConfig("unit")},function(c){var b=c.editor;c.setHtmlWithSelection('\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e^');b.once("exportPdf",function(a){a.cancel();assert.areEqual(a.data.options.format, +"A5")});b.once("exportPdf",function(a){a.data.options.format="A5"},null,null,1);b.execCommand("exportPdf")})},"test html changed via event asynchronously":function(){bender.editorBot.create({name:"editor5",config:exportPdfUtils.getDefaultConfig("unit")},function(c){var b=c.editor;c.setHtmlWithSelection('\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e^');b.on("exportPdf",function(a){a.cancel();a.data.asyncDone&&(resume(),assert.areEqual(a.data.html,"\x3cp\x3eContent filtered!\x3c/p\x3e"),delete a.data.asyncDone, +assert.isUndefined(a.data.asyncDone))});b.on("exportPdf",function(a){a.data.asyncDone||setTimeout(function(){a.data.html="\x3cp\x3eContent filtered!\x3c/p\x3e";a.data.asyncDone=!0;b.fire("exportPdf",a.data)},1E3)},null,null,1);b.execCommand("exportPdf");wait()})},"test options changed via event asynchronously":function(){bender.editorBot.create({name:"editor6",config:exportPdfUtils.getDefaultConfig("unit",{exportPdf_options:{format:"A5"}})},function(c){var b=c.editor;c.setHtmlWithSelection('\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e^'); +b.on("exportPdf",function(a){a.cancel();a.data.asyncDone&&(resume(),assert.areEqual(a.data.options.format,"A4"),delete a.data.asyncDone,assert.isUndefined(a.data.asyncDone))});b.on("exportPdf",function(a){a.data.asyncDone||setTimeout(function(){a.data.options.format="A4";a.data.asyncDone=!0;b.fire("exportPdf",a.data)},1E3)},null,null,1);b.execCommand("exportPdf");wait()})},"test default CKEditor config":function(){bender.editorBot.create({name:"editor7",config:exportPdfUtils.getDefaultConfig("unit")}, +function(c){CKEDITOR.config.exportPdf_isDev?assert.areEqual(c.editor.config.exportPdf_service,"https://pdf-converter.cke-cs-staging.com/v1/convert","Default dev endpoint is incorrect."):assert.areEqual(c.editor.config.exportPdf_service,"https://pdf-converter.cke-cs.com/v1/convert","Default prod endpoint is incorrect.");assert.areEqual(c.editor.config.exportPdf_fileName,"ckeditor4-export-pdf.pdf","Default file name is incorrect.")})},"test inaccessible stylesheets are handled correctly":function(){bender.editorBot.create({name:"editor8", +config:exportPdfUtils.getDefaultConfig("unit",{contentsCss:"https://cdn.ckeditor.com/4.16.0/full-all/samples/css/samples.css"})},function(c){var b=c.editor,a=!1,d=CKEDITOR.on("log",function(b){"exportpdf-stylesheets-inaccessible"===b.data.errorCode&&(b.cancel(),CKEDITOR.removeListener("log",d),a=!0)});c.setHtmlWithSelection('\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e^');b.once("exportPdf",function(b){b.cancel();resume(function(){a?assert.pass():assert.fail("No errors thrown while accessing stylesheets rules.")})}, +null,null,19);CKEDITOR.tools.setTimeout(function(){b.execCommand("exportPdf")},1E3);wait()})}})})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/configfilename.html b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/configfilename.html new file mode 100644 index 0000000000..ec9bf1bd60 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/configfilename.html @@ -0,0 +1,27 @@ +<div id="editor1"> + <p>My filename should be 'ckeditor4-export-pdf.pdf'.</p> +</div> + +<div id="editor2"> + <p>And mine - 'different-name.pdf'.</p> +</div> + +<div id="editor3"> + <h1>Beautiful title</h1> +</div> + +<script> + exportPdfUtils.initManualTest(); + + CKEDITOR.replace( 'editor1', exportPdfUtils.getDefaultConfig( 'manual' ) ); + + CKEDITOR.replace( 'editor2', exportPdfUtils.getDefaultConfig( 'manual', { + exportPdf_fileName: 'different-name.pdf', + } ) ); + + var editor3 = CKEDITOR.replace( 'editor3', exportPdfUtils.getDefaultConfig( 'manual', { + exportPdf_fileName: function() { + return editor3.editable().findOne( 'h1' ).getText() + '.pdf'; + } + } ) ); +</script> diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/configfilename.md b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/configfilename.md new file mode 100644 index 0000000000..c63e437c04 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/configfilename.md @@ -0,0 +1,46 @@ +@bender-tags: exportpdf, feature, 1 +@bender-ui: collapsed +@bender-include: ../_helpers/tools.js +@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, notification, format + +1. Click `Export to PDF` button (the one next to the `Source` button) in the first editor. +1. Wait for the file to download. + + **Expected:** + + File with `ckeditor4-export-pdf.pdf` name (possibly with number if file already existed) was downloaded. + + **Unexpected:** + + File was not downloaded or its name is incorrect. + +1. Do the same in the second editor. + + **Expected:** + + File with `different-name.pdf` name (possibly with number if file already existed) was downloaded. + + **Unexpected:** + + File was not downloaded or its name is incorrect. + +1. Repeat for the third editor. + + **Expected:** + + File with 'Beautiful title.pdf' name (possibly with number if file already existed) was downloaded. + + **Unexpected:** + + File was not downloaded or its name is incorrect. + +1. Change text in the third editor to `New title` (**important:** it has to remain a `<h1>` element). +1. Click and download PDF again. + + **Expected:** + + Name of a new file is 'New title.pdf'. + + **Unexpected:** + + Name is the same as before or there is an error. diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/emptyeditor.html b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/emptyeditor.html new file mode 100644 index 0000000000..0e6822e560 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/emptyeditor.html @@ -0,0 +1,18 @@ +<div id="editor1"> +</div> + +<div id="editor2"> + <p>My content and wrapper will be deleted.</p> +</div> + +<script> + exportPdfUtils.initManualTest(); + + CKEDITOR.replace( 'editor1', exportPdfUtils.getDefaultConfig( 'manual' ) ); + + var editor2 = CKEDITOR.replace( 'editor2', exportPdfUtils.getDefaultConfig( 'manual' ) ); + + editor2.on( 'exportPdf', function( evt ) { + evt.data.html = ''; + }, null, null, 16 ); +</script> diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/emptyeditor.md b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/emptyeditor.md new file mode 100644 index 0000000000..ec09487024 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/emptyeditor.md @@ -0,0 +1,34 @@ +@bender-tags: exportpdf, feature, 11 +@bender-ui: collapsed +@bender-include: ../_helpers/tools.js +@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, notification + +**Note:** At the beginning open the console. + +1. Click `Export to PDF` button (the one next to the `Source` button) in the first editor. +1. Wait for the file to download. +1. Open the file. + + **Expected:** + + * Empty file was downloaded. + * No errors in console. + + **Unexpected:** + + * File wasn't downloaded. + * File was downloaded but can't be opened. + * Error in the console appeared. + +1. Click `Export to PDF` button in the second editor. + + **Expected:** + + * File wasn't downloaded. + * The notification with error appeared in the editor. + * There is an error message in the console. + + **Unexpected:** + + * File was downloaded and can't be opened. + * Success notification was displayed. diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/integration.html b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/integration.html new file mode 100644 index 0000000000..0ce17409e0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/integration.html @@ -0,0 +1,148 @@ +<div id="editor"> + <h1 style="text-align:center"><img alt="Bilancino Hotel logo" src="https://ckeditor.com/docs/ckeditor4/latest/examples/assets/image/bilancino-logo.png" style="float:right;height:75px;width:75px;" /><span style="font-family:Georgia,serif">The Flavorful Tuscany Meetup</span></h1> + + <h2 style="text-align:center"><span style="font-family:Georgia,serif"><span style="color:#2980b9">Welcome letter</span></span></h2> + + <p>Dear Guest,</p> + + <p>We are delighted to welcome you to the annual <em>Flavorful Tuscany Meetup</em> and hope you will enjoy the programme as well as your stay at the <a href="https://ckeditor.com">Bilancino Hotel</a>.</p> + + <p>Please find attached the full schedule of the event.</p> + + <blockquote> + <p>The annual Flavorful Tuscany meetups are always a culinary discovery. You get the best of Tuscan flavors during an intense one-day stay at one of the top hotels of the region. All the sessions are lead by top chefs passionate about their profession. I would certainly recommend to save the date in your calendar for this one!</p> + + <p>Angelina Calvino, food journalist</p> + </blockquote> + + <p>Please arrive at the <a href="https://ckeditor.com">Bilancino Hotel</a> reception desk at least <strong>half an hour earlier</strong> to make sure that the registration process goes as smoothly as possible.</p> + + <p>We look forward to welcoming you to the event.</p> + + <p><img alt="Victoria Valc signature" src="https://ckeditor.com/docs/ckeditor4/latest/examples/assets/image/signature.png" style="height:101px;width:180px" /></p> + + <p><span style="font-size:16px"><strong>Victoria Valc</strong></span></p> + + <p><strong>Event Manager<br /> + Bilancino Hotel</strong></p> + + <p> </p> + + <div style="page-break-after: always"><span style="display:none"> </span></div> + + <p> </p> + + <h2 style="text-align:center"><span style="font-family:Georgia,serif"><span style="color:#2980b9">The Flavorful Tuscany Meetup Schedule</span></span></h2> + + <table border="1" cellspacing="0" style="border-collapse:collapse; width:597px"> + <thead> + <tr> + <th colspan="2" style="background-color:#999999"><span style="color:#ffffff">Saturday, July 14</span></th> + </tr> + </thead> + <tbody> + <tr> + <td style="background-color:#e6e6e6; text-align:center">9:30 AM - 11:30 AM</td> + <td> + <p><strong>Americano vs. Brewed - “know your coffee”</strong> with: </p> + + <ul> + <li>Giulia Bianchi</li> + <li>Stefano Garau</li> + <li>Giuseppe Russo</li> + </ul> + </td> + </tr> + <tr> + <td style="background-color:#e6e6e6; text-align:center">1:00 PM - 3:00 PM</td> + <td> + <p><strong>Pappardelle al pomodoro</strong> - live cooking <sup>1</sup></p> + + <p>Incorporate the freshest ingredients <br /> + with Rita Fresco</p> + </td> + </tr> + <tr> + <td style="background-color:#e6e6e6; text-align:center">5:00 PM - 8:00 PM</td> + <td> + <p><strong>Tuscan vineyards at a glance</strong> - wine-tasting <br /> + with Frederico Riscoli</p> + </td> + </tr> + </tbody> + </table> + + <p> </p> + + <p><sup>1</sup> <em><span style="background-color:#98e64c">Registration for the live cooking session is required as seats are limited.</span></em></p> + + <p> </p> + + <hr> + + <h2 style="text-align: center;"><span style="color:#2980b9"><span style="font-family:Georgia,serif">Driving directions from the airport</span></span></h2> + + <ol> + <li>Head southeast on R138 toward Nassau St.</li> + <li>Follow R138 and R148 to Bridgefoot St/R804. + <ol> + <li>Use the left 2 lanes to turn slightly left onto Lincoln Pl/R138.</li> + <li>Turn left onto Westland Row/R118/R138.</li> + <li>Use any lane to turn left onto Pearse St/R118/R138/R802.</li> + <li>Continue to follow R138/R802.</li> + </ol> + </li> + <li>Turn left onto Burgh Quay/George's Quay/R105/R138.</li> + <li>Continue onto Aston Quay/R148. + <ul> + <li>Continue to follow R148.</li> + </ul> + </li> + <li>Turn left onto Bridgefoot St/R804. + <ul> + <li>Continue to follow R804.</li> + </ul> + </li> + <li>After approximately 2 minutes, Bilancino Hotel will be on your left.</li> + </ol> + + <p> </p> +</div> + +<div id="preview"> + <style> + #preview iframe { + width: 840px; + height: 500px; + } + </style> + + <h2>Document preview (based on send HTML and CSS)</h2> +</div> + +<script> + exportPdfUtils.initManualTest(); + + var editor = CKEDITOR.replace( 'editor', exportPdfUtils.getDefaultConfig( 'manual', { + width: 840, + height: 400 + } ) ); + + editor.on( 'exportPdf', function( evt ) { + var oldIframe = document.querySelector( '#preview iframe' ), + html; + + if ( oldIframe && oldIframe.parentNode ) { + oldIframe.parentNode.removeChild( oldIframe ); + } + + // Align iframe HTML with the one on the endpoint side by adding explicit encoding and DOCTYPE. + html = '<!DOCTYPE html><html><head><style>' + evt.data.css + '</style><meta charset="UTF-8"></head><body>' + evt.data.html + '</body></html>'; + + var iframe = document.createElement( 'iframe' ); + document.querySelector( '#preview' ).appendChild( iframe ); + iframe.contentWindow.document.open(); + iframe.contentWindow.document.write( html ); + iframe.contentWindow.document.close(); + }, null, null, 16 ); +</script> diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/integration.md b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/integration.md new file mode 100644 index 0000000000..7d3cf74954 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/integration.md @@ -0,0 +1,12 @@ +@bender-tags: exportpdf, feature, 17 +@bender-ui: collapsed +@bender-include: ../_helpers/tools.js +@bender-ckeditor-plugins: basicstyles, bidi, blockquote, clipboard, colorbutton, colordialog, dialogadvtab, elementspath, enterkey, font, format, horizontalrule, htmlwriter, image, indentlist, indentblock, justify, link, list, liststyle, magicline, pagebreak, pastefromgdocs, pastefromlibreoffice, pastefromword, pastetext, specialchar, stylescombo, table, tableselection, tabletools, toolbar, undo, wysiwygarea, sourcearea, resize + +1. Click `Export to PDF` button (the one next to the `Source` button). + +1. Wait for the PDF to download and examine it. + +If you find any bugs, please report them <a href="https://github.com/cksource/ckeditor4-plugin-exportpdf/issues" target="_blank">here</a>. Just remember to check if it isn't <a href="https://github.com/cksource/ckeditor4-plugin-exportpdf/issues?q=is%3Aopen+is%3Aissue+label%3Atype%3Abug" target="_blank">already known</a>. + +When comparing generated PDF to editor contents the best conversion results (close to 1:1 document formatting) can be observed in a Chrome browser. diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/integrations/easyimage.html b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/integrations/easyimage.html new file mode 100644 index 0000000000..88db9f25f5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/integrations/easyimage.html @@ -0,0 +1,27 @@ +<div id="editor"> + <p>Foo bar</p> +</div> + +<div id="tokenValue" style="word-break:break-all;border:1px solid red;"></div> + +<script> + exportPdfUtils.initManualTest(); + + var editor = CKEDITOR.replace( 'editor', exportPdfUtils.getDefaultConfig( 'manual', { + extraPlugins: 'easyimage,exportpdf', + cloudServices_uploadUrl: 'https://33333.cke-cs.com/easyimage/upload/', + cloudServices_tokenUrl: 'https://33333.cke-cs.com/token/dev/ijrDsqFix838Gh3wGO3F77FSW94BwcLXprJ4APSp3XQ26xsUHTi0jcb1hoBt' + } ) ); + + editor.on( 'instanceReady', function() { + if ( !CKEDITOR.config.exportPdf_tokenUrl ) { + bender.ignore(); + } + } ); + + editor.on( 'exportPdf', function( evt ) { + var value = CKEDITOR.document.findOne( '#tokenValue' ); + + value.setHtml( evt.data.token ); + }, null, null, 17 ); +</script> diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/integrations/easyimage.md b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/integrations/easyimage.md new file mode 100644 index 0000000000..a6cbf08168 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/integrations/easyimage.md @@ -0,0 +1,26 @@ +@bender-tags: exportpdf, feature, 77 +@bender-ui: collapsed +@bender-include: ../../_helpers/tools.js +@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, notification, format, easyimage + +Note: You need the Internet connection to run this test. + +1. Click `Export to PDF` toolbar button. +1. Examine the area in the red frame below. + + **Expected:** There is a long token string in the frame. + + **Unexpected:** Frame is empty or says 'undefined'. + +1. Wait for the file to download and examine it. + + **Expected:** No information about being created with CKEditor was added. + + **Unexpected:** There is an additional note about CKEditor at the bottom of page. + +1. Upload an image. +1. Examine browser console. + + **Expected:** There are no errors or warnings. + + **Unexpected:** Any error or warning concerning `Export to PDF` or `Easy Image` occurred. diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/notifications.html b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/notifications.html new file mode 100644 index 0000000000..ddc91bb004 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/notifications.html @@ -0,0 +1,19 @@ +<div id="editor1"> + <p>Hello world!</p> +</div> + +<div id="editor2"> + <p>Hello world!</p> +</div> + +<script> + exportPdfUtils.initManualTest(); + + CKEDITOR.replace( 'editor1', exportPdfUtils.getDefaultConfig( 'manual', { + extraPlugins: 'exportpdf' + } ) ); + + CKEDITOR.replace( 'editor2', exportPdfUtils.getDefaultConfig( 'manual', { + removePlugins: 'notification' + } ) ); +</script> diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/notifications.md b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/notifications.md new file mode 100644 index 0000000000..ececf7bd39 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/notifications.md @@ -0,0 +1,36 @@ +@bender-tags: exportpdf, feature, 4 +@bender-ui: collapsed +@bender-include: ../_helpers/tools.js +@bender-ckeditor-plugins: wysiwygarea, toolbar, notification + +1. Read the expected results first as there will be a sequence of things happening quickly to examine. +1. Click `Export to PDF` button in the first editor. + + **Expected:** + + * Button is disabled after click. + * Nofitication bar of `info` type appeared. + * When download started, notification type changed to `success`. + * Once download finished, button is enabled again. + * After 3 seconds notification bar disappeared. + + **Unexpected:** + + * Button wasn't disabled. + * Button wasn't enabled after download started. + * Notifications were incorrect. + * Notification bar didn't disappear. + +1. Click `Export to PDF` button in the second editor. + + **Expected:** + + * Neither notifications nor alerts appeared. + * File was downloaded. + * Button was disabled for the time between click and download. + + **Unexpected:** + + * Notification or browser alert appeared. + * File wasn't downloaded. + * Button wasn't disabled for the time between click and download. diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/notificationsasync.html b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/notificationsasync.html new file mode 100644 index 0000000000..c1ee1efe33 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/notificationsasync.html @@ -0,0 +1,45 @@ +<div id="editor1"> + <p>Export to PDF test 1.</p> +</div> + +<div id="editor2"> + <p>Export to PDF test 2.</p> +</div> + +<script> + exportPdfUtils.initManualTest(); + + var editor1 = CKEDITOR.replace( 'editor1', exportPdfUtils.getDefaultConfig( 'manual' ) ); + + editor1.on( 'exportPdf', function( evt ) { + if ( !evt.data.asyncDone ) { + setTimeout( function() { + evt.data.html = '<p>Content filtered!</p>'; + evt.data.asyncDone = true; + + editor1.fire( 'exportPdf', evt.data ); + }, 2000 ); + + evt.cancel(); + } else { + delete evt.data.asyncDone; + } + }, null, null, 1 ); + + var editor2 = CKEDITOR.replace( 'editor2', exportPdfUtils.getDefaultConfig( 'manual' ) ); + + editor2.on( 'exportPdf', function( evt ) { + if ( !evt.data.asyncDone ) { + setTimeout( function() { + evt.data.html = '<p>Content filtered!</p>'; + evt.data.asyncDone = true; + + editor2.fire( 'exportPdf', evt.data ); + }, 2000 ); + + evt.cancel(); + } else { + delete evt.data.asyncDone; + } + }, null, null, 17 ); +</script> diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/notificationsasync.md b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/notificationsasync.md new file mode 100644 index 0000000000..58ed71d076 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/notificationsasync.md @@ -0,0 +1,27 @@ +@bender-tags: exportpdf, feature, 4 +@bender-ui: collapsed +@bender-include: ../_helpers/tools.js +@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, notification + +1. Click `Export to PDF` button (the one next to the `Source` button) in the first editor. +1. Watch appearing notifications. + + **Expected:** + + * Notification `Processing PDF document...` was visible for about 2 seconds. + * Progress steps were: `0`, `0.5`, `success`. + + **Unexpected:** + + Notification disappeared too fast to be noticable. + +1. Do the same in the second editor. + + **Expected:** + + * Notification `Processing PDF document...` was visible for about 2 seconds. + * Progress steps were: `0.2`, `0.5`, `success`. + + **Unexpected:** + + Notification disappeared too fast to be noticable. diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/paperformat.html b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/paperformat.html new file mode 100644 index 0000000000..ba54fb8d4f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/paperformat.html @@ -0,0 +1,29 @@ +<div id="editor1"> + <p>"Lorem ipsum dolor sit amet, consectetur adipiscing elit, + sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, + quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute + irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. + Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + </p> +</div> + +<div id="editor2"> + <p>"Lorem ipsum dolor sit amet, consectetur adipiscing elit, + sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, + quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute + irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. + Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." + </p> +</div> + +<script> + exportPdfUtils.initManualTest(); + + CKEDITOR.replace( 'editor1', exportPdfUtils.getDefaultConfig( 'manual' ) ); + + CKEDITOR.replace( 'editor2', exportPdfUtils.getDefaultConfig( 'manual', { + exportPdf_options: { + format: 'A6' + } + } ) ); +</script> diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/paperformat.md b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/paperformat.md new file mode 100644 index 0000000000..dd26a0d304 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/paperformat.md @@ -0,0 +1,18 @@ +@bender-tags: exportpdf, bug, 24 +@bender-ui: collapsed +@bender-include: ../_helpers/tools.js +@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, notification + +1. Click `Export to PDF` button (the one next to the `Source` button) in the first editor. +1. Wait for the file to download. +1. Do the same in the second editor. +1. Compare paper format in files. + + **Expected:** + + * First editor produced file in `A4` format (`8.27in x 11.7in`); + * Second editor produced file in `A6` format (`4.13in x 5.83in`). + + **Unexpected:** + + Any file is in different format than intended (e.g. `Letter` - `8.5in x 11in`). diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/readonly.html b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/readonly.html new file mode 100644 index 0000000000..e6ed2cb583 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/readonly.html @@ -0,0 +1,18 @@ + +<div id="editor"> + <p>This editor is read-only.</p> +</div> + +<button id="toggle">Toggle read-only mode</button> + +<script> + exportPdfUtils.initManualTest(); + + var editor = CKEDITOR.replace( 'editor', exportPdfUtils.getDefaultConfig( 'manual', { + readOnly: true + } ) ); + + CKEDITOR.document.getById( 'toggle' ).on( 'click', function() { + editor.setReadOnly( !editor.readOnly ); + } ); +</script> diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/readonly.md b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/readonly.md new file mode 100644 index 0000000000..6f1d72531e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/readonly.md @@ -0,0 +1,28 @@ +@bender-tags: exportpdf, feature, 1 +@bender-ui: collapsed +@bender-include: ../_helpers/tools.js +@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, notification + +1. Examine `Export to PDF` button (the one next to the `Source` button). + + **Expected:** + + Button is clickable. + + **Unexpected:** + + Button is inactive. + +1. Click the button. +1. Wait for the file to download. + + **Expected:** + + File with correct content was downloaded. + + **Unexpected:** + + File was not downloaded or its content is incorrect. + +1. Click `Toggle read-only mode` button. +1. Repeat steps 1-3. diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/stylesheets.html b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/stylesheets.html new file mode 100644 index 0000000000..9e2e67f9ad --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/stylesheets.html @@ -0,0 +1,36 @@ +<h2>Classic Editor</h2> +<textarea id="editor1"> + <span class="badge badge-success">Classic Editor</span> +</textarea> + +<h2>Divarea Editor</h2> +<div id="editor2"> + <span class="badge badge-success">Divarea Editor</span> +</div> + +<h2>Inline Editor</h2> +<div id="editor3" contenteditable="true"> + <span class="badge badge-success">Inline Editor</span> +</div> + +<script> + exportPdfUtils.initManualTest(); + + CKEDITOR.replace( 'editor1', exportPdfUtils.getDefaultConfig( 'manual', { + exportPdf_stylesheets: [ 'https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css' ], + extraPlugins: 'wysiwygarea,exportpdf', + allowedContent: true + } ) ); + + CKEDITOR.replace( 'editor2', exportPdfUtils.getDefaultConfig( 'manual', { + exportPdf_stylesheets: [ 'https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css' ], + extraPlugins: 'divarea,exportpdf', + allowedContent: true + } ) ); + + CKEDITOR.inline( 'editor3', exportPdfUtils.getDefaultConfig( 'manual', { + exportPdf_stylesheets: [ 'https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css' ], + extraPlugins: 'floatingspace,exportpdf', + allowedContent: true + } ) ); +</script> diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/stylesheets.md b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/stylesheets.md new file mode 100644 index 0000000000..3a38ab6fa7 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/stylesheets.md @@ -0,0 +1,19 @@ +@bender-tags: exportpdf, feature, 31 +@bender-ui: collapsed +@bender-include: ../_helpers/tools.js +@bender-ckeditor-plugins: toolbar, basicstyles, notification + +**Note:** This test uses <a href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" target="_blank">Bootstrap CDN</a>. If something goes wrong, check if the link works correctly first. + +1. Use `Export to PDF` button in the first editor. +1. Open generated file. + + **Expected:** + + Text from editor was converted to a green badge. + + **Unexpected:** + + Content is the same as in the editor. + +1. Repeat the same steps for the second and third editor. diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokenfetching.html b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokenfetching.html new file mode 100644 index 0000000000..bd090caf60 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokenfetching.html @@ -0,0 +1,23 @@ +<div id="editor"> + <p>Foo bar</p> +</div> + +<div id="tokenValue" style="word-break:break-all;border:1px solid red;"></div> + +<script> + exportPdfUtils.initManualTest(); + + var editor = CKEDITOR.replace( 'editor', exportPdfUtils.getDefaultConfig( 'manual' ) ); + + editor.on( 'instanceReady', function() { + if ( !CKEDITOR.config.exportPdf_tokenUrl ) { + bender.ignore(); + } + } ); + + editor.on( 'exportPdf', function( evt ) { + var value = CKEDITOR.document.findOne( '#tokenValue' ); + + value.setHtml( evt.data.token ); + }, null, null, 17 ); +</script> diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokenfetching.md b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokenfetching.md new file mode 100644 index 0000000000..08ebf36042 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokenfetching.md @@ -0,0 +1,19 @@ +@bender-tags: exportpdf, feature, 77 +@bender-ui: collapsed +@bender-include: ../_helpers/tools.js +@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, notification, format + +Note: You need the Internet connection to run this test. + +1. Click `Export to PDF` toolbar button. +1. Examine the area in the red frame below. + + **Expected:** There is a long token string in the frame. + + **Unexpected:** Frame is empty or says 'undefined'. + +1. Wait for the file to download and open it. + + **Expected:** No information about being created with CKEditor was added. + + **Unexpected:** There is an additional note about CKEditor at the bottom of page. diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokentwoeditorscorrect.html b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokentwoeditorscorrect.html new file mode 100644 index 0000000000..aaa9d37047 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokentwoeditorscorrect.html @@ -0,0 +1,38 @@ +<h3>Editor 1</h3> +<div id="editor1"> + <p>Foo bar</p> +</div> +<div id="tokenValue1" style="word-break:break-all;border:1px solid red;"></div> + +<h3>Editor 2</h3> +<div id="editor2"> + <p>Foo bar</p> +</div> +<div id="tokenValue2" style="word-break:break-all;border:1px solid red;"></div> + +<script> + exportPdfUtils.initManualTest(); + + var editor1 = CKEDITOR.replace( 'editor1', exportPdfUtils.getDefaultConfig( 'manual', { height: 100 } ) ), + editor2 = CKEDITOR.replace( 'editor2', exportPdfUtils.getDefaultConfig( 'manual', { height: 100 } ) ); + + editor1.on( 'instanceReady', function() { + if ( !CKEDITOR.config.exportPdf_tokenUrl ) { + bender.ignore(); + } + } ); + + editor1.on( 'exportPdf', function( evt ) { + var value = CKEDITOR.document.findOne( '#tokenValue1' ); + + value.setHtml( evt.data.token ); + evt.cancel(); + }, null, null, 17 ); + + editor2.on( 'exportPdf', function( evt ) { + var value = CKEDITOR.document.findOne( '#tokenValue2' ); + + value.setHtml( evt.data.token ); + evt.cancel(); + }, null, null, 17 ); +</script> diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokentwoeditorscorrect.md b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokentwoeditorscorrect.md new file mode 100644 index 0000000000..adf9b34f2e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokentwoeditorscorrect.md @@ -0,0 +1,14 @@ +@bender-tags: exportpdf, feature, 77 +@bender-ui: collapsed +@bender-include: ../_helpers/tools.js +@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, notification, format + +Note: You need the Internet connection to run this test. + +1. Click `Export to PDF` button in both editors. + +1. Examine the area in the red frames below each editor. + + **Expected:** Content of two boxes are two different long strings. + + **Unexpected:** Values in both boxes are the same or one of them says `undefined`. diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokentwoeditorswrong.html b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokentwoeditorswrong.html new file mode 100644 index 0000000000..4fdbc739a1 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokentwoeditorswrong.html @@ -0,0 +1,38 @@ +<h3>Editor 1</h3> +<div id="editor1"> + <p>Foo bar</p> +</div> +<div id="tokenValue1" style="word-break:break-all;border:1px solid red;"></div> + +<h3>Editor 2</h3> +<div id="editor2"> + <p>Foo bar</p> +</div> +<div id="tokenValue2" style="word-break:break-all;border:1px solid red;"></div> + +<script> + exportPdfUtils.initManualTest(); + + var editor1 = CKEDITOR.replace( 'editor1', exportPdfUtils.getDefaultConfig( 'manual', { height: 100 } ) ), + editor2 = CKEDITOR.replace( 'editor2', exportPdfUtils.getDefaultConfig( 'manual', { exportPdf_tokenUrl: '', height: 100 } ) ); + + editor1.on( 'instanceReady', function() { + if ( !CKEDITOR.config.exportPdf_tokenUrl ) { + bender.ignore(); + } + } ); + + editor1.on( 'exportPdf', function( evt ) { + var value = CKEDITOR.document.findOne( '#tokenValue1' ); + + value.setHtml( evt.data.token ); + evt.cancel(); + }, null, null, 17 ); + + editor2.on( 'exportPdf', function( evt ) { + var value = CKEDITOR.document.findOne( '#tokenValue2' ); + + value.setHtml( evt.data.token ); + evt.cancel(); + }, null, null, 17 ); +</script> diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokentwoeditorswrong.md b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokentwoeditorswrong.md new file mode 100644 index 0000000000..a1fd4ff942 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokentwoeditorswrong.md @@ -0,0 +1,14 @@ +@bender-tags: exportpdf, feature, 77 +@bender-ui: collapsed +@bender-include: ../_helpers/tools.js +@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, notification, format + +Note: You need the Internet connection to run this test. + +1. Click `Export to PDF` button in both editors. + +1. Examine the area in the red frames below each editor. + + **Expected:** First box contains token value and the second one `undefined`. + + **Unexpected:** Values in both boxes are the same or none of them is `undefined`. diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokenwithouturl.html b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokenwithouturl.html new file mode 100644 index 0000000000..e2bee1cc9d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokenwithouturl.html @@ -0,0 +1,19 @@ +<div id="editor"> + <p>Foo bar</p> +</div> + +<div id="tokenValue" style="word-break:break-all;border:1px solid red;"></div> + +<script> + exportPdfUtils.initManualTest(); + + var editor = CKEDITOR.replace( 'editor', exportPdfUtils.getDefaultConfig( 'manual', { + exportPdf_tokenUrl: '' + } ) ); + + editor.on( 'exportPdf', function( evt ) { + var value = CKEDITOR.document.findOne( '#tokenValue' ); + + value.setHtml( evt.data.token ); + }, null, null, 17 ); +</script> diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokenwithouturl.md b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokenwithouturl.md new file mode 100644 index 0000000000..472e0e2de1 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/tokenwithouturl.md @@ -0,0 +1,31 @@ +@bender-tags: exportpdf, feature, 77 +@bender-ui: collapsed +@bender-include: ../_helpers/tools.js +@bender-ckeditor-plugins: wysiwygarea, toolbar, basicstyles, notification, format + +Note: You need the Internet connection to run this test. + +1. Open and examine console. + + **Expected:** `exportpdf-no-token-url` warning appeared. + + **Unexpected:** No warning. + +1. Click `Export to PDF` button in the editor. +1. Examine the area in the red frame below. + + **Expected:** Frame has text `undefined`. + + **Unexpected:** There is a long token string in the frame. + +1. Examine console. + + **Expected:** `exportpdf-no-token` warning appeared. + + **Unexpected:** No warning. + +1. Wait for the file to download and open it. + + **Expected:** File contains info about being created with CKEditor. + + **Unexpected:** No copyright info was added. diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/wrongendpoint.html b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/wrongendpoint.html new file mode 100644 index 0000000000..4b5586dfc6 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/wrongendpoint.html @@ -0,0 +1,21 @@ +<div id="editor1"> + <p>Hello world!</p> +</div> + +<div id="editor2"> + <p>Hello world!</p> +</div> + +<script> + exportPdfUtils.initManualTest(); + + CKEDITOR.replace( 'editor1', exportPdfUtils.getDefaultConfig( 'manual', { + extraPlugins: 'exportpdf', + exportPdf_service: 'https://cksource.com' + } ) ); + + CKEDITOR.replace( 'editor2', exportPdfUtils.getDefaultConfig( 'manual', { + removePlugins: 'notification', + exportPdf_service: 'https://cksource.com' + } ) ); +</script> diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/wrongendpoint.md b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/wrongendpoint.md new file mode 100644 index 0000000000..5151462e94 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/manual/wrongendpoint.md @@ -0,0 +1,34 @@ +@bender-tags: exportpdf, feature, 4 +@bender-ui: collapsed +@bender-include: ../_helpers/tools.js +@bender-ckeditor-plugins: wysiwygarea, toolbar, notification + +**Note:** Errors in console during this test are allowed. + +1. Click `Export to PDF` button in the first editor. + + **Expected:** + + * Warning notification with `Error occured.` message appeared. + * Button is clickable. + * File wasn't downloaded. + + **Unexpected:** + + * Notification didn't show up. + * Button wasn't reenabled. + * File was downloaded. + +2. Click `Export to PDF` button in the second editor. + + **Expected:** + + * Alert appeared instead of notification. + * Button is clickable. + * File wasn't downloaded. + + **Unexpected:** + + * Notification didn't show up. + * Button wasn't reenabled. + * File was downloaded. diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/notification.js b/static/ckeditor/ckeditor/plugins/exportpdf/tests/notification.js new file mode 100644 index 0000000000..ebd706d9ed --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/notification.js @@ -0,0 +1,4 @@ +(function(){bender.loadExternalPlugin("exportpdf","/apps/plugin/");CKEDITOR.plugins.load("exportpdf",function(){function c(a,b){var c=a._.notificationArea.notifications[0];assert.areSame(b.message,c.message,"Message should be the same.");assert.areSame(b.type,c.type,"Type should be the same.");assert.areSame(b.progress,c.progress,"Progress should be the same.")}bender.editors={successEditor:{config:exportPdfUtils.getDefaultConfig("unit")},errorEditor:{config:exportPdfUtils.getDefaultConfig("unit")}}; +bender.test({setUp:function(){bender.tools.ignoreUnsupportedEnvironment("exportpdf");sinon.stub(CKEDITOR.plugins.exportpdf,"downloadFile")},tearDown:function(){CKEDITOR.plugins.exportpdf.downloadFile.restore()},"test notifications and progress steps are correct in happy path":function(){var a=this.editors.successEditor;this.editorBots.successEditor.setHtmlWithSelection('\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e^');a.once("exportPdf",function(){c(a,{message:"Processing PDF document...",type:"progress", +progress:0})});a.once("exportPdf",function(){c(a,{message:"Processing PDF document...",type:"progress",progress:.2})},null,null,16);exportPdfUtils.useXHR(a,function(b){b.addEventListener("progress",function(){c(a,{message:"Processing PDF document...",type:"progress",progress:.8})});b.addEventListener("loadend",function(){c(a,{message:"Document is ready!",type:"success",progress:1})});b.respond(200,{},"")})},"test notifications and progress steps are correct in sad path":function(){var a=this.editors.errorEditor; +this.editorBots.errorEditor.setHtmlWithSelection('\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e^');exportPdfUtils.useXHR(a,function(b){var d=sinon.stub(console,"error",function(a){assert.areSame("Validation failed.",a.message,"Message from endpoint is incorrect.");d.restore()});b.addEventListener("loadend",function(){c(a,{message:"Error occurred.",type:"warning"})});b.respond(400,{},'{ "message": "Validation failed." }')})}})})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/resourcespaths.js b/static/ckeditor/ckeditor/plugins/exportpdf/tests/resourcespaths.js new file mode 100644 index 0000000000..1964499f08 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/resourcespaths.js @@ -0,0 +1,9 @@ +(function(){bender.loadExternalPlugin("exportpdf","/apps/plugin/");CKEDITOR.plugins.load("exportpdf",function(){function a(a,d,b){b=exportPdfUtils.getDefaultConfig("unit",b||{});bender.editorBot.create({name:"editor"+Date.now(),config:b},function(b){var c=b.editor;b.setHtmlWithSelection(a);c.once("exportPdf",function(b){assert.areEqual(a,b.data.html)},null,null,10);c.once("exportPdf",function(a){a.cancel();assert.areEqual('\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e'+d+"\x3c/div\x3e",a.data.html)}, +null,null,16);c.execCommand("exportPdf")})}function b(a,b){a=a.replace(/\/$/g,"");b&&0<b&&(a=a.split("/").slice(0,-b).join("/"));return a}bender.test({setUp:function(){bender.tools.ignoreUnsupportedEnvironment("exportpdf");this.paths={relative0:b(bender.testDir),relative1:b(bender.testDir,1),relative3:b(bender.testDir,3)}},"test absolute image urls are not changed":function(){a('\x3cp\x3eFoo \x3cimg src\x3d"https://ckeditor.com/img/image1.jpg" /\x3e\x3cimg src\x3d"https://ckeditor.com/img/image2.png" /\x3e\x3c/p\x3e', +'\x3cp\x3eFoo \x3cimg src\x3d"https://ckeditor.com/img/image1.jpg" /\x3e\x3cimg src\x3d"https://ckeditor.com/img/image2.png" /\x3e\x3c/p\x3e')},"test relative (to root) image urls are changed to absolute":function(){a('\x3cp\x3e\x3cimg src\x3d"/img/image1.jpg" /\x3e Bar \x3cimg src\x3d"/img/big/image2.png" /\x3e\x3c/p\x3e','\x3cp\x3e\x3cimg src\x3d"'+exportPdfUtils.toAbsoluteUrl("/img/image1.jpg")+'" /\x3e Bar \x3cimg src\x3d"'+exportPdfUtils.toAbsoluteUrl("/img/big/image2.png")+'" /\x3e\x3c/p\x3e')}, +'test relative (to root) image urls with ".." are changed to absolute':function(){a('\x3cp\x3e\x3cimg src\x3d"/../img/image1.jpg" /\x3e Bar \x3cimg src\x3d"/../../img/big/image2.png" /\x3e\x3c/p\x3e','\x3cp\x3e\x3cimg src\x3d"'+exportPdfUtils.toAbsoluteUrl("/img/image1.jpg")+'" /\x3e Bar \x3cimg src\x3d"'+exportPdfUtils.toAbsoluteUrl("/img/big/image2.png")+'" /\x3e\x3c/p\x3e')},"test relative (to root) image urls with custom baseHref are changed to absolute":function(){a('\x3cp\x3e\x3cimg src\x3d"/img/image1.jpg" /\x3e Bar \x3cimg src\x3d"/img/big/image2.png" /\x3e\x3c/p\x3e', +'\x3cp\x3e\x3cimg src\x3d"'+exportPdfUtils.toAbsoluteUrl("/img/image1.jpg","http://ckeditor.com")+'" /\x3e Bar \x3cimg src\x3d"'+exportPdfUtils.toAbsoluteUrl("/img/big/image2.png","http://ckeditor.com")+'" /\x3e\x3c/p\x3e',{baseHref:"http://ckeditor.com/ckeditor4/"})},'test relative (to root) image urls with custom baseHref and ".." are changed to absolute':function(){a('\x3cp\x3e\x3cimg src\x3d"/../img/image1.jpg" /\x3e Bar \x3cimg src\x3d"/../../img/big/image2.png" /\x3e\x3c/p\x3e','\x3cp\x3e\x3cimg src\x3d"'+ +exportPdfUtils.toAbsoluteUrl("/img/image1.jpg","http://ckeditor.com")+'" /\x3e Bar \x3cimg src\x3d"'+exportPdfUtils.toAbsoluteUrl("/img/big/image2.png","http://ckeditor.com")+'" /\x3e\x3c/p\x3e',{baseHref:"http://ckeditor.com/ckeditor4/"})},"test relative (to current url) image urls are changed to absolute":function(){a('\x3cp\x3e\x3cimg src\x3d"img/image1.jpg" /\x3e Bar \x3cimg src\x3d"img/big/image2.png" /\x3e\x3c/p\x3e','\x3cp\x3e\x3cimg src\x3d"'+exportPdfUtils.toAbsoluteUrl(this.paths.relative0+ +"/img/image1.jpg")+'" /\x3e Bar \x3cimg src\x3d"'+exportPdfUtils.toAbsoluteUrl(this.paths.relative0+"/img/big/image2.png")+'" /\x3e\x3c/p\x3e')},'test relative (to current url) image urls with ".." are changed to absolute':function(){a('\x3cp\x3e\x3cimg src\x3d"../img/image1.jpg" /\x3e Bar \x3cimg src\x3d"../../../img/big/image2.png" /\x3e\x3c/p\x3e','\x3cp\x3e\x3cimg src\x3d"'+exportPdfUtils.toAbsoluteUrl(this.paths.relative1+"/img/image1.jpg")+'" /\x3e Bar \x3cimg src\x3d"'+exportPdfUtils.toAbsoluteUrl(this.paths.relative3+ +"/img/big/image2.png")+'" /\x3e\x3c/p\x3e')},"test relative (to current url) image urls with custom baseHref are changed to absolute":function(){a('\x3cp\x3e\x3cimg src\x3d"img/image1.jpg" /\x3e Bar \x3cimg src\x3d"img/big/image2.png" /\x3e\x3c/p\x3e','\x3cp\x3e\x3cimg src\x3d"'+exportPdfUtils.toAbsoluteUrl("img/image1.jpg","http://ckeditor.com/ckeditor4/")+'" /\x3e Bar \x3cimg src\x3d"'+exportPdfUtils.toAbsoluteUrl("img/big/image2.png","http://ckeditor.com/ckeditor4/")+'" /\x3e\x3c/p\x3e',{baseHref:"http://ckeditor.com/ckeditor4/"})}, +'test relative (to current url) image urls with custom baseHref and ".." are changed to absolute':function(){a('\x3cp\x3e\x3cimg src\x3d"../img/image1.jpg" /\x3e Bar \x3cimg src\x3d"../../img/big/image2.png" /\x3e\x3c/p\x3e','\x3cp\x3e\x3cimg src\x3d"'+exportPdfUtils.toAbsoluteUrl("img/image1.jpg","https://ckeditor.com/ckeditor4/")+'" /\x3e Bar \x3cimg src\x3d"'+exportPdfUtils.toAbsoluteUrl("img/big/image2.png","https://ckeditor.com/")+'" /\x3e\x3c/p\x3e',{baseHref:"https://ckeditor.com/ckeditor4/demo/"})}})})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/statistics.js b/static/ckeditor/ckeditor/plugins/exportpdf/tests/statistics.js new file mode 100644 index 0000000000..b68f42b955 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/statistics.js @@ -0,0 +1,3 @@ +(function(){bender.loadExternalPlugin("exportpdf","/apps/plugin/");CKEDITOR.plugins.load("exportpdf",function(){bender.editors={defaultHeader:{config:{extraPlugins:"exportpdf"}},customHeader:{config:exportPdfUtils.getDefaultConfig("unit")}};bender.test({setUp:function(){bender.tools.ignoreUnsupportedEnvironment("exportpdf");sinon.stub(CKEDITOR.plugins.exportpdf,"downloadFile")},tearDown:function(){CKEDITOR.plugins.exportpdf.downloadFile.restore()},"test default statistics header":function(){var a= +this.editors.defaultHeader;this.editorBots.defaultHeader.setHtmlWithSelection('\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e^');exportPdfUtils.useXHR(a,function(a){assert.areEqual(a.requestHeaders["x-cs-app-id"],"cke4","Default stats header is wrong.")})},"test custom statistics header":function(){var a=this.editors.customHeader;this.editorBots.customHeader.setHtmlWithSelection('\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e^');exportPdfUtils.useXHR(a,function(a){assert.areEqual(a.requestHeaders["x-cs-app-id"], +"cke4-tests-unit","Custom stats header was not set properly.")})}})})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/exportpdf/tests/stylesheets.js b/static/ckeditor/ckeditor/plugins/exportpdf/tests/stylesheets.js new file mode 100644 index 0000000000..d08fca188c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/exportpdf/tests/stylesheets.js @@ -0,0 +1,18 @@ +(function(){bender.loadExternalPlugin("exportpdf","/apps/plugin/");CKEDITOR.plugins.load("exportpdf",function(){function a(a){var e=exportPdfUtils.getDefaultConfig("unit",a.extraConfig||{});bender.editorBot.create({name:"editor"+Date.now(),config:e,creator:a.creator},function(d){var c=d.editor;d.setHtmlWithSelection(a.initialHtml);c.once("exportPdf",function(b){assert.areEqual(a.initialHtml,b.data.html)},null,null,10);c.once("exportPdf",function(b){b.cancel();a.expectCss?assert.isNotUndefined(b.data.css, +"Some CSS should be sent."):assert.isUndefined(b.data.css,"No CSS should be sent.");b=b.data.html.replace(/\?t=[a-z0-9]+/gi,"");assert.areEqual(a.expectedHtml,b,"HTML is incorrect.")},null,null,16);c.execCommand("exportPdf")})}bender.test({setUp:function(){bender.tools.ignoreUnsupportedEnvironment("exportpdf")},"test no custom stylesheets attached to divarea editor":function(){a({creator:"replace",initialHtml:'\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e',expectedHtml:'\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e\x3c/div\x3e', +expectCss:!1})},"test one absolute path custom stylesheet attached to divarea editor":function(){a({creator:"replace",initialHtml:'\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e',expectedHtml:'\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"https://ckeditor.com/"\x3e\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e\x3c/div\x3e',expectCss:!1,extraConfig:{exportPdf_stylesheets:["https://ckeditor.com"]}})},"test two absolute path custom stylesheets attached to divarea editor":function(){a({creator:"replace", +initialHtml:'\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e',expectedHtml:'\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"https://ckeditor.css/"\x3e\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"https://cksource.css/"\x3e\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e\x3c/div\x3e',expectCss:!1,extraConfig:{exportPdf_stylesheets:["https://ckeditor.css","https://cksource.css"]}})},"test one relative path custom stylesheet attached to divarea editor":function(){a({creator:"replace", +initialHtml:'\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e',expectedHtml:'\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"'+exportPdfUtils.toAbsoluteUrl("/css/ckeditor.css")+'"\x3e\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e\x3c/div\x3e',expectCss:!1,extraConfig:{exportPdf_stylesheets:["/css/ckeditor.css"]}})},"test two relative path custom stylesheets attached to divarea editor":function(){a({creator:"replace",initialHtml:'\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e', +expectedHtml:'\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"'+exportPdfUtils.toAbsoluteUrl("/css/ckeditor.css")+'"\x3e\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"'+exportPdfUtils.toAbsoluteUrl("/css/cksource.css")+'"\x3e\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e\x3c/div\x3e',expectCss:!1,extraConfig:{exportPdf_stylesheets:["/css/ckeditor.css","/css/cksource.css"]}})},"test one relative and one absolute path custom stylesheets attached to divarea editor":function(){a({creator:"replace", +initialHtml:'\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e',expectedHtml:'\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"'+exportPdfUtils.toAbsoluteUrl("/css/ckeditor.css")+'"\x3e\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"https://ckeditor.com/"\x3e\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e\x3c/div\x3e',expectCss:!1,extraConfig:{exportPdf_stylesheets:["/css/ckeditor.css","https://ckeditor.com"]}})},"test no custom stylesheets attached to inline editor":function(){a({creator:"inline", +initialHtml:'\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e',expectedHtml:'\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e\x3c/div\x3e',expectCss:!1})},"test one absolute path custom stylesheet attached to inline editor":function(){a({creator:"inline",initialHtml:'\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e',expectedHtml:'\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"https://ckeditor.com/"\x3e\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e\x3c/div\x3e', +expectCss:!1,extraConfig:{exportPdf_stylesheets:["https://ckeditor.com"]}})},"test two absolute path custom stylesheets attached to inline editor":function(){a({creator:"inline",initialHtml:'\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e',expectedHtml:'\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"https://ckeditor.css/"\x3e\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"https://cksource.css/"\x3e\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e\x3c/div\x3e', +expectCss:!1,extraConfig:{exportPdf_stylesheets:["https://ckeditor.css","https://cksource.css"]}})},"test one relative path custom stylesheet attached to inline editor":function(){a({creator:"inline",initialHtml:'\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e',expectedHtml:'\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"'+exportPdfUtils.toAbsoluteUrl("/css/ckeditor.css")+'"\x3e\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e\x3c/div\x3e',expectCss:!1, +extraConfig:{exportPdf_stylesheets:["/css/ckeditor.css"]}})},"test two relative path custom stylesheets attached to inline editor":function(){a({creator:"inline",initialHtml:'\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e',expectedHtml:'\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"'+exportPdfUtils.toAbsoluteUrl("/css/ckeditor.css")+'"\x3e\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"'+exportPdfUtils.toAbsoluteUrl("/css/cksource.css")+'"\x3e\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e\x3c/div\x3e', +expectCss:!1,extraConfig:{exportPdf_stylesheets:["/css/ckeditor.css","/css/cksource.css"]}})},"test one relative and one absolute path custom stylesheets attached to inline editor":function(){a({creator:"inline",initialHtml:'\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e',expectedHtml:'\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"'+exportPdfUtils.toAbsoluteUrl("/css/ckeditor.css")+'"\x3e\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"https://ckeditor.com/"\x3e\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e\x3c/div\x3e', +expectCss:!1,extraConfig:{exportPdf_stylesheets:["/css/ckeditor.css","https://ckeditor.com"]}})},"test no custom stylesheets attached to classic editor":function(){a({creator:"replace",initialHtml:'\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e',expectedHtml:'\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e\x3c/div\x3e',expectCss:!0,extraConfig:{removePlugins:"divarea"}})},"test one absolute path custom stylesheet attached to classic editor":function(){a({creator:"replace", +initialHtml:'\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e',expectedHtml:'\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"https://ckeditor.com/"\x3e\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e\x3c/div\x3e',expectCss:!1,extraConfig:{removePlugins:"divarea",exportPdf_stylesheets:["https://ckeditor.com"]}})},"test two absolute path custom stylesheets attached to classic editor":function(){a({creator:"replace",initialHtml:'\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e', +expectedHtml:'\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"https://ckeditor.css/"\x3e\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"https://cksource.css/"\x3e\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e\x3c/div\x3e',expectCss:!1,extraConfig:{removePlugins:"divarea",exportPdf_stylesheets:["https://ckeditor.css","https://cksource.css"]}})},"test one relative path custom stylesheet attached to classic editor":function(){a({creator:"replace", +initialHtml:'\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e',expectedHtml:'\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"'+exportPdfUtils.toAbsoluteUrl("/css/ckeditor.css")+'"\x3e\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e\x3c/div\x3e',expectCss:!1,extraConfig:{removePlugins:"divarea",exportPdf_stylesheets:["/css/ckeditor.css"]}})},"test two relative path custom stylesheets attached to classic editor":function(){a({creator:"replace",initialHtml:'\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e', +expectedHtml:'\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"'+exportPdfUtils.toAbsoluteUrl("/css/ckeditor.css")+'"\x3e\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"'+exportPdfUtils.toAbsoluteUrl("/css/cksource.css")+'"\x3e\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e\x3c/div\x3e',expectCss:!1,extraConfig:{removePlugins:"divarea",exportPdf_stylesheets:["/css/ckeditor.css","/css/cksource.css"]}})},"test one relative and one absolute path custom stylesheets attached to classic editor":function(){a({creator:"replace", +initialHtml:'\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e',expectedHtml:'\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"'+exportPdfUtils.toAbsoluteUrl("/css/ckeditor.css")+'"\x3e\x3clink type\x3d"text/css" rel\x3dstylesheet href\x3d"https://ckeditor.com/"\x3e\x3cdiv class\x3d"cke_editable cke_contents_ltr"\x3e\x3cp id\x3d"test"\x3eHello, World!\x3c/p\x3e\x3c/div\x3e',expectCss:!1,extraConfig:{removePlugins:"divarea",exportPdf_stylesheets:["/css/ckeditor.css","https://ckeditor.com"]}})}})})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/cs.js b/static/ckeditor/ckeditor/plugins/filetools/lang/cs.js new file mode 100644 index 0000000000..8599e920ea --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/cs.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","cs",{loadError:"Při čtení souboru došlo k chybě.",networkError:"Při nahrávání souboru došlo k chybě v síti.",httpError404:"Při nahrávání souboru došlo k chybě HTTP (404: Soubor nenalezen).",httpError403:"Při nahrávání souboru došlo k chybě HTTP (403: Zakázáno).",httpError:"Při nahrávání souboru došlo k chybě HTTP (chybový stav: %1).",noUrlError:"URL pro nahrání není zadána.",responseError:"Nesprávná odpověď serveru."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/da.js b/static/ckeditor/ckeditor/plugins/filetools/lang/da.js new file mode 100644 index 0000000000..1dba82814f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/da.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","da",{loadError:"Der skete en fejl ved indlæsningen af filen.",networkError:"Der skete en netværks fejl under uploadingen.",httpError404:"Der skete en HTTP fejl under uploadingen (404: File not found).",httpError403:"Der skete en HTTP fejl under uploadingen (403: Forbidden).",httpError:"Der skete en HTTP fejl under uploadingen (error status: %1).",noUrlError:"Upload URL er ikke defineret.",responseError:"Ikke korrekt server svar."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/de.js b/static/ckeditor/ckeditor/plugins/filetools/lang/de.js new file mode 100644 index 0000000000..f5023b06fa --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/de.js @@ -0,0 +1,6 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","de",{loadError:"Während dem Lesen der Datei ist ein Fehler aufgetreten.",networkError:"Während dem Hochladen der Datei ist ein Netzwerkfehler aufgetreten.",httpError404:"Während dem Hochladen der Datei ist ein HTTP-Fehler aufgetreten (404: Datei nicht gefunden).",httpError403:"Während dem Hochladen der Datei ist ein HTTP-Fehler aufgetreten (403: Verboten).",httpError:"Während dem Hochladen der Datei ist ein HTTP-Fehler aufgetreten (Fehlerstatus: %1).",noUrlError:"Hochlade-URL ist nicht definiert.", +responseError:"Falsche Antwort des Servers."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/en.js b/static/ckeditor/ckeditor/plugins/filetools/lang/en.js new file mode 100644 index 0000000000..8a86b1f345 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/en.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","en",{loadError:"Error occurred during file read.",networkError:"Network error occurred during file upload.",httpError404:"HTTP error occurred during file upload (404: File not found).",httpError403:"HTTP error occurred during file upload (403: Forbidden).",httpError:"HTTP error occurred during file upload (error status: %1).",noUrlError:"Upload URL is not defined.",responseError:"Incorrect server response."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/eo.js b/static/ckeditor/ckeditor/plugins/filetools/lang/eo.js new file mode 100644 index 0000000000..08c2cc24c8 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/eo.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","eo",{loadError:"Eraro okazis dum la dosiera legado.",networkError:"Reta eraro okazis dum la dosiera alŝuto.",httpError404:"HTTP eraro okazis dum la dosiera alŝuto (404: dosiero ne trovita).",httpError403:"HTTP eraro okazis dum la dosiera alŝuto (403: malpermesita).",httpError:"HTTP eraro okazis dum la dosiera alŝuto (erara stato: %1).",noUrlError:"Alŝuta URL ne estas difinita.",responseError:"Malĝusta respondo de la servilo."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/fr.js b/static/ckeditor/ckeditor/plugins/filetools/lang/fr.js new file mode 100644 index 0000000000..c225092013 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/fr.js @@ -0,0 +1,6 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","fr",{loadError:"Une erreur est survenue lors de la lecture du fichier.",networkError:"Une erreur réseau est survenue lors du téléversement du fichier.",httpError404:"Une erreur HTTP est survenue durant le téléversement du fichier (404: Fichier non trouvé).",httpError403:"Une erreur HTTP est survenue durant le téléversement du fichier (403: Accès refusé).",httpError:"Une erreur HTTP est survenue durant le téléversement du fichier (statut de l'erreur : %1).",noUrlError:"L'URL de téléversement n'est pas spécifiée.", +responseError:"Réponse du serveur incorrecte."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/gl.js b/static/ckeditor/ckeditor/plugins/filetools/lang/gl.js new file mode 100644 index 0000000000..3ec4f05b99 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/gl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","gl",{loadError:"Produciuse un erro durante a lectura do ficheiro.",networkError:"Produciuse un erro na rede durante o envío do ficheiro.",httpError404:"Produciuse un erro HTTP durante o envío do ficheiro (404: Ficheiro non atopado).",httpError403:"Produciuse un erro HTTP durante o envío do ficheiro (403: Acceso denegado).",httpError:"Produciuse un erro HTTP durante o envío do ficheiro (erro de estado: %1).",noUrlError:"Non foi definido o URL para o envío.",responseError:"Resposta incorrecta do servidor."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/it.js b/static/ckeditor/ckeditor/plugins/filetools/lang/it.js new file mode 100644 index 0000000000..ff10fc8cd9 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/it.js @@ -0,0 +1,6 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","it",{loadError:"Si è verificato un errore durante la lettura del file.",networkError:"Si è verificato un errore di rete durante il caricamento del file.",httpError404:"Si è verificato un errore HTTP durante il caricamento del file (404: file non trovato).",httpError403:"Si è verificato un errore HTTP durante il caricamento del file (403: accesso negato).",httpError:"Si è verificato un errore HTTP durante il caricamento del file (stato dell'errore: %1).",noUrlError:"L'URL per il caricamento non è stato definito.", +responseError:"La risposta del server non è corretta."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/ko.js b/static/ckeditor/ckeditor/plugins/filetools/lang/ko.js new file mode 100644 index 0000000000..33e8d43b2b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/ko.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","ko",{loadError:"파일을 읽는 중 오류가 발생했습니다.",networkError:"파일 업로드 중 네트워크 오류가 발생했습니다.",httpError404:"파일 업로드중 HTTP 오류가 발생했습니다 (404: 파일 찾을수 없음).",httpError403:"파일 업로드중 HTTP 오류가 발생했습니다 (403: 권한 없음).",httpError:"파일 업로드중 HTTP 오류가 발생했습니다 (오류 코드 %1).",noUrlError:"업로드 주소가 정의되어 있지 않습니다.",responseError:"잘못된 서버 응답."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/ku.js b/static/ckeditor/ckeditor/plugins/filetools/lang/ku.js new file mode 100644 index 0000000000..4948767f17 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/ku.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","ku",{loadError:"هەڵەیەک ڕوویدا لە ماوەی خوێندنەوەی پەڕگەکە.",networkError:"هەڵەیەکی ڕایەڵە ڕوویدا لە ماوەی بارکردنی پەڕگەکە.",httpError404:"هەڵەیەک ڕوویدا لە ماوەی بارکردنی پەڕگەکە (404: پەڕگەکە نەدۆزراوە).",httpError403:"هەڵەیەک ڕوویدا لە ماوەی بارکردنی پەڕگەکە (403: قەدەغەکراو).",httpError:"هەڵەیەک ڕوویدا لە ماوەی بارکردنی پەڕگەکە (دۆخی هەڵە: %1).",noUrlError:"بەستەری پەڕگەکە پێناسە نەکراوە.",responseError:"وەڵامێکی نادروستی سێرڤەر."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/nb.js b/static/ckeditor/ckeditor/plugins/filetools/lang/nb.js new file mode 100644 index 0000000000..97c5021eed --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/nb.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","nb",{loadError:"Feil oppsto under filinnlesing.",networkError:"Nettverksfeil oppsto under filopplasting.",httpError404:"HTTP-feil oppsto under filopplasting (404: Fant ikke filen).",httpError403:"HTTP-feil oppsto under filopplasting (403: Ikke tillatt).",httpError:"HTTP-feil oppsto under filopplasting (feilstatus: %1).",noUrlError:"URL for opplasting er ikke oppgitt.",responseError:"Ukorrekt svar fra serveren."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/nl.js b/static/ckeditor/ckeditor/plugins/filetools/lang/nl.js new file mode 100644 index 0000000000..d9ab63afdc --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/nl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","nl",{loadError:"Fout tijdens lezen van bestand.",networkError:"Netwerkfout tijdens uploaden van bestand.",httpError404:"HTTP fout tijdens uploaden van bestand (404: Bestand niet gevonden).",httpError403:"HTTP fout tijdens uploaden van bestand (403: Verboden).",httpError:"HTTP fout tijdens uploaden van bestand (fout status: %1).",noUrlError:"Upload URL is niet gedefinieerd.",responseError:"Ongeldig antwoord van server."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/pl.js b/static/ckeditor/ckeditor/plugins/filetools/lang/pl.js new file mode 100644 index 0000000000..b9f37582de --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/pl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","pl",{loadError:"Błąd podczas odczytu pliku.",networkError:"W trakcie wysyłania pliku pojawił się błąd sieciowy.",httpError404:"Błąd HTTP w trakcie wysyłania pliku (404: Nie znaleziono pliku).",httpError403:"Błąd HTTP w trakcie wysyłania pliku (403: Zabroniony).",httpError:"Błąd HTTP w trakcie wysyłania pliku (status błędu: %1).",noUrlError:"Nie zdefiniowano adresu URL do przesłania pliku.",responseError:"Niepoprawna odpowiedź serwera."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/pt-br.js b/static/ckeditor/ckeditor/plugins/filetools/lang/pt-br.js new file mode 100644 index 0000000000..cd51b6dd00 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/pt-br.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","pt-br",{loadError:"Um erro ocorreu durante a leitura do arquivo.",networkError:"Um erro de rede ocorreu durante o envio do arquivo.",httpError404:"Um erro HTTP ocorreu durante o envio do arquivo (404: Arquivo não encontrado).",httpError403:"Um erro HTTP ocorreu durante o envio do arquivo (403: Proibido).",httpError:"Um erro HTTP ocorreu durante o envio do arquivo (status do erro: %1)",noUrlError:"A URL de upload não está definida.",responseError:"Resposta incorreta do servidor."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/ru.js b/static/ckeditor/ckeditor/plugins/filetools/lang/ru.js new file mode 100644 index 0000000000..54e81802bc --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/ru.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","ru",{loadError:"Ошибка при чтении файла",networkError:"Сетевая ошибка при загрузке файла",httpError404:"HTTP ошибка при загрузке файла (404: Файл не найден)",httpError403:"HTTP ошибка при загрузке файла (403: Запрещено)",httpError:"HTTP ошибка при загрузке файла (%1)",noUrlError:"Не определен URL для загрузки файлов",responseError:"Некорректный ответ сервера"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/sv.js b/static/ckeditor/ckeditor/plugins/filetools/lang/sv.js new file mode 100644 index 0000000000..55efd00d18 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/sv.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","sv",{loadError:"Fel uppstod vid filläsning",networkError:"Nätverksfel uppstod vid filuppladdning.",httpError404:"HTTP-fel uppstod vid filuppladdning (404: Fil hittades inte).",httpError403:"HTTP-fel uppstod vid filuppladdning (403: Förbjuden).",httpError:"HTTP-fel uppstod vid filuppladdning (felstatus: %1).",noUrlError:"URL för uppladdning inte definierad.",responseError:"Felaktigt serversvar."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/tr.js b/static/ckeditor/ckeditor/plugins/filetools/lang/tr.js new file mode 100644 index 0000000000..2a355a38f5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/tr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","tr",{loadError:"Dosya okunurken hata oluştu.",networkError:"Dosya gönderilirken ağ hatası oluştu.",httpError404:"Dosya gönderilirken HTTP hatası oluştu (404: Dosya bulunamadı).",httpError403:"Dosya gönderilirken HTTP hatası oluştu (403: Yasaklı).",httpError:"Dosya gönderilirken HTTP hatası oluştu (hata durumu: %1).",noUrlError:"Gönderilecek URL belirtilmedi.",responseError:"Sunucu cevap veremedi."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/zh-cn.js b/static/ckeditor/ckeditor/plugins/filetools/lang/zh-cn.js new file mode 100644 index 0000000000..88da4743ba --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/zh-cn.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","zh-cn",{loadError:"读取文件时发生错误。",networkError:"上传文件时发生网络错误。",httpError404:"上传文件时发生 HTTP 错误(404:无法找到文件)。",httpError403:"上传文件时发生 HTTP 错误(403:禁止访问)。",httpError:"上传文件时发生 HTTP 错误(错误代码:%1)。",noUrlError:"上传的 URL 未定义。",responseError:"不正确的服务器响应。"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/lang/zh.js b/static/ckeditor/ckeditor/plugins/filetools/lang/zh.js new file mode 100644 index 0000000000..1f83cdcd82 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/lang/zh.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("filetools","zh",{loadError:"在讀取檔案時發生錯誤。",networkError:"在上傳檔案時發生網路錯誤。",httpError404:"在上傳檔案時發生 HTTP 錯誤(404:檔案找不到)。",httpError403:"在上傳檔案時發生 HTTP 錯誤(403:禁止)。",httpError:"在上傳檔案時發生 HTTP 錯誤(錯誤狀態:%1)。",noUrlError:"上傳的 URL 未被定義。",responseError:"不正確的伺服器回應。"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/filetools/plugin.js b/static/ckeditor/ckeditor/plugins/filetools/plugin.js new file mode 100644 index 0000000000..ab19871eaf --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/filetools/plugin.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){function h(a){this.editor=a;this.loaders=[]}function i(a,b,c){var d=a.config.fileTools_defaultFileName;this.editor=a;this.lang=a.lang;"string"===typeof b?(this.data=b,this.file=k(this.data),this.loaded=this.total=this.file.size):(this.data=null,this.file=b,this.total=this.file.size,this.loaded=0);c?this.fileName=c:this.file.name?this.fileName=this.file.name:(a=this.file.type.split("/"),d&&(a[0]=d),this.fileName=a.join("."));this.uploaded=0;this.status="created";this.abort=function(){this.changeStatus("abort")}} +function k(a){var b=a.match(j)[1],a=a.replace(j,""),a=atob(a),c=[],d,f,e,g;for(d=0;d<a.length;d+=512){f=a.slice(d,d+512);e=Array(f.length);for(g=0;g<f.length;g++)e[g]=f.charCodeAt(g);f=new Uint8Array(e);c.push(f)}return new Blob(c,{type:b})}CKEDITOR.plugins.add("filetools",{lang:"cs,da,de,en,eo,fr,gl,it,ko,ku,nb,nl,pl,pt-br,ru,sv,tr,zh,zh-cn",beforeInit:function(a){a.uploadRepository=new h(a);a.on("fileUploadRequest",function(a){a=a.data.fileLoader;a.xhr.open("POST",a.uploadUrl,!0)},null,null,5); +a.on("fileUploadRequest",function(a){var a=a.data.fileLoader,c=new FormData;c.append("upload",a.file,a.fileName);a.xhr.send(c)},null,null,999);a.on("fileUploadResponse",function(a){var c=a.data.fileLoader,d=c.xhr,f=a.data;try{var e=JSON.parse(d.responseText);e.error&&e.error.message&&(f.message=e.error.message);e.uploaded?(f.fileName=e.fileName,f.url=e.url):a.cancel()}catch(g){f.message=c.lang.filetools.responseError,window.console&&window.console.log(d.responseText),a.cancel()}},null,null,999)}}); +h.prototype={create:function(a,b){var c=this.loaders.length,d=new i(this.editor,a,b);d.id=c;this.loaders[c]=d;this.fire("instanceCreated",d);return d},isFinished:function(){for(var a=0;a<this.loaders.length;++a)if(!this.loaders[a].isFinished())return!1;return!0}};i.prototype={loadAndUpload:function(a){var b=this;this.once("loaded",function(c){c.cancel();b.once("update",function(a){a.cancel()},null,null,0);b.upload(a)},null,null,0);this.load()},load:function(){var a=this,b=this.reader=new FileReader; +a.changeStatus("loading");this.abort=function(){a.reader.abort()};b.onabort=function(){a.changeStatus("abort")};b.onerror=function(){a.message=a.lang.filetools.loadError;a.changeStatus("error")};b.onprogress=function(b){a.loaded=b.loaded;a.update()};b.onload=function(){a.loaded=a.total;a.data=b.result;a.changeStatus("loaded")};b.readAsDataURL(this.file)},upload:function(a){a?(this.uploadUrl=a,this.xhr=new XMLHttpRequest,this.attachRequestListeners(),this.editor.fire("fileUploadRequest",{fileLoader:this})&& +this.changeStatus("uploading")):(this.message=this.lang.filetools.noUrlError,this.changeStatus("error"))},attachRequestListeners:function(){var a=this,b=this.xhr;a.abort=function(){b.abort()};b.onabort=function(){a.changeStatus("abort")};b.onerror=function(){a.message=a.lang.filetools.networkError;a.changeStatus("error")};b.onprogress=function(b){a.uploaded=b.loaded;a.update()};b.onload=function(){a.uploaded=a.total;if(200>b.status||299<b.status)a.message=a.lang.filetools["httpError"+b.status],a.message|| +(a.message=a.lang.filetools.httpError.replace("%1",b.status)),a.changeStatus("error");else{for(var c={fileLoader:a},d=["message","fileName","url"],f=a.editor.fire("fileUploadResponse",c),e=0;e<d.length;e++){var g=d[e];"string"===typeof c[g]&&(a[g]=c[g])}!1===f?a.changeStatus("error"):a.changeStatus("uploaded")}}},changeStatus:function(a){this.status=a;if("error"==a||"abort"==a||"loaded"==a||"uploaded"==a)this.abort=function(){};this.fire(a);this.update()},update:function(){this.fire("update")},isFinished:function(){return!!this.status.match(/^(?:loaded|uploaded|error|abort)$/)}}; +CKEDITOR.event.implementOn(h.prototype);CKEDITOR.event.implementOn(i.prototype);var j=/^data:(\S*?);base64,/;CKEDITOR.fileTools||(CKEDITOR.fileTools={});CKEDITOR.tools.extend(CKEDITOR.fileTools,{uploadRepository:h,fileLoader:i,getUploadUrl:function(a,b){var c=CKEDITOR.tools.capitalize;return b&&a[b+"UploadUrl"]?a[b+"UploadUrl"]:a.uploadUrl?a.uploadUrl:b&&a["filebrowser"+c(b,1)+"UploadUrl"]?a["filebrowser"+c(b,1)+"UploadUrl"]+"&responseType=json":a.filebrowserUploadUrl?a.filebrowserUploadUrl+"&responseType=json": +null},isTypeSupported:function(a,b){return!!a.type.match(b)}})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/find/dialogs/find.js b/static/ckeditor/ckeditor/plugins/find/dialogs/find.js new file mode 100644 index 0000000000..c329ccd496 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/find/dialogs/find.js @@ -0,0 +1,25 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +(function(){function C(c){return c.type==CKEDITOR.NODE_TEXT&&0<c.getLength()&&(!m||!c.isReadOnly())}function v(c){return!(c.type==CKEDITOR.NODE_ELEMENT&&c.isBlockBoundary(CKEDITOR.tools.extend({},CKEDITOR.dtd.$empty,CKEDITOR.dtd.$nonEditable)))}var m,w=function(){return{textNode:this.textNode,offset:this.offset,character:this.textNode?this.textNode.getText().charAt(this.offset):null,hitMatchBoundary:this._.matchBoundary}},x=["find","replace"],q=[["txtFindFind","txtFindReplace"],["txtFindCaseChk", +"txtReplaceCaseChk"],["txtFindWordChk","txtReplaceWordChk"],["txtFindCyclic","txtReplaceCyclic"]];CKEDITOR.dialog.add("find",function(c){function n(a,b){var d=this,c=new CKEDITOR.dom.walker(a);c.guard=b?v:function(a){!v(a)&&(d._.matchBoundary=!0)};c.evaluator=C;c.breakOnFalse=1;a.startContainer.type==CKEDITOR.NODE_TEXT&&(this.textNode=a.startContainer,this.offset=a.startOffset-1);this._={matchWord:b,walker:c,matchBoundary:!1}}function y(a,b){var d=c.createRange();d.setStart(a.textNode,b?a.offset: +a.offset+1);d.setEndAt(c.editable(),CKEDITOR.POSITION_BEFORE_END);return d}function r(a){var b=c.getSelection().getRanges()[0],d=c.editable();b&&!a?(a=b.clone(),a.collapse(!0)):(a=c.createRange(),a.setStartAt(d,CKEDITOR.POSITION_AFTER_START));a.setEndAt(d,CKEDITOR.POSITION_BEFORE_END);return a}var z=new CKEDITOR.style(CKEDITOR.tools.extend({attributes:{"data-cke-highlight":1},fullMatch:1,ignoreReadonly:1,childRule:function(){return 0}},c.config.find_highlight,!0));n.prototype={next:function(){return this.move()}, +back:function(){return this.move(!0)},move:function(a){var b=this.textNode;if(null===b)return w.call(this);this._.matchBoundary=!1;if(b&&a&&0<this.offset)this.offset--;else if(b&&this.offset<b.getLength()-1)this.offset++;else{for(b=null;!b&&!(b=this._.walker[a?"previous":"next"].call(this._.walker),this._.matchWord&&!b||this._.walker._.end););this.offset=(this.textNode=b)?a?b.getLength()-1:0:0}return w.call(this)}};var t=function(a,b){this._={walker:a,cursors:[],rangeLength:b,highlightRange:null, +isMatched:0}};t.prototype={toDomRange:function(){var a=c.createRange(),b=this._.cursors;if(1>b.length){var d=this._.walker.textNode;if(d)a.setStartAfter(d);else return null}else d=b[0],b=b[b.length-1],a.setStart(d.textNode,d.offset),a.setEnd(b.textNode,b.offset+1);return a},updateFromDomRange:function(a){var b=new n(a);this._.cursors=[];do a=b.next(),a.character&&this._.cursors.push(a);while(a.character);this._.rangeLength=this._.cursors.length},setMatched:function(){this._.isMatched=!0},clearMatched:function(){this._.isMatched= +!1},isMatched:function(){return this._.isMatched},highlight:function(){if(!(1>this._.cursors.length)){this._.highlightRange&&this.removeHighlight();var a=this.toDomRange(),b=a.createBookmark();z.applyToRange(a,c);a.moveToBookmark(b);this._.highlightRange=a;b=a.startContainer;b.type!=CKEDITOR.NODE_ELEMENT&&(b=b.getParent());b.scrollIntoView();this.updateFromDomRange(a)}},removeHighlight:function(){if(this._.highlightRange){var a=this._.highlightRange.createBookmark();z.removeFromRange(this._.highlightRange, +c);this._.highlightRange.moveToBookmark(a);this.updateFromDomRange(this._.highlightRange);this._.highlightRange=null}},isReadOnly:function(){return this._.highlightRange?this._.highlightRange.startContainer.isReadOnly():0},moveBack:function(){var a=this._.walker.back(),b=this._.cursors;a.hitMatchBoundary&&(this._.cursors=b=[]);b.unshift(a);b.length>this._.rangeLength&&b.pop();return a},moveNext:function(){var a=this._.walker.next(),b=this._.cursors;a.hitMatchBoundary&&(this._.cursors=b=[]);b.push(a); +b.length>this._.rangeLength&&b.shift();return a},getEndCharacter:function(){var a=this._.cursors;return 1>a.length?null:a[a.length-1].character},getNextCharacterRange:function(a){var b,d;d=this._.cursors;d=(b=d[d.length-1])&&b.textNode?new n(y(b)):this._.walker;return new t(d,a)},getCursors:function(){return this._.cursors}};var A=function(a,b){var d=[-1];b&&(a=a.toLowerCase());for(var c=0;c<a.length;c++)for(d.push(d[c]+1);0<d[c+1]&&a.charAt(c)!=a.charAt(d[c+1]-1);)d[c+1]=d[d[c+1]-1]+1;this._={overlap:d, +state:0,ignoreCase:!!b,pattern:a}};A.prototype={feedCharacter:function(a){for(this._.ignoreCase&&(a=a.toLowerCase());;){if(a==this._.pattern.charAt(this._.state))return this._.state++,this._.state==this._.pattern.length?(this._.state=0,2):1;if(this._.state)this._.state=this._.overlap[this._.state];else return 0}},reset:function(){this._.state=0}};var E=/[.,"'?!;: \u0085\u00a0\u1680\u280e\u2028\u2029\u202f\u205f\u3000]/,B=function(a){if(!a)return!0;var b=a.charCodeAt(0);return 9<=b&&13>=b||8192<=b&& +8202>=b||E.test(a)},f={searchRange:null,matchRange:null,find:function(a,b,d,e,D,u){this.matchRange?(this.matchRange.removeHighlight(),this.matchRange=this.matchRange.getNextCharacterRange(a.length)):this.matchRange=new t(new n(this.searchRange),a.length);for(var h=new A(a,!b),k=0,l="%";null!==l;){for(this.matchRange.moveNext();l=this.matchRange.getEndCharacter();){k=h.feedCharacter(l);if(2==k)break;this.matchRange.moveNext().hitMatchBoundary&&h.reset()}if(2==k){if(d){var g=this.matchRange.getCursors(), +p=g[g.length-1],g=g[0],m=c.createRange();m.setStartAt(c.editable(),CKEDITOR.POSITION_AFTER_START);m.setEnd(g.textNode,g.offset);g=m;p=y(p);g.trim();p.trim();g=new n(g,!0);p=new n(p,!0);if(!B(g.back().character)||!B(p.next().character))continue}this.matchRange.setMatched();!1!==D&&this.matchRange.highlight();return!0}}this.matchRange.clearMatched();this.matchRange.removeHighlight();return e&&!u?(this.searchRange=r(1),this.matchRange=null,f.find.apply(this,Array.prototype.slice.call(arguments).concat([!0]))): +!1},replaceCounter:0,replace:function(a,b,d,e,f,u,h){m=1;a=0;a=this.hasMatchOptionsChanged(b,e,f);if(!this.matchRange||!this.matchRange.isMatched()||this.matchRange._.isReplaced||this.matchRange.isReadOnly()||a)a&&this.matchRange&&(this.matchRange.clearMatched(),this.matchRange.removeHighlight(),this.matchRange=null),a=this.find(b,e,f,u,!h);else{this.matchRange.removeHighlight();b=this.matchRange.toDomRange();d=c.document.createText(d);if(!h){var k=c.getSelection();k.selectRanges([b]);c.fire("saveSnapshot")}b.deleteContents(); +b.insertNode(d);h||(k.selectRanges([b]),c.fire("saveSnapshot"));this.matchRange.updateFromDomRange(b);h||this.matchRange.highlight();this.matchRange._.isReplaced=!0;this.replaceCounter++;a=1}m=0;return a},matchOptions:null,hasMatchOptionsChanged:function(a,b,d){a=[a,b,d].join(".");b=this.matchOptions&&this.matchOptions!=a;this.matchOptions=a;return b}},e=c.lang.find;return{title:e.title,resizable:CKEDITOR.DIALOG_RESIZE_NONE,minWidth:350,minHeight:170,buttons:[CKEDITOR.dialog.cancelButton(c,{label:c.lang.common.close})], +contents:[{id:"find",label:e.find,title:e.find,accessKey:"",elements:[{type:"hbox",widths:["230px","90px"],children:[{type:"text",id:"txtFindFind",label:e.findWhat,isChanged:!1,labelLayout:"horizontal",accessKey:"F"},{type:"button",id:"btnFind",align:"left",style:"width:100%",label:e.find,onClick:function(){var a=this.getDialog();f.find(a.getValueOf("find","txtFindFind"),a.getValueOf("find","txtFindCaseChk"),a.getValueOf("find","txtFindWordChk"),a.getValueOf("find","txtFindCyclic"))||alert(e.notFoundMsg)}}]}, +{type:"fieldset",className:"cke_dialog_find_fieldset",label:CKEDITOR.tools.htmlEncode(e.findOptions),style:"margin-top:29px",children:[{type:"vbox",padding:0,children:[{type:"checkbox",id:"txtFindCaseChk",isChanged:!1,label:e.matchCase},{type:"checkbox",id:"txtFindWordChk",isChanged:!1,label:e.matchWord},{type:"checkbox",id:"txtFindCyclic",isChanged:!1,"default":!0,label:e.matchCyclic}]}]}]},{id:"replace",label:e.replace,accessKey:"M",elements:[{type:"hbox",widths:["230px","90px"],children:[{type:"text", +id:"txtFindReplace",label:e.findWhat,isChanged:!1,labelLayout:"horizontal",accessKey:"F"},{type:"button",id:"btnFindReplace",align:"left",style:"width:100%",label:e.replace,onClick:function(){var a=this.getDialog();f.replace(a,a.getValueOf("replace","txtFindReplace"),a.getValueOf("replace","txtReplace"),a.getValueOf("replace","txtReplaceCaseChk"),a.getValueOf("replace","txtReplaceWordChk"),a.getValueOf("replace","txtReplaceCyclic"))||alert(e.notFoundMsg)}}]},{type:"hbox",widths:["230px","90px"],children:[{type:"text", +id:"txtReplace",label:e.replaceWith,isChanged:!1,labelLayout:"horizontal",accessKey:"R"},{type:"button",id:"btnReplaceAll",align:"left",style:"width:100%",label:e.replaceAll,isChanged:!1,onClick:function(){var a=this.getDialog();f.replaceCounter=0;f.searchRange=r(1);f.matchRange&&(f.matchRange.removeHighlight(),f.matchRange=null);for(c.fire("saveSnapshot");f.replace(a,a.getValueOf("replace","txtFindReplace"),a.getValueOf("replace","txtReplace"),a.getValueOf("replace","txtReplaceCaseChk"),a.getValueOf("replace", +"txtReplaceWordChk"),!1,!0););f.replaceCounter?(alert(e.replaceSuccessMsg.replace(/%1/,f.replaceCounter)),c.fire("saveSnapshot")):alert(e.notFoundMsg)}}]},{type:"fieldset",label:CKEDITOR.tools.htmlEncode(e.findOptions),children:[{type:"vbox",padding:0,children:[{type:"checkbox",id:"txtReplaceCaseChk",isChanged:!1,label:e.matchCase},{type:"checkbox",id:"txtReplaceWordChk",isChanged:!1,label:e.matchWord},{type:"checkbox",id:"txtReplaceCyclic",isChanged:!1,"default":!0,label:e.matchCyclic}]}]}]}],onLoad:function(){var a= +this,b,d=0;this.on("hide",function(){d=0});this.on("show",function(){d=1});this.selectPage=CKEDITOR.tools.override(this.selectPage,function(c){return function(e){c.call(a,e);var f=a._.tabs[e],h;h="find"===e?"txtFindWordChk":"txtReplaceWordChk";b=a.getContentElement(e,"find"===e?"txtFindFind":"txtFindReplace");a.getContentElement(e,h);f.initialized||(CKEDITOR.document.getById(b._.inputId),f.initialized=!0);if(d){var k;e="find"===e?1:0;var f=1-e,l,g=q.length;for(l=0;l<g;l++)h=this.getContentElement(x[e], +q[l][e]),k=this.getContentElement(x[f],q[l][f]),k.setValue(h.getValue())}}})},onShow:function(){f.searchRange=r();var a=this._.currentTabId,b=this.getParentEditor().getSelection().getSelectedText(),c=this.getContentElement(a,"find"==a?"txtFindFind":"txtFindReplace");c.setValue(b);c.select();this[("find"==a&&this._.editor.readOnly?"hide":"show")+"Page"]("replace")},onHide:function(){var a;f.matchRange&&f.matchRange.isMatched()&&(f.matchRange.removeHighlight(),(a=f.matchRange.toDomRange())&&c.getSelection().selectRanges([a]), +c.focus());delete f.matchRange},onFocus:function(){return"replace"==this._.currentTabId?this.getContentElement("replace","txtFindReplace"):this.getContentElement("find","txtFindFind")}}})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/flash/dialogs/flash.js b/static/ckeditor/ckeditor/plugins/flash/dialogs/flash.js new file mode 100644 index 0000000000..1b132a186e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/flash/dialogs/flash.js @@ -0,0 +1,24 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +(function(){function b(a,b,c){var h=n[this.id];if(h)for(var f=this instanceof CKEDITOR.ui.dialog.checkbox,e=0;e<h.length;e++){var d=h[e];switch(d.type){case 1:if(!a)continue;if(null!==a.getAttribute(d.name)){a=a.getAttribute(d.name);f?this.setValue("true"==a.toLowerCase()):this.setValue(a);return}f&&this.setValue(!!d["default"]);break;case 2:if(!a)continue;if(d.name in c){a=c[d.name];f?this.setValue("true"==a.toLowerCase()):this.setValue(a);return}f&&this.setValue(!!d["default"]);break;case 4:if(!b)continue; +if(b.getAttribute(d.name)){a=b.getAttribute(d.name);f?this.setValue("true"==a.toLowerCase()):this.setValue(a);return}f&&this.setValue(!!d["default"])}}}function c(a,b,c){var h=n[this.id];if(h)for(var f=""===this.getValue(),e=this instanceof CKEDITOR.ui.dialog.checkbox,d=0;d<h.length;d++){var g=h[d];switch(g.type){case 1:if(!a||"data"==g.name&&b&&!a.hasAttribute("data"))continue;var m=this.getValue();f||e&&m===g["default"]?a.removeAttribute(g.name):a.setAttribute(g.name,m);break;case 2:if(!a)continue; +m=this.getValue();if(f||e&&m===g["default"])g.name in c&&c[g.name].remove();else if(g.name in c)c[g.name].setAttribute("value",m);else{var p=CKEDITOR.dom.element.createFromHtml("\x3ccke:param\x3e\x3c/cke:param\x3e",a.getDocument());p.setAttributes({name:g.name,value:m});1>a.getChildCount()?p.appendTo(a):p.insertBefore(a.getFirst())}break;case 4:if(!b)continue;m=this.getValue();f||e&&m===g["default"]?b.removeAttribute(g.name):b.setAttribute(g.name,m)}}}for(var n={id:[{type:1,name:"id"}],classid:[{type:1, +name:"classid"}],codebase:[{type:1,name:"codebase"}],pluginspage:[{type:4,name:"pluginspage"}],src:[{type:2,name:"movie"},{type:4,name:"src"},{type:1,name:"data"}],name:[{type:4,name:"name"}],align:[{type:1,name:"align"}],"class":[{type:1,name:"class"},{type:4,name:"class"}],width:[{type:1,name:"width"},{type:4,name:"width"}],height:[{type:1,name:"height"},{type:4,name:"height"}],hSpace:[{type:1,name:"hSpace"},{type:4,name:"hSpace"}],vSpace:[{type:1,name:"vSpace"},{type:4,name:"vSpace"}],style:[{type:1, +name:"style"},{type:4,name:"style"}],type:[{type:4,name:"type"}]},k="play loop menu quality scale salign wmode bgcolor base flashvars allowScriptAccess allowFullScreen".split(" "),l=0;l<k.length;l++)n[k[l]]=[{type:4,name:k[l]},{type:2,name:k[l]}];k=["play","loop","menu"];for(l=0;l<k.length;l++)n[k[l]][0]["default"]=n[k[l]][1]["default"]=!0;CKEDITOR.dialog.add("flash",function(a){var l=!a.config.flashEmbedTagOnly,k=a.config.flashAddEmbedTag||a.config.flashEmbedTagOnly,h,f="\x3cdiv\x3e"+CKEDITOR.tools.htmlEncode(a.lang.common.preview)+ +'\x3cbr\x3e\x3cdiv id\x3d"cke_FlashPreviewLoader'+CKEDITOR.tools.getNextNumber()+'" style\x3d"display:none"\x3e\x3cdiv class\x3d"loading"\x3e\x26nbsp;\x3c/div\x3e\x3c/div\x3e\x3cdiv id\x3d"cke_FlashPreviewBox'+CKEDITOR.tools.getNextNumber()+'" class\x3d"FlashPreviewBox"\x3e\x3c/div\x3e\x3c/div\x3e';return{title:a.lang.flash.title,minWidth:420,minHeight:310,getModel:function(a){return(a=a.getSelection().getSelectedElement())&&"flash"===a.data("cke-real-element-type")?a:null},onShow:function(){this.fakeImage= +this.objectNode=this.embedNode=null;h=new CKEDITOR.dom.element("embed",a.document);var e=this.getModel(a);if(e){this.fakeImage=e;var d=a.restoreRealElement(e),g=null,b=null,c={};if("cke:object"==d.getName()){g=d;d=g.getElementsByTag("embed","cke");0<d.count()&&(b=d.getItem(0));for(var d=g.getElementsByTag("param","cke"),f=0,l=d.count();f<l;f++){var k=d.getItem(f),n=k.getAttribute("name"),k=k.getAttribute("value");c[n]=k}}else"cke:embed"==d.getName()&&(b=d);this.objectNode=g;this.embedNode=b;this.setupContent(g, +b,c,e)}},onOk:function(){var e=null,d=null,b=null;this.fakeImage?(e=this.objectNode,d=this.embedNode):(l&&(e=CKEDITOR.dom.element.createFromHtml("\x3ccke:object\x3e\x3c/cke:object\x3e",a.document),e.setAttributes({classid:"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000",codebase:"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version\x3d6,0,40,0"})),k&&(d=CKEDITOR.dom.element.createFromHtml("\x3ccke:embed\x3e\x3c/cke:embed\x3e",a.document),d.setAttributes({type:"application/x-shockwave-flash", +pluginspage:"http://www.macromedia.com/go/getflashplayer"}),e&&d.appendTo(e)));if(e)for(var b={},c=e.getElementsByTag("param","cke"),f=0,h=c.count();f<h;f++)b[c.getItem(f).getAttribute("name")]=c.getItem(f);c={};f={};this.commitContent(e,d,b,c,f);e=a.createFakeElement(e||d,"cke_flash","flash",!0);e.setAttributes(f);e.setStyles(c);this.fakeImage?(e.replace(this.fakeImage),a.getSelection().selectElement(e)):a.insertElement(e)},onHide:function(){this.preview&&this.preview.setHtml("")},contents:[{id:"info", +label:a.lang.common.generalTab,accessKey:"I",elements:[{type:"vbox",padding:0,children:[{type:"hbox",widths:["280px","110px"],align:"right",className:"cke_dialog_flash_url",children:[{id:"src",type:"text",label:a.lang.common.url,required:!0,validate:CKEDITOR.dialog.validate.notEmpty(a.lang.flash.validateSrc),setup:b,commit:c,onLoad:function(){var a=this.getDialog(),b=function(b){h.setAttribute("src",b);a.preview.setHtml('\x3cembed height\x3d"100%" width\x3d"100%" src\x3d"'+CKEDITOR.tools.htmlEncode(h.getAttribute("src"))+ +'" type\x3d"application/x-shockwave-flash"\x3e\x3c/embed\x3e')};a.preview=a.getContentElement("info","preview").getElement().getChild(3);this.on("change",function(a){a.data&&a.data.value&&b(a.data.value)});this.getInputElement().on("change",function(){b(this.getValue())},this)}},{type:"button",id:"browse",filebrowser:"info:src",hidden:!0,style:"display:inline-block;margin-top:14px;",label:a.lang.common.browseServer}]}]},{type:"hbox",widths:["25%","25%","25%","25%","25%"],children:[{type:"text",id:"width", +requiredContent:"embed[width]",style:"width:95px",label:a.lang.common.width,validate:CKEDITOR.dialog.validate.htmlLength(a.lang.common.invalidHtmlLength.replace("%1",a.lang.common.width)),setup:b,commit:c},{type:"text",id:"height",requiredContent:"embed[height]",style:"width:95px",label:a.lang.common.height,validate:CKEDITOR.dialog.validate.htmlLength(a.lang.common.invalidHtmlLength.replace("%1",a.lang.common.height)),setup:b,commit:c},{type:"text",id:"hSpace",requiredContent:"embed[hspace]",style:"width:95px", +label:a.lang.flash.hSpace,validate:CKEDITOR.dialog.validate.integer(a.lang.flash.validateHSpace),setup:b,commit:c},{type:"text",id:"vSpace",requiredContent:"embed[vspace]",style:"width:95px",label:a.lang.flash.vSpace,validate:CKEDITOR.dialog.validate.integer(a.lang.flash.validateVSpace),setup:b,commit:c}]},{type:"vbox",children:[{type:"html",id:"preview",style:"width:95%;",html:f}]}]},{id:"Upload",hidden:!0,filebrowser:"uploadButton",label:a.lang.common.upload,elements:[{type:"file",id:"upload",label:a.lang.common.upload, +size:38},{type:"fileButton",id:"uploadButton",label:a.lang.common.uploadSubmit,filebrowser:"info:src","for":["Upload","upload"]}]},{id:"properties",label:a.lang.flash.propertiesTab,elements:[{type:"hbox",widths:["50%","50%"],children:[{id:"scale",type:"select",requiredContent:"embed[scale]",label:a.lang.flash.scale,"default":"",style:"width : 100%;",items:[[a.lang.common.notSet,""],[a.lang.flash.scaleAll,"showall"],[a.lang.flash.scaleNoBorder,"noborder"],[a.lang.flash.scaleFit,"exactfit"]],setup:b, +commit:c},{id:"allowScriptAccess",type:"select",requiredContent:"embed[allowscriptaccess]",label:a.lang.flash.access,"default":"",style:"width : 100%;",items:[[a.lang.common.notSet,""],[a.lang.flash.accessAlways,"always"],[a.lang.flash.accessSameDomain,"samedomain"],[a.lang.flash.accessNever,"never"]],setup:b,commit:c}]},{type:"hbox",widths:["50%","50%"],children:[{id:"wmode",type:"select",requiredContent:"embed[wmode]",label:a.lang.flash.windowMode,"default":"",style:"width : 100%;",items:[[a.lang.common.notSet, +""],[a.lang.flash.windowModeWindow,"window"],[a.lang.flash.windowModeOpaque,"opaque"],[a.lang.flash.windowModeTransparent,"transparent"]],setup:b,commit:c},{id:"quality",type:"select",requiredContent:"embed[quality]",label:a.lang.flash.quality,"default":"high",style:"width : 100%;",items:[[a.lang.common.notSet,""],[a.lang.flash.qualityBest,"best"],[a.lang.flash.qualityHigh,"high"],[a.lang.flash.qualityAutoHigh,"autohigh"],[a.lang.flash.qualityMedium,"medium"],[a.lang.flash.qualityAutoLow,"autolow"], +[a.lang.flash.qualityLow,"low"]],setup:b,commit:c}]},{type:"hbox",widths:["50%","50%"],children:[{id:"align",type:"select",requiredContent:"object[align]",label:a.lang.common.align,"default":"",style:"width : 100%;",items:[[a.lang.common.notSet,""],[a.lang.common.left,"left"],[a.lang.flash.alignAbsBottom,"absBottom"],[a.lang.flash.alignAbsMiddle,"absMiddle"],[a.lang.flash.alignBaseline,"baseline"],[a.lang.common.alignBottom,"bottom"],[a.lang.common.alignMiddle,"middle"],[a.lang.common.right,"right"], +[a.lang.flash.alignTextTop,"textTop"],[a.lang.common.alignTop,"top"]],setup:b,commit:function(a,b,f,k,l){var h=this.getValue();c.apply(this,arguments);h&&(l.align=h)}},{type:"html",html:"\x3cdiv\x3e\x3c/div\x3e"}]},{type:"fieldset",label:CKEDITOR.tools.htmlEncode(a.lang.flash.flashvars),children:[{type:"vbox",padding:0,children:[{type:"checkbox",id:"menu",label:a.lang.flash.chkMenu,"default":!0,setup:b,commit:c},{type:"checkbox",id:"play",label:a.lang.flash.chkPlay,"default":!0,setup:b,commit:c}, +{type:"checkbox",id:"loop",label:a.lang.flash.chkLoop,"default":!0,setup:b,commit:c},{type:"checkbox",id:"allowFullScreen",label:a.lang.flash.chkFull,"default":!0,setup:b,commit:c}]}]}]},{id:"advanced",label:a.lang.common.advancedTab,elements:[{type:"hbox",children:[{type:"text",id:"id",requiredContent:"object[id]",label:a.lang.common.id,setup:b,commit:c}]},{type:"hbox",widths:["45%","55%"],children:[{type:"text",id:"bgcolor",requiredContent:"embed[bgcolor]",label:a.lang.flash.bgcolor,setup:b,commit:c}, +{type:"text",id:"class",requiredContent:"embed(cke-xyz)",label:a.lang.common.cssClass,setup:b,commit:c}]},{type:"text",id:"style",requiredContent:"embed{cke-xyz}",validate:CKEDITOR.dialog.validate.inlineStyle(a.lang.common.invalidInlineStyle),label:a.lang.common.cssStyle,setup:b,commit:c}]}]}})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/flash/images/placeholder.png b/static/ckeditor/ckeditor/plugins/flash/images/placeholder.png new file mode 100644 index 0000000000..0bc6caa7a6 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/flash/images/placeholder.png differ diff --git a/static/ckeditor/ckeditor/plugins/forms/dialogs/button.js b/static/ckeditor/ckeditor/plugins/forms/dialogs/button.js new file mode 100644 index 0000000000..79899fb32a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/forms/dialogs/button.js @@ -0,0 +1,8 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.dialog.add("button",function(b){function d(a){var b=this.getValue();b?(a.attributes[this.id]=b,"name"==this.id&&(a.attributes["data-cke-saved-name"]=b)):(delete a.attributes[this.id],"name"==this.id&&delete a.attributes["data-cke-saved-name"])}return{title:b.lang.forms.button.title,minWidth:350,minHeight:150,getModel:function(a){return(a=a.getSelection().getSelectedElement())&&a.is("input")&&a.getAttribute("type")in{button:1,reset:1,submit:1}?a:null},onShow:function(){var a=this.getModel(this.getParentEditor()); +a&&this.setupContent(a)},onOk:function(){var a=this.getParentEditor(),b=this.getModel(a),d=this.getMode(a)==CKEDITOR.dialog.CREATION_MODE,c=b?CKEDITOR.htmlParser.fragment.fromHtml(b.getOuterHtml()).children[0]:new CKEDITOR.htmlParser.element("input");this.commitContent(c);var e=new CKEDITOR.htmlParser.basicWriter;c.writeHtml(e);c=CKEDITOR.dom.element.createFromHtml(e.getHtml(),a.document);d?a.insertElement(c):(c.replace(b),a.getSelection().selectElement(c))},contents:[{id:"info",label:b.lang.forms.button.title, +title:b.lang.forms.button.title,elements:[{id:"name",type:"text",bidi:!0,label:b.lang.common.name,"default":"",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:d},{id:"value",type:"text",label:b.lang.forms.button.text,accessKey:"V","default":"",setup:function(a){this.setValue(a.getAttribute("value")||"")},commit:d},{id:"type",type:"select",label:b.lang.forms.button.type,"default":"button",accessKey:"T",items:[[b.lang.forms.button.typeBtn,"button"],[b.lang.forms.button.typeSbm, +"submit"],[b.lang.forms.button.typeRst,"reset"]],setup:function(a){this.setValue(a.getAttribute("type")||"")},commit:d}]}]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/forms/dialogs/checkbox.js b/static/ckeditor/ckeditor/plugins/forms/dialogs/checkbox.js new file mode 100644 index 0000000000..10af1a8ebb --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/forms/dialogs/checkbox.js @@ -0,0 +1,9 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.dialog.add("checkbox",function(d){return{title:d.lang.forms.checkboxAndRadio.checkboxTitle,minWidth:350,minHeight:140,getModel:function(a){return(a=a.getSelection().getSelectedElement())&&"checkbox"==a.getAttribute("type")?a:null},onShow:function(){var a=this.getModel(this.getParentEditor());a&&this.setupContent(a)},onOk:function(){var a=this.getParentEditor(),b=this.getModel(a);b||(b=a.document.createElement("input"),b.setAttribute("type","checkbox"),a.insertElement(b));this.commitContent({element:b})}, +contents:[{id:"info",label:d.lang.forms.checkboxAndRadio.checkboxTitle,title:d.lang.forms.checkboxAndRadio.checkboxTitle,startupFocus:"txtName",elements:[{id:"txtName",type:"text",label:d.lang.common.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){a=a.element;this.getValue()?a.data("cke-saved-name",this.getValue()):(a.data("cke-saved-name",!1),a.removeAttribute("name"))}},{id:"txtValue",type:"text",label:d.lang.forms.checkboxAndRadio.value, +"default":"",accessKey:"V",setup:function(a){a=a.getAttribute("value");this.setValue(CKEDITOR.env.ie&&"on"==a?"":a)},commit:function(a){var b=a.element,c=this.getValue();!c||CKEDITOR.env.ie&&"on"==c?CKEDITOR.env.ie?(c=new CKEDITOR.dom.element("input",b.getDocument()),b.copyAttributes(c,{value:1}),c.replace(b),d.getSelection().selectElement(c),a.element=c):b.removeAttribute("value"):b.setAttribute("value",c)}},{id:"cmbSelected",type:"checkbox",label:d.lang.forms.checkboxAndRadio.selected,"default":"", +accessKey:"S",value:"checked",setup:function(a){this.setValue(a.getAttribute("checked"))},commit:function(a){var b=a.element;if(CKEDITOR.env.ie){var c=!!b.getAttribute("checked"),e=!!this.getValue();c!=e&&(c=CKEDITOR.dom.element.createFromHtml('\x3cinput type\x3d"checkbox"'+(e?' checked\x3d"checked"':"")+"/\x3e",d.document),b.copyAttributes(c,{type:1,checked:1}),c.replace(b),d.getSelection().selectElement(c),a.element=c)}else a=this.getValue(),CKEDITOR.env.webkit&&(b.$.checked=a),a?b.setAttribute("checked", +"checked"):b.removeAttribute("checked")}},{id:"required",type:"checkbox",label:d.lang.forms.checkboxAndRadio.required,"default":"",accessKey:"Q",value:"required",setup:CKEDITOR.plugins.forms._setupRequiredAttribute,commit:function(a){a=a.element;this.getValue()?a.setAttribute("required","required"):a.removeAttribute("required")}}]}]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/forms/dialogs/form.js b/static/ckeditor/ckeditor/plugins/forms/dialogs/form.js new file mode 100644 index 0000000000..8ce17be950 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/forms/dialogs/form.js @@ -0,0 +1,8 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.dialog.add("form",function(a){var d={action:1,id:1,method:1,enctype:1,target:1};return{title:a.lang.forms.form.title,minWidth:350,minHeight:200,getModel:function(b){return b.elementPath().contains("form",1)||null},onShow:function(){var b=this.getModel(this.getParentEditor());b&&this.setupContent(b)},onOk:function(){var b=this.getParentEditor(),a=this.getModel(b);a||(a=b.document.createElement("form"),a.appendBogus(),b.insertElement(a));this.commitContent(a)},onLoad:function(){function a(b){this.setValue(b.getAttribute(this.id)|| +"")}function e(a){this.getValue()?a.setAttribute(this.id,this.getValue()):a.removeAttribute(this.id)}this.foreach(function(c){d[c.id]&&(c.setup=a,c.commit=e)})},contents:[{id:"info",label:a.lang.forms.form.title,title:a.lang.forms.form.title,elements:[{id:"txtName",bidi:!0,type:"text",label:a.lang.common.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){this.getValue()?a.data("cke-saved-name",this.getValue()): +(a.data("cke-saved-name",!1),a.removeAttribute("name"))}},{id:"action",type:"text",label:a.lang.forms.form.action,"default":"",accessKey:"T"},{type:"hbox",widths:["45%","55%"],children:[{id:"id",type:"text",label:a.lang.common.id,"default":"",accessKey:"I"},{id:"enctype",type:"select",label:a.lang.forms.form.encoding,style:"width:100%",accessKey:"E","default":"",items:[[""],["text/plain"],["multipart/form-data"],["application/x-www-form-urlencoded"]]}]},{type:"hbox",widths:["45%","55%"],children:[{id:"target", +type:"select",label:a.lang.common.target,style:"width:100%",accessKey:"M","default":"",items:[[a.lang.common.notSet,""],[a.lang.common.targetNew,"_blank"],[a.lang.common.targetTop,"_top"],[a.lang.common.targetSelf,"_self"],[a.lang.common.targetParent,"_parent"]]},{id:"method",type:"select",label:a.lang.forms.form.method,accessKey:"M","default":"GET",items:[["GET","get"],["POST","post"]]}]}]}]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/forms/dialogs/hiddenfield.js b/static/ckeditor/ckeditor/plugins/forms/dialogs/hiddenfield.js new file mode 100644 index 0000000000..cb457fa5ff --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/forms/dialogs/hiddenfield.js @@ -0,0 +1,7 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.dialog.add("hiddenfield",function(c){return{title:c.lang.forms.hidden.title,hiddenField:null,minWidth:350,minHeight:110,getModel:function(a){return(a=a.getSelection().getSelectedElement())&&a.data("cke-real-element-type")&&"hiddenfield"==a.data("cke-real-element-type")?a:null},onShow:function(){var a=this.getParentEditor(),b=this.getModel(a);b&&(this.setupContent(a.restoreRealElement(b)),a.getSelection().selectElement(b))},onOk:function(){var a=this.getValueOf("info","_cke_saved_name"),b= +this.getParentEditor(),a=CKEDITOR.env.ie&&8>CKEDITOR.document.$.documentMode?b.document.createElement('\x3cinput name\x3d"'+CKEDITOR.tools.htmlEncode(a)+'"\x3e'):b.document.createElement("input");a.setAttribute("type","hidden");this.commitContent(a);var a=b.createFakeElement(a,"cke_hidden","hiddenfield"),c=this.getModel(b);c?(a.replace(c),b.getSelection().selectElement(a)):b.insertElement(a);return!0},contents:[{id:"info",label:c.lang.forms.hidden.title,title:c.lang.forms.hidden.title,elements:[{id:"_cke_saved_name", +type:"text",label:c.lang.forms.hidden.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){this.getValue()?a.setAttribute("name",this.getValue()):a.removeAttribute("name")}},{id:"value",type:"text",label:c.lang.forms.hidden.value,"default":"",accessKey:"V",setup:function(a){this.setValue(a.getAttribute("value")||"")},commit:function(a){this.getValue()?a.setAttribute("value",this.getValue()):a.removeAttribute("value")}}]}]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/forms/dialogs/radio.js b/static/ckeditor/ckeditor/plugins/forms/dialogs/radio.js new file mode 100644 index 0000000000..6d1b1a2feb --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/forms/dialogs/radio.js @@ -0,0 +1,9 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.dialog.add("radio",function(c){return{title:c.lang.forms.checkboxAndRadio.radioTitle,minWidth:350,minHeight:140,getModel:function(a){return(a=a.getSelection().getSelectedElement())&&"input"==a.getName()&&"radio"==a.getAttribute("type")?a:null},onShow:function(){var a=this.getModel(this.getParentEditor());a&&this.setupContent(a)},onOk:function(){var a=this.getParentEditor(),b=this.getModel(a);b||(b=a.document.createElement("input"),b.setAttribute("type","radio"),a.insertElement(b));this.commitContent({element:b})}, +contents:[{id:"info",label:c.lang.forms.checkboxAndRadio.radioTitle,title:c.lang.forms.checkboxAndRadio.radioTitle,elements:[{id:"name",type:"text",label:c.lang.common.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){a=a.element;this.getValue()?a.data("cke-saved-name",this.getValue()):(a.data("cke-saved-name",!1),a.removeAttribute("name"))}},{id:"value",type:"text",label:c.lang.forms.checkboxAndRadio.value,"default":"", +accessKey:"V",setup:function(a){this.setValue(a.getAttribute("value")||"")},commit:function(a){a=a.element;this.getValue()?a.setAttribute("value",this.getValue()):a.removeAttribute("value")}},{id:"checked",type:"checkbox",label:c.lang.forms.checkboxAndRadio.selected,"default":"",accessKey:"S",value:"checked",setup:function(a){this.setValue(a.getAttribute("checked"))},commit:function(a){var b=a.element;if(CKEDITOR.env.ie){var d=b.getAttribute("checked"),e=!!this.getValue();d!=e&&(d=CKEDITOR.dom.element.createFromHtml('\x3cinput type\x3d"radio"'+ +(e?' checked\x3d"checked"':"")+"\x3e\x3c/input\x3e",c.document),b.copyAttributes(d,{type:1,checked:1}),d.replace(b),e&&d.setAttribute("checked","checked"),c.getSelection().selectElement(d),a.element=d)}else a=this.getValue(),CKEDITOR.env.webkit&&(b.$.checked=a),a?b.setAttribute("checked","checked"):b.removeAttribute("checked")}},{id:"required",type:"checkbox",label:c.lang.forms.checkboxAndRadio.required,"default":"",accessKey:"Q",value:"required",setup:CKEDITOR.plugins.forms._setupRequiredAttribute, +commit:function(a){a=a.element;this.getValue()?a.setAttribute("required","required"):a.removeAttribute("required")}}]}]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/forms/dialogs/select.js b/static/ckeditor/ckeditor/plugins/forms/dialogs/select.js new file mode 100644 index 0000000000..091e6c1d2f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/forms/dialogs/select.js @@ -0,0 +1,21 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.dialog.add("select",function(c){function h(a,b,e,d,c){a=f(a);d=d?d.createElement("OPTION"):document.createElement("OPTION");if(a&&d&&"option"==d.getName())CKEDITOR.env.ie?(isNaN(parseInt(c,10))?a.$.options.add(d.$):a.$.options.add(d.$,c),d.$.innerHTML=0<b.length?b:"",d.$.value=e):(null!==c&&c<a.getChildCount()?a.getChild(0>c?0:c).insertBeforeMe(d):a.append(d),d.setText(0<b.length?b:""),d.setValue(e));else return!1;return d}function p(a){a=f(a);for(var b=g(a),e=a.getChildren().count()-1;0<= +e;e--)a.getChild(e).$.selected&&a.getChild(e).remove();k(a,b)}function q(a,b,e,d){a=f(a);if(0>b)return!1;a=a.getChild(b);a.setText(e);a.setValue(d);return a}function m(a){for(a=f(a);a.getChild(0)&&a.getChild(0).remove(););}function l(a,b,e){a=f(a);var d=g(a);if(0>d)return!1;b=d+b;b=0>b?0:b;b=b>=a.getChildCount()?a.getChildCount()-1:b;if(d==b)return!1;var d=a.getChild(d),c=d.getText(),r=d.getValue();d.remove();d=h(a,c,r,e?e:null,b);k(a,b);return d}function g(a){return(a=f(a))?a.$.selectedIndex:-1} +function k(a,b){a=f(a);if(0>b)return null;var e=a.getChildren().count();a.$.selectedIndex=b>=e?e-1:b;return a}function n(a){return(a=f(a))?a.getChildren():!1}function f(a){return a&&a.domId&&a.getInputElement().$?a.getInputElement():a&&a.$?a:!1}return{title:c.lang.forms.select.title,minWidth:CKEDITOR.env.ie?460:395,minHeight:CKEDITOR.env.ie?320:300,getModel:function(a){return(a=a.getSelection().getSelectedElement())&&"select"==a.getName()?a:null},onShow:function(){this.setupContent("clear");var a= +this.getModel(this.getParentEditor());if(a){this.setupContent(a.getName(),a);for(var a=n(a),b=0;b<a.count();b++)this.setupContent("option",a.getItem(b))}},onOk:function(){var a=this.getParentEditor(),b=this.getModel(a),e=this.getMode(a)==CKEDITOR.dialog.CREATION_MODE;e&&(b=a.document.createElement("select"));this.commitContent(b);if(e&&(a.insertElement(b),CKEDITOR.env.ie)){var d=a.getSelection(),c=d.createBookmarks();setTimeout(function(){d.selectBookmarks(c)},0)}},contents:[{id:"info",label:c.lang.forms.select.selectInfo, +title:c.lang.forms.select.selectInfo,accessKey:"",elements:[{id:"txtName",type:"text",widths:["25%","75%"],labelLayout:"horizontal",label:c.lang.common.name,"default":"",accessKey:"N",style:"width:350px",setup:function(a,b){"clear"==a?this.setValue(this["default"]||""):"select"==a&&this.setValue(b.data("cke-saved-name")||b.getAttribute("name")||"")},commit:function(a){this.getValue()?a.data("cke-saved-name",this.getValue()):(a.data("cke-saved-name",!1),a.removeAttribute("name"))}},{id:"txtValue", +type:"text",widths:["25%","75%"],labelLayout:"horizontal",label:c.lang.forms.select.value,style:"width:350px","default":"",className:"cke_disabled",onLoad:function(){this.getInputElement().setAttribute("readOnly",!0)},setup:function(a,b){"clear"==a?this.setValue(""):"option"==a&&b.getAttribute("selected")&&this.setValue(b.$.value)}},{type:"hbox",className:"cke_dialog_forms_select_order_txtsize",widths:["175px","170px"],children:[{id:"txtSize",type:"text",labelLayout:"horizontal",label:c.lang.forms.select.size, +"default":"",accessKey:"S",style:"width:175px",validate:function(){var a=CKEDITOR.dialog.validate.integer(c.lang.common.validateNumberFailed);return""===this.getValue()||a.apply(this)},setup:function(a,b){"select"==a&&this.setValue(b.getAttribute("size")||"");CKEDITOR.env.webkit&&this.getInputElement().setStyle("width","86px")},commit:function(a){this.getValue()?a.setAttribute("size",this.getValue()):a.removeAttribute("size")}},{type:"html",html:"\x3cspan\x3e"+CKEDITOR.tools.htmlEncode(c.lang.forms.select.lines)+ +"\x3c/span\x3e"}]},{type:"html",html:"\x3cspan\x3e"+CKEDITOR.tools.htmlEncode(c.lang.forms.select.opAvail)+"\x3c/span\x3e"},{type:"hbox",widths:["115px","115px","100px"],className:"cke_dialog_forms_select_order",children:[{type:"vbox",children:[{id:"txtOptName",type:"text",label:c.lang.forms.select.opText,style:"width:115px",setup:function(a){"clear"==a&&this.setValue("")}},{type:"select",id:"cmbName",label:"",title:"",size:5,style:"width:115px;height:75px",items:[],onChange:function(){var a=this.getDialog(), +b=a.getContentElement("info","cmbValue"),e=a.getContentElement("info","txtOptName"),a=a.getContentElement("info","txtOptValue"),d=g(this);k(b,d);e.setValue(this.getValue());a.setValue(b.getValue())},setup:function(a,b){"clear"==a?m(this):"option"==a&&h(this,b.getText(),b.getText(),this.getDialog().getParentEditor().document)},commit:function(a){var b=this.getDialog(),e=n(this),d=n(b.getContentElement("info","cmbValue")),c=b.getContentElement("info","txtValue").getValue();m(a);for(var f=0;f<e.count();f++){var g= +h(a,e.getItem(f).getValue(),d.getItem(f).getValue(),b.getParentEditor().document);d.getItem(f).getValue()==c&&(g.setAttribute("selected","selected"),g.selected=!0)}}}]},{type:"vbox",children:[{id:"txtOptValue",type:"text",label:c.lang.forms.select.opValue,style:"width:115px",setup:function(a){"clear"==a&&this.setValue("")}},{type:"select",id:"cmbValue",label:"",size:5,style:"width:115px;height:75px",items:[],onChange:function(){var a=this.getDialog(),b=a.getContentElement("info","cmbName"),e=a.getContentElement("info", +"txtOptName"),a=a.getContentElement("info","txtOptValue"),d=g(this);k(b,d);e.setValue(b.getValue());a.setValue(this.getValue())},setup:function(a,b){if("clear"==a)m(this);else if("option"==a){var e=b.getValue();h(this,e,e,this.getDialog().getParentEditor().document);"selected"==b.getAttribute("selected")&&this.getDialog().getContentElement("info","txtValue").setValue(e)}}}]},{type:"vbox",padding:5,children:[{type:"button",id:"btnAdd",label:c.lang.forms.select.btnAdd,title:c.lang.forms.select.btnAdd, +style:"width:100%;",onClick:function(){var a=this.getDialog(),b=a.getContentElement("info","txtOptName"),e=a.getContentElement("info","txtOptValue"),d=a.getContentElement("info","cmbName"),c=a.getContentElement("info","cmbValue");h(d,b.getValue(),b.getValue(),a.getParentEditor().document);h(c,e.getValue(),e.getValue(),a.getParentEditor().document);b.setValue("");e.setValue("")}},{type:"button",id:"btnModify",label:c.lang.forms.select.btnModify,title:c.lang.forms.select.btnModify,style:"width:100%;", +onClick:function(){var a=this.getDialog(),b=a.getContentElement("info","txtOptName"),e=a.getContentElement("info","txtOptValue"),d=a.getContentElement("info","cmbName"),a=a.getContentElement("info","cmbValue"),c=g(d);0<=c&&(q(d,c,b.getValue(),b.getValue()),q(a,c,e.getValue(),e.getValue()))}},{type:"button",id:"btnUp",style:"width:100%;",label:c.lang.forms.select.btnUp,title:c.lang.forms.select.btnUp,onClick:function(){var a=this.getDialog(),b=a.getContentElement("info","cmbName"),c=a.getContentElement("info", +"cmbValue");l(b,-1,a.getParentEditor().document);l(c,-1,a.getParentEditor().document)}},{type:"button",id:"btnDown",style:"width:100%;",label:c.lang.forms.select.btnDown,title:c.lang.forms.select.btnDown,onClick:function(){var a=this.getDialog(),b=a.getContentElement("info","cmbName"),c=a.getContentElement("info","cmbValue");l(b,1,a.getParentEditor().document);l(c,1,a.getParentEditor().document)}}]}]},{type:"hbox",widths:["40%","20%","40%"],children:[{type:"button",id:"btnSetValue",label:c.lang.forms.select.btnSetValue, +title:c.lang.forms.select.btnSetValue,onClick:function(){var a=this.getDialog(),b=a.getContentElement("info","cmbValue");a.getContentElement("info","txtValue").setValue(b.getValue())}},{type:"button",id:"btnDelete",label:c.lang.forms.select.btnDelete,title:c.lang.forms.select.btnDelete,onClick:function(){var a=this.getDialog(),b=a.getContentElement("info","cmbName"),c=a.getContentElement("info","cmbValue"),d=a.getContentElement("info","txtOptName"),a=a.getContentElement("info","txtOptValue");p(b); +p(c);d.setValue("");a.setValue("")}},{type:"vbox",children:[{id:"chkMulti",type:"checkbox",label:c.lang.forms.select.chkMulti,"default":"",accessKey:"M",value:"checked",setup:function(a,b){"select"==a&&this.setValue(b.getAttribute("multiple"))},commit:function(a){this.getValue()?a.setAttribute("multiple",this.getValue()):a.removeAttribute("multiple")}},{id:"required",type:"checkbox",label:c.lang.forms.select.required,"default":"",accessKey:"Q",value:"checked",setup:function(a,b){"select"==a&&CKEDITOR.plugins.forms._setupRequiredAttribute.call(this, +b)},commit:function(a){this.getValue()?a.setAttribute("required","required"):a.removeAttribute("required")}}]}]}]}]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/forms/dialogs/textarea.js b/static/ckeditor/ckeditor/plugins/forms/dialogs/textarea.js new file mode 100644 index 0000000000..c21b1fc2b0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/forms/dialogs/textarea.js @@ -0,0 +1,9 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.dialog.add("textarea",function(b){return{title:b.lang.forms.textarea.title,minWidth:350,minHeight:220,getModel:function(a){return(a=a.getSelection().getSelectedElement())&&"textarea"==a.getName()?a:null},onShow:function(){var a=this.getModel(this.getParentEditor());a&&this.setupContent(a)},onOk:function(){var a=this.getParentEditor(),b=this.getModel(a),c=this.getMode(a)==CKEDITOR.dialog.CREATION_MODE;c&&(b=a.document.createElement("textarea"));this.commitContent(b);c&&a.insertElement(b)}, +contents:[{id:"info",label:b.lang.forms.textarea.title,title:b.lang.forms.textarea.title,elements:[{id:"_cke_saved_name",type:"text",label:b.lang.common.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){this.getValue()?a.data("cke-saved-name",this.getValue()):(a.data("cke-saved-name",!1),a.removeAttribute("name"))}},{type:"hbox",widths:["50%","50%"],children:[{id:"cols",type:"text",label:b.lang.forms.textarea.cols, +"default":"",accessKey:"C",style:"width:50px",validate:CKEDITOR.dialog.validate.integer(b.lang.common.validateNumberFailed),setup:function(a){a=a.hasAttribute("cols")&&a.getAttribute("cols");this.setValue(a||"")},commit:function(a){this.getValue()?a.setAttribute("cols",this.getValue()):a.removeAttribute("cols")}},{id:"rows",type:"text",label:b.lang.forms.textarea.rows,"default":"",accessKey:"R",style:"width:50px",validate:CKEDITOR.dialog.validate.integer(b.lang.common.validateNumberFailed),setup:function(a){a= +a.hasAttribute("rows")&&a.getAttribute("rows");this.setValue(a||"")},commit:function(a){this.getValue()?a.setAttribute("rows",this.getValue()):a.removeAttribute("rows")}}]},{id:"value",type:"textarea",label:b.lang.forms.textfield.value,"default":"",setup:function(a){this.setValue(a.$.defaultValue)},commit:function(a){a.$.value=a.$.defaultValue=this.getValue()}},{id:"required",type:"checkbox",label:b.lang.forms.textfield.required,"default":"",accessKey:"Q",value:"required",setup:CKEDITOR.plugins.forms._setupRequiredAttribute, +commit:function(a){this.getValue()?a.setAttribute("required","required"):a.removeAttribute("required")}}]}]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/forms/dialogs/textfield.js b/static/ckeditor/ckeditor/plugins/forms/dialogs/textfield.js new file mode 100644 index 0000000000..27f4f7ce9f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/forms/dialogs/textfield.js @@ -0,0 +1,11 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.dialog.add("textfield",function(b){function e(a){a=a.element;var b=this.getValue();b?a.setAttribute(this.id,b):a.removeAttribute(this.id)}function f(a){a=a.hasAttribute(this.id)&&a.getAttribute(this.id);this.setValue(a||"")}var g={email:1,password:1,search:1,tel:1,text:1,url:1};return{title:b.lang.forms.textfield.title,minWidth:350,minHeight:150,getModel:function(a){a=a.getSelection().getSelectedElement();return!a||"input"!=a.getName()||!g[a.getAttribute("type")]&&a.getAttribute("type")? +null:a},onShow:function(){var a=this.getModel(this.getParentEditor());a&&this.setupContent(a)},onOk:function(){var a=this.getParentEditor(),b=this.getModel(a),c=this.getMode(a)==CKEDITOR.dialog.CREATION_MODE;c&&(b=a.document.createElement("input"),b.setAttribute("type","text"));b={element:b};c&&a.insertElement(b.element);this.commitContent(b);c||a.getSelection().selectElement(b.element)},onLoad:function(){this.foreach(function(a){a.getValue&&(a.setup||(a.setup=f),a.commit||(a.commit=e))})},contents:[{id:"info", +label:b.lang.forms.textfield.title,title:b.lang.forms.textfield.title,elements:[{type:"hbox",widths:["50%","50%"],children:[{id:"_cke_saved_name",type:"text",label:b.lang.forms.textfield.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){a=a.element;this.getValue()?a.data("cke-saved-name",this.getValue()):(a.data("cke-saved-name",!1),a.removeAttribute("name"))}},{id:"value",type:"text",label:b.lang.forms.textfield.value, +"default":"",accessKey:"V",commit:function(a){if(CKEDITOR.env.ie&&!this.getValue()){var d=a.element,c=new CKEDITOR.dom.element("input",b.document);d.copyAttributes(c,{value:1});c.replace(d);a.element=c}else e.call(this,a)}}]},{type:"hbox",widths:["50%","50%"],children:[{id:"size",type:"text",label:b.lang.forms.textfield.charWidth,"default":"",accessKey:"C",style:"width:50px",validate:CKEDITOR.dialog.validate.integer(b.lang.common.validateNumberFailed)},{id:"maxLength",type:"text",label:b.lang.forms.textfield.maxChars, +"default":"",accessKey:"M",style:"width:50px",validate:CKEDITOR.dialog.validate.integer(b.lang.common.validateNumberFailed)}],onLoad:function(){CKEDITOR.env.ie7Compat&&this.getElement().setStyle("zoom","100%")}},{id:"type",type:"select",label:b.lang.forms.textfield.type,"default":"text",accessKey:"M",items:[[b.lang.forms.textfield.typeEmail,"email"],[b.lang.forms.textfield.typePass,"password"],[b.lang.forms.textfield.typeSearch,"search"],[b.lang.forms.textfield.typeTel,"tel"],[b.lang.forms.textfield.typeText, +"text"],[b.lang.forms.textfield.typeUrl,"url"]],setup:function(a){this.setValue(a.getAttribute("type"))},commit:function(a){var d=a.element;if(CKEDITOR.env.ie){var c=d.getAttribute("type"),e=this.getValue();c!=e&&(c=CKEDITOR.dom.element.createFromHtml('\x3cinput type\x3d"'+e+'"\x3e\x3c/input\x3e',b.document),d.copyAttributes(c,{type:1}),c.replace(d),a.element=c)}else d.setAttribute("type",this.getValue())}},{id:"required",type:"checkbox",label:b.lang.forms.textfield.required,"default":"",accessKey:"Q", +value:"required",setup:CKEDITOR.plugins.forms._setupRequiredAttribute,commit:function(a){a=a.element;this.getValue()?a.setAttribute("required","required"):a.removeAttribute("required")}}]}]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/forms/images/hiddenfield.gif b/static/ckeditor/ckeditor/plugins/forms/images/hiddenfield.gif new file mode 100644 index 0000000000..988d9565f2 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/forms/images/hiddenfield.gif differ diff --git a/static/ckeditor/ckeditor/plugins/icons.png b/static/ckeditor/ckeditor/plugins/icons.png new file mode 100644 index 0000000000..b2f6d6d634 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/icons.png differ diff --git a/static/ckeditor/ckeditor/plugins/icons_hidpi.png b/static/ckeditor/ckeditor/plugins/icons_hidpi.png new file mode 100644 index 0000000000..bc5403c256 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/icons_hidpi.png differ diff --git a/static/ckeditor/ckeditor/plugins/iframe/dialogs/iframe.js b/static/ckeditor/ckeditor/plugins/iframe/dialogs/iframe.js new file mode 100644 index 0000000000..2fce5d9a88 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/iframe/dialogs/iframe.js @@ -0,0 +1,11 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +(function(){function d(c){var e=this instanceof CKEDITOR.ui.dialog.checkbox;c.hasAttribute(this.id)&&(c=c.getAttribute(this.id),e?this.setValue(g[this.id]["true"]==c.toLowerCase()):this.setValue(c))}function f(c){var e=this.getValue(),a=this.att||this.id,d=this instanceof CKEDITOR.ui.dialog.checkbox?g[this.id][e]:e;""===e||"tabindex"===a&&!1===e?c.removeAttribute(a):c.setAttribute(a,d)}var g={scrolling:{"true":"yes","false":"no"},frameborder:{"true":"1","false":"0"},tabindex:{"true":"-1","false":!1}}; +CKEDITOR.dialog.add("iframe",function(c){var e=c.lang.iframe,a=c.lang.common,g=c.plugins.dialogadvtab;return{title:e.title,minWidth:350,minHeight:260,getModel:function(b){return(b=b.getSelection().getSelectedElement())&&"iframe"===b.data("cke-real-element-type")?b:null},onShow:function(){this.fakeImage=this.iframeNode=null;var b=this.getSelectedElement();b&&b.data("cke-real-element-type")&&"iframe"==b.data("cke-real-element-type")&&(this.fakeImage=b,this.iframeNode=b=c.restoreRealElement(b),this.setupContent(b))}, +onOk:function(){var b;b=this.fakeImage?this.iframeNode:new CKEDITOR.dom.element("iframe");var a={},d={};this.commitContent(b,a,d);b=c.createFakeElement(b,"cke_iframe","iframe",!0);b.setAttributes(d);b.setStyles(a);this.fakeImage?(b.replace(this.fakeImage),c.getSelection().selectElement(b)):c.insertElement(b)},contents:[{id:"info",label:a.generalTab,accessKey:"I",elements:[{type:"vbox",padding:0,children:[{id:"src",type:"text",label:a.url,required:!0,validate:CKEDITOR.dialog.validate.notEmpty(e.noUrl), +setup:d,commit:f}]},{type:"hbox",children:[{id:"width",type:"text",requiredContent:"iframe[width]",style:"width:100%",labelLayout:"vertical",label:a.width,validate:CKEDITOR.dialog.validate.htmlLength(a.invalidHtmlLength.replace("%1",a.width)),setup:d,commit:f},{id:"height",type:"text",requiredContent:"iframe[height]",style:"width:100%",labelLayout:"vertical",label:a.height,validate:CKEDITOR.dialog.validate.htmlLength(a.invalidHtmlLength.replace("%1",a.height)),setup:d,commit:f},{id:"align",type:"select", +requiredContent:"iframe[align]","default":"",items:[[a.notSet,""],[a.left,"left"],[a.right,"right"],[a.alignTop,"top"],[a.alignMiddle,"middle"],[a.alignBottom,"bottom"]],style:"width:100%",labelLayout:"vertical",label:a.align,setup:function(a,c){d.apply(this,arguments);if(c){var e=c.getAttribute("align");this.setValue(e&&e.toLowerCase()||"")}},commit:function(a,c,d){f.apply(this,arguments);this.getValue()&&(d.align=this.getValue())}}]},{type:"hbox",widths:["33%","33%","33%"],children:[{id:"scrolling", +type:"checkbox",requiredContent:"iframe[scrolling]",label:e.scrolling,setup:d,commit:f},{id:"frameborder",type:"checkbox",requiredContent:"iframe[frameborder]",label:e.border,setup:d,commit:f},{id:"tabindex",type:"checkbox",requiredContent:"iframe[tabindex]",label:e.tabindex,setup:d,commit:f}]},{type:"hbox",widths:["50%","50%"],children:[{id:"name",type:"text",requiredContent:"iframe[name]",label:a.name,setup:d,commit:f},{id:"title",type:"text",requiredContent:"iframe[title]",label:a.advisoryTitle, +setup:d,commit:f}]},{id:"longdesc",type:"text",requiredContent:"iframe[longdesc]",label:a.longDescr,setup:d,commit:f}]},g&&g.createAdvancedTab(c,{id:1,classes:1,styles:1},"iframe")]}})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/iframe/images/placeholder.png b/static/ckeditor/ckeditor/plugins/iframe/images/placeholder.png new file mode 100644 index 0000000000..4af0956552 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/iframe/images/placeholder.png differ diff --git a/static/ckeditor/ckeditor/plugins/iframedialog/plugin.js b/static/ckeditor/ckeditor/plugins/iframedialog/plugin.js new file mode 100644 index 0000000000..f7a0afcbc0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/iframedialog/plugin.js @@ -0,0 +1,8 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.add("iframedialog",{requires:"dialog",onLoad:function(){CKEDITOR.dialog.addIframe=function(e,d,a,j,f,l,g){a={type:"iframe",src:a,width:"100%",height:"100%"};a.onContentLoad="function"==typeof l?l:function(){var a=this.getElement().$.contentWindow;if(a.onDialogEvent){var b=this.getDialog(),c=function(b){return a.onDialogEvent(b)};b.on("ok",c);b.on("cancel",c);b.on("resize",c);b.on("hide",function(a){b.removeListener("ok",c);b.removeListener("cancel",c);b.removeListener("resize",c); +a.removeListener()});a.onDialogEvent({name:"load",sender:this,editor:b._.editor})}};var h={title:d,minWidth:j,minHeight:f,contents:[{id:"iframe",label:d,expand:!0,elements:[a],style:"width:"+a.width+";height:"+a.height}]},i;for(i in g)h[i]=g[i];this.add(e,function(){return h})};(function(){var e=function(d,a,j){if(!(3>arguments.length)){var f=this._||(this._={}),e=a.onContentLoad&&CKEDITOR.tools.bind(a.onContentLoad,this),g=CKEDITOR.tools.cssLength(a.width),h=CKEDITOR.tools.cssLength(a.height);f.frameId= +CKEDITOR.tools.getNextId()+"_iframe";d.on("load",function(){CKEDITOR.document.getById(f.frameId).getParent().setStyles({width:g,height:h})});var i={src:"%2",id:f.frameId,frameborder:0,allowtransparency:!0},k=[];"function"==typeof a.onContentLoad&&(i.onload="CKEDITOR.tools.callFunction(%1);");CKEDITOR.ui.dialog.uiElement.call(this,d,a,k,"iframe",{width:g,height:h},i,"");j.push('<div style="width:'+g+";height:"+h+';" id="'+this.domId+'"></div>');k=k.join("");d.on("show",function(){var b=CKEDITOR.document.getById(f.frameId).getParent(), +c=CKEDITOR.tools.addFunction(e),c=k.replace("%1",c).replace("%2",CKEDITOR.tools.htmlEncode(a.src));b.setHtml(c)})}};e.prototype=new CKEDITOR.ui.dialog.uiElement;CKEDITOR.dialog.addUIElement("iframe",{build:function(d,a,j){return new e(d,a,j)}})})()}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image/dialogs/image.js b/static/ckeditor/ckeditor/plugins/image/dialogs/image.js new file mode 100644 index 0000000000..92c01edd71 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image/dialogs/image.js @@ -0,0 +1,44 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +(function(){var u=function(d,k){function u(){var a=arguments,b=this.getContentElement("advanced","txtdlgGenStyle");b&&b.commit.apply(b,a);this.foreach(function(b){b.commit&&"txtdlgGenStyle"!=b.id&&b.commit.apply(b,a)})}function g(a){if(!v){v=1;var b=this.getDialog(),c=b.imageElement;if(c){this.commit(1,c);a=[].concat(a);for(var d=a.length,h,e=0;e<d;e++)(h=b.getContentElement.apply(b,a[e].split(":")))&&h.setup(1,c)}v=0}}var l=/^\s*(\d+)((px)|\%)?\s*$/i,y=/(^\s*(\d+)((px)|\%)?\s*$)|^$/i,q=/^\d+px$/, +z=function(){var a=this.getValue(),b=this.getDialog(),c=a.match(l);c&&("%"==c[2]&&m(b,!1),a=c[1]);b.lockRatio&&(c=b.originalElement,"true"==c.getCustomData("isReady")&&("txtHeight"==this.id?(a&&"0"!=a&&(a=Math.round(a/c.$.height*c.$.width)),isNaN(a)||b.setValueOf("info","txtWidth",a)):(a&&"0"!=a&&(a=Math.round(a/c.$.width*c.$.height)),isNaN(a)||b.setValueOf("info","txtHeight",a))));e(b)},e=function(a){if(!a.originalElement||!a.preview)return 1;a.commitContent(4,a.preview);return 0},v,m=function(a, +b){if(!a.getContentElement("info","ratioLock"))return null;var c=a.originalElement;if(!c)return null;if("check"==b){if(!a.userlockRatio&&"true"==c.getCustomData("isReady")){var d=a.getValueOf("info","txtWidth"),h=a.getValueOf("info","txtHeight"),c=c.$.width/c.$.height,e=d/h;a.lockRatio=!1;d||h?1==Math.round(c/e*100)/100&&(a.lockRatio=!0):a.lockRatio=!0}}else void 0!==b?a.lockRatio=b:(a.userlockRatio=1,a.lockRatio=!a.lockRatio);d=CKEDITOR.document.getById(r);a.lockRatio?d.removeClass("cke_btn_unlocked"): +d.addClass("cke_btn_unlocked");d.setAttribute("aria-checked",a.lockRatio);CKEDITOR.env.hc&&d.getChild(0).setHtml(a.lockRatio?CKEDITOR.env.ie?"■":"▣":CKEDITOR.env.ie?"□":"▢");return a.lockRatio},A=function(a,b){var c=a.originalElement;if("true"==c.getCustomData("isReady")){var d=a.getContentElement("info","txtWidth"),h=a.getContentElement("info","txtHeight"),f;b?c=f=0:(f=c.$.width,c=c.$.height);d&&d.setValue(f);h&&h.setValue(c)}e(a)},B=function(a,b){function c(a,b){var c=a.match(l);return c?("%"== +c[2]&&(c[1]+="%",m(d,!1)),c[1]):b}if(1==a){var d=this.getDialog(),e="",f="txtWidth"==this.id?"width":"height",g=b.getAttribute(f);g&&(e=c(g,e));e=c(b.getStyle(f),e);this.setValue(e)}},w,t=function(){var a=this.originalElement,b=CKEDITOR.document.getById(n);a.setCustomData("isReady","true");a.removeListener("load",t);a.removeListener("error",f);a.removeListener("abort",f);b&&b.setStyle("display","none");this.dontResetSize||A(this,!1===d.config.image_prefillDimensions);this.firstLoad&&CKEDITOR.tools.setTimeout(function(){m(this, +"check")},0,this);this.dontResetSize=this.firstLoad=!1;e(this)},f=function(){var a=this.originalElement,b=CKEDITOR.document.getById(n);a.removeListener("load",t);a.removeListener("error",f);a.removeListener("abort",f);a=CKEDITOR.getUrl(CKEDITOR.plugins.get("image").path+"images/noimage.png");this.preview&&this.preview.setAttribute("src",a);b&&b.setStyle("display","none");m(this,!1)},p=function(a){return CKEDITOR.tools.getNextId()+"_"+a},r=p("btnLockSizes"),x=p("btnResetSize"),n=p("ImagePreviewLoader"), +D=p("previewLink"),C=p("previewImage");return{title:d.lang.image["image"==k?"title":"titleButton"],minWidth:"moono-lisa"==(CKEDITOR.skinName||d.config.skin)?500:420,minHeight:360,getModel:function(a){var b=(a=a.getSelection().getSelectedElement())&&"img"===a.getName(),c=a&&"input"===a.getName()&&"image"===a.getAttribute("type");return b||c?a:null},onShow:function(){this.linkEditMode=this.imageEditMode=this.linkElement=this.imageElement=!1;this.lockRatio=!0;this.userlockRatio=0;this.dontResetSize= +!1;this.firstLoad=!0;this.addLink=!1;var a=this.getParentEditor(),b=a.getSelection(),c=(b=b&&b.getSelectedElement())&&a.elementPath(b).contains("a",1),d=CKEDITOR.document.getById(n);d&&d.setStyle("display","none");w=new CKEDITOR.dom.element("img",a.document);this.preview=CKEDITOR.document.getById(C);this.originalElement=a.document.createElement("img");this.originalElement.setAttribute("alt","");this.originalElement.setCustomData("isReady","false");c&&(this.linkElement=c,this.addLink=this.linkEditMode= +!0,a=c.getChildren(),1==a.count()&&(d=a.getItem(0),d.type==CKEDITOR.NODE_ELEMENT&&(d.is("img")||d.is("input"))&&(this.imageElement=a.getItem(0),this.imageElement.is("img")?this.imageEditMode="img":this.imageElement.is("input")&&(this.imageEditMode="input"))),"image"==k&&this.setupContent(2,c));if(this.customImageElement)this.imageEditMode="img",this.imageElement=this.customImageElement,delete this.customImageElement;else if(b&&"img"==b.getName()&&!b.data("cke-realelement")||b&&"input"==b.getName()&& +"image"==b.getAttribute("type"))this.imageEditMode=b.getName(),this.imageElement=b;this.imageEditMode&&(this.cleanImageElement=this.imageElement,this.imageElement=this.cleanImageElement.clone(!0,!0),this.setupContent(1,this.imageElement));m(this,!0);CKEDITOR.tools.trim(this.getValueOf("info","txtUrl"))||(this.preview.removeAttribute("src"),this.preview.setStyle("display","none"))},onOk:function(){if(this.imageEditMode){var a=this.imageEditMode;"image"==k&&"input"==a&&confirm(d.lang.image.button2Img)? +(this.imageElement=d.document.createElement("img"),this.imageElement.setAttribute("alt",""),d.insertElement(this.imageElement)):"image"!=k&&"img"==a&&confirm(d.lang.image.img2Button)?(this.imageElement=d.document.createElement("input"),this.imageElement.setAttributes({type:"image",alt:""}),d.insertElement(this.imageElement)):(this.imageElement=this.cleanImageElement,delete this.cleanImageElement)}else"image"==k?this.imageElement=d.document.createElement("img"):(this.imageElement=d.document.createElement("input"), +this.imageElement.setAttribute("type","image")),this.imageElement.setAttribute("alt","");this.linkEditMode||(this.linkElement=d.document.createElement("a"));this.commitContent(1,this.imageElement);this.commitContent(2,this.linkElement);this.imageElement.getAttribute("style")||this.imageElement.removeAttribute("style");this.imageEditMode?!this.linkEditMode&&this.addLink?(d.insertElement(this.linkElement),this.imageElement.appendTo(this.linkElement)):this.linkEditMode&&!this.addLink&&(d.getSelection().selectElement(this.linkElement), +d.insertElement(this.imageElement)):this.addLink?this.linkEditMode?this.linkElement.equals(d.getSelection().getSelectedElement())?(this.linkElement.setHtml(""),this.linkElement.append(this.imageElement,!1)):d.insertElement(this.imageElement):(d.insertElement(this.linkElement),this.linkElement.append(this.imageElement,!1)):d.insertElement(this.imageElement)},onLoad:function(){"image"!=k&&this.hidePage("Link");var a=this._.element.getDocument();this.getContentElement("info","ratioLock")&&(this.addFocusable(a.getById(x), +5),this.addFocusable(a.getById(r),5));this.commitContent=u},onHide:function(){this.preview&&this.commitContent(8,this.preview);this.originalElement&&(this.originalElement.removeListener("load",t),this.originalElement.removeListener("error",f),this.originalElement.removeListener("abort",f),this.originalElement.remove(),this.originalElement=!1);delete this.imageElement},contents:[{id:"info",label:d.lang.image.infoTab,accessKey:"I",elements:[{type:"vbox",padding:0,children:[{type:"hbox",widths:["280px", +"110px"],align:"right",className:"cke_dialog_image_url",children:[{id:"txtUrl",type:"text",label:d.lang.common.url,required:!0,onChange:function(){var a=this.getDialog(),b=this.getValue();if(0<b.length){var a=this.getDialog(),c=a.originalElement;a.preview&&a.preview.removeStyle("display");c.setCustomData("isReady","false");var d=CKEDITOR.document.getById(n);d&&d.setStyle("display","");c.on("load",t,a);c.on("error",f,a);c.on("abort",f,a);c.setAttribute("src",b);a.preview&&(w.setAttribute("src",b), +a.preview.setAttribute("src",w.$.src),e(a))}else a.preview&&(a.preview.removeAttribute("src"),a.preview.setStyle("display","none"))},setup:function(a,b){if(1==a){var c=b.data("cke-saved-src")||b.getAttribute("src");this.getDialog().dontResetSize=!0;this.setValue(c);this.setInitValue()}},commit:function(a,b){1==a&&(this.getValue()||this.isChanged())?(b.data("cke-saved-src",this.getValue()),b.setAttribute("src",this.getValue())):8==a&&(b.setAttribute("src",""),b.removeAttribute("src"))},validate:CKEDITOR.dialog.validate.notEmpty(d.lang.image.urlMissing)}, +{type:"button",id:"browse",style:"display:inline-block;margin-top:14px;",align:"center",label:d.lang.common.browseServer,hidden:!0,filebrowser:"info:txtUrl"}]}]},{id:"txtAlt",type:"text",label:d.lang.image.alt,accessKey:"T","default":"",onChange:function(){e(this.getDialog())},setup:function(a,b){1==a&&this.setValue(b.getAttribute("alt"))},commit:function(a,b){1==a?(this.getValue()||this.isChanged())&&b.setAttribute("alt",this.getValue()):4==a?b.setAttribute("alt",this.getValue()):8==a&&b.removeAttribute("alt")}}, +{type:"hbox",children:[{id:"basic",type:"vbox",children:[{type:"hbox",requiredContent:"img{width,height}",widths:["50%","50%"],children:[{type:"vbox",padding:1,children:[{type:"text",width:"45px",id:"txtWidth",label:d.lang.common.width,onKeyUp:z,onChange:function(){g.call(this,"advanced:txtdlgGenStyle")},validate:function(){var a=this.getValue().match(y);(a=!(!a||0===parseInt(a[1],10)))||alert(d.lang.common.invalidLength.replace("%1",d.lang.common.width).replace("%2","px, %"));return a},setup:B,commit:function(a, +b){var c=this.getValue();1==a?(c&&d.activeFilter.check("img{width,height}")?b.setStyle("width",CKEDITOR.tools.cssLength(c)):b.removeStyle("width"),b.removeAttribute("width")):4==a?c.match(l)?b.setStyle("width",CKEDITOR.tools.cssLength(c)):(c=this.getDialog().originalElement,"true"==c.getCustomData("isReady")&&b.setStyle("width",c.$.width+"px")):8==a&&(b.removeAttribute("width"),b.removeStyle("width"))}},{type:"text",id:"txtHeight",width:"45px",label:d.lang.common.height,onKeyUp:z,onChange:function(){g.call(this, +"advanced:txtdlgGenStyle")},validate:function(){var a=this.getValue().match(y);(a=!(!a||0===parseInt(a[1],10)))||alert(d.lang.common.invalidLength.replace("%1",d.lang.common.height).replace("%2","px, %"));return a},setup:B,commit:function(a,b){var c=this.getValue();1==a?(c&&d.activeFilter.check("img{width,height}")?b.setStyle("height",CKEDITOR.tools.cssLength(c)):b.removeStyle("height"),b.removeAttribute("height")):4==a?c.match(l)?b.setStyle("height",CKEDITOR.tools.cssLength(c)):(c=this.getDialog().originalElement, +"true"==c.getCustomData("isReady")&&b.setStyle("height",c.$.height+"px")):8==a&&(b.removeAttribute("height"),b.removeStyle("height"))}}]},{id:"ratioLock",type:"html",className:"cke_dialog_image_ratiolock",style:"margin-top:30px;width:40px;height:40px;",onLoad:function(){var a=CKEDITOR.document.getById(x),b=CKEDITOR.document.getById(r);a&&(a.on("click",function(a){A(this);a.data&&a.data.preventDefault()},this.getDialog()),a.on("mouseover",function(){this.addClass("cke_btn_over")},a),a.on("mouseout", +function(){this.removeClass("cke_btn_over")},a));b&&(b.on("click",function(a){m(this);var b=this.originalElement,d=this.getValueOf("info","txtWidth");"true"==b.getCustomData("isReady")&&d&&(b=b.$.height/b.$.width*d,isNaN(b)||(this.setValueOf("info","txtHeight",Math.round(b)),e(this)));a.data&&a.data.preventDefault()},this.getDialog()),b.on("mouseover",function(){this.addClass("cke_btn_over")},b),b.on("mouseout",function(){this.removeClass("cke_btn_over")},b))},html:'\x3cdiv\x3e\x3ca href\x3d"javascript:void(0)" tabindex\x3d"-1" title\x3d"'+ +d.lang.image.lockRatio+'" class\x3d"cke_btn_locked" id\x3d"'+r+'" role\x3d"checkbox"\x3e\x3cspan class\x3d"cke_icon"\x3e\x3c/span\x3e\x3cspan class\x3d"cke_label"\x3e'+d.lang.image.lockRatio+'\x3c/span\x3e\x3c/a\x3e\x3ca href\x3d"javascript:void(0)" tabindex\x3d"-1" title\x3d"'+d.lang.image.resetSize+'" class\x3d"cke_btn_reset" id\x3d"'+x+'" role\x3d"button"\x3e\x3cspan class\x3d"cke_label"\x3e'+d.lang.image.resetSize+"\x3c/span\x3e\x3c/a\x3e\x3c/div\x3e"}]},{type:"vbox",padding:1,children:[{type:"text", +id:"txtBorder",requiredContent:"img{border-width}",width:"60px",label:d.lang.image.border,"default":"",onKeyUp:function(){e(this.getDialog())},onChange:function(){g.call(this,"advanced:txtdlgGenStyle")},validate:CKEDITOR.dialog.validate.integer(d.lang.image.validateBorder),setup:function(a,b){if(1==a){var c;c=(c=(c=b.getStyle("border-width"))&&c.match(/^(\d+px)(?: \1 \1 \1)?$/))&&parseInt(c[1],10);isNaN(parseInt(c,10))&&(c=b.getAttribute("border"));this.setValue(c)}},commit:function(a,b){var c=parseInt(this.getValue(), +10);1==a||4==a?(isNaN(c)?!c&&this.isChanged()&&b.removeStyle("border"):(b.setStyle("border-width",CKEDITOR.tools.cssLength(c)),b.setStyle("border-style","solid")),1==a&&b.removeAttribute("border")):8==a&&(b.removeAttribute("border"),b.removeStyle("border-width"),b.removeStyle("border-style"),b.removeStyle("border-color"))}},{type:"text",id:"txtHSpace",requiredContent:"img{margin-left,margin-right}",width:"60px",label:d.lang.image.hSpace,"default":"",onKeyUp:function(){e(this.getDialog())},onChange:function(){g.call(this, +"advanced:txtdlgGenStyle")},validate:CKEDITOR.dialog.validate.integer(d.lang.image.validateHSpace),setup:function(a,b){if(1==a){var c,d;c=b.getStyle("margin-left");d=b.getStyle("margin-right");c=c&&c.match(q);d=d&&d.match(q);c=parseInt(c,10);d=parseInt(d,10);c=c==d&&c;isNaN(parseInt(c,10))&&(c=b.getAttribute("hspace"));this.setValue(c)}},commit:function(a,b){var c=parseInt(this.getValue(),10);1==a||4==a?(isNaN(c)?!c&&this.isChanged()&&(b.removeStyle("margin-left"),b.removeStyle("margin-right")):(b.setStyle("margin-left", +CKEDITOR.tools.cssLength(c)),b.setStyle("margin-right",CKEDITOR.tools.cssLength(c))),1==a&&b.removeAttribute("hspace")):8==a&&(b.removeAttribute("hspace"),b.removeStyle("margin-left"),b.removeStyle("margin-right"))}},{type:"text",id:"txtVSpace",requiredContent:"img{margin-top,margin-bottom}",width:"60px",label:d.lang.image.vSpace,"default":"",onKeyUp:function(){e(this.getDialog())},onChange:function(){g.call(this,"advanced:txtdlgGenStyle")},validate:CKEDITOR.dialog.validate.integer(d.lang.image.validateVSpace), +setup:function(a,b){if(1==a){var c,d;c=b.getStyle("margin-top");d=b.getStyle("margin-bottom");c=c&&c.match(q);d=d&&d.match(q);c=parseInt(c,10);d=parseInt(d,10);c=c==d&&c;isNaN(parseInt(c,10))&&(c=b.getAttribute("vspace"));this.setValue(c)}},commit:function(a,b){var c=parseInt(this.getValue(),10);1==a||4==a?(isNaN(c)?!c&&this.isChanged()&&(b.removeStyle("margin-top"),b.removeStyle("margin-bottom")):(b.setStyle("margin-top",CKEDITOR.tools.cssLength(c)),b.setStyle("margin-bottom",CKEDITOR.tools.cssLength(c))), +1==a&&b.removeAttribute("vspace")):8==a&&(b.removeAttribute("vspace"),b.removeStyle("margin-top"),b.removeStyle("margin-bottom"))}},{id:"cmbAlign",requiredContent:"img{float}",type:"select",widths:["35%","65%"],style:"width:90px",label:d.lang.common.align,"default":"",items:[[d.lang.common.notSet,""],[d.lang.common.left,"left"],[d.lang.common.right,"right"]],onChange:function(){e(this.getDialog());g.call(this,"advanced:txtdlgGenStyle")},setup:function(a,b){if(1==a){var c=b.getStyle("float");switch(c){case "inherit":case "none":c= +""}!c&&(c=(b.getAttribute("align")||"").toLowerCase());this.setValue(c)}},commit:function(a,b){var c=this.getValue();if(1==a||4==a){if(c?b.setStyle("float",c):b.removeStyle("float"),1==a)switch(c=(b.getAttribute("align")||"").toLowerCase(),c){case "left":case "right":b.removeAttribute("align")}}else 8==a&&b.removeStyle("float")}}]}]},{type:"vbox",height:"250px",children:[{type:"html",id:"htmlPreview",style:"width:95%;",html:"\x3cdiv\x3e"+CKEDITOR.tools.htmlEncode(d.lang.common.preview)+'\x3cbr\x3e\x3cdiv id\x3d"'+ +n+'" class\x3d"ImagePreviewLoader" style\x3d"display:none"\x3e\x3cdiv class\x3d"loading"\x3e\x26nbsp;\x3c/div\x3e\x3c/div\x3e\x3cdiv class\x3d"ImagePreviewBox"\x3e\x3ctable\x3e\x3ctr\x3e\x3ctd\x3e\x3ca href\x3d"javascript:void(0)" target\x3d"_blank" onclick\x3d"return false;" id\x3d"'+D+'"\x3e\x3cimg id\x3d"'+C+'" alt\x3d"" /\x3e\x3c/a\x3e'+(d.config.image_previewText||"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Maecenas feugiat consequat diam. Maecenas metus. Vivamus diam purus, cursus a, commodo non, facilisis vitae, nulla. Aenean dictum lacinia tortor. Nunc iaculis, nibh non iaculis aliquam, orci felis euismod neque, sed ornare massa mauris sed velit. Nulla pretium mi et risus. Fusce mi pede, tempor id, cursus ac, ullamcorper nec, enim. Sed tortor. Curabitur molestie. Duis velit augue, condimentum at, ultrices a, luctus ut, orci. Donec pellentesque egestas eros. Integer cursus, augue in cursus faucibus, eros pede bibendum sem, in tempus tellus justo quis ligula. Etiam eget tortor. Vestibulum rutrum, est ut placerat elementum, lectus nisl aliquam velit, tempor aliquam eros nunc nonummy metus. In eros metus, gravida a, gravida sed, lobortis id, turpis. Ut ultrices, ipsum at venenatis fringilla, sem nulla lacinia tellus, eget aliquet turpis mauris non enim. Nam turpis. Suspendisse lacinia. Curabitur ac tortor ut ipsum egestas elementum. Nunc imperdiet gravida mauris.")+ +"\x3c/td\x3e\x3c/tr\x3e\x3c/table\x3e\x3c/div\x3e\x3c/div\x3e"}]}]}]},{id:"Link",requiredContent:"a[href]",label:d.lang.image.linkTab,padding:0,elements:[{id:"txtUrl",type:"text",label:d.lang.common.url,style:"width: 100%","default":"",setup:function(a,b){if(2==a){var c=b.data("cke-saved-href");c||(c=b.getAttribute("href"));this.setValue(c)}},commit:function(a,b){if(2==a&&(this.getValue()||this.isChanged())){var c=this.getValue();b.data("cke-saved-href",c);b.setAttribute("href",c);this.getValue()|| +!d.config.image_removeLinkByEmptyURL?this.getDialog().addLink=!0:this.getDialog().addLink=!1}}},{type:"button",id:"browse",className:"cke_dialog_image_browse",filebrowser:{action:"Browse",target:"Link:txtUrl",url:d.config.filebrowserImageBrowseLinkUrl},style:"float:right",hidden:!0,label:d.lang.common.browseServer},{id:"cmbTarget",type:"select",requiredContent:"a[target]",label:d.lang.common.target,"default":"",items:[[d.lang.common.notSet,""],[d.lang.common.targetNew,"_blank"],[d.lang.common.targetTop, +"_top"],[d.lang.common.targetSelf,"_self"],[d.lang.common.targetParent,"_parent"]],setup:function(a,b){2==a&&this.setValue(b.getAttribute("target")||"")},commit:function(a,b){2==a&&(this.getValue()||this.isChanged())&&b.setAttribute("target",this.getValue())}}]},{id:"Upload",hidden:!0,filebrowser:"uploadButton",label:d.lang.image.upload,elements:[{type:"file",id:"upload",label:d.lang.image.btnUpload,style:"height:40px",size:38},{type:"fileButton",id:"uploadButton",filebrowser:"info:txtUrl",label:d.lang.image.btnUpload, +"for":["Upload","upload"]}]},{id:"advanced",label:d.lang.common.advancedTab,elements:[{type:"hbox",widths:["50%","25%","25%"],children:[{type:"text",id:"linkId",requiredContent:"img[id]",label:d.lang.common.id,setup:function(a,b){1==a&&this.setValue(b.getAttribute("id"))},commit:function(a,b){1==a&&(this.getValue()||this.isChanged())&&b.setAttribute("id",this.getValue())}},{id:"cmbLangDir",type:"select",requiredContent:"img[dir]",style:"width : 100px;",label:d.lang.common.langDir,"default":"",items:[[d.lang.common.notSet, +""],[d.lang.common.langDirLtr,"ltr"],[d.lang.common.langDirRtl,"rtl"]],setup:function(a,b){1==a&&this.setValue(b.getAttribute("dir"))},commit:function(a,b){1==a&&(this.getValue()||this.isChanged())&&b.setAttribute("dir",this.getValue())}},{type:"text",id:"txtLangCode",requiredContent:"img[lang]",label:d.lang.common.langCode,"default":"",setup:function(a,b){1==a&&this.setValue(b.getAttribute("lang"))},commit:function(a,b){1==a&&(this.getValue()||this.isChanged())&&b.setAttribute("lang",this.getValue())}}]}, +{type:"text",id:"txtGenLongDescr",requiredContent:"img[longdesc]",label:d.lang.common.longDescr,setup:function(a,b){1==a&&this.setValue(b.getAttribute("longDesc"))},commit:function(a,b){1==a&&(this.getValue()||this.isChanged())&&b.setAttribute("longDesc",this.getValue())}},{type:"hbox",widths:["50%","50%"],children:[{type:"text",id:"txtGenClass",requiredContent:"img(cke-xyz)",label:d.lang.common.cssClass,"default":"",setup:function(a,b){1==a&&this.setValue(b.getAttribute("class"))},commit:function(a, +b){1==a&&(this.getValue()||this.isChanged())&&b.setAttribute("class",this.getValue())}},{type:"text",id:"txtGenTitle",requiredContent:"img[title]",label:d.lang.common.advisoryTitle,"default":"",onChange:function(){e(this.getDialog())},setup:function(a,b){1==a&&this.setValue(b.getAttribute("title"))},commit:function(a,b){1==a?(this.getValue()||this.isChanged())&&b.setAttribute("title",this.getValue()):4==a?b.setAttribute("title",this.getValue()):8==a&&b.removeAttribute("title")}}]},{type:"text",id:"txtdlgGenStyle", +requiredContent:"img{cke-xyz}",label:d.lang.common.cssStyle,validate:CKEDITOR.dialog.validate.inlineStyle(d.lang.common.invalidInlineStyle),"default":"",setup:function(a,b){if(1==a){var c=b.getAttribute("style");!c&&b.$.style.cssText&&(c=b.$.style.cssText);this.setValue(c);var d=b.$.style.height,c=b.$.style.width,d=(d?d:"").match(l),c=(c?c:"").match(l);this.attributesInStyle={height:!!d,width:!!c}}},onChange:function(){g.call(this,"info:cmbFloat info:cmbAlign info:txtVSpace info:txtHSpace info:txtBorder info:txtWidth info:txtHeight".split(" ")); +e(this)},commit:function(a,b){1==a&&(this.getValue()||this.isChanged())&&b.setAttribute("style",this.getValue())}}]}]}};CKEDITOR.dialog.add("image",function(d){return u(d,"image")});CKEDITOR.dialog.add("imagebutton",function(d){return u(d,"imagebutton")})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image/images/noimage.png b/static/ckeditor/ckeditor/plugins/image/images/noimage.png new file mode 100644 index 0000000000..74c6ee9262 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/image/images/noimage.png differ diff --git a/static/ckeditor/ckeditor/plugins/image2/dialogs/image2.js b/static/ckeditor/ckeditor/plugins/image2/dialogs/image2.js new file mode 100644 index 0000000000..c609061a5c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/dialogs/image2.js @@ -0,0 +1,14 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("image2",function(i){function z(){var a=this.getValue().match(A);(a=!!(a&&0!==parseInt(a[1],10)))||alert(c["invalid"+CKEDITOR.tools.capitalize(this.id)]);return a}function K(){function a(a,b){d.push(j.once(a,function(a){for(var j;j=d.pop();)j.removeListener();b(a)}))}var j=p.createElement("img"),d=[];return function(d,b,c){a("load",function(){var a=B(j);b.call(c,j,a.width,a.height)});a("error",function(){b(null)});a("abort",function(){b(null)});j.setAttribute("src",(t.baseHref|| +"")+d+"?"+Math.random().toString(16).substring(2))}}function C(){var a=this.getValue();q(!1);a!==u.data.src?(D(a,function(a,d,b){q(!0);if(!a)return k(!1);g.setValue(!1===i.config.image2_prefillDimensions?0:d);h.setValue(!1===i.config.image2_prefillDimensions?0:b);r=d;s=b;k(E.checkHasNaturalRatio(a))}),l=!0):l?(q(!0),g.setValue(m),h.setValue(n),l=!1):q(!0)}function F(){if(e){var a=this.getValue();if(a&&(a.match(A)||k(!1),"0"!==a)){var b="width"==this.id,d=m||r,c=n||s,a=b?Math.round(c*(a/d)):Math.round(d* +(a/c));isNaN(a)||(b?h:g).setValue(a)}}}function k(a){if(f){if("boolean"==typeof a){if(v)return;e=a}else if(a=g.getValue(),v=!0,(e=!e)&&a)a*=n/m,isNaN(a)||h.setValue(Math.round(a));f[e?"removeClass":"addClass"]("cke_btn_unlocked");f.setAttribute("aria-checked",e);CKEDITOR.env.hc&&f.getChild(0).setHtml(e?CKEDITOR.env.ie?"■":"▣":CKEDITOR.env.ie?"□":"▢")}}function q(a){a=a?"enable":"disable";g[a]();h[a]()}var A=/(^\s*(\d+)(px)?\s*$)|^$/i,G=CKEDITOR.tools.getNextId(),H=CKEDITOR.tools.getNextId(),b=i.lang.image2, +c=i.lang.common,L=(new CKEDITOR.template('<div><a href="javascript:void(0)" tabindex="-1" title="'+b.lockRatio+'" class="cke_btn_locked" id="{lockButtonId}" role="checkbox"><span class="cke_icon"></span><span class="cke_label">'+b.lockRatio+'</span></a><a href="javascript:void(0)" tabindex="-1" title="'+b.resetSize+'" class="cke_btn_reset" id="{resetButtonId}" role="button"><span class="cke_label">'+b.resetSize+"</span></a></div>")).output({lockButtonId:G,resetButtonId:H}),E=CKEDITOR.plugins.image2, +t=i.config,w=i.widgets.registered.image.features,B=E.getNatural,p,u,I,D,m,n,r,s,l,e,v,f,o,g,h,x,y=!(!t.filebrowserImageBrowseUrl&&!t.filebrowserBrowseUrl),J=[{id:"src",type:"text",label:c.url,onKeyup:C,onChange:C,setup:function(a){this.setValue(a.data.src)},commit:function(a){a.setData("src",this.getValue())},validate:CKEDITOR.dialog.validate.notEmpty(b.urlMissing)}];y&&J.push({type:"button",id:"browse",style:"display:inline-block;margin-top:14px;",align:"center",label:i.lang.common.browseServer, +hidden:!0,filebrowser:"info:src"});return{title:b.title,minWidth:250,minHeight:100,onLoad:function(){p=this._.element.getDocument();D=K()},onShow:function(){u=this.widget;I=u.parts.image;l=v=e=!1;x=B(I);r=m=x.width;s=n=x.height},contents:[{id:"info",label:b.infoTab,elements:[{type:"vbox",padding:0,children:[{type:"hbox",widths:["100%"],children:J}]},{id:"alt",type:"text",label:b.alt,setup:function(a){this.setValue(a.data.alt)},commit:function(a){a.setData("alt",this.getValue())}},{type:"hbox",widths:["25%", +"25%","50%"],requiredContent:w.dimension.requiredContent,children:[{type:"text",width:"45px",id:"width",label:c.width,validate:z,onKeyUp:F,onLoad:function(){g=this},setup:function(a){this.setValue(a.data.width)},commit:function(a){a.setData("width",this.getValue())}},{type:"text",id:"height",width:"45px",label:c.height,validate:z,onKeyUp:F,onLoad:function(){h=this},setup:function(a){this.setValue(a.data.height)},commit:function(a){a.setData("height",this.getValue())}},{id:"lock",type:"html",style:"margin-top:18px;width:40px;height:20px;", +onLoad:function(){function a(a){a.on("mouseover",function(){this.addClass("cke_btn_over")},a);a.on("mouseout",function(){this.removeClass("cke_btn_over")},a)}var b=this.getDialog();f=p.getById(G);o=p.getById(H);f&&(b.addFocusable(f,4+y),f.on("click",function(a){k();a.data&&a.data.preventDefault()},this.getDialog()),a(f));o&&(b.addFocusable(o,5+y),o.on("click",function(a){if(l){g.setValue(r);h.setValue(s)}else{g.setValue(m);h.setValue(n)}a.data&&a.data.preventDefault()},this),a(o))},setup:function(a){k(a.data.lock)}, +commit:function(a){a.setData("lock",e)},html:L}]},{type:"hbox",id:"alignment",requiredContent:w.align.requiredContent,children:[{id:"align",type:"radio",items:[[c.alignNone,"none"],[c.alignLeft,"left"],[c.alignCenter,"center"],[c.alignRight,"right"]],label:c.align,setup:function(a){this.setValue(a.data.align)},commit:function(a){a.setData("align",this.getValue())}}]},{id:"hasCaption",type:"checkbox",label:b.captioned,requiredContent:w.caption.requiredContent,setup:function(a){this.setValue(a.data.hasCaption)}, +commit:function(a){a.setData("hasCaption",this.getValue())}}]},{id:"Upload",hidden:!0,filebrowser:"uploadButton",label:b.uploadTab,elements:[{type:"file",id:"upload",label:b.btnUpload,style:"height:40px"},{type:"fileButton",id:"uploadButton",filebrowser:"info:src",label:b.btnUpload,"for":["Upload","upload"]}]}]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/icons/hidpi/image.png b/static/ckeditor/ckeditor/plugins/image2/icons/hidpi/image.png new file mode 100644 index 0000000000..b3c7ade53c Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/image2/icons/hidpi/image.png differ diff --git a/static/ckeditor/ckeditor/plugins/image2/icons/image.png b/static/ckeditor/ckeditor/plugins/image2/icons/image.png new file mode 100644 index 0000000000..fcf61b5f2b Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/image2/icons/image.png differ diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/af.js b/static/ckeditor/ckeditor/plugins/image2/lang/af.js new file mode 100644 index 0000000000..d5ef4619c7 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/af.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","af",{alt:"Alternatiewe teks",btnUpload:"Stuur na bediener",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Afbeelding informasie",lockRatio:"Vaste proporsie",menu:"Afbeelding eienskappe",pathName:"image",pathNameCaption:"caption",resetSize:"Herstel grootte",resizer:"Click and drag to resize",title:"Afbeelding eienskappe",uploadTab:"Oplaai",urlMissing:"Die URL na die afbeelding ontbreek."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/ar.js b/static/ckeditor/ckeditor/plugins/image2/lang/ar.js new file mode 100644 index 0000000000..435544b227 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/ar.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ar",{alt:"عنوان الصورة",btnUpload:"أرسلها للخادم",captioned:"صورة ذات اسم",captionPlaceholder:"تسمية",infoTab:"معلومات الصورة",lockRatio:"تناسق الحجم",menu:"خصائص الصورة",pathName:"صورة",pathNameCaption:"تسمية",resetSize:"إستعادة الحجم الأصلي",resizer:"انقر ثم اسحب للتحجيم",title:"خصائص الصورة",uploadTab:"رفع",urlMissing:"عنوان مصدر الصورة مفقود"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/bg.js b/static/ckeditor/ckeditor/plugins/image2/lang/bg.js new file mode 100644 index 0000000000..abb7ab5a2d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/bg.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","bg",{alt:"Алтернативен текст",btnUpload:"Изпрати я на сървъра",captioned:"Надписано изображение",captionPlaceholder:"Надпис",infoTab:"Детайли за изображението",lockRatio:"Заключване на съотношението",menu:"Настройки на изображението",pathName:"изображение",pathNameCaption:"надпис",resetSize:"Нулиране на размер",resizer:"Кликни и влачи, за да преоразмериш",title:"Настройки на изображението",uploadTab:"Качване",urlMissing:"URL адреса на изображението липсва."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/bn.js b/static/ckeditor/ckeditor/plugins/image2/lang/bn.js new file mode 100644 index 0000000000..93618a0211 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/bn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","bn",{alt:"বিকল্প টেক্সট",btnUpload:"ইহাকে সার্ভারে প্রেরন কর",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"ছবির তথ্য",lockRatio:"অনুপাত লক কর",menu:"ছবির প্রোপার্টি",pathName:"image",pathNameCaption:"caption",resetSize:"সাইজ পূর্বাবস্থায় ফিরিয়ে দাও",resizer:"Click and drag to resize",title:"ছবির প্রোপার্টি",uploadTab:"আপলোড",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/bs.js b/static/ckeditor/ckeditor/plugins/image2/lang/bs.js new file mode 100644 index 0000000000..ff4ae29779 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/bs.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","bs",{alt:"Tekst na slici",btnUpload:"Šalji na server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Info slike",lockRatio:"Zakljuèaj odnos",menu:"Svojstva slike",pathName:"image",pathNameCaption:"caption",resetSize:"Resetuj dimenzije",resizer:"Click and drag to resize",title:"Svojstva slike",uploadTab:"Šalji",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/ca.js b/static/ckeditor/ckeditor/plugins/image2/lang/ca.js new file mode 100644 index 0000000000..6e73ef3545 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ca",{alt:"Text alternatiu",btnUpload:"Envia-la al servidor",captioned:"Imatge amb subtítol",captionPlaceholder:"Títol",infoTab:"Informació de la imatge",lockRatio:"Bloqueja les proporcions",menu:"Propietats de la imatge",pathName:"imatge",pathNameCaption:"subtítol",resetSize:"Restaura la mida",resizer:"Clicar i arrossegar per redimensionar",title:"Propietats de la imatge",uploadTab:"Puja",urlMissing:"Falta la URL de la imatge."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/cs.js b/static/ckeditor/ckeditor/plugins/image2/lang/cs.js new file mode 100644 index 0000000000..d148641d39 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/cs.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","cs",{alt:"Alternativní text",btnUpload:"Odeslat na server",captioned:"Obrázek s popisem",captionPlaceholder:"Popis",infoTab:"Informace o obrázku",lockRatio:"Zámek",menu:"Vlastnosti obrázku",pathName:"Obrázek",pathNameCaption:"Popis",resetSize:"Původní velikost",resizer:"Klepněte a táhněte pro změnu velikosti",title:"Vlastnosti obrázku",uploadTab:"Odeslat",urlMissing:"Zadané URL zdroje obrázku nebylo nalezeno."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/cy.js b/static/ckeditor/ckeditor/plugins/image2/lang/cy.js new file mode 100644 index 0000000000..031ba7efdd --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/cy.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","cy",{alt:"Testun Amgen",btnUpload:"Anfon i'r Gweinydd",captioned:"Delwedd â phennawd",captionPlaceholder:"Caption",infoTab:"Gwyb Delwedd",lockRatio:"Cloi Cymhareb",menu:"Priodweddau Delwedd",pathName:"delwedd",pathNameCaption:"pennawd",resetSize:"Ailosod Maint",resizer:"Clicio a llusgo i ail-meintio",title:"Priodweddau Delwedd",uploadTab:"Lanlwytho",urlMissing:"URL gwreiddiol y ddelwedd ar goll."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/da.js b/static/ckeditor/ckeditor/plugins/image2/lang/da.js new file mode 100644 index 0000000000..655adb53d8 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/da.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","da",{alt:"Alternativ tekst",btnUpload:"Upload fil til serveren",captioned:"Tekstet billede",captionPlaceholder:"Tekst",infoTab:"Generelt",lockRatio:"Lås størrelsesforhold",menu:"Egenskaber for billede",pathName:"billede",pathNameCaption:"tekst",resetSize:"Nulstil størrelse",resizer:"Klik og træk for at ændre størrelsen",title:"Egenskaber for billede",uploadTab:"Upload",urlMissing:"Kilde på billed-URL mangler"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/de.js b/static/ckeditor/ckeditor/plugins/image2/lang/de.js new file mode 100644 index 0000000000..68933ae51d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/de.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","de",{alt:"Alternativer Text",btnUpload:"Zum Server senden",captioned:"Bild mit Überschrift",captionPlaceholder:"Überschrift",infoTab:"Bildinfo",lockRatio:"Größenverhältnis beibehalten",menu:"Bildeigenschaften",pathName:"Bild",pathNameCaption:"Überschrift",resetSize:"Größe zurücksetzen",resizer:"Zum Vergrößern auswählen und ziehen",title:"Bild-Eigenschaften",uploadTab:"Hochladen",urlMissing:"Bildquellen-URL fehlt."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/el.js b/static/ckeditor/ckeditor/plugins/image2/lang/el.js new file mode 100644 index 0000000000..65307e3d84 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/el.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","el",{alt:"Εναλλακτικό Κείμενο",btnUpload:"Αποστολή στον Διακομιστή",captioned:"Εικόνα με λεζάντα",captionPlaceholder:"Λεζάντα",infoTab:"Πληροφορίες Εικόνας",lockRatio:"Κλείδωμα Αναλογίας",menu:"Ιδιότητες Εικόνας",pathName:"εικόνα",pathNameCaption:"λεζάντα",resetSize:"Επαναφορά Αρχικού Μεγέθους",resizer:"Κάνετε κλικ και σύρετε το ποντίκι για να αλλάξετε το μέγεθος",title:"Ιδιότητες Εικόνας",uploadTab:"Αποστολή",urlMissing:"Λείπει το πηγαίο URL της εικόνας."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/en-au.js b/static/ckeditor/ckeditor/plugins/image2/lang/en-au.js new file mode 100644 index 0000000000..caab219c0a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/en-au.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","en-au",{alt:"Alternative Text",btnUpload:"Send it to the Server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Image Info",lockRatio:"Lock Ratio",menu:"Image Properties",pathName:"image",pathNameCaption:"caption",resetSize:"Reset Size",resizer:"Click and drag to resize",title:"Image Properties",uploadTab:"Upload",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/en-ca.js b/static/ckeditor/ckeditor/plugins/image2/lang/en-ca.js new file mode 100644 index 0000000000..ec19b8f2a8 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/en-ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","en-ca",{alt:"Alternative Text",btnUpload:"Send it to the Server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Image Info",lockRatio:"Lock Ratio",menu:"Image Properties",pathName:"image",pathNameCaption:"caption",resetSize:"Reset Size",resizer:"Click and drag to resize",title:"Image Properties",uploadTab:"Upload",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/en-gb.js b/static/ckeditor/ckeditor/plugins/image2/lang/en-gb.js new file mode 100644 index 0000000000..d5a9406a13 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/en-gb.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","en-gb",{alt:"Alternative Text",btnUpload:"Send it to the Server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Image Info",lockRatio:"Lock Ratio",menu:"Image Properties",pathName:"image",pathNameCaption:"caption",resetSize:"Reset Size",resizer:"Click and drag to resize",title:"Image Properties",uploadTab:"Upload",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/en.js b/static/ckeditor/ckeditor/plugins/image2/lang/en.js new file mode 100644 index 0000000000..524e0a2a8f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/en.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","en",{alt:"Alternative Text",btnUpload:"Send it to the Server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Image Info",lockRatio:"Lock Ratio",menu:"Image Properties",pathName:"image",pathNameCaption:"caption",resetSize:"Reset Size",resizer:"Click and drag to resize",title:"Image Properties",uploadTab:"Upload",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/eo.js b/static/ckeditor/ckeditor/plugins/image2/lang/eo.js new file mode 100644 index 0000000000..26587e0347 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/eo.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","eo",{alt:"Anstataŭiga Teksto",btnUpload:"Sendu al Servilo",captioned:"Bildo kun apudskribo",captionPlaceholder:"Apudskribo",infoTab:"Informoj pri Bildo",lockRatio:"Konservi Proporcion",menu:"Atributoj de Bildo",pathName:"bildo",pathNameCaption:"apudskribo",resetSize:"Origina Grando",resizer:"Kliki kaj treni por ŝanĝi la grandon",title:"Atributoj de Bildo",uploadTab:"Alŝuti",urlMissing:"La fontretadreso de la bildo mankas."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/es.js b/static/ckeditor/ckeditor/plugins/image2/lang/es.js new file mode 100644 index 0000000000..7e5fc7bbc5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/es.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","es",{alt:"Texto Alternativo",btnUpload:"Enviar al Servidor",captioned:"Imagen subtitulada",captionPlaceholder:"Leyenda",infoTab:"Información de Imagen",lockRatio:"Proporcional",menu:"Propiedades de Imagen",pathName:"image",pathNameCaption:"subtítulo",resetSize:"Tamaño Original",resizer:"Dar clic y arrastrar para cambiar tamaño",title:"Propiedades de Imagen",uploadTab:"Cargar",urlMissing:"Debe indicar la URL de la imagen."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/et.js b/static/ckeditor/ckeditor/plugins/image2/lang/et.js new file mode 100644 index 0000000000..b8571dbf96 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/et.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","et",{alt:"Alternatiivne tekst",btnUpload:"Saada serverisse",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Pildi info",lockRatio:"Lukusta kuvasuhe",menu:"Pildi omadused",pathName:"image",pathNameCaption:"caption",resetSize:"Lähtesta suurus",resizer:"Click and drag to resize",title:"Pildi omadused",uploadTab:"Lae üles",urlMissing:"Pildi lähte-URL on puudu."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/eu.js b/static/ckeditor/ckeditor/plugins/image2/lang/eu.js new file mode 100644 index 0000000000..dadf5a3add --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/eu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","eu",{alt:"Ordezko Testua",btnUpload:"Zerbitzarira bidalia",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Irudi informazioa",lockRatio:"Erlazioa Blokeatu",menu:"Irudi Ezaugarriak",pathName:"image",pathNameCaption:"caption",resetSize:"Tamaina Berrezarri",resizer:"Click and drag to resize",title:"Irudi Ezaugarriak",uploadTab:"Gora kargatu",urlMissing:"Irudiaren iturburu URL-a falta da."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/fa.js b/static/ckeditor/ckeditor/plugins/image2/lang/fa.js new file mode 100644 index 0000000000..6600e16e1f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/fa.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","fa",{alt:"متن جایگزین",btnUpload:"به سرور بفرست",captioned:"تصویر زیرنویس شده",captionPlaceholder:"عنوان",infoTab:"اطلاعات تصویر",lockRatio:"قفل کردن نسبت",menu:"ویژگی​های تصویر",pathName:"تصویر",pathNameCaption:"عنوان",resetSize:"بازنشانی اندازه",resizer:"کلیک و کشیدن برای تغییر اندازه",title:"ویژگی​های تصویر",uploadTab:"بالاگذاری",urlMissing:"آدرس URL اصلی تصویر یافت نشد."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/fi.js b/static/ckeditor/ckeditor/plugins/image2/lang/fi.js new file mode 100644 index 0000000000..e4a104e8c0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/fi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","fi",{alt:"Vaihtoehtoinen teksti",btnUpload:"Lähetä palvelimelle",captioned:"Kuva kuvatekstillä",captionPlaceholder:"Kuvateksti",infoTab:"Kuvan tiedot",lockRatio:"Lukitse suhteet",menu:"Kuvan ominaisuudet",pathName:"kuva",pathNameCaption:"kuvateksti",resetSize:"Alkuperäinen koko",resizer:"Klikkaa ja raahaa muuttaaksesi kokoa",title:"Kuvan ominaisuudet",uploadTab:"Lisää tiedosto",urlMissing:"Kuvan lähdeosoite puuttuu."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/fo.js b/static/ckeditor/ckeditor/plugins/image2/lang/fo.js new file mode 100644 index 0000000000..a2bbfae94f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/fo.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","fo",{alt:"Alternativur tekstur",btnUpload:"Send til ambætaran",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Myndaupplýsingar",lockRatio:"Læs lutfallið",menu:"Myndaeginleikar",pathName:"image",pathNameCaption:"caption",resetSize:"Upprunastødd",resizer:"Click and drag to resize",title:"Myndaeginleikar",uploadTab:"Send til ambætaran",urlMissing:"URL til mynd manglar."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/fr-ca.js b/static/ckeditor/ckeditor/plugins/image2/lang/fr-ca.js new file mode 100644 index 0000000000..30cd9e98bf --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/fr-ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","fr-ca",{alt:"Texte alternatif",btnUpload:"Envoyer sur le serveur",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Informations sur l'image2",lockRatio:"Verrouiller les proportions",menu:"Propriétés de l'image2",pathName:"image",pathNameCaption:"caption",resetSize:"Taille originale",resizer:"Click and drag to resize",title:"Propriétés de l'image2",uploadTab:"Téléverser",urlMissing:"L'URL de la source de l'image est manquant."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/fr.js b/static/ckeditor/ckeditor/plugins/image2/lang/fr.js new file mode 100644 index 0000000000..2c7ed97365 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/fr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","fr",{alt:"Texte de remplacement",btnUpload:"Envoyer sur le serveur",captioned:"Image légendée",captionPlaceholder:"Légende",infoTab:"Informations sur l'image2",lockRatio:"Conserver les proportions",menu:"Propriétés de l'image2",pathName:"image",pathNameCaption:"légende",resetSize:"Taille d'origine",resizer:"Cliquer et glisser pour redimensionner",title:"Propriétés de l'image2",uploadTab:"Envoyer",urlMissing:"L'adresse source de l'image est manquante."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/gl.js b/static/ckeditor/ckeditor/plugins/image2/lang/gl.js new file mode 100644 index 0000000000..844bd2b50d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/gl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","gl",{alt:"Texto alternativo",btnUpload:"Enviar ao servidor",captioned:"Imaxe con lenda",captionPlaceholder:"Lenda",infoTab:"Información da imaxe",lockRatio:"Proporcional",menu:"Propiedades da imaxe",pathName:"Imaxe",pathNameCaption:"lenda",resetSize:"Tamaño orixinal",resizer:"Prema e arrastre para axustar o tamaño",title:"Propiedades da imaxe",uploadTab:"Cargar",urlMissing:"Non se atopa o URL da imaxe."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/gu.js b/static/ckeditor/ckeditor/plugins/image2/lang/gu.js new file mode 100644 index 0000000000..4e83249d34 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/gu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","gu",{alt:"ઑલ્ટર્નટ ટેક્સ્ટ",btnUpload:"આ સર્વરને મોકલવું",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"ચિત્ર ની જાણકારી",lockRatio:"લૉક ગુણોત્તર",menu:"ચિત્રના ગુણ",pathName:"image",pathNameCaption:"caption",resetSize:"રીસેટ સાઇઝ",resizer:"Click and drag to resize",title:"ચિત્રના ગુણ",uploadTab:"અપલોડ",urlMissing:"ઈમેજની મૂળ URL છે નહી."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/he.js b/static/ckeditor/ckeditor/plugins/image2/lang/he.js new file mode 100644 index 0000000000..ee688e0445 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/he.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","he",{alt:"טקסט חלופי",btnUpload:"שליחה לשרת",captioned:"כותרת תמונה",captionPlaceholder:"כותרת",infoTab:"מידע על התמונה",lockRatio:"נעילת היחס",menu:"תכונות התמונה",pathName:"תמונה",pathNameCaption:"כותרת",resetSize:"איפוס הגודל",resizer:"לחץ וגרור לשינוי הגודל",title:"מאפייני התמונה",uploadTab:"העלאה",urlMissing:"כתובת התמונה חסרה."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/hi.js b/static/ckeditor/ckeditor/plugins/image2/lang/hi.js new file mode 100644 index 0000000000..ec9225d308 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/hi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","hi",{alt:"वैकल्पिक टेक्स्ट",btnUpload:"इसे सर्वर को भेजें",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"तस्वीर की जानकारी",lockRatio:"लॉक अनुपात",menu:"तस्वीर प्रॉपर्टीज़",pathName:"image",pathNameCaption:"caption",resetSize:"रीसॅट साइज़",resizer:"Click and drag to resize",title:"तस्वीर प्रॉपर्टीज़",uploadTab:"अपलोड",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/hr.js b/static/ckeditor/ckeditor/plugins/image2/lang/hr.js new file mode 100644 index 0000000000..812813c506 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/hr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","hr",{alt:"Alternativni tekst",btnUpload:"Pošalji na server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Info slike",lockRatio:"Zaključaj odnos",menu:"Svojstva slika",pathName:"image",pathNameCaption:"caption",resetSize:"Obriši veličinu",resizer:"Click and drag to resize",title:"Svojstva slika",uploadTab:"Pošalji",urlMissing:"Nedostaje URL slike."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/hu.js b/static/ckeditor/ckeditor/plugins/image2/lang/hu.js new file mode 100644 index 0000000000..bffa8b8180 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/hu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","hu",{alt:"Buborék szöveg",btnUpload:"Küldés a szerverre",captioned:"Feliratozott kép",captionPlaceholder:"Képfelirat",infoTab:"Alaptulajdonságok",lockRatio:"Arány megtartása",menu:"Kép tulajdonságai",pathName:"kép",pathNameCaption:"felirat",resetSize:"Eredeti méret",resizer:"Kattints és húzz az átméretezéshez",title:"Kép tulajdonságai",uploadTab:"Feltöltés",urlMissing:"Hiányzik a kép URL-je"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/id.js b/static/ckeditor/ckeditor/plugins/image2/lang/id.js new file mode 100644 index 0000000000..a238cab5a0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/id.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","id",{alt:"Teks alternatif",btnUpload:"Kirim ke Server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Info Gambar",lockRatio:"Lock Ratio",menu:"Image Properties",pathName:"image",pathNameCaption:"caption",resetSize:"Reset Size",resizer:"Click and drag to resize",title:"Image Properties",uploadTab:"Unggah",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/is.js b/static/ckeditor/ckeditor/plugins/image2/lang/is.js new file mode 100644 index 0000000000..196c68dcc6 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/is.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","is",{alt:"Baklægur texti",btnUpload:"Hlaða upp",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Almennt",lockRatio:"Festa stærðarhlutfall",menu:"Eigindi myndar",pathName:"image",pathNameCaption:"caption",resetSize:"Reikna stærð",resizer:"Click and drag to resize",title:"Eigindi myndar",uploadTab:"Senda upp",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/it.js b/static/ckeditor/ckeditor/plugins/image2/lang/it.js new file mode 100644 index 0000000000..d65b4549ce --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/it.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","it",{alt:"Testo alternativo",btnUpload:"Invia al server",captioned:"Immagine con didascalia",captionPlaceholder:"Didascalia",infoTab:"Informazioni immagine",lockRatio:"Blocca rapporto",menu:"Proprietà immagine",pathName:"immagine",pathNameCaption:"didascalia",resetSize:"Reimposta dimensione",resizer:"Fare clic e trascinare per ridimensionare",title:"Proprietà immagine",uploadTab:"Carica",urlMissing:"Manca l'URL dell'immagine."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/ja.js b/static/ckeditor/ckeditor/plugins/image2/lang/ja.js new file mode 100644 index 0000000000..b4457fd7d7 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/ja.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ja",{alt:"代替テキスト",btnUpload:"サーバーに送信",captioned:"キャプションを付ける",captionPlaceholder:"キャプション",infoTab:"画像情報",lockRatio:"比率を固定",menu:"画像のプロパティ",pathName:"image",pathNameCaption:"caption",resetSize:"サイズをリセット",resizer:"ドラッグしてリサイズ",title:"画像のプロパティ",uploadTab:"アップロード",urlMissing:"画像のURLを入力してください。"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/ka.js b/static/ckeditor/ckeditor/plugins/image2/lang/ka.js new file mode 100644 index 0000000000..88407289ce --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/ka.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ka",{alt:"სანაცვლო ტექსტი",btnUpload:"სერვერისთვის გაგზავნა",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"სურათის ინფორმცია",lockRatio:"პროპორციის შენარჩუნება",menu:"სურათის პარამეტრები",pathName:"image",pathNameCaption:"caption",resetSize:"ზომის დაბრუნება",resizer:"Click and drag to resize",title:"სურათის პარამეტრები",uploadTab:"აქაჩვა",urlMissing:"სურათის URL არაა შევსებული."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/km.js b/static/ckeditor/ckeditor/plugins/image2/lang/km.js new file mode 100644 index 0000000000..993429cda5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/km.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","km",{alt:"អត្ថបទជំនួស",btnUpload:"បញ្ជូនទៅកាន់ម៉ាស៊ីនផ្តល់សេវា",captioned:"រូប​ដែល​មាន​ចំណង​ជើង",captionPlaceholder:"Caption",infoTab:"ពត៌មានអំពីរូបភាព",lockRatio:"ចាក់​សោ​ផល​ធៀប",menu:"លក្ខណៈ​សម្បត្តិ​រូប​ភាព",pathName:"រូបភាព",pathNameCaption:"ចំណងជើង",resetSize:"កំណត់ទំហំឡើងវិញ",resizer:"ចុច​ហើយ​ទាញ​ដើម្បី​ប្ដូរ​ទំហំ",title:"លក្ខណៈ​សម្បត្តិ​រូប​ភាប",uploadTab:"ផ្ទុក​ឡើង",urlMissing:"ខ្វះ URL ប្រភព​រូប​ភាព។"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/ko.js b/static/ckeditor/ckeditor/plugins/image2/lang/ko.js new file mode 100644 index 0000000000..2b9e8f7f0e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/ko.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ko",{alt:"대체 문자열",btnUpload:"서버로 전송",captioned:"이미지 설명 넣기",captionPlaceholder:"설명",infoTab:"이미지 정보",lockRatio:"비율 유지",menu:"이미지 속성",pathName:"이미지",pathNameCaption:"설명",resetSize:"원래 크기로",resizer:"크기를 조절하려면 클릭 후 드래그 하세요",title:"이미지 속성",uploadTab:"업로드",urlMissing:"이미지 원본 주소(URL)가 없습니다."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/ku.js b/static/ckeditor/ckeditor/plugins/image2/lang/ku.js new file mode 100644 index 0000000000..fed115e58f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/ku.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ku",{alt:"جێگرەوەی دەق",btnUpload:"ناردنی بۆ ڕاژه",captioned:"وێنەی بەسەردێر",captionPlaceholder:"سەردێر",infoTab:"زانیاری وێنه",lockRatio:"داخستنی ڕێژه",menu:"خاسیەتی وێنه",pathName:"وێنە",pathNameCaption:"سەردێر",resetSize:"ڕێکخستنەوەی قەباره",resizer:"کرتەبکە و ڕایبکێشە بۆ قەبارە گۆڕین",title:"خاسیەتی وێنه",uploadTab:"بارکردن",urlMissing:"سەرچاوەی بەستەری وێنه بزره"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/lt.js b/static/ckeditor/ckeditor/plugins/image2/lang/lt.js new file mode 100644 index 0000000000..47b883d913 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/lt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","lt",{alt:"Alternatyvus Tekstas",btnUpload:"Siųsti į serverį",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Vaizdo informacija",lockRatio:"Išlaikyti proporciją",menu:"Vaizdo savybės",pathName:"image",pathNameCaption:"caption",resetSize:"Atstatyti dydį",resizer:"Click and drag to resize",title:"Vaizdo savybės",uploadTab:"Siųsti",urlMissing:"Paveiksliuko nuorodos nėra."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/lv.js b/static/ckeditor/ckeditor/plugins/image2/lang/lv.js new file mode 100644 index 0000000000..069595db45 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/lv.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","lv",{alt:"Alternatīvais teksts",btnUpload:"Nosūtīt serverim",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Informācija par attēlu",lockRatio:"Nemainīga Augstuma/Platuma attiecība",menu:"Attēla īpašības",pathName:"image",pathNameCaption:"caption",resetSize:"Atjaunot sākotnējo izmēru",resizer:"Click and drag to resize",title:"Attēla īpašības",uploadTab:"Augšupielādēt",urlMissing:"Trūkst attēla atrašanās adrese."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/mk.js b/static/ckeditor/ckeditor/plugins/image2/lang/mk.js new file mode 100644 index 0000000000..0d5b35e5a4 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/mk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","mk",{alt:"Alternative Text",btnUpload:"Send it to the Server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Image Info",lockRatio:"Lock Ratio",menu:"Image Properties",pathName:"image",pathNameCaption:"caption",resetSize:"Reset Size",resizer:"Click and drag to resize",title:"Image Properties",uploadTab:"Upload",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/mn.js b/static/ckeditor/ckeditor/plugins/image2/lang/mn.js new file mode 100644 index 0000000000..f2d437f52b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/mn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","mn",{alt:"Зургийг орлох бичвэр",btnUpload:"Үүнийг сервэррүү илгээ",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Зурагны мэдээлэл",lockRatio:"Радио түгжих",menu:"Зураг",pathName:"image",pathNameCaption:"caption",resetSize:"хэмжээ дахин оноох",resizer:"Click and drag to resize",title:"Зураг",uploadTab:"Илгээж ачаалах",urlMissing:"Зургийн эх сурвалжийн хаяг (URL) байхгүй байна."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/ms.js b/static/ckeditor/ckeditor/plugins/image2/lang/ms.js new file mode 100644 index 0000000000..8d1d665298 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/ms.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ms",{alt:"Text Alternatif",btnUpload:"Hantar ke Server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Info Imej",lockRatio:"Tetapkan Nisbah",menu:"Ciri-ciri Imej",pathName:"image",pathNameCaption:"caption",resetSize:"Saiz Set Semula",resizer:"Click and drag to resize",title:"Ciri-ciri Imej",uploadTab:"Muat Naik",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/nb.js b/static/ckeditor/ckeditor/plugins/image2/lang/nb.js new file mode 100644 index 0000000000..2f237a609a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/nb.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","nb",{alt:"Alternativ tekst",btnUpload:"Send det til serveren",captioned:"Bilde med bildetekst",captionPlaceholder:"Bildetekst",infoTab:"Bildeinformasjon",lockRatio:"Lås forhold",menu:"Bildeegenskaper",pathName:"bilde",pathNameCaption:"bildetekst",resetSize:"Tilbakestill størrelse",resizer:"Klikk og dra for å endre størrelse",title:"Bildeegenskaper",uploadTab:"Last opp",urlMissing:"Bildets adresse mangler."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/nl.js b/static/ckeditor/ckeditor/plugins/image2/lang/nl.js new file mode 100644 index 0000000000..f032d84569 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/nl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","nl",{alt:"Alternatieve tekst",btnUpload:"Naar server verzenden",captioned:"Afbeelding met onderschrift",captionPlaceholder:"Onderschrift",infoTab:"Afbeeldingsinformatie",lockRatio:"Verhouding vergrendelen",menu:"Eigenschappen afbeelding",pathName:"afbeelding",pathNameCaption:"onderschrift",resetSize:"Afmetingen herstellen",resizer:"Klik en sleep om te herschalen",title:"Afbeeldingseigenschappen",uploadTab:"Uploaden",urlMissing:"De URL naar de afbeelding ontbreekt."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/no.js b/static/ckeditor/ckeditor/plugins/image2/lang/no.js new file mode 100644 index 0000000000..11bffbbc70 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/no.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","no",{alt:"Alternativ tekst",btnUpload:"Send det til serveren",captioned:"Bilde med bildetekst",captionPlaceholder:"Caption",infoTab:"Bildeinformasjon",lockRatio:"Lås forhold",menu:"Bildeegenskaper",pathName:"bilde",pathNameCaption:"bildetekst",resetSize:"Tilbakestill størrelse",resizer:"Klikk og dra for å endre størrelse",title:"Bildeegenskaper",uploadTab:"Last opp",urlMissing:"Bildets adresse mangler."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/pl.js b/static/ckeditor/ckeditor/plugins/image2/lang/pl.js new file mode 100644 index 0000000000..09e19e374b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/pl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","pl",{alt:"Tekst zastępczy",btnUpload:"Wyślij",captioned:"Obrazek z podpisem",captionPlaceholder:"Podpis",infoTab:"Informacje o obrazku",lockRatio:"Zablokuj proporcje",menu:"Właściwości obrazka",pathName:"obrazek",pathNameCaption:"podpis",resetSize:"Przywróć rozmiar",resizer:"Kliknij i przeciągnij, by zmienić rozmiar.",title:"Właściwości obrazka",uploadTab:"Wyślij",urlMissing:"Podaj adres URL obrazka."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/pt-br.js b/static/ckeditor/ckeditor/plugins/image2/lang/pt-br.js new file mode 100644 index 0000000000..82c42e853f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/pt-br.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","pt-br",{alt:"Texto Alternativo",btnUpload:"Enviar para o Servidor",captioned:"Legenda da Imagem",captionPlaceholder:"Legenda",infoTab:"Informações da Imagem",lockRatio:"Travar Proporções",menu:"Formatar Imagem",pathName:"Imagem",pathNameCaption:"Legenda",resetSize:"Redefinir para o Tamanho Original",resizer:"Click e arraste para redimensionar",title:"Formatar Imagem",uploadTab:"Enviar ao Servidor",urlMissing:"URL da imagem está faltando."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/pt.js b/static/ckeditor/ckeditor/plugins/image2/lang/pt.js new file mode 100644 index 0000000000..99b56c7bd1 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/pt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","pt",{alt:"Texto Alternativo",btnUpload:"Enviar para o Servidor",captioned:"Imagem legendada",captionPlaceholder:"Legenda",infoTab:"Informação da Imagem",lockRatio:"Proporcional",menu:"Propriedades da Imagem",pathName:"imagem",pathNameCaption:"legenda",resetSize:"Tamanho Original",resizer:"Clique e arraste para redimensionar",title:"Propriedades da Imagem",uploadTab:"Enviar",urlMissing:"O URL da fonte da imagem está em falta."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/ro.js b/static/ckeditor/ckeditor/plugins/image2/lang/ro.js new file mode 100644 index 0000000000..8f8608948a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/ro.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ro",{alt:"Text alternativ",btnUpload:"Trimite la server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Informaţii despre imagine",lockRatio:"Păstrează proporţiile",menu:"Proprietăţile imaginii",pathName:"image",pathNameCaption:"caption",resetSize:"Resetează mărimea",resizer:"Click and drag to resize",title:"Proprietăţile imaginii",uploadTab:"Încarcă",urlMissing:"Sursa URL a imaginii lipsește."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/ru.js b/static/ckeditor/ckeditor/plugins/image2/lang/ru.js new file mode 100644 index 0000000000..52de968cdb --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/ru.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ru",{alt:"Альтернативный текст",btnUpload:"Загрузить на сервер",captioned:"Отображать название",captionPlaceholder:"Название",infoTab:"Данные об изображении",lockRatio:"Сохранять пропорции",menu:"Свойства изображения",pathName:"изображение",pathNameCaption:"название",resetSize:"Вернуть обычные размеры",resizer:"Нажмите и растяните",title:"Свойства изображения",uploadTab:"Загрузка файла",urlMissing:"Не указана ссылка на изображение."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/si.js b/static/ckeditor/ckeditor/plugins/image2/lang/si.js new file mode 100644 index 0000000000..5ab518c1aa --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/si.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","si",{alt:"විකල්ප ",btnUpload:"සේවාදායකය වෙත යොමුකිරිම",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"රුපයේ තොරතුරු",lockRatio:"නවතන අනුපාතය ",menu:"රුපයේ ගුණ",pathName:"image",pathNameCaption:"caption",resetSize:"නැවතත් විශාලත්වය වෙනස් කිරීම",resizer:"Click and drag to resize",title:"රුපයේ ",uploadTab:"උඩුගතකිරීම",urlMissing:"රුප මුලාශ්‍ර URL නැත."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/sk.js b/static/ckeditor/ckeditor/plugins/image2/lang/sk.js new file mode 100644 index 0000000000..1877884379 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/sk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","sk",{alt:"Alternatívny text",btnUpload:"Odoslať to na server",captioned:"Opísaný obrázok",captionPlaceholder:"Popis",infoTab:"Informácie o obrázku",lockRatio:"Pomer zámky",menu:"Vlastnosti obrázka",pathName:"obrázok",pathNameCaption:"popis",resetSize:"Pôvodná veľkosť",resizer:"Kliknite a potiahnite pre zmenu veľkosti",title:"Vlastnosti obrázka",uploadTab:"Nahrať",urlMissing:"Chýba URL zdroja obrázka."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/sl.js b/static/ckeditor/ckeditor/plugins/image2/lang/sl.js new file mode 100644 index 0000000000..aced917a2e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/sl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","sl",{alt:"Nadomestno besedilo",btnUpload:"Pošlji na strežnik",captioned:"Podnaslovljena slika",captionPlaceholder:"Napis",infoTab:"Podatki o sliki",lockRatio:"Zakleni razmerje",menu:"Lastnosti slike",pathName:"slika",pathNameCaption:"napis",resetSize:"Ponastavi velikost",resizer:"Kliknite in povlecite, da spremeniti velikost",title:"Lastnosti slike",uploadTab:"Naloži",urlMissing:"Manjka vir (URL) slike."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/sq.js b/static/ckeditor/ckeditor/plugins/image2/lang/sq.js new file mode 100644 index 0000000000..fc15d86e0d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/sq.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","sq",{alt:"Tekst Alternativ",btnUpload:"Dërgo në server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Informacione mbi Fotografinë",lockRatio:"Mbyll Racionin",menu:"Karakteristikat e Fotografisë",pathName:"foto",pathNameCaption:"caption",resetSize:"Rikthe Madhësinë",resizer:"Click and drag to resize",title:"Karakteristikat e Fotografisë",uploadTab:"Ngarko",urlMissing:"Mungon URL e burimit të fotografisë."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/sr-latn.js b/static/ckeditor/ckeditor/plugins/image2/lang/sr-latn.js new file mode 100644 index 0000000000..287f0265ed --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/sr-latn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","sr-latn",{alt:"Alternativni tekst",btnUpload:"Pošalji na server",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Info slike",lockRatio:"Zaključaj odnos",menu:"Osobine slika",pathName:"image",pathNameCaption:"caption",resetSize:"Resetuj veličinu",resizer:"Click and drag to resize",title:"Osobine slika",uploadTab:"Pošalji",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/sr.js b/static/ckeditor/ckeditor/plugins/image2/lang/sr.js new file mode 100644 index 0000000000..18857fb7b5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/sr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","sr",{alt:"Алтернативни текст",btnUpload:"Пошаљи на сервер",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"Инфо слике",lockRatio:"Закључај однос",menu:"Особине слика",pathName:"image",pathNameCaption:"caption",resetSize:"Ресетуј величину",resizer:"Click and drag to resize",title:"Особине слика",uploadTab:"Пошаљи",urlMissing:"Недостаје УРЛ слике."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/sv.js b/static/ckeditor/ckeditor/plugins/image2/lang/sv.js new file mode 100644 index 0000000000..2c5ed3f395 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/sv.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","sv",{alt:"Alternativ text",btnUpload:"Skicka till server",captioned:"Rubricerad bild",captionPlaceholder:"Bildtext",infoTab:"Bildinformation",lockRatio:"Lås höjd/bredd förhållanden",menu:"Bildegenskaper",pathName:"bild",pathNameCaption:"rubrik",resetSize:"Återställ storlek",resizer:"Klicka och drag för att ändra storlek",title:"Bildegenskaper",uploadTab:"Ladda upp",urlMissing:"Bildkällans URL saknas."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/th.js b/static/ckeditor/ckeditor/plugins/image2/lang/th.js new file mode 100644 index 0000000000..636814d981 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/th.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","th",{alt:"คำประกอบรูปภาพ",btnUpload:"อัพโหลดไฟล์ไปเก็บไว้ที่เครื่องแม่ข่าย (เซิร์ฟเวอร์)",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"ข้อมูลของรูปภาพ",lockRatio:"กำหนดอัตราส่วน กว้าง-สูง แบบคงที่",menu:"คุณสมบัติของ รูปภาพ",pathName:"image",pathNameCaption:"caption",resetSize:"กำหนดรูปเท่าขนาดจริง",resizer:"Click and drag to resize",title:"คุณสมบัติของ รูปภาพ",uploadTab:"อัพโหลดไฟล์",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/tr.js b/static/ckeditor/ckeditor/plugins/image2/lang/tr.js new file mode 100644 index 0000000000..617a8a186b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/tr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","tr",{alt:"Alternatif Yazı",btnUpload:"Sunucuya Yolla",captioned:"Başlıklı resim",captionPlaceholder:"Başlık",infoTab:"Resim Bilgisi",lockRatio:"Oranı Kilitle",menu:"Resim Özellikleri",pathName:"Resim",pathNameCaption:"başlık",resetSize:"Boyutu Başa Döndür",resizer:"Boyutlandırmak için, tıklayın ve sürükleyin",title:"Resim Özellikleri",uploadTab:"Karşıya Yükle",urlMissing:"Resmin URL kaynağı bulunamadı."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/tt.js b/static/ckeditor/ckeditor/plugins/image2/lang/tt.js new file mode 100644 index 0000000000..2133d73bb1 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/tt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","tt",{alt:"Альтернатив текст",btnUpload:"Серверга җибәрү",captioned:"Исеме куелган рәсем",captionPlaceholder:"Исем",infoTab:"Рәсем тасвирламасы",lockRatio:"Lock Ratio",menu:"Рәсем үзлекләре",pathName:"рәсем",pathNameCaption:"исем",resetSize:"Баштагы зурлык",resizer:"Күчереп куер өчен басып шудырыгыз",title:"Рәсем үзлекләре",uploadTab:"Йөкләү",urlMissing:"Image source URL is missing."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/ug.js b/static/ckeditor/ckeditor/plugins/image2/lang/ug.js new file mode 100644 index 0000000000..7913ee9f3a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/ug.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","ug",{alt:"تېكىست ئالماشتۇر",btnUpload:"مۇلازىمېتىرغا يۈكلە",captioned:"Captioned image",captionPlaceholder:"Caption",infoTab:"سۈرەت",lockRatio:"نىسبەتنى قۇلۇپلا",menu:"سۈرەت خاسلىقى",pathName:"image",pathNameCaption:"caption",resetSize:"ئەسلى چوڭلۇق",resizer:"Click and drag to resize",title:"سۈرەت خاسلىقى",uploadTab:"يۈكلە",urlMissing:"سۈرەتنىڭ ئەسلى ھۆججەت ئادرېسى كەم"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/uk.js b/static/ckeditor/ckeditor/plugins/image2/lang/uk.js new file mode 100644 index 0000000000..989eb55166 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/uk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","uk",{alt:"Альтернативний текст",btnUpload:"Надіслати на сервер",captioned:"Підписане зображення",captionPlaceholder:"Caption",infoTab:"Інформація про зображення",lockRatio:"Зберегти пропорції",menu:"Властивості зображення",pathName:"Зображення",pathNameCaption:"заголовок",resetSize:"Очистити поля розмірів",resizer:"Клікніть та потягніть для зміни розмірів",title:"Властивості зображення",uploadTab:"Надіслати",urlMissing:"Вкажіть URL зображення."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/vi.js b/static/ckeditor/ckeditor/plugins/image2/lang/vi.js new file mode 100644 index 0000000000..863c40d167 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/vi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","vi",{alt:"Chú thích ảnh",btnUpload:"Tải lên máy chủ",captioned:"Ảnh có chú thích",captionPlaceholder:"Nhãn",infoTab:"Thông tin của ảnh",lockRatio:"Giữ nguyên tỷ lệ",menu:"Thuộc tính của ảnh",pathName:"ảnh",pathNameCaption:"chú thích",resetSize:"Kích thước gốc",resizer:"Kéo rê để thay đổi kích cỡ",title:"Thuộc tính của ảnh",uploadTab:"Tải lên",urlMissing:"Thiếu đường dẫn hình ảnh"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/zh-cn.js b/static/ckeditor/ckeditor/plugins/image2/lang/zh-cn.js new file mode 100644 index 0000000000..3209b92f76 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/zh-cn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","zh-cn",{alt:"替换文本",btnUpload:"上传到服务器",captioned:"带标题图像",captionPlaceholder:"标题",infoTab:"图像信息",lockRatio:"锁定比例",menu:"图像属性",pathName:"图像",pathNameCaption:"标题",resetSize:"原始尺寸",resizer:"点击并拖拽以改变尺寸",title:"图像属性",uploadTab:"上传",urlMissing:"缺少图像源文件地址"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/lang/zh.js b/static/ckeditor/ckeditor/plugins/image2/lang/zh.js new file mode 100644 index 0000000000..f07e2e5c30 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/lang/zh.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("image2","zh",{alt:"替代文字",btnUpload:"傳送至伺服器",captioned:"已加標題之圖片",captionPlaceholder:"標題",infoTab:"影像資訊",lockRatio:"固定比例",menu:"影像屬性",pathName:"圖片",pathNameCaption:"標題",resetSize:"重設大小",resizer:"拖曳以改變大小",title:"影像屬性",uploadTab:"上傳",urlMissing:"遺失圖片來源之 URL "}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/image2/plugin.js b/static/ckeditor/ckeditor/plugins/image2/plugin.js new file mode 100644 index 0000000000..adff7a8d04 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/image2/plugin.js @@ -0,0 +1,30 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){function A(a){function b(){this.deflated||(a.widgets.focused==this.widget&&(this.focused=!0),a.widgets.destroy(this.widget),this.deflated=!0)}function e(){var d=a.editable(),c=a.document;if(this.deflated)this.widget=a.widgets.initOn(this.element,"image",this.widget.data),this.widget.inline&&!(new CKEDITOR.dom.elementPath(this.widget.wrapper,d)).block&&(d=c.createElement(a.activeEnterMode==CKEDITOR.ENTER_P?"p":"div"),d.replace(this.widget.wrapper),this.widget.wrapper.move(d)),this.focused&& +(this.widget.focus(),delete this.focused),delete this.deflated;else{var b=this.widget,d=f,c=b.wrapper,e=b.data.align,b=b.data.hasCaption;if(d){for(var j=3;j--;)c.removeClass(d[j]);"center"==e?b&&c.addClass(d[1]):"none"!=e&&c.addClass(d[n[e]])}else"center"==e?(b?c.setStyle("text-align","center"):c.removeStyle("text-align"),c.removeStyle("float")):("none"==e?c.removeStyle("float"):c.setStyle("float",e),c.removeStyle("text-align"))}}var f=a.config.image2_alignClasses,g=a.config.image2_captionedClass; +return{allowedContent:B(a),requiredContent:"img[src,alt]",features:C(a),styleableElements:"img figure",contentTransformations:[["img[width]: sizeToAttribute"]],editables:{caption:{selector:"figcaption",allowedContent:"br em strong sub sup u s; a[!href]"}},parts:{image:"img",caption:"figcaption"},dialog:"image2",template:z,data:function(){var d=this.features;this.data.hasCaption&&!a.filter.checkFeature(d.caption)&&(this.data.hasCaption=!1);"none"!=this.data.align&&!a.filter.checkFeature(d.align)&& +(this.data.align="none");this.shiftState({widget:this,element:this.element,oldData:this.oldData,newData:this.data,deflate:b,inflate:e});this.data.link?this.parts.link||(this.parts.link=this.parts.image.getParent()):this.parts.link&&delete this.parts.link;this.parts.image.setAttributes({src:this.data.src,"data-cke-saved-src":this.data.src,alt:this.data.alt});if(this.oldData&&!this.oldData.hasCaption&&this.data.hasCaption)for(var c in this.data.classes)this.parts.image.removeClass(c);if(a.filter.checkFeature(d.dimension)){d= +this.data;d={width:d.width,height:d.height};c=this.parts.image;for(var f in d)d[f]?c.setAttribute(f,d[f]):c.removeAttribute(f)}this.oldData=CKEDITOR.tools.extend({},this.data)},init:function(){var b=CKEDITOR.plugins.image2,c=this.parts.image,e={hasCaption:!!this.parts.caption,src:c.getAttribute("src"),alt:c.getAttribute("alt")||"",width:c.getAttribute("width")||"",height:c.getAttribute("height")||"",lock:this.ready?b.checkHasNaturalRatio(c):!0},g=c.getAscendant("a");g&&this.wrapper.contains(g)&&(this.parts.link= +g);e.align||(c=e.hasCaption?this.element:c,f?(c.hasClass(f[0])?e.align="left":c.hasClass(f[2])&&(e.align="right"),e.align?c.removeClass(f[n[e.align]]):e.align="none"):(e.align=c.getStyle("float")||"none",c.removeStyle("float")));if(a.plugins.link&&this.parts.link&&(e.link=CKEDITOR.plugins.link.parseLinkAttributes(a,this.parts.link),(c=e.link.advanced)&&c.advCSSClasses))c.advCSSClasses=CKEDITOR.tools.trim(c.advCSSClasses.replace(/cke_\S+/,""));this.wrapper[(e.hasCaption?"remove":"add")+"Class"]("cke_image_nocaption"); +this.setData(e);a.filter.checkFeature(this.features.dimension)&&!0!==a.config.image2_disableResizer&&D(this);this.shiftState=b.stateShifter(this.editor);this.on("contextMenu",function(a){a.data.image=CKEDITOR.TRISTATE_OFF;if(this.parts.link||this.wrapper.getAscendant("a"))a.data.link=a.data.unlink=CKEDITOR.TRISTATE_OFF});this.on("dialog",function(a){a.data.widget=this},this)},addClass:function(a){k(this).addClass(a)},hasClass:function(a){return k(this).hasClass(a)},removeClass:function(a){k(this).removeClass(a)}, +getClasses:function(){var a=RegExp("^("+[].concat(g,f).join("|")+")$");return function(){var b=this.repository.parseElementClasses(k(this).getAttribute("class")),e;for(e in b)a.test(e)&&delete b[e];return b}}(),upcast:E(a),downcast:F(a)}}function E(a){var b=l(a),e=a.config.image2_captionedClass;return function(a,g){var d={width:1,height:1},c=a.name,h;if(!a.attributes["data-cke-realelement"]){if(b(a)){if("div"==c&&(h=a.getFirst("figure")))a.replaceWith(h),a=h;g.align="center";h=a.getFirst("img")|| +a.getFirst("a").getFirst("img")}else"figure"==c&&a.hasClass(e)?h=a.getFirst("img")||a.getFirst("a").getFirst("img"):o(a)&&(h="a"==a.name?a.children[0]:a);if(h){for(var y in d)(c=h.attributes[y])&&c.match(G)&&delete h.attributes[y];return a}}}}function F(a){var b=a.config.image2_alignClasses;return function(a){var f="a"==a.name?a.getFirst():a,g=f.attributes,d=this.data.align;if(!this.inline){var c=a.getFirst("span");c&&c.replaceWith(c.getFirst({img:1,a:1}))}d&&"none"!=d&&(c=CKEDITOR.tools.parseCssText(g.style|| +""),"center"==d&&"figure"==a.name?a=a.wrapWith(new CKEDITOR.htmlParser.element("div",b?{"class":b[1]}:{style:"text-align:center"})):d in{left:1,right:1}&&(b?f.addClass(b[n[d]]):c["float"]=d),!b&&!CKEDITOR.tools.isEmpty(c)&&(g.style=CKEDITOR.tools.writeCssText(c)));return a}}function l(a){var b=a.config.image2_captionedClass,e=a.config.image2_alignClasses,f={figure:1,a:1,img:1};return function(g){if(!(g.name in{div:1,p:1}))return!1;var d=g.children;if(1!==d.length)return!1;d=d[0];if(!(d.name in f))return!1; +if("p"==g.name){if(!o(d))return!1}else if("figure"==d.name){if(!d.hasClass(b))return!1}else if(a.enterMode==CKEDITOR.ENTER_P||!o(d))return!1;return(e?g.hasClass(e[1]):"center"==CKEDITOR.tools.parseCssText(g.attributes.style||"",!0)["text-align"])?!0:!1}}function o(a){return"img"==a.name?!0:"a"==a.name?1==a.children.length&&a.getFirst("img"):!1}function D(a){var b=a.editor,e=b.editable(),f=b.document,g=a.resizer=f.createElement("span");g.addClass("cke_image_resizer");g.setAttribute("title",b.lang.image2.resizer); +g.append(new CKEDITOR.dom.text("​",f));if(a.inline)a.wrapper.append(g);else{var d=a.parts.link||a.parts.image,c=d.getParent(),h=f.createElement("span");h.addClass("cke_image_resizer_wrapper");h.append(d);h.append(g);a.element.append(h,!0);c.is("span")&&c.remove()}g.on("mousedown",function(c){function j(a,b,c){var d=CKEDITOR.document,j=[];f.equals(d)||j.push(d.on(a,b));j.push(f.on(a,b));if(c)for(a=j.length;a--;)c.push(j.pop())}function d(){p=k+w*t;q=Math.round(p/r)}function s(){q=n-m;p=Math.round(q* +r)}var h=a.parts.image,w="right"==a.data.align?-1:1,i=c.data.$.screenX,H=c.data.$.screenY,k=h.$.clientWidth,n=h.$.clientHeight,r=k/n,l=[],o="cke_image_s"+(!~w?"w":"e"),x,p,q,v,t,m,u;b.fire("saveSnapshot");j("mousemove",function(a){x=a.data.$;t=x.screenX-i;m=H-x.screenY;u=Math.abs(t/m);1==w?0>=t?0>=m?d():u>=r?d():s():0>=m?u>=r?s():d():s():0>=t?0>=m?u>=r?s():d():s():0>=m?d():u>=r?d():s();15<=p&&15<=q?(h.setAttributes({width:p,height:q}),v=!0):v=!1},l);j("mouseup",function(){for(var c;c=l.pop();)c.removeListener(); +e.removeClass(o);g.removeClass("cke_image_resizing");v&&(a.setData({width:p,height:q}),b.fire("saveSnapshot"));v=!1},l);e.addClass(o);g.addClass("cke_image_resizing")});a.on("data",function(){g["right"==a.data.align?"addClass":"removeClass"]("cke_image_resizer_left")})}function I(a){var b=[],e;return function(f){var g=a.getCommand("justify"+f);if(g){b.push(function(){g.refresh(a,a.elementPath())});if(f in{right:1,left:1,center:1})g.on("exec",function(d){var c=i(a);if(c){c.setData("align",f);for(c= +b.length;c--;)b[c]();d.cancel()}});g.on("refresh",function(b){var c=i(a),g={right:1,left:1,center:1};c&&(void 0===e&&(e=a.filter.checkFeature(a.widgets.registered.image.features.align)),e?this.setState(c.data.align==f?CKEDITOR.TRISTATE_ON:f in g?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED):this.setState(CKEDITOR.TRISTATE_DISABLED),b.cancel())})}}}function J(a){a.plugins.link&&(CKEDITOR.on("dialogDefinition",function(b){b=b.data;if("link"==b.name){var b=b.definition,e=b.onShow,f=b.onOk;b.onShow= +function(){var b=i(a);b&&(b.inline?!b.wrapper.getAscendant("a"):1)?this.setupContent(b.data.link||{}):e.apply(this,arguments)};b.onOk=function(){var b=i(a);if(b&&(b.inline?!b.wrapper.getAscendant("a"):1)){var d={};this.commitContent(d);b.setData("link",d)}else f.apply(this,arguments)}}}),a.getCommand("unlink").on("exec",function(b){var e=i(a);e&&e.parts.link&&(e.setData("link",null),this.refresh(a,a.elementPath()),b.cancel())}),a.getCommand("unlink").on("refresh",function(b){var e=i(a);e&&(this.setState(e.data.link|| +e.wrapper.getAscendant("a")?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED),b.cancel())}))}function i(a){return(a=a.widgets.focused)&&"image"==a.name?a:null}function B(a){var b=a.config.image2_alignClasses,a={div:{match:l(a)},p:{match:l(a)},img:{attributes:"!src,alt,width,height"},figure:{classes:"!"+a.config.image2_captionedClass},figcaption:!0};b?(a.div.classes=b[1],a.p.classes=a.div.classes,a.img.classes=b[0]+","+b[2],a.figure.classes+=","+a.img.classes):(a.div.styles="text-align",a.p.styles= +"text-align",a.img.styles="float",a.figure.styles="float,display");return a}function C(a){a=a.config.image2_alignClasses;return{dimension:{requiredContent:"img[width,height]"},align:{requiredContent:"img"+(a?"("+a[0]+")":"{float}")},caption:{requiredContent:"figcaption"}}}function k(a){return a.data.hasCaption?a.element:a.parts.image}var z='<img alt="" src="" />',K=new CKEDITOR.template('<figure class="{captionedClass}">'+z+"<figcaption>{captionPlaceholder}</figcaption></figure>"),n={left:0,center:1, +right:2},G=/^\s*(\d+\%)\s*$/i;CKEDITOR.plugins.add("image2",{lang:"af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mk,mn,ms,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn",requires:"widget,dialog",icons:"image",hidpi:!0,onLoad:function(){CKEDITOR.addCss(".cke_image_nocaption{line-height:0}.cke_editable.cke_image_sw, .cke_editable.cke_image_sw *{cursor:sw-resize !important}.cke_editable.cke_image_se, .cke_editable.cke_image_se *{cursor:se-resize !important}.cke_image_resizer{display:none;position:absolute;width:10px;height:10px;bottom:-5px;right:-5px;background:#000;outline:1px solid #fff;line-height:0;cursor:se-resize;}.cke_image_resizer_wrapper{position:relative;display:inline-block;line-height:0;}.cke_image_resizer.cke_image_resizer_left{right:auto;left:-5px;cursor:sw-resize;}.cke_widget_wrapper:hover .cke_image_resizer,.cke_image_resizer.cke_image_resizing{display:block}.cke_widget_wrapper>a{display:inline-block}")}, +init:function(a){var b=a.config,e=a.lang.image2,f=A(a);b.filebrowserImage2BrowseUrl=b.filebrowserImageBrowseUrl;b.filebrowserImage2UploadUrl=b.filebrowserImageUploadUrl;f.pathName=e.pathName;f.editables.caption.pathName=e.pathNameCaption;a.widgets.add("image",f);a.ui.addButton&&a.ui.addButton("Image",{label:a.lang.common.image,command:"image",toolbar:"insert,10"});a.contextMenu&&(a.addMenuGroup("image",10),a.addMenuItem("image",{label:e.menu,command:"image",group:"image"}));CKEDITOR.dialog.add("image2", +this.path+"dialogs/image2.js")},afterInit:function(a){var b={left:1,right:1,center:1,block:1},e=I(a),f;for(f in b)e(f);J(a)}});CKEDITOR.plugins.image2={stateShifter:function(a){function b(a,b){var c={};g?c.attributes={"class":g[1]}:c.styles={"text-align":"center"};c=f.createElement(a.activeEnterMode==CKEDITOR.ENTER_P?"p":"div",c);e(c,b);b.move(c);return c}function e(b,d){if(d.getParent()){var e=a.createRange();e.moveToPosition(d,CKEDITOR.POSITION_BEFORE_START);d.remove();c.insertElementIntoRange(b, +e)}else b.replace(d)}var f=a.document,g=a.config.image2_alignClasses,d=a.config.image2_captionedClass,c=a.editable(),h=["hasCaption","align","link"],i={align:function(c,d,e){var f=c.element;if(c.changed.align){if(!c.newData.hasCaption&&("center"==e&&(c.deflate(),c.element=b(a,f)),!c.changed.hasCaption&&"center"==d&&"center"!=e))c.deflate(),d=f.findOne("a,img"),d.replace(f),c.element=d}else"center"==e&&(c.changed.hasCaption&&!c.newData.hasCaption)&&(c.deflate(),c.element=b(a,f));!g&&f.is("figure")&& +("center"==e?f.setStyle("display","inline-block"):f.removeStyle("display"))},hasCaption:function(b,c,g){b.changed.hasCaption&&(c=b.element.is({img:1,a:1})?b.element:b.element.findOne("a,img"),b.deflate(),g?(g=CKEDITOR.dom.element.createFromHtml(K.output({captionedClass:d,captionPlaceholder:a.lang.image2.captionPlaceholder}),f),e(g,b.element),c.replace(g.findOne("img")),b.element=g):(c.replace(b.element),b.element=c))},link:function(b,c,d){if(b.changed.link){var e=b.element.is("img")?b.element:b.element.findOne("img"), +g=b.element.is("a")?b.element:b.element.findOne("a"),h=b.element.is("a")&&!d||b.element.is("img")&&d,i;h&&b.deflate();d?(c||(i=f.createElement("a",{attributes:{href:b.newData.link.url}}),i.replace(e),e.move(i)),d=CKEDITOR.plugins.link.getLinkAttributes(a,d),CKEDITOR.tools.isEmpty(d.set)||(i||g).setAttributes(d.set),d.removed.length&&(i||g).removeAttributes(d.removed)):(d=g.findOne("img"),d.replace(g),i=d);h&&(b.element=i)}}};return function(a){var b,c;a.changed={};for(c=0;c<h.length;c++)b=h[c],a.changed[b]= +a.oldData?a.oldData[b]!==a.newData[b]:!1;for(c=0;c<h.length;c++)b=h[c],i[b](a,a.oldData?a.oldData[b]:null,a.newData[b]);a.inflate()}},checkHasNaturalRatio:function(a){var b=a.$,a=this.getNatural(a);return Math.round(b.clientWidth/a.width*a.height)==b.clientHeight||Math.round(b.clientHeight/a.height*a.width)==b.clientWidth},getNatural:function(a){if(a.$.naturalWidth)a={width:a.$.naturalWidth,height:a.$.naturalHeight};else{var b=new Image;b.src=a.getAttribute("src");a={width:b.width,height:b.height}}return a}}})(); +CKEDITOR.config.image2_captionedClass="image"; \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/icons/hidpi/language.png b/static/ckeditor/ckeditor/plugins/language/icons/hidpi/language.png new file mode 100644 index 0000000000..3908a6ae1e Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/language/icons/hidpi/language.png differ diff --git a/static/ckeditor/ckeditor/plugins/language/icons/language.png b/static/ckeditor/ckeditor/plugins/language/icons/language.png new file mode 100644 index 0000000000..eb680d42a6 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/language/icons/language.png differ diff --git a/static/ckeditor/ckeditor/plugins/language/lang/ar.js b/static/ckeditor/ckeditor/plugins/language/lang/ar.js new file mode 100644 index 0000000000..2c6de3837e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/ar.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","ar",{button:"حدد اللغة",remove:"حذف اللغة"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/bg.js b/static/ckeditor/ckeditor/plugins/language/lang/bg.js new file mode 100644 index 0000000000..829fa97332 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/bg.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","bg",{button:"Задай език",remove:"Премахни език"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/ca.js b/static/ckeditor/ckeditor/plugins/language/lang/ca.js new file mode 100644 index 0000000000..0786ff4c3f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/ca.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","ca",{button:"Definir l'idioma",remove:"Eliminar idioma"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/cs.js b/static/ckeditor/ckeditor/plugins/language/lang/cs.js new file mode 100644 index 0000000000..f70b05d1fc --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/cs.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","cs",{button:"Nastavit jazyk",remove:"Odstranit jazyk"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/cy.js b/static/ckeditor/ckeditor/plugins/language/lang/cy.js new file mode 100644 index 0000000000..7cb4494949 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/cy.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","cy",{button:"Gosod iaith",remove:"Tynnu iaith"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/da.js b/static/ckeditor/ckeditor/plugins/language/lang/da.js new file mode 100644 index 0000000000..d2c903248d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/da.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","da",{button:"Vælg sprog",remove:"Fjern sprog"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/de.js b/static/ckeditor/ckeditor/plugins/language/lang/de.js new file mode 100644 index 0000000000..3b663cdb70 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/de.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","de",{button:"Sprache festlegen",remove:"Sprache entfernen"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/el.js b/static/ckeditor/ckeditor/plugins/language/lang/el.js new file mode 100644 index 0000000000..b0cf73dfb0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/el.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","el",{button:"Θέση γλώσσας",remove:"Αφαίρεση γλώσσας"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/en-gb.js b/static/ckeditor/ckeditor/plugins/language/lang/en-gb.js new file mode 100644 index 0000000000..1c86f5de55 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/en-gb.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","en-gb",{button:"Set language",remove:"Remove language"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/en.js b/static/ckeditor/ckeditor/plugins/language/lang/en.js new file mode 100644 index 0000000000..2278e8b400 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/en.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","en",{button:"Set language",remove:"Remove language"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/eo.js b/static/ckeditor/ckeditor/plugins/language/lang/eo.js new file mode 100644 index 0000000000..f79af482b6 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/eo.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","eo",{button:"Instali lingvon",remove:"Forigi lingvon"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/es.js b/static/ckeditor/ckeditor/plugins/language/lang/es.js new file mode 100644 index 0000000000..af1dc12767 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/es.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","es",{button:"Fijar lenguaje",remove:"Quitar lenguaje"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/fa.js b/static/ckeditor/ckeditor/plugins/language/lang/fa.js new file mode 100644 index 0000000000..0b89722e31 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/fa.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","fa",{button:"تعیین زبان",remove:"حذف زبان"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/fi.js b/static/ckeditor/ckeditor/plugins/language/lang/fi.js new file mode 100644 index 0000000000..e8f96b6ad8 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/fi.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","fi",{button:"Aseta kieli",remove:"Poista kieli"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/fo.js b/static/ckeditor/ckeditor/plugins/language/lang/fo.js new file mode 100644 index 0000000000..6907787909 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/fo.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","fo",{button:"Velja tungumál",remove:"Remove language"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/fr.js b/static/ckeditor/ckeditor/plugins/language/lang/fr.js new file mode 100644 index 0000000000..4fcb7c6784 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/fr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","fr",{button:"Définir la langue",remove:"Supprimer la langue"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/gl.js b/static/ckeditor/ckeditor/plugins/language/lang/gl.js new file mode 100644 index 0000000000..1f255e91a1 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/gl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","gl",{button:"Estabelezer o idioma",remove:"Retirar o idioma"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/he.js b/static/ckeditor/ckeditor/plugins/language/lang/he.js new file mode 100644 index 0000000000..ecfcf7752f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/he.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","he",{button:"צור שפה",remove:"הסר שפה"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/hr.js b/static/ckeditor/ckeditor/plugins/language/lang/hr.js new file mode 100644 index 0000000000..1bc04376c4 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/hr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","hr",{button:"Namjesti jezik",remove:"Makni jezik"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/hu.js b/static/ckeditor/ckeditor/plugins/language/lang/hu.js new file mode 100644 index 0000000000..041ed2119a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/hu.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","hu",{button:"Nyelv beállítása",remove:"Nyelv eltávolítása"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/it.js b/static/ckeditor/ckeditor/plugins/language/lang/it.js new file mode 100644 index 0000000000..aa3c611470 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/it.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","it",{button:"Imposta lingua",remove:"Rimuovi lingua"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/ja.js b/static/ckeditor/ckeditor/plugins/language/lang/ja.js new file mode 100644 index 0000000000..2435880157 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/ja.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","ja",{button:"言語を設定",remove:"言語を削除"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/km.js b/static/ckeditor/ckeditor/plugins/language/lang/km.js new file mode 100644 index 0000000000..03b4ed3d63 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/km.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","km",{button:"កំណត់​ភាសា",remove:"លុប​ភាសា"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/ko.js b/static/ckeditor/ckeditor/plugins/language/lang/ko.js new file mode 100644 index 0000000000..1441ba334b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/ko.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","ko",{button:"언어 설정",remove:"언어 설정 지우기"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/ku.js b/static/ckeditor/ckeditor/plugins/language/lang/ku.js new file mode 100644 index 0000000000..4dfbb8bb1d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/ku.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","ku",{button:"جێگیرکردنی زمان",remove:"لابردنی زمان"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/nb.js b/static/ckeditor/ckeditor/plugins/language/lang/nb.js new file mode 100644 index 0000000000..9cf312c5a0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/nb.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","nb",{button:"Sett språk",remove:"Fjern språk"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/nl.js b/static/ckeditor/ckeditor/plugins/language/lang/nl.js new file mode 100644 index 0000000000..6699da30d8 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/nl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","nl",{button:"Taal instellen",remove:"Taal verwijderen"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/no.js b/static/ckeditor/ckeditor/plugins/language/lang/no.js new file mode 100644 index 0000000000..a48beb0656 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/no.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","no",{button:"Sett språk",remove:"Fjern språk"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/pl.js b/static/ckeditor/ckeditor/plugins/language/lang/pl.js new file mode 100644 index 0000000000..6887d23c15 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/pl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","pl",{button:"Ustaw język",remove:"Usuń język"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/pt-br.js b/static/ckeditor/ckeditor/plugins/language/lang/pt-br.js new file mode 100644 index 0000000000..ecb27b071f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/pt-br.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","pt-br",{button:"Configure o Idioma",remove:"Remover Idioma"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/pt.js b/static/ckeditor/ckeditor/plugins/language/lang/pt.js new file mode 100644 index 0000000000..e2dda5e006 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/pt.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","pt",{button:"Definir Idioma",remove:"Remover idioma"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/ru.js b/static/ckeditor/ckeditor/plugins/language/lang/ru.js new file mode 100644 index 0000000000..99b81af1e6 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/ru.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","ru",{button:"Установка языка",remove:"Удалить язык"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/sk.js b/static/ckeditor/ckeditor/plugins/language/lang/sk.js new file mode 100644 index 0000000000..3fa97666af --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/sk.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","sk",{button:"Nastaviť jazyk",remove:"Odstrániť jazyk"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/sl.js b/static/ckeditor/ckeditor/plugins/language/lang/sl.js new file mode 100644 index 0000000000..382dea1c31 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/sl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","sl",{button:"Nastavi jezik",remove:"Odstrani jezik"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/sq.js b/static/ckeditor/ckeditor/plugins/language/lang/sq.js new file mode 100644 index 0000000000..7d12ed2211 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/sq.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","sq",{button:"Përzgjidhni gjuhën",remove:"Largoni gjuhën"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/sv.js b/static/ckeditor/ckeditor/plugins/language/lang/sv.js new file mode 100644 index 0000000000..f9f745518f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/sv.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","sv",{button:"Sätt språk",remove:"Ta bort språk"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/tr.js b/static/ckeditor/ckeditor/plugins/language/lang/tr.js new file mode 100644 index 0000000000..c1ba86b850 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/tr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","tr",{button:"Dili seç",remove:"Dili kaldır"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/tt.js b/static/ckeditor/ckeditor/plugins/language/lang/tt.js new file mode 100644 index 0000000000..8a742e6163 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/tt.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","tt",{button:"Тел сайлау",remove:"Телне бетерү"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/uk.js b/static/ckeditor/ckeditor/plugins/language/lang/uk.js new file mode 100644 index 0000000000..6fc41539cf --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/uk.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","uk",{button:"Установити мову",remove:"Вилучити мову"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/vi.js b/static/ckeditor/ckeditor/plugins/language/lang/vi.js new file mode 100644 index 0000000000..1d2d57674b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/vi.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","vi",{button:"Thiết lập ngôn ngữ",remove:"Loại bỏ ngôn ngữ"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/zh-cn.js b/static/ckeditor/ckeditor/plugins/language/lang/zh-cn.js new file mode 100644 index 0000000000..1acfd0a819 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/zh-cn.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","zh-cn",{button:"设置语言",remove:"移除语言"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/lang/zh.js b/static/ckeditor/ckeditor/plugins/language/lang/zh.js new file mode 100644 index 0000000000..49e6192c28 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/lang/zh.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("language","zh",{button:"設定語言",remove:"移除語言"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/language/plugin.js b/static/ckeditor/ckeditor/plugins/language/plugin.js new file mode 100644 index 0000000000..7711a22bd3 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/language/plugin.js @@ -0,0 +1,8 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){CKEDITOR.plugins.add("language",{requires:"menubutton",lang:"ar,bg,ca,cs,cy,da,de,el,en,en-gb,eo,es,fa,fi,fo,fr,gl,he,hr,hu,it,ja,km,ko,ku,nb,nl,no,pl,pt,pt-br,ru,sk,sl,sq,sv,tr,tt,uk,vi,zh,zh-cn",icons:"language",hidpi:!0,init:function(a){var b=a.config.language_list||["ar:Arabic:rtl","fr:French","es:Spanish"],c=this,d=a.lang.language,e={},g,h,i,f;a.addCommand("language",{allowedContent:"span[!lang,!dir]",requiredContent:"span[lang,dir]",contextSensitive:!0,exec:function(a,b){var c=e["language_"+ +b];if(c)a[c.style.checkActive(a.elementPath(),a)?"removeStyle":"applyStyle"](c.style)},refresh:function(a){this.setState(c.getCurrentLangElement(a)?CKEDITOR.TRISTATE_ON:CKEDITOR.TRISTATE_OFF)}});for(f=0;f<b.length;f++)g=b[f].split(":"),h=g[0],i="language_"+h,e[i]={label:g[1],langId:h,group:"language",order:f,ltr:"rtl"!=(""+g[2]).toLowerCase(),onClick:function(){a.execCommand("language",this.langId)},role:"menuitemcheckbox"},e[i].style=new CKEDITOR.style({element:"span",attributes:{lang:h,dir:e[i].ltr? +"ltr":"rtl"}});e.language_remove={label:d.remove,group:"language_remove",state:CKEDITOR.TRISTATE_DISABLED,order:e.length,onClick:function(){var b=c.getCurrentLangElement(a);b&&a.execCommand("language",b.getAttribute("lang"))}};a.addMenuGroup("language",1);a.addMenuGroup("language_remove");a.addMenuItems(e);a.ui.add("Language",CKEDITOR.UI_MENUBUTTON,{label:d.button,allowedContent:"span[!lang,!dir]",requiredContent:"span[lang,dir]",toolbar:"bidi,30",command:"language",onMenu:function(){var b={},d=c.getCurrentLangElement(a), +f;for(f in e)b[f]=CKEDITOR.TRISTATE_OFF;b.language_remove=d?CKEDITOR.TRISTATE_OFF:CKEDITOR.TRISTATE_DISABLED;d&&(b["language_"+d.getAttribute("lang")]=CKEDITOR.TRISTATE_ON);return b}})},getCurrentLangElement:function(a){var b=a.elementPath(),a=b&&b.elements,c;if(b)for(var d=0;d<a.length;d++)b=a[d],!c&&("span"==b.getName()&&b.hasAttribute("dir")&&b.hasAttribute("lang"))&&(c=b);return c}})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/lineutils/plugin.js b/static/ckeditor/ckeditor/plugins/lineutils/plugin.js new file mode 100644 index 0000000000..782a9e0ae7 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/lineutils/plugin.js @@ -0,0 +1,22 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){function k(a,d){CKEDITOR.tools.extend(this,{editor:a,editable:a.editable(),doc:a.document,win:a.window},d,!0);this.inline=this.editable.isInline();this.inline||(this.frame=this.win.getFrame());this.target=this[this.inline?"editable":"doc"]}function l(a,d){CKEDITOR.tools.extend(this,d,{editor:a},!0)}function m(a,d){var b=a.editable();CKEDITOR.tools.extend(this,{editor:a,editable:b,inline:b.isInline(),doc:a.document,win:a.window,container:CKEDITOR.document.getBody(),winTop:CKEDITOR.document.getWindow()}, +d,!0);this.hidden={};this.visible={};this.inline||(this.frame=this.win.getFrame());this.queryViewport();var c=CKEDITOR.tools.bind(this.queryViewport,this),e=CKEDITOR.tools.bind(this.hideVisible,this),g=CKEDITOR.tools.bind(this.removeAll,this);b.attachListener(this.winTop,"resize",c);b.attachListener(this.winTop,"scroll",c);b.attachListener(this.winTop,"resize",e);b.attachListener(this.win,"scroll",e);b.attachListener(this.inline?b:this.frame,"mouseout",function(a){var b=a.data.$.clientX,a=a.data.$.clientY; +this.queryViewport();(b<=this.rect.left||b>=this.rect.right||a<=this.rect.top||a>=this.rect.bottom)&&this.hideVisible();(b<=0||b>=this.winTopPane.width||a<=0||a>=this.winTopPane.height)&&this.hideVisible()},this);b.attachListener(a,"resize",c);b.attachListener(a,"mode",g);a.on("destroy",g);this.lineTpl=(new CKEDITOR.template(p)).output({lineStyle:CKEDITOR.tools.writeCssText(CKEDITOR.tools.extend({},q,this.lineStyle,!0)),tipLeftStyle:CKEDITOR.tools.writeCssText(CKEDITOR.tools.extend({},n,{left:"0px", +"border-left-color":"red","border-width":"6px 0 6px 6px"},this.tipCss,this.tipLeftStyle,!0)),tipRightStyle:CKEDITOR.tools.writeCssText(CKEDITOR.tools.extend({},n,{right:"0px","border-right-color":"red","border-width":"6px 6px 6px 0"},this.tipCss,this.tipRightStyle,!0))})}function j(a){return a&&a.type==CKEDITOR.NODE_ELEMENT&&!(o[a.getComputedStyle("float")]||o[a.getAttribute("align")])&&!r[a.getComputedStyle("position")]}CKEDITOR.plugins.add("lineutils");CKEDITOR.LINEUTILS_BEFORE=1;CKEDITOR.LINEUTILS_AFTER= +2;CKEDITOR.LINEUTILS_INSIDE=4;k.prototype={start:function(a){var d=this,b=this.editor,c=this.doc,e,g,f,h,i=CKEDITOR.tools.eventsBuffer(50,function(){if(!(b.readOnly||"wysiwyg"!=b.mode))if(d.relations={},(g=c.$.elementFromPoint(f,h))&&g.nodeType)e=new CKEDITOR.dom.element(g),d.traverseSearch(e),isNaN(f+h)||d.pixelSearch(e,f,h),a&&a(d.relations,f,h)});this.listener=this.editable.attachListener(this.target,"mousemove",function(a){f=a.data.$.clientX;h=a.data.$.clientY;i.input()});this.editable.attachListener(this.inline? +this.editable:this.frame,"mouseout",function(){i.reset()})},stop:function(){this.listener&&this.listener.removeListener()},getRange:function(){var a={};a[CKEDITOR.LINEUTILS_BEFORE]=CKEDITOR.POSITION_BEFORE_START;a[CKEDITOR.LINEUTILS_AFTER]=CKEDITOR.POSITION_AFTER_END;a[CKEDITOR.LINEUTILS_INSIDE]=CKEDITOR.POSITION_AFTER_START;return function(d){var b=this.editor.createRange();b.moveToPosition(this.relations[d.uid].element,a[d.type]);return b}}(),store:function(){function a(a,b,c){var e=a.getUniqueId(); +e in c?c[e].type|=b:c[e]={element:a,type:b}}return function(d,b){var c;if(b&CKEDITOR.LINEUTILS_AFTER&&j(c=d.getNext())&&c.isVisible())a(c,CKEDITOR.LINEUTILS_BEFORE,this.relations),b^=CKEDITOR.LINEUTILS_AFTER;if(b&CKEDITOR.LINEUTILS_INSIDE&&j(c=d.getFirst())&&c.isVisible())a(c,CKEDITOR.LINEUTILS_BEFORE,this.relations),b^=CKEDITOR.LINEUTILS_INSIDE;a(d,b,this.relations)}}(),traverseSearch:function(a){var d,b,c;do if(c=a.$["data-cke-expando"],!(c&&c in this.relations)){if(a.equals(this.editable))break; +if(j(a))for(d in this.lookups)(b=this.lookups[d](a))&&this.store(a,b)}while(!(a&&a.type==CKEDITOR.NODE_ELEMENT&&"true"==a.getAttribute("contenteditable"))&&(a=a.getParent()))},pixelSearch:function(){function a(a,c,e,g,f){for(var h=0,i;f(e);){e+=g;if(25==++h)break;if(i=this.doc.$.elementFromPoint(c,e))if(i==a)h=0;else if(d(a,i)&&(h=0,j(i=new CKEDITOR.dom.element(i))))return i}}var d=CKEDITOR.env.ie||CKEDITOR.env.webkit?function(a,c){return a.contains(c)}:function(a,c){return!!(a.compareDocumentPosition(c)& +16)};return function(b,c,d){var g=this.win.getViewPaneSize().height,f=a.call(this,b.$,c,d,-1,function(a){return 0<a}),c=a.call(this,b.$,c,d,1,function(a){return a<g});if(f)for(this.traverseSearch(f);!f.getParent().equals(b);)f=f.getParent();if(c)for(this.traverseSearch(c);!c.getParent().equals(b);)c=c.getParent();for(;f||c;){f&&(f=f.getNext(j));if(!f||f.equals(c))break;this.traverseSearch(f);c&&(c=c.getPrevious(j));if(!c||c.equals(f))break;this.traverseSearch(c)}}}(),greedySearch:function(){this.relations= +{};for(var a=this.editable.getElementsByTag("*"),d=0,b,c,e;b=a.getItem(d++);)if(!b.equals(this.editable)&&b.type==CKEDITOR.NODE_ELEMENT&&(b.hasAttribute("contenteditable")||!b.isReadOnly())&&j(b)&&b.isVisible())for(e in this.lookups)(c=this.lookups[e](b))&&this.store(b,c);return this.relations}};l.prototype={locate:function(){function a(a,b){var c=a.element[b===CKEDITOR.LINEUTILS_BEFORE?"getPrevious":"getNext"]();return c&&j(c)?(a.siblingRect=c.getClientRect(),b==CKEDITOR.LINEUTILS_BEFORE?(a.siblingRect.bottom+ +a.elementRect.top)/2:(a.elementRect.bottom+a.siblingRect.top)/2):b==CKEDITOR.LINEUTILS_BEFORE?a.elementRect.top:a.elementRect.bottom}return function(d){var b;this.locations={};for(var c in d)b=d[c],b.elementRect=b.element.getClientRect(),b.type&CKEDITOR.LINEUTILS_BEFORE&&this.store(c,CKEDITOR.LINEUTILS_BEFORE,a(b,CKEDITOR.LINEUTILS_BEFORE)),b.type&CKEDITOR.LINEUTILS_AFTER&&this.store(c,CKEDITOR.LINEUTILS_AFTER,a(b,CKEDITOR.LINEUTILS_AFTER)),b.type&CKEDITOR.LINEUTILS_INSIDE&&this.store(c,CKEDITOR.LINEUTILS_INSIDE, +(b.elementRect.top+b.elementRect.bottom)/2);return this.locations}}(),sort:function(){var a,d,b,c;return function(e,g){a=this.locations;d=[];for(var f in a)for(var h in a[f])if(b=Math.abs(e-a[f][h]),d.length){for(c=0;c<d.length;c++)if(b<d[c].dist){d.splice(c,0,{uid:+f,type:h,dist:b});break}c==d.length&&d.push({uid:+f,type:h,dist:b})}else d.push({uid:+f,type:h,dist:b});return"undefined"!=typeof g?d.slice(0,g):d}}(),store:function(a,d,b){this.locations[a]||(this.locations[a]={});this.locations[a][d]= +b}};var n={display:"block",width:"0px",height:"0px","border-color":"transparent","border-style":"solid",position:"absolute",top:"-6px"},q={height:"0px","border-top":"1px dashed red",position:"absolute","z-index":9999},p='<div data-cke-lineutils-line="1" class="cke_reset_all" style="{lineStyle}"><span style="{tipLeftStyle}"> </span><span style="{tipRightStyle}"> </span></div>';m.prototype={removeAll:function(){for(var a in this.hidden)this.hidden[a].remove(),delete this.hidden[a];for(a in this.visible)this.visible[a].remove(), +delete this.visible[a]},hideLine:function(a){var d=a.getUniqueId();a.hide();this.hidden[d]=a;delete this.visible[d]},showLine:function(a){var d=a.getUniqueId();a.show();this.visible[d]=a;delete this.hidden[d]},hideVisible:function(){for(var a in this.visible)this.hideLine(this.visible[a])},placeLine:function(a,d){var b,c,e;if(b=this.getStyle(a.uid,a.type)){for(e in this.visible)if(this.visible[e].getCustomData("hash")!==this.hash){c=this.visible[e];break}if(!c)for(e in this.hidden)if(this.hidden[e].getCustomData("hash")!== +this.hash){this.showLine(c=this.hidden[e]);break}c||this.showLine(c=this.addLine());c.setCustomData("hash",this.hash);this.visible[c.getUniqueId()]=c;c.setStyles(b);d&&d(c)}},getStyle:function(a,d){var b=this.relations[a],c=this.locations[a][d],e={};e.width=b.siblingRect?Math.max(b.siblingRect.width,b.elementRect.width):b.elementRect.width;e.top=this.inline?c+this.winTopScroll.y-this.rect.relativeY:this.rect.top+this.winTopScroll.y+c;if(e.top-this.winTopScroll.y<this.rect.top||e.top-this.winTopScroll.y> +this.rect.bottom)return!1;if(this.inline)e.left=b.elementRect.left-this.rect.relativeX;else if(0<b.elementRect.left?e.left=this.rect.left+b.elementRect.left:(e.width+=b.elementRect.left,e.left=this.rect.left),0<(b=e.left+e.width-(this.rect.left+this.winPane.width)))e.width-=b;e.left+=this.winTopScroll.x;for(var g in e)e[g]=CKEDITOR.tools.cssLength(e[g]);return e},addLine:function(){var a=CKEDITOR.dom.element.createFromHtml(this.lineTpl);a.appendTo(this.container);return a},prepare:function(a,d){this.relations= +a;this.locations=d;this.hash=Math.random()},cleanup:function(){var a,d;for(d in this.visible)a=this.visible[d],a.getCustomData("hash")!==this.hash&&this.hideLine(a)},queryViewport:function(){this.winPane=this.win.getViewPaneSize();this.winTopScroll=this.winTop.getScrollPosition();this.winTopPane=this.winTop.getViewPaneSize();this.rect=this.getClientRect(this.inline?this.editable:this.frame)},getClientRect:function(a){var a=a.getClientRect(),d=this.container.getDocumentPosition(),b=this.container.getComputedStyle("position"); +a.relativeX=a.relativeY=0;"static"!=b&&(a.relativeY=d.y,a.relativeX=d.x,a.top-=a.relativeY,a.bottom-=a.relativeY,a.left-=a.relativeX,a.right-=a.relativeX);return a}};var o={left:1,right:1,center:1},r={absolute:1,fixed:1};CKEDITOR.plugins.lineutils={finder:k,locator:l,liner:m}})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/link/dialogs/anchor.js b/static/ckeditor/ckeditor/plugins/link/dialogs/anchor.js new file mode 100644 index 0000000000..7aac4bb720 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/link/dialogs/anchor.js @@ -0,0 +1,8 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.dialog.add("anchor",function(c){function f(b,a){return b.createFakeElement(b.document.createElement("a",{attributes:a}),"cke_anchor","anchor")}return{title:c.lang.link.anchor.title,minWidth:300,minHeight:60,getModel:function(b){var a=b.getSelection();b=a.getRanges()[0];a=a.getSelectedElement();b.shrink(CKEDITOR.SHRINK_ELEMENT);(a=b.getEnclosedNode())&&a.type===CKEDITOR.NODE_TEXT&&(a=a.getParent());a&&!a.is("a")&&(a=a.getAscendant("a")||a);b=a&&a.type===CKEDITOR.NODE_ELEMENT&&("anchor"=== +a.data("cke-real-element-type")||a.is("a"))?a:void 0;return b||null},onOk:function(){var b=CKEDITOR.tools.trim(this.getValueOf("info","txtName")),b={id:b,name:b,"data-cke-saved-name":b},a=this.getModel(c);if(a)a.data("cke-realelement")?(b=f(c,b),b.replace(a),CKEDITOR.env.ie&&c.getSelection().selectElement(b)):a.setAttributes(b);else if(a=(a=c.getSelection())&&a.getRanges()[0],a.collapsed)b=f(c,b),a.insertNode(b);else{CKEDITOR.env.ie&&9>CKEDITOR.env.version&&(b["class"]="cke_anchor");var d=a.clone(); +d.enlarge(CKEDITOR.ENLARGE_ELEMENT);for(var e=new CKEDITOR.dom.walker(d),d=d.collapsed?d.startContainer:e.next(),g=a.createBookmark();d;)d.type===CKEDITOR.NODE_ELEMENT&&d.getAttribute("data-cke-saved-name")&&(d.remove(!0),e.reset()),d=e.next();a.moveToBookmark(g);b=new CKEDITOR.style({element:"a",attributes:b});b.type=CKEDITOR.STYLE_INLINE;b.applyToRange(a)}},onShow:function(){var b=c.getSelection(),a=this.getModel(c),d=a&&a.data("cke-realelement");if(a=d?CKEDITOR.plugins.link.tryRestoreFakeAnchor(c, +a):CKEDITOR.plugins.link.getSelectedLink(c)){var e=a.data("cke-saved-name");this.setValueOf("info","txtName",e||"");!d&&b.selectElement(a)}this.getContentElement("info","txtName").focus()},contents:[{id:"info",label:c.lang.link.anchor.title,accessKey:"I",elements:[{type:"text",id:"txtName",label:c.lang.link.anchor.name,required:!0,validate:function(){return this.getValue()?!0:(alert(c.lang.link.anchor.errorName),!1)}}]}]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/link/dialogs/link.js b/static/ckeditor/ckeditor/plugins/link/dialogs/link.js new file mode 100644 index 0000000000..5d3517b319 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/link/dialogs/link.js @@ -0,0 +1,30 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +(function(){function u(){var c=this.getDialog(),p=c._.editor,n=p.config.linkPhoneRegExp,q=p.config.linkPhoneMsg,p=CKEDITOR.dialog.validate.notEmpty(p.lang.link.noTel).apply(this);if(!c.getContentElement("info","linkType")||"tel"!=c.getValueOf("info","linkType"))return!0;if(!0!==p)return p;if(n)return CKEDITOR.dialog.validate.regex(n,q).call(this)}CKEDITOR.dialog.add("link",function(c){function p(a,b){var c=a.createRange();c.setStartBefore(b);c.setEndAfter(b);return c}var n=CKEDITOR.plugins.link,q, +t=function(){var a=this.getDialog(),b=a.getContentElement("target","popupFeatures"),a=a.getContentElement("target","linkTargetName"),r=this.getValue();if(b&&a)switch(b=b.getElement(),b.hide(),a.setValue(""),r){case "frame":a.setLabel(c.lang.link.targetFrameName);a.getElement().show();break;case "popup":b.show();a.setLabel(c.lang.link.targetPopupName);a.getElement().show();break;default:a.setValue(r),a.getElement().hide()}},d=function(a){a.target&&this.setValue(a.target[this.id]||"")},g=function(a){a.advanced&& +this.setValue(a.advanced[this.id]||"")},e=function(a){a.target||(a.target={});a.target[this.id]=this.getValue()||""},k=function(a){a.advanced||(a.advanced={});a.advanced[this.id]=this.getValue()||""},h=c.lang.common,b=c.lang.link,l;return{title:b.title,minWidth:"moono-lisa"==(CKEDITOR.skinName||c.config.skin)?450:350,minHeight:240,getModel:function(a){return n.getSelectedLink(a,!0)[0]||null},contents:[{id:"info",label:b.info,title:b.info,elements:[{type:"text",id:"linkDisplayText",label:b.displayText, +setup:function(){this.enable();this.setValue(c.getSelection().getSelectedText());q=this.getValue()},commit:function(a){a.linkText=this.isEnabled()?this.getValue():""}},{id:"linkType",type:"select",label:b.type,"default":"url",items:[[b.toUrl,"url"],[b.toAnchor,"anchor"],[b.toEmail,"email"],[b.toPhone,"tel"]],onChange:function(){var a=this.getDialog(),b=["urlOptions","anchorOptions","emailOptions","telOptions"],r=this.getValue(),f=a.definition.getContents("upload"),f=f&&f.hidden;"url"==r?(c.config.linkShowTargetTab&& +a.showPage("target"),f||a.showPage("upload")):(a.hidePage("target"),f||a.hidePage("upload"));for(f=0;f<b.length;f++){var m=a.getContentElement("info",b[f]);m&&(m=m.getElement().getParent().getParent(),b[f]==r+"Options"?m.show():m.hide())}a.layout()},setup:function(a){this.setValue(a.type||"url")},commit:function(a){a.type=this.getValue()}},{type:"vbox",id:"urlOptions",children:[{type:"hbox",widths:["25%","75%"],children:[{id:"protocol",type:"select",label:h.protocol,items:[["http://‎","http://"], +["https://‎","https://"],["ftp://‎","ftp://"],["news://‎","news://"],[b.other,""]],"default":c.config.linkDefaultProtocol,setup:function(a){a.url&&this.setValue(a.url.protocol||"")},commit:function(a){a.url||(a.url={});a.url.protocol=this.getValue()}},{type:"text",id:"url",label:h.url,required:!0,onLoad:function(){this.allowOnChange=!0},onKeyUp:function(){this.allowOnChange=!1;var a=this.getDialog().getContentElement("info","protocol"),b=this.getValue(),c=/^((javascript:)|[#\/\.\?])/i,f=/^(http|https|ftp|news):\/\/(?=.)/i.exec(b); +f?(this.setValue(b.substr(f[0].length)),a.setValue(f[0].toLowerCase())):c.test(b)&&a.setValue("");this.allowOnChange=!0},onChange:function(){if(this.allowOnChange)this.onKeyUp()},validate:function(){var a=this.getDialog();return a.getContentElement("info","linkType")&&"url"!=a.getValueOf("info","linkType")?!0:!c.config.linkJavaScriptLinksAllowed&&/javascript\:/.test(this.getValue())?(alert(h.invalidValue),!1):this.getDialog().fakeObj?!0:CKEDITOR.dialog.validate.notEmpty(b.noUrl).apply(this)},setup:function(a){this.allowOnChange= +!1;a.url&&this.setValue(a.url.url);this.allowOnChange=!0},commit:function(a){this.onChange();a.url||(a.url={});a.url.url=this.getValue();this.allowOnChange=!1}}],setup:function(){this.getDialog().getContentElement("info","linkType")||this.getElement().show()}},{type:"button",id:"browse",hidden:"true",filebrowser:"info:url",label:h.browseServer}]},{type:"vbox",id:"anchorOptions",width:260,align:"center",padding:0,children:[{type:"fieldset",id:"selectAnchorText",label:b.selectAnchor,setup:function(){l= +n.getEditorAnchors(c);this.getElement()[l&&l.length?"show":"hide"]()},children:[{type:"hbox",id:"selectAnchor",children:[{type:"select",id:"anchorName","default":"",label:b.anchorName,style:"width: 100%;",items:[[""]],setup:function(a){this.clear();this.add("");if(l)for(var b=0;b<l.length;b++)l[b].name&&this.add(l[b].name);a.anchor&&this.setValue(a.anchor.name);(a=this.getDialog().getContentElement("info","linkType"))&&"email"==a.getValue()&&this.focus()},commit:function(a){a.anchor||(a.anchor={}); +a.anchor.name=this.getValue()}},{type:"select",id:"anchorId","default":"",label:b.anchorId,style:"width: 100%;",items:[[""]],setup:function(a){this.clear();this.add("");if(l)for(var b=0;b<l.length;b++)l[b].id&&this.add(l[b].id);a.anchor&&this.setValue(a.anchor.id)},commit:function(a){a.anchor||(a.anchor={});a.anchor.id=this.getValue()}}],setup:function(){this.getElement()[l&&l.length?"show":"hide"]()}}]},{type:"html",id:"noAnchors",style:"text-align: center;",html:'\x3cdiv role\x3d"note" tabIndex\x3d"-1"\x3e'+ +CKEDITOR.tools.htmlEncode(b.noAnchors)+"\x3c/div\x3e",focus:!0,setup:function(){this.getElement()[l&&l.length?"hide":"show"]()}}],setup:function(){this.getDialog().getContentElement("info","linkType")||this.getElement().hide()}},{type:"vbox",id:"emailOptions",padding:1,children:[{type:"text",id:"emailAddress",label:b.emailAddress,required:!0,validate:function(){var a=this.getDialog();return a.getContentElement("info","linkType")&&"email"==a.getValueOf("info","linkType")?CKEDITOR.dialog.validate.notEmpty(b.noEmail).apply(this): +!0},setup:function(a){a.email&&this.setValue(a.email.address);(a=this.getDialog().getContentElement("info","linkType"))&&"email"==a.getValue()&&this.select()},commit:function(a){a.email||(a.email={});a.email.address=this.getValue()}},{type:"text",id:"emailSubject",label:b.emailSubject,setup:function(a){a.email&&this.setValue(a.email.subject)},commit:function(a){a.email||(a.email={});a.email.subject=this.getValue()}},{type:"textarea",id:"emailBody",label:b.emailBody,rows:3,"default":"",setup:function(a){a.email&& +this.setValue(a.email.body)},commit:function(a){a.email||(a.email={});a.email.body=this.getValue()}}],setup:function(){this.getDialog().getContentElement("info","linkType")||this.getElement().hide()}},{type:"vbox",id:"telOptions",padding:1,children:[{type:"tel",id:"telNumber",label:b.phoneNumber,required:!0,validate:u,setup:function(a){a.tel&&this.setValue(a.tel);(a=this.getDialog().getContentElement("info","linkType"))&&"tel"==a.getValue()&&this.select()},commit:function(a){a.tel=this.getValue()}}], +setup:function(){this.getDialog().getContentElement("info","linkType")||this.getElement().hide()}}]},{id:"target",requiredContent:"a[target]",label:b.target,title:b.target,elements:[{type:"hbox",widths:["50%","50%"],children:[{type:"select",id:"linkTargetType",label:h.target,"default":"notSet",style:"width : 100%;",items:[[h.notSet,"notSet"],[b.targetFrame,"frame"],[b.targetPopup,"popup"],[h.targetNew,"_blank"],[h.targetTop,"_top"],[h.targetSelf,"_self"],[h.targetParent,"_parent"]],onChange:t,setup:function(a){a.target&& +this.setValue(a.target.type||"notSet");t.call(this)},commit:function(a){a.target||(a.target={});a.target.type=this.getValue()}},{type:"text",id:"linkTargetName",label:b.targetFrameName,"default":"",setup:function(a){a.target&&this.setValue(a.target.name)},commit:function(a){a.target||(a.target={});a.target.name=this.getValue().replace(/([^\x00-\x7F]|\s)/gi,"")}}]},{type:"vbox",width:"100%",align:"center",padding:2,id:"popupFeatures",children:[{type:"fieldset",label:b.popupFeatures,children:[{type:"hbox", +children:[{type:"checkbox",id:"resizable",label:b.popupResizable,setup:d,commit:e},{type:"checkbox",id:"status",label:b.popupStatusBar,setup:d,commit:e}]},{type:"hbox",children:[{type:"checkbox",id:"location",label:b.popupLocationBar,setup:d,commit:e},{type:"checkbox",id:"toolbar",label:b.popupToolbar,setup:d,commit:e}]},{type:"hbox",children:[{type:"checkbox",id:"menubar",label:b.popupMenuBar,setup:d,commit:e},{type:"checkbox",id:"fullscreen",label:b.popupFullScreen,setup:d,commit:e}]},{type:"hbox", +children:[{type:"checkbox",id:"scrollbars",label:b.popupScrollBars,setup:d,commit:e},{type:"checkbox",id:"dependent",label:b.popupDependent,setup:d,commit:e}]},{type:"hbox",children:[{type:"text",widths:["50%","50%"],labelLayout:"horizontal",label:h.width,id:"width",setup:d,commit:e},{type:"text",labelLayout:"horizontal",widths:["50%","50%"],label:b.popupLeft,id:"left",setup:d,commit:e}]},{type:"hbox",children:[{type:"text",labelLayout:"horizontal",widths:["50%","50%"],label:h.height,id:"height", +setup:d,commit:e},{type:"text",labelLayout:"horizontal",label:b.popupTop,widths:["50%","50%"],id:"top",setup:d,commit:e}]}]}]}]},{id:"upload",label:b.upload,title:b.upload,hidden:!0,filebrowser:"uploadButton",elements:[{type:"file",id:"upload",label:h.upload,style:"height:40px",size:29},{type:"fileButton",id:"uploadButton",label:h.uploadSubmit,filebrowser:"info:url","for":["upload","upload"]}]},{id:"advanced",label:b.advanced,title:b.advanced,elements:[{type:"vbox",padding:1,children:[{type:"hbox", +widths:["45%","35%","20%"],children:[{type:"text",id:"advId",requiredContent:"a[id]",label:b.id,setup:g,commit:k},{type:"select",id:"advLangDir",requiredContent:"a[dir]",label:b.langDir,"default":"",style:"width:110px",items:[[h.notSet,""],[b.langDirLTR,"ltr"],[b.langDirRTL,"rtl"]],setup:g,commit:k},{type:"text",id:"advAccessKey",requiredContent:"a[accesskey]",width:"80px",label:b.acccessKey,maxLength:1,setup:g,commit:k}]},{type:"hbox",widths:["45%","35%","20%"],children:[{type:"text",label:b.name, +id:"advName",requiredContent:"a[name]",setup:g,commit:k},{type:"text",label:b.langCode,id:"advLangCode",requiredContent:"a[lang]",width:"110px","default":"",setup:g,commit:k},{type:"text",label:b.tabIndex,id:"advTabIndex",requiredContent:"a[tabindex]",width:"80px",maxLength:5,setup:g,commit:k}]}]},{type:"vbox",padding:1,children:[{type:"hbox",widths:["45%","55%"],children:[{type:"text",label:b.advisoryTitle,requiredContent:"a[title]","default":"",id:"advTitle",setup:g,commit:k},{type:"text",label:b.advisoryContentType, +requiredContent:"a[type]","default":"",id:"advContentType",setup:g,commit:k}]},{type:"hbox",widths:["45%","55%"],children:[{type:"text",label:b.cssClasses,requiredContent:"a(cke-xyz)","default":"",id:"advCSSClasses",setup:g,commit:k},{type:"text",label:b.charset,requiredContent:"a[charset]","default":"",id:"advCharset",setup:g,commit:k}]},{type:"hbox",widths:["45%","55%"],children:[{type:"text",label:b.rel,requiredContent:"a[rel]","default":"",id:"advRel",setup:g,commit:k},{type:"text",label:b.styles, +requiredContent:"a{cke-xyz}","default":"",id:"advStyles",validate:CKEDITOR.dialog.validate.inlineStyle(c.lang.common.invalidInlineStyle),setup:g,commit:k}]},{type:"hbox",widths:["45%","55%"],children:[{type:"checkbox",id:"download",requiredContent:"a[download]",label:b.download,setup:function(a){void 0!==a.download&&this.setValue("checked","checked")},commit:function(a){this.getValue()&&(a.download=this.getValue())}}]}]}]}],onShow:function(){var a=this.getParentEditor(),b=a.getSelection(),c=this.getContentElement("info", +"linkDisplayText").getElement().getParent().getParent(),f=n.getSelectedLink(a,!0),m=f[0]||null;m&&m.hasAttribute("href")&&(b.getSelectedElement()||b.isInTable()||b.selectElement(m));b=n.parseLinkAttributes(a,m);1>=f.length&&n.showDisplayTextForElement(m,a)?c.show():c.hide();this._.selectedElements=f;this.setupContent(b)},onOk:function(){var a={};this.commitContent(a);if(this._.selectedElements.length){var b=this._.selectedElements,h=n.getLinkAttributes(c,a),f=[],m,l,d,g,e,k;for(k=0;k<b.length;k++){g= +b[k];l=g.data("cke-saved-href");m=a.linkText&&q!=a.linkText;d=l==q;l="email"==a.type&&l=="mailto:"+q;g.setAttributes(h.set);g.removeAttributes(h.removed);if(m)e=a.linkText;else if(d||l)e="email"==a.type?a.email.address:h.set["data-cke-saved-href"];e&&g.setText(e);f.push(p(c,g))}c.getSelection().selectRanges(f);delete this._.selectedElements}else{b=n.getLinkAttributes(c,a);h=c.getSelection().getRanges();f=new CKEDITOR.style({element:"a",attributes:b.set});m=[];f.type=CKEDITOR.STYLE_INLINE;for(g=0;g< +h.length;g++){d=h[g];d.collapsed?(e=new CKEDITOR.dom.text(a.linkText||("email"==a.type?a.email.address:b.set["data-cke-saved-href"]),c.document),d.insertNode(e),d.selectNodeContents(e)):q!==a.linkText&&(e=new CKEDITOR.dom.text(a.linkText,c.document),d.shrink(CKEDITOR.SHRINK_TEXT),c.editable().extractHtmlFromRange(d),d.insertNode(e));e=d._find("a");for(k=0;k<e.length;k++)e[k].remove(!0);f.applyToRange(d,c);m.push(d)}c.getSelection().selectRanges(m)}},onLoad:function(){c.config.linkShowAdvancedTab|| +this.hidePage("advanced");c.config.linkShowTargetTab||this.hidePage("target")},onFocus:function(){var a=this.getContentElement("info","linkType");a&&"url"==a.getValue()&&(a=this.getContentElement("info","url"),a.select())}}})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/link/images/anchor.png b/static/ckeditor/ckeditor/plugins/link/images/anchor.png new file mode 100644 index 0000000000..d94adb4130 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/link/images/anchor.png differ diff --git a/static/ckeditor/ckeditor/plugins/link/images/hidpi/anchor.png b/static/ckeditor/ckeditor/plugins/link/images/hidpi/anchor.png new file mode 100644 index 0000000000..186c3e9165 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/link/images/hidpi/anchor.png differ diff --git a/static/ckeditor/ckeditor/plugins/liststyle/dialogs/liststyle.js b/static/ckeditor/ckeditor/plugins/liststyle/dialogs/liststyle.js new file mode 100644 index 0000000000..043cf635f9 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/liststyle/dialogs/liststyle.js @@ -0,0 +1,10 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +(function(){function d(c,e){var b;try{b=c.getSelection().getRanges()[0]}catch(d){return null}b.shrink(CKEDITOR.SHRINK_TEXT);return c.elementPath(b.getCommonAncestor()).contains(e,1)}function f(c,e){var b=c.lang.liststyle;if("bulletedListStyle"==e)return{title:b.bulletedTitle,minWidth:300,minHeight:50,getModel:h(c,"ul"),contents:[{id:"info",accessKey:"I",elements:[{type:"select",label:b.type,id:"type",align:"center",style:"width:150px",items:[[b.notset,""],[b.circle,"circle"],[b.disc,"disc"],[b.square, +"square"]],setup:function(a){a=a.getStyle("list-style-type")||k[a.getAttribute("type")]||a.getAttribute("type")||"";this.setValue(a)},commit:function(a){var b=this.getValue();b?a.setStyle("list-style-type",b):a.removeStyle("list-style-type")}}]}],onShow:function(){var a=this.getParentEditor();(a=d(a,"ul"))&&this.setupContent(a)},onOk:function(){var a=this.getParentEditor();(a=d(a,"ul"))&&this.commitContent(a)}};if("numberedListStyle"==e){var f=[[b.notset,""],[b.lowerRoman,"lower-roman"],[b.upperRoman, +"upper-roman"],[b.lowerAlpha,"lower-alpha"],[b.upperAlpha,"upper-alpha"],[b.decimal,"decimal"]];return{title:b.numberedTitle,minWidth:300,minHeight:50,getModel:h(c,"ol"),contents:[{id:"info",accessKey:"I",elements:[{type:"hbox",widths:["25%","75%"],children:[{label:b.start,type:"text",id:"start",validate:CKEDITOR.dialog.validate.integer(b.validateStartNumber),setup:function(a){a=a.getFirst(g).getAttribute("value")||a.getAttribute("start")||1;this.setValue(a)},commit:function(a){var b=a.getFirst(g), +c=b.getAttribute("value")||a.getAttribute("start")||1;a.getFirst(g).removeAttribute("value");var d=parseInt(this.getValue(),10);isNaN(d)?a.removeAttribute("start"):a.setAttribute("start",d);a=b;b=c;for(d=isNaN(d)?1:d;(a=a.getNext(g))&&b++;)a.getAttribute("value")==b&&a.setAttribute("value",d+b-c)}},{type:"select",label:b.type,id:"type",style:"width: 100%;",items:f,setup:function(a){a=a.getStyle("list-style-type")||k[a.getAttribute("type")]||a.getAttribute("type")||"";this.setValue(a)},commit:function(a){var b= +this.getValue();b?a.setStyle("list-style-type",b):a.removeStyle("list-style-type")}}]}]}],onShow:function(){var a=this.getParentEditor();(a=d(a,"ol"))&&this.setupContent(a)},onOk:function(){var a=this.getParentEditor();(a=d(a,"ol"))&&this.commitContent(a)}}}}function h(c,e){return function(){return d(c,e)||null}}var g=function(c){return c.type==CKEDITOR.NODE_ELEMENT&&c.is("li")},k={a:"lower-alpha",A:"upper-alpha",i:"lower-roman",I:"upper-roman",1:"decimal",disc:"disc",circle:"circle",square:"square"}; +CKEDITOR.dialog.add("numberedListStyle",function(c){return f(c,"numberedListStyle")});CKEDITOR.dialog.add("bulletedListStyle",function(c){return f(c,"bulletedListStyle")})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png b/static/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png new file mode 100644 index 0000000000..4a8d2bfdab Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png differ diff --git a/static/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon.png b/static/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon.png new file mode 100644 index 0000000000..b981bb5c6c Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon.png differ diff --git a/static/ckeditor/ckeditor/plugins/magicline/images/icon-rtl.png b/static/ckeditor/ckeditor/plugins/magicline/images/icon-rtl.png new file mode 100644 index 0000000000..55b5b5f949 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/magicline/images/icon-rtl.png differ diff --git a/static/ckeditor/ckeditor/plugins/magicline/images/icon.png b/static/ckeditor/ckeditor/plugins/magicline/images/icon.png new file mode 100644 index 0000000000..e063433632 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/magicline/images/icon.png differ diff --git a/static/ckeditor/ckeditor/plugins/mathjax/dialogs/mathjax.js b/static/ckeditor/ckeditor/plugins/mathjax/dialogs/mathjax.js new file mode 100644 index 0000000000..18b2c05cf2 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/dialogs/mathjax.js @@ -0,0 +1,7 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("mathjax",function(d){var c,b=d.lang.mathjax;return{title:b.title,minWidth:350,minHeight:100,contents:[{id:"info",elements:[{id:"equation",type:"textarea",label:b.dialogInput,onLoad:function(){var a=this;if(!(CKEDITOR.env.ie&&8==CKEDITOR.env.version))this.getInputElement().on("keyup",function(){c.setValue("\\("+a.getInputElement().getValue()+"\\)")})},setup:function(a){this.setValue(CKEDITOR.plugins.mathjax.trim(a.data.math))},commit:function(a){a.setData("math","\\("+this.getValue()+ +"\\)")}},{id:"documentation",type:"html",html:'<div style="width:100%;text-align:right;margin:-8px 0 10px"><a class="cke_mathjax_doc" href="'+b.docUrl+'" target="_black" style="cursor:pointer;color:#00B2CE;text-decoration:underline">'+b.docLabel+"</a></div>"},!(CKEDITOR.env.ie&&8==CKEDITOR.env.version)&&{id:"preview",type:"html",html:'<div style="width:100%;text-align:center;"><iframe style="border:0;width:0;height:0;font-size:20px" scrolling="no" frameborder="0" allowTransparency="true" src="'+CKEDITOR.plugins.mathjax.fixSrc+ +'"></iframe></div>',onLoad:function(){var a=CKEDITOR.document.getById(this.domId).getChild(0);c=new CKEDITOR.plugins.mathjax.frameWrapper(a,d)},setup:function(a){c.setValue(a.data.math)}}]}]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/icons/hidpi/mathjax.png b/static/ckeditor/ckeditor/plugins/mathjax/icons/hidpi/mathjax.png new file mode 100644 index 0000000000..85b8e11df6 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/mathjax/icons/hidpi/mathjax.png differ diff --git a/static/ckeditor/ckeditor/plugins/mathjax/icons/mathjax.png b/static/ckeditor/ckeditor/plugins/mathjax/icons/mathjax.png new file mode 100644 index 0000000000..d25081be99 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/mathjax/icons/mathjax.png differ diff --git a/static/ckeditor/ckeditor/plugins/mathjax/images/loader.gif b/static/ckeditor/ckeditor/plugins/mathjax/images/loader.gif new file mode 100644 index 0000000000..3ffb1811f7 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/mathjax/images/loader.gif differ diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/af.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/af.js new file mode 100644 index 0000000000..ee70c66184 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/af.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","af",{title:"Wiskunde in TeX",button:"Wiskunde",dialogInput:"Skryf you Tex hier",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokument",loading:"laai...",pathName:"wiskunde"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/ar.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/ar.js new file mode 100644 index 0000000000..82bbc950e2 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/ar.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","ar",{title:"الرياصيات في Tex",button:"رياضيات",dialogInput:"أكتب Tex خاصتك هنا",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"وثائق Tex",loading:"جاري التحميل...",pathName:"رياضيات"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/bg.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/bg.js new file mode 100644 index 0000000000..c893aab1e4 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/bg.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","bg",{title:"Формули в TeX формат",button:"Формули",dialogInput:"Въведете вашите данни с TeX форматиране тук",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX документация",loading:"зареждане...",pathName:"формули"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/ca.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/ca.js new file mode 100644 index 0000000000..33a353dcf3 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","ca",{title:"Matemàtiques a TeX",button:"Matemàtiques",dialogInput:"Escriu el TeX aquí",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentació TeX",loading:"carregant...",pathName:"matemàtiques"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/cs.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/cs.js new file mode 100644 index 0000000000..e2e0b510ee --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/cs.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","cs",{title:"Matematika v TeXu",button:"Matematika",dialogInput:"Zde napište TeXový kód",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dokumentace k TeXu",loading:"Nahrává se...",pathName:"Matematika"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/cy.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/cy.js new file mode 100644 index 0000000000..bd919ba0df --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/cy.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","cy",{title:"Mathemateg mewn TeX",button:"Math",dialogInput:"Ysgrifennwch eich TeX yma",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dogfennaeth TeX",loading:"llwytho...",pathName:"math"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/da.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/da.js new file mode 100644 index 0000000000..df562af743 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/da.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","da",{title:"Matematik i TeX",button:"Matematik",dialogInput:"Skriv din TeX her",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentation",loading:"henter...",pathName:"matematik"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/de.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/de.js new file mode 100644 index 0000000000..d5341cdf5f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/de.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","de",{title:"Mathematik in Tex",button:"Rechnung",dialogInput:"Schreiben Sie hier in Tex",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX-Dokumentation",loading:"Ladevorgang...",pathName:"rechnen"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/el.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/el.js new file mode 100644 index 0000000000..affcd0e7da --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/el.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","el",{title:"Μαθηματικά με τη γλώσσα TeX",button:"Μαθηματικά",dialogInput:"Γράψτε κώδικα TeX εδώ",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Τεκμηρίωση TeX",loading:"γίνεται φόρτωση...",pathName:"μαθηματικά"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/en-gb.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/en-gb.js new file mode 100644 index 0000000000..d9f0cbde6e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/en-gb.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","en-gb",{title:"Mathematics in TeX",button:"Math",dialogInput:"Write you TeX here",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX documentation",loading:"loading...",pathName:"math"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/en.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/en.js new file mode 100644 index 0000000000..9e66c84521 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/en.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","en",{title:"Mathematics in TeX",button:"Math",dialogInput:"Write your TeX here",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX documentation",loading:"loading...",pathName:"math"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/eo.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/eo.js new file mode 100644 index 0000000000..4aa7cb4973 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/eo.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","eo",{title:"Matematiko en TeX",button:"Matematiko",dialogInput:"Skribu vian TeX tien",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentado",loading:"estas ŝarganta",pathName:"matematiko"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/es.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/es.js new file mode 100644 index 0000000000..6ec9e4dc7d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/es.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","es",{title:"Matemáticas en TeX",button:"Matemáticas",dialogInput:"Escribe tu TeX aquí",docUrl:"http://es.wikipedia.org/wiki/TeX",docLabel:"Documentación de TeX",loading:"cargando...",pathName:"matemáticas"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/fa.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/fa.js new file mode 100644 index 0000000000..d638a84041 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/fa.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","fa",{title:"ریاضیات در تک",button:"ریاضی",dialogInput:"فرمول خود را اینجا بنویسید",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"مستندسازی فرمول نویسی",loading:"بارگیری",pathName:"ریاضی"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/fi.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/fi.js new file mode 100644 index 0000000000..bd5140c142 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/fi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","fi",{title:"Matematiikkaa TeX:llä",button:"Matematiikka",dialogInput:"Kirjoita TeX:iä tähän",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentaatio",loading:"lataa...",pathName:"matematiikka"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/fr.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/fr.js new file mode 100644 index 0000000000..bf1cb47973 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/fr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","fr",{title:"Mathématiques au format TeX",button:"Math",dialogInput:"Saisir la formule TeX ici",docUrl:"http://fr.wikibooks.org/wiki/LaTeX/Math%C3%A9matiques",docLabel:"Documentation du format TeX",loading:"chargement...",pathName:"math"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/gl.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/gl.js new file mode 100644 index 0000000000..0657f1f9da --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/gl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","gl",{title:"Matemáticas en TeX",button:"Matemáticas",dialogInput:"Escriba o seu TeX aquí",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentación de TeX",loading:"cargando...",pathName:"matemáticas"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/he.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/he.js new file mode 100644 index 0000000000..9e5c21dc54 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/he.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","he",{title:"מתמטיקה בTeX",button:"מתמטיקה",dialogInput:"כתוב את הTeX שלך כאן",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"תיעוד TeX",loading:"טוען...",pathName:"מתמטיקה"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/hr.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/hr.js new file mode 100644 index 0000000000..6e90bd5b78 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/hr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","hr",{title:"Matematika u TeXu",button:"Matematika",dialogInput:"Napiši svoj TeX ovdje",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentacija",loading:"učitavanje...",pathName:"matematika"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/hu.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/hu.js new file mode 100644 index 0000000000..3ab4b74847 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/hu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","hu",{title:"Matematika a TeX-ben",button:"Matek",dialogInput:"Írd a TeX-ed ide",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentáció",loading:"töltés...",pathName:"matek"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/it.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/it.js new file mode 100644 index 0000000000..a91094a0d3 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/it.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","it",{title:"Formule in TeX",button:"Formule",dialogInput:"Scrivere qui il proprio TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentazione TeX",loading:"caricamento…",pathName:"formula"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/ja.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/ja.js new file mode 100644 index 0000000000..0141ecd78e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/ja.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","ja",{title:"TeX形式の数式",button:"数式",dialogInput:"TeX形式の数式を入力してください",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeXの解説",loading:"読み込み中…",pathName:"math"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/km.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/km.js new file mode 100644 index 0000000000..d68d998fac --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/km.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","km",{title:"គណិត​វិទ្យា​ក្នុង TeX",button:"គណិត",dialogInput:"សរសេរ TeX របស់​អ្នក​នៅ​ទីនេះ",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"ឯកសារ​អត្ថបទ​ពី ​TeX",loading:"កំពុង​ផ្ទុក..",pathName:"គណិត"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/ko.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/ko.js new file mode 100644 index 0000000000..2d0d8f584f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/ko.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","ko",{title:"TeX 문법 수식",button:"수식",dialogInput:"여기 TeX 를 입력하세요",docUrl:"http://ko.wikipedia.org/wiki/%EC%9C%84%ED%82%A4%EB%B0%B1%EA%B3%BC:TeX_%EB%AC%B8%EB%B2%95",docLabel:"TeX 문서",loading:"불러오는 중...",pathName:"수식"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/ku.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/ku.js new file mode 100644 index 0000000000..84f225a046 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/ku.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","ku",{title:"بیرکاری لە TeX",button:"بیرکاری",dialogInput:"TeXەکەت لێرە بنووسە",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"بەڵگەنامەکردنی TeX",loading:"بارکردن...",pathName:"بیرکاری"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/lt.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/lt.js new file mode 100644 index 0000000000..7b2c3e8574 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/lt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","lt",{title:"Matematika per TeX",button:"Matematika",dialogInput:"Parašyk savo TeX čia",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX žinynas",loading:"kraunasi...",pathName:"matematika"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/nb.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/nb.js new file mode 100644 index 0000000000..7b3588e208 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/nb.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","nb",{title:"Matematikk i TeX",button:"Matte",dialogInput:"Skriv TeX-koden her",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX-dokumentasjon",loading:"laster...",pathName:"matte"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/nl.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/nl.js new file mode 100644 index 0000000000..fe9cf31680 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/nl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","nl",{title:"Wiskunde in TeX",button:"Wiskunde",dialogInput:"Typ hier uw TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX documentatie",loading:"laden...",pathName:"wiskunde"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/no.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/no.js new file mode 100644 index 0000000000..33e87aba05 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/no.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","no",{title:"Matematikk i TeX",button:"Matte",dialogInput:"Skriv TeX-koden her",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX-dokumentasjon",loading:"laster...",pathName:"matte"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/pl.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/pl.js new file mode 100644 index 0000000000..70f2be53d0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/pl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","pl",{title:"Wzory matematyczne w TeX",button:"Wzory matematyczne",dialogInput:"Wpisz wyrażenie w TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dokumentacja TeX",loading:"ładowanie...",pathName:"matematyka"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/pt-br.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/pt-br.js new file mode 100644 index 0000000000..6b9620d0c4 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/pt-br.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","pt-br",{title:"Matemática em TeX",button:"Matemática",dialogInput:"Escreva seu TeX aqui",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentação TeX",loading:"carregando...",pathName:"Matemática"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/pt.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/pt.js new file mode 100644 index 0000000000..09a39d3c86 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/pt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","pt",{title:"Matemática em TeX",button:"Matemática",dialogInput:"Escreva aqui o seu Tex",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentação TeX",loading:"a carregar ...",pathName:"matemática"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/ro.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/ro.js new file mode 100644 index 0000000000..72c606cbdf --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/ro.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","ro",{title:"Matematici in TeX",button:"Matematici",dialogInput:"Scrie TeX-ul aici",docUrl:"http://ro.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentatie TeX",loading:"încarcă...",pathName:"matematici"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/ru.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/ru.js new file mode 100644 index 0000000000..a48da75f13 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/ru.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","ru",{title:"Математика в TeX-системе",button:"Математика",dialogInput:"Введите здесь TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX документация",loading:"загрузка...",pathName:"мат."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/sk.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/sk.js new file mode 100644 index 0000000000..1a54159d8b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/sk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","sk",{title:"Matematika v TeX",button:"Matika",dialogInput:"Napíšte svoj TeX sem",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dokumentácia TeX",loading:"načítavanie...",pathName:"matika"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/sl.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/sl.js new file mode 100644 index 0000000000..c8df95b53b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/sl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","sl",{title:"Matematika v TeX",button:"Matematika",dialogInput:"Napišite svoj TeX tukaj",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentacija",loading:"nalaganje...",pathName:"matematika"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/sq.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/sq.js new file mode 100644 index 0000000000..7416e77ef2 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/sq.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","sq",{title:"Matematikë në TeX",button:"Matematikë",dialogInput:"Shkruani TeX-in tuaj këtu",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Tex dokumentimi",loading:"duke u hapur...",pathName:"matematikë"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/sv.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/sv.js new file mode 100644 index 0000000000..8d93cc0dd7 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/sv.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","sv",{title:"Mattematik i TeX",button:"Matte",dialogInput:"Skriv din TeX här",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentation",loading:"laddar...",pathName:"matte"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/tr.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/tr.js new file mode 100644 index 0000000000..a2925f1731 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/tr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","tr",{title:"TeX ile Matematik",button:"Matematik",dialogInput:"TeX kodunuzu buraya yazın",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX yardım dökümanı",loading:"yükleniyor...",pathName:"matematik"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/tt.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/tt.js new file mode 100644 index 0000000000..44003bdc34 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/tt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","tt",{title:"TeX'та математика",button:"Математика",dialogInput:"Биредә TeX форматында аңлатмагызны языгыз",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX турыдна документлар",loading:"йөкләнә...",pathName:"математика"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/uk.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/uk.js new file mode 100644 index 0000000000..77875f4e5b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/uk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","uk",{title:"Математика у TeX",button:"Математика",dialogInput:"Наберіть тут на TeX'у",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Документація про TeX",loading:"завантажується…",pathName:"математика"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/vi.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/vi.js new file mode 100644 index 0000000000..66961038bc --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/vi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","vi",{title:"Toán học bằng TeX",button:"Toán",dialogInput:"Nhập mã TeX ở đây",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Tài liệu TeX",loading:"đang nạp...",pathName:"toán"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/zh-cn.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/zh-cn.js new file mode 100644 index 0000000000..ea9ad35e52 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/zh-cn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","zh-cn",{title:"TeX 语法的数学公式编辑器",button:"数学公式",dialogInput:"在此编写您的 TeX 指令",docUrl:"http://zh.wikipedia.org/wiki/TeX",docLabel:"TeX 语法(可以参考维基百科自身关于数学公式显示方式的帮助)",loading:"正在加载...",pathName:"数字公式"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/lang/zh.js b/static/ckeditor/ckeditor/plugins/mathjax/lang/zh.js new file mode 100644 index 0000000000..84cdab1c27 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/lang/zh.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("mathjax","zh",{title:"以 TeX 表示數學",button:"數學",dialogInput:"請輸入 TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX 說明文件",loading:"載入中…",pathName:"數學"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/mathjax/plugin.js b/static/ckeditor/ckeditor/plugins/mathjax/plugin.js new file mode 100644 index 0000000000..e049c6013d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/mathjax/plugin.js @@ -0,0 +1,15 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){CKEDITOR.plugins.add("mathjax",{lang:"af,ar,bg,ca,cs,cy,da,de,el,en,en-gb,eo,es,fa,fi,fr,gl,he,hr,hu,it,ja,km,ko,ku,lt,nb,nl,no,pl,pt,pt-br,ro,ru,sk,sl,sq,sv,tr,tt,uk,vi,zh,zh-cn",requires:"widget,dialog",icons:"mathjax",hidpi:!0,init:function(b){var c=b.config.mathJaxClass||"math-tex";!b.config.mathJaxLib&&(window.console&&window.console.log)&&window.console.log("Error: config.mathJaxLib property is not set. For more information visit: ","http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-mathJaxLib"); +b.widgets.add("mathjax",{inline:!0,dialog:"mathjax",button:b.lang.mathjax.button,mask:!0,allowedContent:"span(!"+c+")",styleToAllowedContentRules:function(a){a=a.getClassesArray();if(!a)return null;a.push("!"+c);return"span("+a.join(",")+")"},pathName:b.lang.mathjax.pathName,template:'<span class="'+c+'" style="display:inline-block" data-cke-survive=1></span>',parts:{span:"span"},defaults:{math:"\\(x = {-b \\pm \\sqrt{b^2-4ac} \\over 2a}\\)"},init:function(){var a=this.parts.span.getChild(0);if(!a|| +a.type!=CKEDITOR.NODE_ELEMENT||!a.is("iframe"))a=new CKEDITOR.dom.element("iframe"),a.setAttributes({style:"border:0;width:0;height:0",scrolling:"no",frameborder:0,allowTransparency:!0,src:CKEDITOR.plugins.mathjax.fixSrc}),this.parts.span.append(a);this.once("ready",function(){CKEDITOR.env.ie&&a.setAttribute("src",CKEDITOR.plugins.mathjax.fixSrc);this.frameWrapper=new CKEDITOR.plugins.mathjax.frameWrapper(a,b);this.frameWrapper.setValue(this.data.math)})},data:function(){this.frameWrapper&&this.frameWrapper.setValue(this.data.math)}, +upcast:function(a,b){if("span"==a.name&&a.hasClass(c)&&!(1<a.children.length||a.children[0].type!=CKEDITOR.NODE_TEXT)){b.math=CKEDITOR.tools.htmlDecode(a.children[0].value);var d=a.attributes;d.style=d.style?d.style+";display:inline-block":"display:inline-block";d["data-cke-survive"]=1;a.children[0].remove();return a}},downcast:function(a){a.children[0].replaceWith(new CKEDITOR.htmlParser.text(CKEDITOR.tools.htmlEncode(this.data.math)));var b=a.attributes;b.style=b.style.replace(/display:\s?inline-block;?\s?/, +"");""===b.style&&delete b.style;return a}});CKEDITOR.dialog.add("mathjax",this.path+"dialogs/mathjax.js");b.on("contentPreview",function(a){a.data.dataValue=a.data.dataValue.replace(/<\/head>/,'<script src="'+CKEDITOR.getUrl(b.config.mathJaxLib)+'"><\/script></head>')});b.on("paste",function(a){a.data.dataValue=a.data.dataValue.replace(RegExp("<span[^>]*?"+c+".*?</span>","ig"),function(a){return a.replace(/(<iframe.*?\/iframe>)/i,"")})})}});CKEDITOR.plugins.mathjax={};CKEDITOR.plugins.mathjax.fixSrc= +CKEDITOR.env.gecko?"javascript:true":CKEDITOR.env.ie?"javascript:void((function(){"+encodeURIComponent("document.open();("+CKEDITOR.tools.fixDomain+")();document.close();")+"})())":"javascript:void(0)";CKEDITOR.plugins.mathjax.loadingIcon=CKEDITOR.plugins.get("mathjax").path+"images/loader.gif";CKEDITOR.plugins.mathjax.copyStyles=function(b,c){for(var a="color font-family font-style font-weight font-variant font-size".split(" "),e=0;e<a.length;e++){var d=a[e],g=b.getComputedStyle(d);g&&c.setStyle(d, +g)}};CKEDITOR.plugins.mathjax.trim=function(b){var c=b.indexOf("\\(")+2,a=b.lastIndexOf("\\)");return b.substring(c,a)};CKEDITOR.plugins.mathjax.frameWrapper=CKEDITOR.env.ie&&8==CKEDITOR.env.version?function(b,c){b.getFrameDocument().write('<!DOCTYPE html><html><head><meta charset="utf-8"></head><body style="padding:0;margin:0;background:transparent;overflow:hidden"><span style="white-space:nowrap;" id="tex"></span></body></html>');return{setValue:function(a){var e=b.getFrameDocument(),d=e.getById("tex"); +d.setHtml(CKEDITOR.plugins.mathjax.trim(CKEDITOR.tools.htmlEncode(a)));CKEDITOR.plugins.mathjax.copyStyles(b,d);c.fire("lockSnapshot");b.setStyles({width:Math.min(250,d.$.offsetWidth)+"px",height:e.$.body.offsetHeight+"px",display:"inline","vertical-align":"middle"});c.fire("unlockSnapshot")}}}:function(b,c){function a(){f=b.getFrameDocument();f.getById("preview")||(CKEDITOR.env.ie&&b.removeAttribute("src"),f.write('<!DOCTYPE html><html><head><meta charset="utf-8"><script type="text/x-mathjax-config">MathJax.Hub.Config( {showMathMenu: false,messageStyle: "none"} );function getCKE() {if ( typeof window.parent.CKEDITOR == \'object\' ) {return window.parent.CKEDITOR;} else {return window.parent.parent.CKEDITOR;}}function update() {MathJax.Hub.Queue([ \'Typeset\', MathJax.Hub, this.buffer ],function() {getCKE().tools.callFunction( '+ +l+" );});}MathJax.Hub.Queue( function() {getCKE().tools.callFunction("+m+');} );<\/script><script src="'+c.config.mathJaxLib+'"><\/script></head><body style="padding:0;margin:0;background:transparent;overflow:hidden"><span id="preview"></span><span id="buffer" style="display:none"></span></body></html>'))}function e(){k=!0;h=i;c.fire("lockSnapshot");d.setHtml(h);g.setHtml("<img src="+CKEDITOR.plugins.mathjax.loadingIcon+" alt="+c.lang.mathjax.loading+">");b.setStyles({height:"16px",width:"16px",display:"inline", +"vertical-align":"middle"});c.fire("unlockSnapshot");f.getWindow().$.update(h)}var d,g,h,i,f=b.getFrameDocument(),j=!1,k=!1,m=CKEDITOR.tools.addFunction(function(){g=f.getById("preview");d=f.getById("buffer");j=!0;i&&e();CKEDITOR.fire("mathJaxLoaded",b)}),l=CKEDITOR.tools.addFunction(function(){CKEDITOR.plugins.mathjax.copyStyles(b,g);g.setHtml(d.getHtml());c.fire("lockSnapshot");b.setStyles({height:0,width:0});var a=Math.max(f.$.body.offsetHeight,f.$.documentElement.offsetHeight),j=Math.max(g.$.offsetWidth, +f.$.body.scrollWidth);b.setStyles({height:a+"px",width:j+"px"});c.fire("unlockSnapshot");CKEDITOR.fire("mathJaxUpdateDone",b);h!=i?e():k=!1});b.on("load",a);a();return{setValue:function(a){i=CKEDITOR.tools.htmlEncode(a);j&&!k&&e()}}}})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/menubutton/plugin.js b/static/ckeditor/ckeditor/plugins/menubutton/plugin.js new file mode 100644 index 0000000000..b0b4447b0f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/menubutton/plugin.js @@ -0,0 +1,7 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.add("menubutton",{requires:"button,menu",onLoad:function(){var d=function(c){var a=this._,b=a.menu;a.state!==CKEDITOR.TRISTATE_DISABLED&&(a.on&&b?b.hide():(a.previousState=a.state,b||(b=a.menu=new CKEDITOR.menu(c,{panel:{className:"cke_menu_panel",attributes:{"aria-label":c.lang.common.options}}}),b.onHide=CKEDITOR.tools.bind(function(){var b=this.command?c.getCommand(this.command).modes:this.modes;this.setState(!b||b[c.mode]?a.previousState:CKEDITOR.TRISTATE_DISABLED);a.on=0},this), +this.onMenu&&b.addListener(this.onMenu)),this.setState(CKEDITOR.TRISTATE_ON),a.on=1,setTimeout(function(){b.show(CKEDITOR.document.getById(a.id),4)},0)))};CKEDITOR.ui.menuButton=CKEDITOR.tools.createClass({base:CKEDITOR.ui.button,$:function(c){delete c.panel;this.base(c);this.hasArrow=!0;this.click=d},statics:{handler:{create:function(c){return new CKEDITOR.ui.menuButton(c)}}}})},beforeInit:function(d){d.ui.addHandler(CKEDITOR.UI_MENUBUTTON,CKEDITOR.ui.menuButton.handler)}}); +CKEDITOR.UI_MENUBUTTON="menubutton"; \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/cs.js b/static/ckeditor/ckeditor/plugins/notification/lang/cs.js new file mode 100644 index 0000000000..854cd12370 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/cs.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","cs",{closed:"Oznámení zavřeno."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/da.js b/static/ckeditor/ckeditor/plugins/notification/lang/da.js new file mode 100644 index 0000000000..bbddc2817b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/da.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","da",{closed:"Notefikation lukket."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/de.js b/static/ckeditor/ckeditor/plugins/notification/lang/de.js new file mode 100644 index 0000000000..3dc5b62a25 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/de.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","de",{closed:"Benachrichtigung geschlossen."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/en.js b/static/ckeditor/ckeditor/plugins/notification/lang/en.js new file mode 100644 index 0000000000..56d54b79c8 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/en.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","en",{closed:"Notification closed."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/eo.js b/static/ckeditor/ckeditor/plugins/notification/lang/eo.js new file mode 100644 index 0000000000..289ebfe9eb --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/eo.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","eo",{closed:"Sciigo fermita"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/fr.js b/static/ckeditor/ckeditor/plugins/notification/lang/fr.js new file mode 100644 index 0000000000..99a473ebae --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/fr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","fr",{closed:"La notification est close."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/gl.js b/static/ckeditor/ckeditor/plugins/notification/lang/gl.js new file mode 100644 index 0000000000..837ea71e81 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/gl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","gl",{closed:"Notificación pechada."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/it.js b/static/ckeditor/ckeditor/plugins/notification/lang/it.js new file mode 100644 index 0000000000..43fbada02a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/it.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","it",{closed:"Notifica chiusa."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/ko.js b/static/ckeditor/ckeditor/plugins/notification/lang/ko.js new file mode 100644 index 0000000000..2b8d1ab0a7 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/ko.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","ko",{closed:"알림이 닫힘."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/ku.js b/static/ckeditor/ckeditor/plugins/notification/lang/ku.js new file mode 100644 index 0000000000..b06babfa3c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/ku.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","ku",{closed:"ئاگادارکەرەوەکە داخرا."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/nb.js b/static/ckeditor/ckeditor/plugins/notification/lang/nb.js new file mode 100644 index 0000000000..275fa69603 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/nb.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","nb",{closed:"Varsling lukket."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/nl.js b/static/ckeditor/ckeditor/plugins/notification/lang/nl.js new file mode 100644 index 0000000000..fd134769b5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/nl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","nl",{closed:"Melding gesloten."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/pl.js b/static/ckeditor/ckeditor/plugins/notification/lang/pl.js new file mode 100644 index 0000000000..a7696ad2b3 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/pl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","pl",{closed:"Powiadomienie zostało zamknięte."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/pt-br.js b/static/ckeditor/ckeditor/plugins/notification/lang/pt-br.js new file mode 100644 index 0000000000..3072fe815e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/pt-br.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","pt-br",{closed:"Notificação fechada."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/ru.js b/static/ckeditor/ckeditor/plugins/notification/lang/ru.js new file mode 100644 index 0000000000..b583decb4d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/ru.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","ru",{closed:"Уведомление закрыто"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/sv.js b/static/ckeditor/ckeditor/plugins/notification/lang/sv.js new file mode 100644 index 0000000000..571d9055cf --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/sv.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","sv",{closed:"Notifiering stängd."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/tr.js b/static/ckeditor/ckeditor/plugins/notification/lang/tr.js new file mode 100644 index 0000000000..8bcf822604 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/tr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","tr",{closed:"Uyarılar kapatıldı."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/zh-cn.js b/static/ckeditor/ckeditor/plugins/notification/lang/zh-cn.js new file mode 100644 index 0000000000..9c96cb447b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/zh-cn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","zh-cn",{closed:"通知已关闭。"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/lang/zh.js b/static/ckeditor/ckeditor/plugins/notification/lang/zh.js new file mode 100644 index 0000000000..f62eca85c7 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/lang/zh.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("notification","zh",{closed:"通知已關閉。"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notification/plugin.js b/static/ckeditor/ckeditor/plugins/notification/plugin.js new file mode 100644 index 0000000000..741685783c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notification/plugin.js @@ -0,0 +1,19 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.add("notification",{lang:"cs,da,de,en,eo,fr,gl,it,ko,ku,nb,nl,pl,pt-br,ru,sv,tr,zh,zh-cn",requires:"toolbar",init:function(b){function a(b){var a=new CKEDITOR.dom.element("div");a.setStyles({position:"fixed","margin-left":"-9999px"});a.setAttributes({"aria-live":"assertive","aria-atomic":"true"});a.setText(b);CKEDITOR.document.getBody().append(a);setTimeout(function(){a.remove()},100)}b._.notificationArea=new Area(b);b.showNotification=function(a,d,e){var g,k;"progress"==d?g=e:k= +e;a=new CKEDITOR.plugins.notification(b,{message:a,type:d,progress:g,duration:k});a.show();return a};b.on("key",function(c){if(27==c.data.keyCode){var d=b._.notificationArea.notifications;d.length&&(a(b.lang.notification.closed),d[d.length-1].hide(),c.cancel())}})}}); +function Notification(b,a){CKEDITOR.tools.extend(this,a,{editor:b,id:"cke-"+CKEDITOR.tools.getUniqueId(),area:b._.notificationArea});a.type||(this.type="info");this.element=this._createElement();b.plugins.clipboard&&CKEDITOR.plugins.clipboard.preventDefaultDropOnElement(this.element)} +Notification.prototype={show:function(){!1!==this.editor.fire("notificationShow",{notification:this})&&(this.area.add(this),this._hideAfterTimeout())},update:function(b){var a=!0;!1===this.editor.fire("notificationUpdate",{notification:this,options:b})&&(a=!1);var c=this.element,d=c.findOne(".cke_notification_message"),e=c.findOne(".cke_notification_progress"),g=b.type;c.removeAttribute("role");b.progress&&"progress"!=this.type&&(g="progress");g&&(c.removeClass(this._getClass()),c.removeAttribute("aria-label"), +this.type=g,c.addClass(this._getClass()),c.setAttribute("aria-label",this.type),"progress"==this.type&&!e?(e=this._createProgressElement(),e.insertBefore(d)):"progress"!=this.type&&e&&e.remove());void 0!==b.message&&(this.message=b.message,d.setHtml(this.message));void 0!==b.progress&&(this.progress=b.progress,e&&e.setStyle("width",this._getPercentageProgress()));a&&b.important&&(c.setAttribute("role","alert"),this.isVisible()||this.area.add(this));this.duration=b.duration;this._hideAfterTimeout()}, +hide:function(){!1!==this.editor.fire("notificationHide",{notification:this})&&this.area.remove(this)},isVisible:function(){return 0<=CKEDITOR.tools.indexOf(this.area.notifications,this)},_createElement:function(){var b=this,a,c,d=this.editor.lang.common.close;a=new CKEDITOR.dom.element("div");a.addClass("cke_notification");a.addClass(this._getClass());a.setAttributes({id:this.id,role:"alert","aria-label":this.type});"progress"==this.type&&a.append(this._createProgressElement());c=new CKEDITOR.dom.element("p"); +c.addClass("cke_notification_message");c.setHtml(this.message);a.append(c);c=CKEDITOR.dom.element.createFromHtml('<a class="cke_notification_close" href="javascript:void(0)" title="'+d+'" role="button" tabindex="-1"><span class="cke_label">X</span></a>');a.append(c);c.on("click",function(){b.editor.focus();b.hide()});return a},_getClass:function(){return"progress"==this.type?"cke_notification_info":"cke_notification_"+this.type},_createProgressElement:function(){var b=new CKEDITOR.dom.element("span"); +b.addClass("cke_notification_progress");b.setStyle("width",this._getPercentageProgress());return b},_getPercentageProgress:function(){return Math.round(100*(this.progress||0))+"%"},_hideAfterTimeout:function(){var b=this,a;this._hideTimeoutId&&clearTimeout(this._hideTimeoutId);if("number"==typeof this.duration)a=this.duration;else if("info"==this.type||"success"==this.type)a="number"==typeof this.editor.config.notification_duration?this.editor.config.notification_duration:5E3;a&&(b._hideTimeoutId= +setTimeout(function(){b.hide()},a))}};function Area(b){var a=this;this.editor=b;this.notifications=[];this.element=this._createElement();this._uiBuffer=CKEDITOR.tools.eventsBuffer(10,this._layout,this);this._changeBuffer=CKEDITOR.tools.eventsBuffer(500,this._layout,this);b.on("destroy",function(){a._removeListeners();a.element.remove()})} +Area.prototype={add:function(b){this.notifications.push(b);this.element.append(b.element);1==this.element.getChildCount()&&(CKEDITOR.document.getBody().append(this.element),this._attachListeners());this._layout()},remove:function(b){var a=CKEDITOR.tools.indexOf(this.notifications,b);0>a||(this.notifications.splice(a,1),b.element.remove(),this.element.getChildCount()||(this._removeListeners(),this.element.remove()))},_createElement:function(){var b=this.editor,a=b.config,c=new CKEDITOR.dom.element("div"); +c.addClass("cke_notifications_area");c.setAttribute("id","cke_notifications_area_"+b.name);c.setStyle("z-index",a.baseFloatZIndex-2);return c},_attachListeners:function(){var b=CKEDITOR.document.getWindow(),a=this.editor;b.on("scroll",this._uiBuffer.input);b.on("resize",this._uiBuffer.input);a.on("change",this._changeBuffer.input);a.on("floatingSpaceLayout",this._layout,this,null,20);a.on("blur",this._layout,this,null,20)},_removeListeners:function(){var b=CKEDITOR.document.getWindow(),a=this.editor; +b.removeListener("scroll",this._uiBuffer.input);b.removeListener("resize",this._uiBuffer.input);a.removeListener("change",this._changeBuffer.input);a.removeListener("floatingSpaceLayout",this._layout);a.removeListener("blur",this._layout)},_layout:function(){function b(){a.setStyle("left",i(l+d.width-f-h))}var a=this.element,c=this.editor,d=c.ui.contentsElement.getClientRect(),e=c.ui.contentsElement.getDocumentPosition(),c=c.ui.space("top"),g=c.getClientRect(),k=a.getClientRect(),j,f=this._notificationWidth, +h=this._notificationMargin;j=CKEDITOR.document.getWindow();var m=j.getScrollPosition(),n=j.getViewPaneSize(),o=CKEDITOR.document.getBody(),p=o.getDocumentPosition(),i=CKEDITOR.tools.cssLength;if(!f||!h)j=this.element.getChild(0),f=this._notificationWidth=j.getClientRect().width,h=this._notificationMargin=parseInt(j.getComputedStyle("margin-left"),10)+parseInt(j.getComputedStyle("margin-right"),10);c.isVisible()&&g.bottom>d.top&&g.bottom<d.bottom-k.height?a.setStyles({position:"fixed",top:i(g.bottom)}): +0<d.top?a.setStyles({position:"absolute",top:i(e.y)}):e.y+d.height-k.height>m.y?a.setStyles({position:"fixed",top:0}):a.setStyles({position:"absolute",top:i(e.y+d.height-k.height)});var l="fixed"==a.getStyle("position")?d.left:"static"!=o.getComputedStyle("position")?e.x-p.x:e.x;d.width<f+h?e.x+f+h>m.x+n.width?b():a.setStyle("left",i(l)):e.x+f+h>m.x+n.width?a.setStyle("left",i(l)):e.x+d.width/2+f/2+h>m.x+n.width?a.setStyle("left",i(l-e.x+m.x+n.width-f-h)):0>d.left+d.width-f-h?b():0>d.left+d.width/ +2-f/2?a.setStyle("left",i(l-e.x+m.x)):a.setStyle("left",i(l+d.width/2-f/2-h/2))}};CKEDITOR.plugins.notification=Notification; \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/notificationaggregator/plugin.js b/static/ckeditor/ckeditor/plugins/notificationaggregator/plugin.js new file mode 100644 index 0000000000..2e0ff6c6d6 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/notificationaggregator/plugin.js @@ -0,0 +1,9 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){function e(a,b,c){this.editor=a;this.notification=null;this._message=new CKEDITOR.template(b);this._singularMessage=c?new CKEDITOR.template(c):null;this._tasks=[];this._doneTasks=this._doneWeights=this._totalWeights=0}function d(a){this._weight=a||1;this._doneWeight=0;this._isCanceled=!1}CKEDITOR.plugins.add("notificationaggregator",{requires:"notification"});e.prototype={createTask:function(a){var a=a||{},b=!this.notification,c;b&&(this.notification=this._createNotification());c=this._addTask(a); +c.on("updated",this._onTaskUpdate,this);c.on("done",this._onTaskDone,this);c.on("canceled",function(){this._removeTask(c)},this);this.update();b&&this.notification.show();return c},update:function(){this._updateNotification();this.isFinished()&&this.fire("finished")},getPercentage:function(){return 0===this.getTaskCount()?1:this._doneWeights/this._totalWeights},isFinished:function(){return this.getDoneTaskCount()===this.getTaskCount()},getTaskCount:function(){return this._tasks.length},getDoneTaskCount:function(){return this._doneTasks}, +_updateNotification:function(){this.notification.update({message:this._getNotificationMessage(),progress:this.getPercentage()})},_getNotificationMessage:function(){var a=this.getTaskCount(),b={current:this.getDoneTaskCount(),max:a,percentage:Math.round(100*this.getPercentage())};return(1==a&&this._singularMessage?this._singularMessage:this._message).output(b)},_createNotification:function(){return new CKEDITOR.plugins.notification(this.editor,{type:"progress"})},_addTask:function(a){a=new d(a.weight); +this._tasks.push(a);this._totalWeights+=a._weight;return a},_removeTask:function(a){var b=CKEDITOR.tools.indexOf(this._tasks,a);-1!==b&&(a._doneWeight&&(this._doneWeights-=a._doneWeight),this._totalWeights-=a._weight,this._tasks.splice(b,1),this.update())},_onTaskUpdate:function(a){this._doneWeights+=a.data;this.update()},_onTaskDone:function(){this._doneTasks+=1;this.update()}};CKEDITOR.event.implementOn(e.prototype);d.prototype={done:function(){this.update(this._weight)},update:function(a){if(!this.isDone()&& +!this.isCanceled()){var a=Math.min(this._weight,a),b=a-this._doneWeight;this._doneWeight=a;this.fire("updated",b);this.isDone()&&this.fire("done")}},cancel:function(){!this.isDone()&&!this.isCanceled()&&(this._isCanceled=!0,this.fire("canceled"))},isDone:function(){return this._weight===this._doneWeight},isCanceled:function(){return this._isCanceled}};CKEDITOR.event.implementOn(d.prototype);CKEDITOR.plugins.notificationAggregator=e;CKEDITOR.plugins.notificationAggregator.task=d})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/pagebreak/images/pagebreak.gif b/static/ckeditor/ckeditor/plugins/pagebreak/images/pagebreak.gif new file mode 100644 index 0000000000..a27b168498 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/pagebreak/images/pagebreak.gif differ diff --git a/static/ckeditor/ckeditor/plugins/pastefromgdocs/filter/default.js b/static/ckeditor/ckeditor/plugins/pastefromgdocs/filter/default.js new file mode 100644 index 0000000000..5b959b8228 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/pastefromgdocs/filter/default.js @@ -0,0 +1,8 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +(function(){function g(b){return""===b?!1:b}function h(b){if(!/(o|u)l/i.test(b.parent.name))return b;d.elements.replaceWithChildren(b);return!1}function k(b){function d(a,f){var b,c;if(a&&"tr"===a.name){b=a.children;for(c=0;c<f.length&&b[c];c++)b[c].attributes.width=f[c];d(a.next,f)}}var c=b.parent;b=function(a){return CKEDITOR.tools.array.map(a,function(a){return Number(a.attributes.width)})}(b.children);var a=function(a){return CKEDITOR.tools.array.reduce(a,function(a,b){return a+b},0)}(b);c.attributes.width= +a;d(function(a){return(a=CKEDITOR.tools.array.find(a.children,function(a){return a.name&&("tr"===a.name||"tbody"===a.name)}))&&a.name&&"tbody"===a.name?a.children[0]:a}(c),b)}var e=CKEDITOR.plugins.pastetools,d=e.filters.common,c=d.styles;CKEDITOR.plugins.pastetools.filters.gdocs={rules:function(b,e,l){return{elementNames:[[/^meta/,""]],comment:function(){return!1},attributes:{id:function(a){return!/^docs\-internal\-guid\-/.test(a)},dir:function(a){return"ltr"===a?!1:a},style:function(a,b){return g(c.normalizedStyles(b, +e))},"class":function(a){return g(a.replace(/kix-line-break/ig,""))}},elements:{div:function(a){var b=1===a.children.length,c="table"===a.children[0].name;"div"===a.name&&b&&c&&delete a.attributes.align},colgroup:k,span:function(a){c.createStyleStack(a,l,e,/vertical-align|white-space|font-variant/);var b=/vertical-align:\s*sub/,d=a.attributes.style;/vertical-align:\s*super/.test(d)?a.name="sup":b.test(d)&&(a.name="sub");a.attributes.style=d.replace(/vertical-align\s*.+?;?/,"")},b:function(a){d.elements.replaceWithChildren(a); +return!1},p:function(a){if(a.parent&&"li"===a.parent.name)return d.elements.replaceWithChildren(a),!1},ul:function(a){c.pushStylesLower(a);return h(a)},ol:function(a){c.pushStylesLower(a);return h(a)},li:function(a){c.pushStylesLower(a);var b=a.children,e=/(o|u)l/i;1===b.length&&e.test(b[0].name)&&(d.elements.replaceWithChildren(a),a=!1);return a}}}}};CKEDITOR.pasteFilters.gdocs=e.createFilter({rules:[d.rules,CKEDITOR.plugins.pastetools.filters.gdocs.rules]})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/pastefromlibreoffice/filter/default.js b/static/ckeditor/ckeditor/plugins/pastefromlibreoffice/filter/default.js new file mode 100644 index 0000000000..f3c24b7826 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/pastefromlibreoffice/filter/default.js @@ -0,0 +1,11 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +(function(){function k(b,c){if(!(b.previous&&g(b.previous)&&b.getFirst().children.length&&1===b.children.length&&g(b.getFirst().getFirst())))return!1;for(var d=l(b.previous),a=0,f=d,r=q();f=f.getAscendant(r);)a++;return(a=m(b,a))?(d.add(a),a.filterChildren(c),!0):!1}function l(b){var c=b.children[b.children.length-1];return g(c)||"li"===c.name?l(c):b}function q(){var b=!1;return function(c){return b?!1:g(c)||"li"===c.name?g(c):(b=!0,!1)}}function m(b,c){return c?m(b.getFirst().getFirst(),--c):b}function g(b){return"ol"=== +b.name||"ul"===b.name}function h(){return!1}var n=CKEDITOR.plugins.pastetools,p=n.filters.common,e=p.styles;CKEDITOR.plugins.pastetools.filters.libreoffice={rules:function(b,c,d){return{root:function(a){a.filterChildren(d)},comment:function(){return!1},elementNames:[[/^head$/i,""],[/^meta$/i,""],[/^strike$/i,"s"]],elements:{"!doctype":function(a){a.replaceWithChildren()},span:function(a){a.attributes.style&&(a.attributes.style=e.normalizedStyles(a,c),e.createStyleStack(a,d,c));CKEDITOR.tools.object.entries(a.attributes).length|| +a.replaceWithChildren()},p:function(a){var f=CKEDITOR.tools.parseCssText(a.attributes.style);if(c.plugins.pagebreak&&("always"===f["page-break-before"]||"page"===f["break-before"])){var b=CKEDITOR.plugins.pagebreak.createElement(c),b=CKEDITOR.htmlParser.fragment.fromHtml(b.getOuterHtml()).children[0];b.insertBefore(a)}a.attributes.style=CKEDITOR.tools.writeCssText(f);a.filterChildren(d);e.createStyleStack(a,d,c)},div:function(a){e.createStyleStack(a,d,c)},a:function(a){if(a.attributes.style){var c= +a.attributes;a=CKEDITOR.tools.parseCssText(a.attributes.style);"#000080"===a.color&&delete a.color;"underline"===a["text-decoration"]&&delete a["text-decoration"];a=CKEDITOR.tools.writeCssText(a);c.style=a}},h1:function(a){e.createStyleStack(a,d,c)},h2:function(a){e.createStyleStack(a,d,c)},h3:function(a){e.createStyleStack(a,d,c)},h4:function(a){e.createStyleStack(a,d,c)},h5:function(a){e.createStyleStack(a,d,c)},h6:function(a){e.createStyleStack(a,d,c)},pre:function(a){e.createStyleStack(a,d,c)}, +font:function(a){var c;c="a"===a.parent.name&&"#000080"===a.attributes.color?!0:1!==a.parent.children.length||"sup"!==a.parent.name&&"sub"!==a.parent.name||"2"!==a.attributes.size?!1:!0;c&&a.replaceWithChildren();c=CKEDITOR.tools.parseCssText(a.attributes.style);var b=a.getFirst();a.attributes.size&&b&&b.type===CKEDITOR.NODE_ELEMENT&&/font-size/.test(b.attributes.style)&&a.replaceWithChildren();c["font-size"]&&(delete a.attributes.size,a.name="span",b&&b.type===CKEDITOR.NODE_ELEMENT&&b.attributes.size&& +b.replaceWithChildren())},ul:function(a){if(k(a,d))return!1},ol:function(a){if(k(a,d))return!1},img:function(a){if(!a.attributes.src)return!1},table:function(a){var c=a.attributes;a=a.attributes.style;var b=CKEDITOR.tools.parseCssText(a);b["border-collapse"]||(b["border-collapse"]="collapse",a=CKEDITOR.tools.writeCssText(b));c.style=a}},attributes:{style:function(a,b){return e.normalizedStyles(b,c)||!1},align:function(a,b){if("img"!==b.name){var c=CKEDITOR.tools.parseCssText(b.attributes.style);c["text-align"]= +b.attributes.align;b.attributes.style=CKEDITOR.tools.writeCssText(c);return!1}},cellspacing:h,cellpadding:h,border:h}}}};CKEDITOR.pasteFilters.libreoffice=n.createFilter({rules:[p.rules,CKEDITOR.plugins.pastetools.filters.libreoffice.rules]})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/pastefromword/filter/default.js b/static/ckeditor/ckeditor/plugins/pastefromword/filter/default.js new file mode 100644 index 0000000000..2fcf7e06b9 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/pastefromword/filter/default.js @@ -0,0 +1,42 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +(function(){function r(){return!1}var n=CKEDITOR.tools,B=CKEDITOR.plugins.pastetools,t=B.filters.common,k=t.styles,C=t.createAttributeStack,z=t.lists.getElementIndentation,D=["o:p","xml","script","meta","link"],E="v:arc v:curve v:line v:oval v:polyline v:rect v:roundrect v:group".split(" "),A={},y=0,q={},g,p;CKEDITOR.plugins.pastetools.filters.word=q;CKEDITOR.plugins.pastefromword=q;q.rules=function(c,b,d){function e(a){(a.attributes["o:gfxdata"]||"v:group"===a.parent.name)&&l.push(a.attributes.id)} +var f=Boolean(c.match(/mso-list:\s*l\d+\s+level\d+\s+lfo\d+/)),l=[],w={root:function(a){a.filterChildren(d);CKEDITOR.plugins.pastefromword.lists.cleanup(g.createLists(a))},elementNames:[[/^\?xml:namespace$/,""],[/^v:shapetype/,""],[new RegExp(D.join("|")),""]],elements:{a:function(a){if(a.attributes.name){if("_GoBack"==a.attributes.name){delete a.name;return}if(a.attributes.name.match(/^OLE_LINK\d+$/)){delete a.name;return}}if(a.attributes.href&&a.attributes.href.match(/#.+$/)){var b=a.attributes.href.match(/#(.+)$/)[1]; +A[b]=a}a.attributes.name&&A[a.attributes.name]&&(a=A[a.attributes.name],a.attributes.href=a.attributes.href.replace(/.*#(.*)$/,"#$1"))},div:function(a){if(b.plugins.pagebreak&&a.attributes["data-cke-pagebreak"])return a;k.createStyleStack(a,d,b)},img:function(a){if(a.parent&&a.parent.attributes){var b=a.parent.attributes;(b=b.style||b.STYLE)&&b.match(/mso\-list:\s?Ignore/)&&(a.attributes["cke-ignored"]=!0)}k.mapCommonStyles(a);a.attributes.src&&a.attributes.src.match(/^file:\/\//)&&a.attributes.alt&& +a.attributes.alt.match(/^https?:\/\//)&&(a.attributes.src=a.attributes.alt);a=a.attributes["v:shapes"]?a.attributes["v:shapes"].split(" "):[];b=CKEDITOR.tools.array.every(a,function(a){return-1<l.indexOf(a)});if(a.length&&b)return!1},p:function(a){a.filterChildren(d);if(a.attributes.style&&a.attributes.style.match(/display:\s*none/i))return!1;if(g.thisIsAListItem(b,a))p.isEdgeListItem(b,a)&&p.cleanupEdgeListItem(a),g.convertToFakeListItem(b,a),n.array.reduce(a.children,function(a,b){"p"===b.name&& +(0<a&&(new CKEDITOR.htmlParser.element("br")).insertBefore(b),b.replaceWithChildren(),a+=1);return a},0);else{var c=a.getAscendant(function(a){return"ul"==a.name||"ol"==a.name}),f=n.parseCssText(a.attributes.style);c&&!c.attributes["cke-list-level"]&&f["mso-list"]&&f["mso-list"].match(/level/)&&(c.attributes["cke-list-level"]=f["mso-list"].match(/level(\d+)/)[1]);b.config.enterMode==CKEDITOR.ENTER_BR&&(delete a.name,a.add(new CKEDITOR.htmlParser.element("br")))}k.createStyleStack(a,d,b)},pre:function(a){g.thisIsAListItem(b, +a)&&g.convertToFakeListItem(b,a);k.createStyleStack(a,d,b)},h1:function(a){g.thisIsAListItem(b,a)&&g.convertToFakeListItem(b,a);k.createStyleStack(a,d,b)},h2:function(a){g.thisIsAListItem(b,a)&&g.convertToFakeListItem(b,a);k.createStyleStack(a,d,b)},h3:function(a){g.thisIsAListItem(b,a)&&g.convertToFakeListItem(b,a);k.createStyleStack(a,d,b)},h4:function(a){g.thisIsAListItem(b,a)&&g.convertToFakeListItem(b,a);k.createStyleStack(a,d,b)},h5:function(a){g.thisIsAListItem(b,a)&&g.convertToFakeListItem(b, +a);k.createStyleStack(a,d,b)},h6:function(a){g.thisIsAListItem(b,a)&&g.convertToFakeListItem(b,a);k.createStyleStack(a,d,b)},font:function(a){if(a.getHtml().match(/^\s*$/))return a.parent.type===CKEDITOR.NODE_ELEMENT&&(new CKEDITOR.htmlParser.text(" ")).insertAfter(a),!1;b&&!0===b.config.pasteFromWordRemoveFontStyles&&a.attributes.size&&delete a.attributes.size;CKEDITOR.dtd.tr[a.parent.name]&&CKEDITOR.tools.arrayCompare(CKEDITOR.tools.object.keys(a.attributes),["class","style"])?k.createStyleStack(a, +d,b):C(a,d)},ul:function(a){if(f)return"li"==a.parent.name&&0===n.indexOf(a.parent.children,a)&&k.setStyle(a.parent,"list-style-type","none"),g.dissolveList(a),!1},li:function(a){p.correctLevelShift(a);f&&(a.attributes.style=k.normalizedStyles(a,b),k.pushStylesLower(a))},ol:function(a){if(f)return"li"==a.parent.name&&0===n.indexOf(a.parent.children,a)&&k.setStyle(a.parent,"list-style-type","none"),g.dissolveList(a),!1},span:function(a){a.filterChildren(d);a.attributes.style=k.normalizedStyles(a,b); +if(!a.attributes.style||a.attributes.style.match(/^mso\-bookmark:OLE_LINK\d+$/)||a.getHtml().match(/^(\s| )+$/))return t.elements.replaceWithChildren(a),!1;a.attributes.style.match(/FONT-FAMILY:\s*Symbol/i)&&a.forEach(function(a){a.value=a.value.replace(/ /g,"")},CKEDITOR.NODE_TEXT,!0);k.createStyleStack(a,d,b)},"v:imagedata":r,"v:shape":function(a){var b=!1;if(null===a.getFirst("v:imagedata"))e(a);else{a.parent.find(function(c){"img"==c.name&&c.attributes&&c.attributes["v:shapes"]==a.attributes.id&& +(b=!0)},!0);if(b)return!1;var c="";"v:group"===a.parent.name?e(a):(a.forEach(function(a){a.attributes&&a.attributes.src&&(c=a.attributes.src)},CKEDITOR.NODE_ELEMENT,!0),a.filterChildren(d),a.name="img",a.attributes.src=a.attributes.src||c,delete a.attributes.type)}},style:function(){return!1},object:function(a){return!(!a.attributes||!a.attributes.data)},br:function(a){if(b.plugins.pagebreak&&(a=n.parseCssText(a.attributes.style,!0),"always"===a["page-break-before"]||"page"===a["break-before"]))return a= +CKEDITOR.plugins.pagebreak.createElement(b),CKEDITOR.htmlParser.fragment.fromHtml(a.getOuterHtml()).children[0]}},attributes:{style:function(a,c){return k.normalizedStyles(c,b)||!1},"class":function(a){a=a.replace(/(el\d+)|(font\d+)|msonormal|msolistparagraph\w*/ig,"");return""===a?!1:a},cellspacing:r,cellpadding:r,border:r,"v:shapes":r,"o:spid":r},comment:function(a){a.match(/\[if.* supportFields.*\]/)&&y++;"[endif]"==a&&(y=0<y?y-1:0);return!1},text:function(a,b){if(y)return"";var c=b.parent&&b.parent.parent; +return c&&c.attributes&&c.attributes.style&&c.attributes.style.match(/mso-list:\s*ignore/i)?a.replace(/ /g," "):a}};n.array.forEach(E,function(a){w.elements[a]=e});return w};q.lists={thisIsAListItem:function(c,b){return p.isEdgeListItem(c,b)||b.attributes.style&&b.attributes.style.match(/mso\-list:\s?l\d/)&&"li"!==b.parent.name||b.attributes["cke-dissolved"]||b.getHtml().match(/<!\-\-\[if !supportLists]\-\->/)?!0:!1},convertToFakeListItem:function(c,b){p.isDegenerateListItem(c,b)&&p.assignListLevels(c, +b);this.getListItemInfo(b);if(!b.attributes["cke-dissolved"]){var d;b.forEach(function(b){!d&&"img"==b.name&&b.attributes["cke-ignored"]&&"*"==b.attributes.alt&&(d="·",b.remove())},CKEDITOR.NODE_ELEMENT);b.forEach(function(b){d||b.value.match(/^ /)||(d=b.value)},CKEDITOR.NODE_TEXT);if("undefined"==typeof d)return;b.attributes["cke-symbol"]=d.replace(/(?: | ).*$/,"");g.removeSymbolText(b)}var e=b.attributes&&n.parseCssText(b.attributes.style);if(e["margin-left"]){var f=e["margin-left"],l=b.attributes["cke-list-level"]; +(f=Math.max(CKEDITOR.tools.convertToPx(f)-40*l,0))?e["margin-left"]=f+"px":delete e["margin-left"];b.attributes.style=CKEDITOR.tools.writeCssText(e)}b.name="cke:li"},convertToRealListItems:function(c){var b=[];c.forEach(function(c){"cke:li"==c.name&&(c.name="li",b.push(c))},CKEDITOR.NODE_ELEMENT,!1);return b},removeSymbolText:function(c){var b=c.attributes["cke-symbol"],d=c.findOne(function(c){return c.value&&-1<c.value.indexOf(b)},!0),e;d&&(d.value=d.value.replace(b,""),e=d.parent,e.getHtml().match(/^(\s| )*$/)&& +e!==c?e.remove():d.value||d.remove())},setListSymbol:function(c,b,d){d=d||1;var e=n.parseCssText(c.attributes.style);if("ol"==c.name){if(c.attributes.type||e["list-style-type"])return;var f={"[ivx]":"lower-roman","[IVX]":"upper-roman","[a-z]":"lower-alpha","[A-Z]":"upper-alpha","\\d":"decimal"},l;for(l in f)if(g.getSubsectionSymbol(b).match(new RegExp(l))){e["list-style-type"]=f[l];break}c.attributes["cke-list-style-type"]=e["list-style-type"]}else f={"·":"disc",o:"circle","§":"square"},!e["list-style-type"]&& +f[b]&&(e["list-style-type"]=f[b]);g.setListSymbol.removeRedundancies(e,d);(c.attributes.style=CKEDITOR.tools.writeCssText(e))||delete c.attributes.style},setListStart:function(c){for(var b=[],d=0,e=0;e<c.children.length;e++)b.push(c.children[e].attributes["cke-symbol"]||"");b[0]||d++;switch(c.attributes["cke-list-style-type"]){case "lower-roman":case "upper-roman":c.attributes.start=g.toArabic(g.getSubsectionSymbol(b[d]))-d;break;case "lower-alpha":case "upper-alpha":c.attributes.start=g.getSubsectionSymbol(b[d]).replace(/\W/g, +"").toLowerCase().charCodeAt(0)-96-d;break;case "decimal":c.attributes.start=parseInt(g.getSubsectionSymbol(b[d]),10)-d||1}"1"==c.attributes.start&&delete c.attributes.start;delete c.attributes["cke-list-style-type"]},numbering:{toNumber:function(c,b){function d(b){b=b.toUpperCase();for(var c=1,d=1;0<b.length;d*=26)c+="ABCDEFGHIJKLMNOPQRSTUVWXYZ".indexOf(b.charAt(b.length-1))*d,b=b.substr(0,b.length-1);return c}function e(b){var c=[[1E3,"M"],[900,"CM"],[500,"D"],[400,"CD"],[100,"C"],[90,"XC"],[50, +"L"],[40,"XL"],[10,"X"],[9,"IX"],[5,"V"],[4,"IV"],[1,"I"]];b=b.toUpperCase();for(var d=c.length,a=0,e=0;e<d;++e)for(var g=c[e],u=g[1].length;b.substr(0,u)==g[1];b=b.substr(u))a+=g[0];return a}return"decimal"==b?Number(c):"upper-roman"==b||"lower-roman"==b?e(c.toUpperCase()):"lower-alpha"==b||"upper-alpha"==b?d(c):1},getStyle:function(c){c=c.slice(0,1);var b={i:"lower-roman",v:"lower-roman",x:"lower-roman",l:"lower-roman",m:"lower-roman",I:"upper-roman",V:"upper-roman",X:"upper-roman",L:"upper-roman", +M:"upper-roman"}[c];b||(b="decimal",c.match(/[a-z]/)&&(b="lower-alpha"),c.match(/[A-Z]/)&&(b="upper-alpha"));return b}},getSubsectionSymbol:function(c){return(c.match(/([\da-zA-Z]+).?$/)||["placeholder","1"])[1]},setListDir:function(c){var b=0,d=0;c.forEach(function(c){"li"==c.name&&("rtl"==(c.attributes.dir||c.attributes.DIR||"").toLowerCase()?d++:b++)},CKEDITOR.ELEMENT_NODE);d>b&&(c.attributes.dir="rtl")},createList:function(c){return(c.attributes["cke-symbol"].match(/([\da-np-zA-NP-Z]).?/)||[])[1]? +new CKEDITOR.htmlParser.element("ol"):new CKEDITOR.htmlParser.element("ul")},createLists:function(c){function b(b){return CKEDITOR.tools.array.reduce(b,function(b,a){if(a.attributes&&a.attributes.style)var c=CKEDITOR.tools.parseCssText(a.attributes.style)["margin-left"];return c?b+parseInt(c,10):b},0)}var d,e,f,l=g.convertToRealListItems(c);if(0===l.length)return[];var k=g.groupLists(l);for(c=0;c<k.length;c++){var a=k[c],h=a[0];for(f=0;f<a.length;f++)if(1==a[f].attributes["cke-list-level"]){h=a[f]; +break}var h=[g.createList(h)],m=h[0],u=[h[0]];m.insertBefore(a[0]);for(f=0;f<a.length;f++){d=a[f];for(e=d.attributes["cke-list-level"];e>h.length;){var v=g.createList(d),x=m.children;0<x.length?x[x.length-1].add(v):(x=new CKEDITOR.htmlParser.element("li",{style:"list-style-type:none"}),x.add(v),m.add(x));h.push(v);u.push(v);m=v;e==h.length&&g.setListSymbol(v,d.attributes["cke-symbol"],e)}for(;e<h.length;)h.pop(),m=h[h.length-1],e==h.length&&g.setListSymbol(m,d.attributes["cke-symbol"],e);d.remove(); +m.add(d)}h[0].children.length&&(f=h[0].children[0].attributes["cke-symbol"],!f&&1<h[0].children.length&&(f=h[0].children[1].attributes["cke-symbol"]),f&&g.setListSymbol(h[0],f));for(f=0;f<u.length;f++)g.setListStart(u[f]);for(f=0;f<a.length;f++)this.determineListItemValue(a[f])}CKEDITOR.tools.array.forEach(l,function(a){for(var c=[],d=a.parent;d;)"li"===d.name&&c.push(d),d=d.parent;var c=b(c),e;c&&(a.attributes=a.attributes||{},d=CKEDITOR.tools.parseCssText(a.attributes.style),e=d["margin-left"]|| +0,(e=Math.max(parseInt(e,10)-c,0))?d["margin-left"]=e+"px":delete d["margin-left"],a.attributes.style=CKEDITOR.tools.writeCssText(d))});return l},cleanup:function(c){var b=["cke-list-level","cke-symbol","cke-list-id","cke-indentation","cke-dissolved"],d,e;for(d=0;d<c.length;d++)for(e=0;e<b.length;e++)delete c[d].attributes[b[e]]},determineListItemValue:function(c){if("ol"===c.parent.name){var b=this.calculateValue(c),d=c.attributes["cke-symbol"].match(/[a-z0-9]+/gi),e;d&&(d=d[d.length-1],e=c.parent.attributes["cke-list-style-type"]|| +this.numbering.getStyle(d),d=this.numbering.toNumber(d,e),d!==b&&(c.attributes.value=d))}},calculateValue:function(c){if(!c.parent)return 1;var b=c.parent;c=c.getIndex();var d=null,e,f,g;for(g=c;0<=g&&null===d;g--)f=b.children[g],f.attributes&&void 0!==f.attributes.value&&(e=g,d=parseInt(f.attributes.value,10));null===d&&(d=void 0!==b.attributes.start?parseInt(b.attributes.start,10):1,e=0);return d+(c-e)},dissolveList:function(c){function b(a){return 50<=a?"l"+b(a-50):40<=a?"xl"+b(a-40):10<=a?"x"+ +b(a-10):9==a?"ix":5<=a?"v"+b(a-5):4==a?"iv":1<=a?"i"+b(a-1):""}function d(a,b){function c(b,d){return b&&b.parent?a(b.parent)?c(b.parent,d+1):c(b.parent,d):d}return c(b,0)}var e=function(b){return function(a){return a.name==b}},f=function(b){return e("ul")(b)||e("ol")(b)},g=CKEDITOR.tools.array,w=[],a,h;c.forEach(function(b){w.push(b)},CKEDITOR.NODE_ELEMENT,!1);a=g.filter(w,e("li"));var m=g.filter(w,f);g.forEach(m,function(a){var c=a.attributes.type,h=parseInt(a.attributes.start,10)||1,m=d(f,a)+1; +c||(c=n.parseCssText(a.attributes.style)["list-style-type"]);g.forEach(g.filter(a.children,e("li")),function(d,e){var f;switch(c){case "disc":f="·";break;case "circle":f="o";break;case "square":f="§";break;case "1":case "decimal":f=h+e+".";break;case "a":case "lower-alpha":f=String.fromCharCode(97+h-1+e)+".";break;case "A":case "upper-alpha":f=String.fromCharCode(65+h-1+e)+".";break;case "i":case "lower-roman":f=b(h+e)+".";break;case "I":case "upper-roman":f=b(h+e).toUpperCase()+".";break;default:f= +"ul"==a.name?"·":h+e+"."}d.attributes["cke-symbol"]=f;d.attributes["cke-list-level"]=m})});a=g.reduce(a,function(b,a){var c=a.children[0];if(c&&c.name&&c.attributes.style&&c.attributes.style.match(/mso-list:/i)){k.pushStylesLower(a,{"list-style-type":!0,display:!0});var d=n.parseCssText(c.attributes.style,!0);k.setStyle(a,"mso-list",d["mso-list"],!0);k.setStyle(c,"mso-list","");delete a["cke-list-level"];(c=d.display?"display":d.DISPLAY?"DISPLAY":"")&&k.setStyle(a,"display",d[c],!0)}if(1===a.children.length&& +f(a.children[0]))return b;a.name="p";a.attributes["cke-dissolved"]=!0;b.push(a);return b},[]);for(h=a.length-1;0<=h;h--)a[h].insertAfter(c);for(h=m.length-1;0<=h;h--)delete m[h].name},groupLists:function(c){var b,d,e=[[c[0]]],f=e[0];d=c[0];d.attributes["cke-indentation"]=d.attributes["cke-indentation"]||z(d);for(b=1;b<c.length;b++){d=c[b];var l=c[b-1];d.attributes["cke-indentation"]=d.attributes["cke-indentation"]||z(d);d.previous!==l&&(g.chopDiscontinuousLists(f,e),e.push(f=[]));f.push(d)}g.chopDiscontinuousLists(f, +e);return e},chopDiscontinuousLists:function(c,b){for(var d={},e=[[]],f,l=0;l<c.length;l++){var k=d[c[l].attributes["cke-list-level"]],a=this.getListItemInfo(c[l]),h,m;k?(m=k.type.match(/alpha/)&&7==k.index?"alpha":m,m="o"==c[l].attributes["cke-symbol"]&&14==k.index?"alpha":m,h=g.getSymbolInfo(c[l].attributes["cke-symbol"],m),a=this.getListItemInfo(c[l]),(k.type!=h.type||f&&a.id!=f.id&&!this.isAListContinuation(c[l]))&&e.push([])):h=g.getSymbolInfo(c[l].attributes["cke-symbol"]);for(f=parseInt(c[l].attributes["cke-list-level"], +10)+1;20>f;f++)d[f]&&delete d[f];d[c[l].attributes["cke-list-level"]]=h;e[e.length-1].push(c[l]);f=a}[].splice.apply(b,[].concat([n.indexOf(b,c),1],e))},isAListContinuation:function(c){var b=c;do if((b=b.previous)&&b.type===CKEDITOR.NODE_ELEMENT){if(void 0===b.attributes["cke-list-level"])break;if(b.attributes["cke-list-level"]===c.attributes["cke-list-level"])return b.attributes["cke-list-id"]===c.attributes["cke-list-id"]}while(b);return!1},toArabic:function(c){return c.match(/[ivxl]/i)?c.match(/^l/i)? +50+g.toArabic(c.slice(1)):c.match(/^lx/i)?40+g.toArabic(c.slice(1)):c.match(/^x/i)?10+g.toArabic(c.slice(1)):c.match(/^ix/i)?9+g.toArabic(c.slice(2)):c.match(/^v/i)?5+g.toArabic(c.slice(1)):c.match(/^iv/i)?4+g.toArabic(c.slice(2)):c.match(/^i/i)?1+g.toArabic(c.slice(1)):g.toArabic(c.slice(1)):0},getSymbolInfo:function(c,b){var d=c.toUpperCase()==c?"upper-":"lower-",e={"·":["disc",-1],o:["circle",-2],"§":["square",-3]};if(c in e||b&&b.match(/(disc|circle|square)/))return{index:e[c][1],type:e[c][0]}; +if(c.match(/\d/))return{index:c?parseInt(g.getSubsectionSymbol(c),10):0,type:"decimal"};c=c.replace(/\W/g,"").toLowerCase();return!b&&c.match(/[ivxl]+/i)||b&&"alpha"!=b||"roman"==b?{index:g.toArabic(c),type:d+"roman"}:c.match(/[a-z]/i)?{index:c.charCodeAt(0)-97,type:d+"alpha"}:{index:-1,type:"disc"}},getListItemInfo:function(c){if(void 0!==c.attributes["cke-list-id"])return{id:c.attributes["cke-list-id"],level:c.attributes["cke-list-level"]};var b=n.parseCssText(c.attributes.style)["mso-list"],d= +{id:"0",level:"1"};b&&(b+=" ",d.level=b.match(/level(.+?)\s+/)[1],d.id=b.match(/l(\d+?)\s+/)[1]);c.attributes["cke-list-level"]=void 0!==c.attributes["cke-list-level"]?c.attributes["cke-list-level"]:d.level;c.attributes["cke-list-id"]=d.id;return d}};g=q.lists;q.heuristics={isEdgeListItem:function(c,b){if(!CKEDITOR.env.edge||!c.config.pasteFromWord_heuristicsEdgeList)return!1;var d="";b.forEach&&b.forEach(function(b){d+=b.value},CKEDITOR.NODE_TEXT);return d.match(/^(?: | )*\(?[a-zA-Z0-9]+?[\.\)](?: | ){2,}/)? +!0:p.isDegenerateListItem(c,b)},cleanupEdgeListItem:function(c){var b=!1;c.forEach(function(c){b||(c.value=c.value.replace(/^(?: |[\s])+/,""),c.value.length&&(b=!0))},CKEDITOR.NODE_TEXT)},isDegenerateListItem:function(c,b){return!!b.attributes["cke-list-level"]||b.attributes.style&&!b.attributes.style.match(/mso\-list/)&&!!b.find(function(c){if(c.type==CKEDITOR.NODE_ELEMENT&&b.name.match(/h\d/i)&&c.getHtml().match(/^[a-zA-Z0-9]+?[\.\)]$/))return!0;var e=n.parseCssText(c.attributes&&c.attributes.style, +!0);if(!e)return!1;var f=e["font-family"]||"";return(e.font||e["font-size"]||"").match(/7pt/i)&&!!c.previous||f.match(/symbol/i)},!0).length},assignListLevels:function(c,b){if(!b.attributes||void 0===b.attributes["cke-list-level"]){for(var d=[z(b)],e=[b],f=[],g=CKEDITOR.tools.array,k=g.map;b.next&&b.next.attributes&&!b.next.attributes["cke-list-level"]&&p.isDegenerateListItem(c,b.next);)b=b.next,d.push(z(b)),e.push(b);var a=k(d,function(a,b){return 0===b?0:a-d[b-1]}),h=this.guessIndentationStep(g.filter(d, +function(a){return 0!==a})),f=k(d,function(a){return Math.round(a/h)});-1!==g.indexOf(f,0)&&(f=k(f,function(a){return a+1}));g.forEach(e,function(a,b){a.attributes["cke-list-level"]=f[b]});return{indents:d,levels:f,diffs:a}}},guessIndentationStep:function(c){return c.length?Math.min.apply(null,c):null},correctLevelShift:function(c){if(this.isShifted(c)){var b=CKEDITOR.tools.array.filter(c.children,function(b){return"ul"==b.name||"ol"==b.name}),d=CKEDITOR.tools.array.reduce(b,function(b,c){return(c.children&& +1==c.children.length&&p.isShifted(c.children[0])?[c]:c.children).concat(b)},[]);CKEDITOR.tools.array.forEach(b,function(b){b.remove()});CKEDITOR.tools.array.forEach(d,function(b){c.add(b)});delete c.name}},isShifted:function(c){return"li"!==c.name?!1:0===CKEDITOR.tools.array.filter(c.children,function(b){return b.name&&("ul"==b.name||"ol"==b.name||"p"==b.name&&0===b.children.length)?!1:!0}).length}};p=q.heuristics;g.setListSymbol.removeRedundancies=function(c,b){(1===b&&"disc"===c["list-style-type"]|| +"decimal"===c["list-style-type"])&&delete c["list-style-type"]};CKEDITOR.cleanWord=CKEDITOR.pasteFilters.word=B.createFilter({rules:[t.rules,q.rules],additionalTransforms:function(c){CKEDITOR.plugins.clipboard.isCustomDataTypesSupported&&(c=t.styles.inliner.inline(c).getBody().getHtml());return c.replace(/<!\[/g,"\x3c!--[").replace(/\]>/g,"]--\x3e")}});CKEDITOR.config.pasteFromWord_heuristicsEdgeList=!0})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/pastetools/filter/common.js b/static/ckeditor/ckeditor/plugins/pastetools/filter/common.js new file mode 100644 index 0000000000..d4c9bc6869 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/pastetools/filter/common.js @@ -0,0 +1,24 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +(function(){function q(a,b,c){b+=c;for(var d=a[b],e=/[\s]/;d&&e.test(d);)b+=c,d=a[b];return d}function r(a){return/%$/.test(a)?a:a+"px"}function t(a){var b=a.margin?"margin":a.MARGIN?"MARGIN":!1,c,d;if(b){d=CKEDITOR.tools.style.parse.margin(a[b]);for(c in d)a["margin-"+c]=d[c];delete a[b]}}function u(a){var b="background-color:transparent;background:transparent;background-color:none;background:none;background-position:initial initial;background-repeat:initial initial;caret-color;font-family:-webkit-standard;font-variant-caps;letter-spacing:normal;orphans;widows;text-transform:none;word-spacing:0px;-webkit-text-size-adjust:auto;-webkit-text-stroke-width:0px;text-indent:0px;margin-bottom:0in".split(";"), +c=CKEDITOR.tools.parseCssText(a.attributes.style),d,e;for(d in c)e=d+":"+c[d],CKEDITOR.tools.array.some(b,function(a){return e.substring(0,a.length).toLowerCase()===a})&&delete c[d];c=CKEDITOR.tools.writeCssText(c);""!==c?a.attributes.style=c:delete a.attributes.style}function v(a){a=a.config.font_names;var b=[];if(!a||!a.length)return!1;b=CKEDITOR.tools.array.map(a.split(";"),function(a){return-1===a.indexOf("/")?a:a.split("/")[1]});return b.length?b:!1}function w(a,b){var c=a.split(",");return CKEDITOR.tools.array.find(b, +function(a){for(var e=0;e<c.length;e++)if(-1===a.indexOf(CKEDITOR.tools.trim(c[e])))return!1;return!0})||a}var g,m=CKEDITOR.tools,p={};CKEDITOR.plugins.pastetools.filters.common=p;p.rules=function(a,b,c){var d=v(b);return{elements:{"^":function(a){u(a);if(a.attributes.bgcolor){var b=CKEDITOR.tools.parseCssText(a.attributes.style);b["background-color"]||(b["background-color"]=a.attributes.bgcolor,a.attributes.style=CKEDITOR.tools.writeCssText(b))}},span:function(a){if(a.hasClass("Apple-converted-space"))return new CKEDITOR.htmlParser.text(" ")}, +table:function(a){a.filterChildren(c);var b=a.parent,f=b&&b.parent,d,h;if(b.name&&"div"===b.name&&b.attributes.align&&1===m.object.keys(b.attributes).length&&1===b.children.length){a.attributes.align=b.attributes.align;d=b.children.splice(0);a.remove();for(h=d.length-1;0<=h;h--)f.add(d[h],b.getIndex());b.remove()}g.convertStyleToPx(a)},tr:function(a){a.attributes={}},td:function(a){var d=a.getAscendant("table"),d=m.parseCssText(d.attributes.style,!0),f=d.background;f&&g.setStyle(a,"background",f, +!0);(d=d["background-color"])&&g.setStyle(a,"background-color",d,!0);var d=m.parseCssText(a.attributes.style,!0),f=d.border?CKEDITOR.tools.style.border.fromCssRule(d.border):{},f=m.style.border.splitCssValues(d,f),l=CKEDITOR.tools.clone(d),h;for(h in l)0==h.indexOf("border")&&delete l[h];a.attributes.style=CKEDITOR.tools.writeCssText(l);d.background&&(h=CKEDITOR.tools.style.parse.background(d.background),h.color&&(g.setStyle(a,"background-color",h.color,!0),g.setStyle(a,"background","")));for(var n in f)h= +d[n]?CKEDITOR.tools.style.border.fromCssRule(d[n]):f[n],"none"===h.style?g.setStyle(a,n,"none"):g.setStyle(a,n,h.toString());g.mapCommonStyles(a);g.convertStyleToPx(a);g.createStyleStack(a,c,b,/margin|text\-align|padding|list\-style\-type|width|height|border|white\-space|vertical\-align|background/i)},font:function(a){a.attributes.face&&d&&(a.attributes.face=w(a.attributes.face,d))}}}};p.styles={setStyle:function(a,b,c,d){var e=m.parseCssText(a.attributes.style);d&&e[b]||(""===c?delete e[b]:e[b]= +c,a.attributes.style=CKEDITOR.tools.writeCssText(e))},convertStyleToPx:function(a){var b=a.attributes.style;b&&(a.attributes.style=b.replace(/\d+(\.\d+)?pt/g,function(a){return CKEDITOR.tools.convertToPx(a)+"px"}))},mapStyles:function(a,b){for(var c in b)if(a.attributes[c]){if("function"===typeof b[c])b[c](a.attributes[c]);else g.setStyle(a,b[c],a.attributes[c]);delete a.attributes[c]}},mapCommonStyles:function(a){return g.mapStyles(a,{vAlign:function(b){g.setStyle(a,"vertical-align",b)},width:function(b){g.setStyle(a, +"width",r(b))},height:function(b){g.setStyle(a,"height",r(b))}})},normalizedStyles:function(a,b){var c="background-color:transparent border-image:none color:windowtext direction:ltr mso- visibility:visible div:border:none".split(" "),d="font-family font font-size color background-color line-height text-decoration".split(" "),e=function(){for(var a=[],b=0;b<arguments.length;b++)arguments[b]&&a.push(arguments[b]);return-1!==m.indexOf(c,a.join(":"))},k=!0===CKEDITOR.plugins.pastetools.getConfigValue(b, +"removeFontStyles"),f=m.parseCssText(a.attributes.style);"cke:li"==a.name&&(f["TEXT-INDENT"]&&f.MARGIN?(a.attributes["cke-indentation"]=p.lists.getElementIndentation(a),f.MARGIN=f.MARGIN.replace(/(([\w\.]+ ){3,3})[\d\.]+(\w+$)/,"$10$3")):delete f["TEXT-INDENT"],delete f["text-indent"]);for(var l=m.object.keys(f),h=0;h<l.length;h++){var n=l[h].toLowerCase(),g=f[l[h]],q=CKEDITOR.tools.indexOf;(k&&-1!==q(d,n.toLowerCase())||e(null,n,g)||e(null,n.replace(/\-.*$/,"-"))||e(null,n)||e(a.name,n,g)||e(a.name, +n.replace(/\-.*$/,"-"))||e(a.name,n)||e(g))&&delete f[l[h]]}var r=CKEDITOR.plugins.pastetools.getConfigValue(b,"keepZeroMargins");t(f);(function(){CKEDITOR.tools.array.forEach(["top","right","bottom","left"],function(a){a="margin-"+a;if(a in f){var b=CKEDITOR.tools.convertToPx(f[a]);b||r?f[a]=b?b+"px":0:delete f[a]}})})();return CKEDITOR.tools.writeCssText(f)},createStyleStack:function(a,b,c,d){var e=[];a.filterChildren(b);for(b=a.children.length-1;0<=b;b--)e.unshift(a.children[b]),a.children[b].remove(); +g.sortStyles(a);b=m.parseCssText(g.normalizedStyles(a,c));c=a;var k="span"===a.name,f;for(f in b)if(!f.match(d||/margin((?!-)|-left|-top|-bottom|-right)|text-indent|text-align|width|border|padding/i))if(k)k=!1;else{var l=new CKEDITOR.htmlParser.element("span");l.attributes.style=f+":"+b[f];c.add(l);c=l;delete b[f]}CKEDITOR.tools.isEmpty(b)?delete a.attributes.style:a.attributes.style=CKEDITOR.tools.writeCssText(b);for(b=0;b<e.length;b++)c.add(e[b])},sortStyles:function(a){for(var b=["border","border-bottom", +"font-size","background"],c=m.parseCssText(a.attributes.style),d=m.object.keys(c),e=[],k=[],f=0;f<d.length;f++)-1!==m.indexOf(b,d[f].toLowerCase())?e.push(d[f]):k.push(d[f]);e.sort(function(a,c){var d=m.indexOf(b,a.toLowerCase()),e=m.indexOf(b,c.toLowerCase());return d-e});d=[].concat(e,k);e={};for(f=0;f<d.length;f++)e[d[f]]=c[d[f]];a.attributes.style=CKEDITOR.tools.writeCssText(e)},pushStylesLower:function(a,b,c){if(!a.attributes.style||0===a.children.length)return!1;b=b||{};var d={"list-style-type":!0, +width:!0,height:!0,border:!0,"border-":!0},e=m.parseCssText(a.attributes.style),k;for(k in e)if(!(k.toLowerCase()in d||d[k.toLowerCase().replace(/\-.*$/,"-")]||k.toLowerCase()in b)){for(var f=!1,l=0;l<a.children.length;l++){var h=a.children[l];if(h.type===CKEDITOR.NODE_TEXT&&c){var n=new CKEDITOR.htmlParser.element("span");n.setHtml(h.value);h.replaceWith(n);h=n}h.type===CKEDITOR.NODE_ELEMENT&&(f=!0,g.setStyle(h,k,e[k]))}f&&delete e[k]}a.attributes.style=CKEDITOR.tools.writeCssText(e);return!0},inliner:{filtered:"break-before break-after break-inside page-break page-break-before page-break-after page-break-inside".split(" "), +parse:function(a){function b(a){var b=new CKEDITOR.dom.element("style"),c=new CKEDITOR.dom.element("iframe");c.hide();CKEDITOR.document.getBody().append(c);c.$.contentDocument.documentElement.appendChild(b.$);b.$.textContent=a;c.remove();return b.$.sheet}function c(a){var b=a.indexOf("{"),c=a.indexOf("}");return d(a.substring(b+1,c),!0)}var d=CKEDITOR.tools.parseCssText,e=g.inliner.filter,k=a.is?a.$.sheet:b(a);a=[];var f;if(k)for(k=k.cssRules,f=0;f<k.length;f++)k[f].type===window.CSSRule.STYLE_RULE&& +a.push({selector:k[f].selectorText,styles:e(c(k[f].cssText))});return a},filter:function(a){var b=g.inliner.filtered,c=m.array.indexOf,d={},e;for(e in a)-1===c(b,e)&&(d[e]=a[e]);return d},sort:function(a){return a.sort(function(a){var c=CKEDITOR.tools.array.map(a,function(a){return a.selector});return function(a,b){var k=-1!==(""+a.selector).indexOf(".")?1:0,k=(-1!==(""+b.selector).indexOf(".")?1:0)-k;return 0!==k?k:c.indexOf(b.selector)-c.indexOf(a.selector)}}(a))},inline:function(a){var b=g.inliner.parse, +c=g.inliner.sort,d=function(a){a=(new DOMParser).parseFromString(a,"text/html");return new CKEDITOR.dom.document(a)}(a);a=d.find("style");c=c(function(a){var c=[],d;for(d=0;d<a.count();d++)c=c.concat(b(a.getItem(d)));return c}(a));CKEDITOR.tools.array.forEach(c,function(a){var b=a.styles;a=d.find(a.selector);var c,g,h;t(b);for(h=0;h<a.count();h++)c=a.getItem(h),g=CKEDITOR.tools.parseCssText(c.getAttribute("style")),t(g),g=CKEDITOR.tools.extend({},g,b),c.setAttribute("style",CKEDITOR.tools.writeCssText(g))}); +return d}}};g=p.styles;p.lists={getElementIndentation:function(a){a=m.parseCssText(a.attributes.style);if(a.margin||a.MARGIN){a.margin=a.margin||a.MARGIN;var b={styles:{margin:a.margin}};CKEDITOR.filter.transformationsTools.splitMarginShorthand(b);a["margin-left"]=b.styles["margin-left"]}return parseInt(m.convertToPx(a["margin-left"]||"0px"),10)}};p.elements={replaceWithChildren:function(a){for(var b=a.children.length-1;0<=b;b--)a.children[b].insertAfter(a)}};p.createAttributeStack=function(a,b){var c, +d=[];a.filterChildren(b);for(c=a.children.length-1;0<=c;c--)d.unshift(a.children[c]),a.children[c].remove();c=a.attributes;var e=a,g=!0,f;for(f in c)if(g)g=!1;else{var l=new CKEDITOR.htmlParser.element(a.name);l.attributes[f]=c[f];e.add(l);e=l;delete c[f]}for(c=0;c<d.length;c++)e.add(d[c])};p.parseShorthandMargins=t;p.rtf={getGroups:function(a,b){for(var c=[],d,e=0;d=p.rtf.getGroup(a,b,{start:e});)e=d.end,c.push(d);return c},removeGroups:function(a,b){for(var c;c=p.rtf.getGroup(a,b);){var d=a.substring(0, +c.start);c=a.substring(c.end);a=d+c}return a},getGroup:function(a,b,c){var d=0;b=new RegExp("\\{\\\\"+b,"g");var e;c=CKEDITOR.tools.object.merge({start:0},c||{});b.lastIndex=c.start;c=b.exec(a);if(!c)return null;b=c.index;e=a[b];do{var g="{"===e&&"\\"!==q(a,b,-1)&&"\\"===q(a,b,1);e="}"===e&&"\\"!==q(a,b,-1)&&0<d;g?d++:e&&d--;e=a[++b]}while(e&&0<d);return{start:c.index,end:b,content:a.substring(c.index,b)}},extractGroupContent:function(a){var b;b=(b=a.match(/^\{\\(\w+)/))?b[1]:null;a=a.replace(/\}([^{\s]+)/g, +"} $1");a=p.rtf.removeGroups(a,"(?!"+b+")");a=CKEDITOR.tools.trim(a.replace(/^\{(\\[\w-]+\s*)+/g,""));return a.replace(/}$/,"")}}})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/pastetools/filter/image.js b/static/ckeditor/ckeditor/plugins/pastetools/filter/image.js new file mode 100644 index 0000000000..4844f829be --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/pastetools/filter/image.js @@ -0,0 +1,12 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +(function(){function u(a,c,b){c=l(c);var e,d;if(0===c.length)return a;e=CKEDITOR.tools.array.map(c,function(a){return h(a)},this);if(b.length!==e.length)return CKEDITOR.error("pastetools-failed-image-extraction",{rtf:c.length,html:b.length}),a;for(d=0;d<b.length;d++)if(0===b[d].indexOf("file://"))if(e[d]){var k=b[d].replace(/\\/g,"\\\\");a=a.replace(new RegExp("(\x3cimg [^\x3e]*src\x3d[\"']?)"+k),"$1"+e[d])}else CKEDITOR.error("pastetools-unsupported-image",{type:c[d].type,index:d});return a}function v(a, +c,b){var e=CKEDITOR.tools.array.unique(CKEDITOR.tools.array.filter(b,function(a){return a.match(/^blob:/i)}));b=CKEDITOR.tools.array.map(e,m);CKEDITOR.tools.promise.all(b).then(function(b){CKEDITOR.tools.array.forEach(b,function(b,c){if(b){var d=e[c],d=a.editable().find('img[src\x3d"'+d+'"]').toArray();CKEDITOR.tools.array.forEach(d,function(a){a.setAttribute("src",b);a.setAttribute("data-cke-saved-src",b)},this)}else CKEDITOR.error("pastetools-unsupported-image",{type:"blob",index:c})})});return c} +function l(a){function c(a){return"string"!==typeof a?-1:CKEDITOR.tools.array.indexOf(d,function(b){return b.id===a})}function b(a){var b=a.match(/\\blipuid (\w+)\}/);a=a.match(/\\bliptag(-?\d+)/);return b?b[1]:a?a[1]:null}var e=CKEDITOR.plugins.pastetools.filters.common.rtf,d=[];a=e.removeGroups(a,"(?:(?:header|footer)[lrf]?|nonshppict|shprslt)");a=e.getGroups(a,"pict");if(!a)return d;for(var k=0;k<a.length;k++){var g=a[k].content,h=b(g),n=r(g),f=c(h),p=-1!==f&&d[f].hex,l=p&&d[f].type===n,p=p&&d[f].type!== +n&&f===d.length-1,m=-1!==g.indexOf("\\defshp"),q=-1!==CKEDITOR.tools.array.indexOf(CKEDITOR.pasteFilters.image.supportedImageTypes,n);l?d.push(d[f]):p||m||(g={id:h,hex:q?e.extractGroupContent(g).replace(/\s/g,""):null,type:n},-1!==f?d.splice(f,1,g):d.push(g))}return d}function q(a){for(var c=/<img[^>]+src="([^"]+)[^>]+/g,b=[],e;e=c.exec(a);)b.push(e[1]);return b}function r(a){var c=CKEDITOR.tools.array.find(CKEDITOR.pasteFilters.image.recognizableImageTypes,function(b){return b.marker.test(a)});return c? +c.type:"unknown"}function h(a){var c=-1!==CKEDITOR.tools.array.indexOf(CKEDITOR.pasteFilters.image.supportedImageTypes,a.type),b=a.hex;if(!c)return null;"string"===typeof b&&(b=CKEDITOR.tools.convertHexStringToBytes(a.hex));return a.type?"data:"+a.type+";base64,"+CKEDITOR.tools.convertBytesToBase64(b):null}function m(a){return new CKEDITOR.tools.promise(function(c){CKEDITOR.ajax.load(a,function(a){a=new Uint8Array(a);var e=t(a);a=h({type:e,hex:a});c(a)},"arraybuffer")})}function t(a){a=a.subarray(0, +4);var c=CKEDITOR.tools.array.map(a,function(a){return a.toString(16)}).join("");return(a=CKEDITOR.tools.array.find(CKEDITOR.pasteFilters.image.recognizableImageSignatures,function(a){return 0===c.indexOf(a.signature)}))?a.type:null}CKEDITOR.pasteFilters.image=function(a,c,b){var e;if(c.activeFilter&&!c.activeFilter.check("img[src]"))return a;e=q(a);return 0===e.length?a:b?u(a,b,e):v(c,a,e)};CKEDITOR.pasteFilters.image.extractFromRtf=l;CKEDITOR.pasteFilters.image.extractTagsFromHtml=q;CKEDITOR.pasteFilters.image.getImageType= +r;CKEDITOR.pasteFilters.image.createSrcWithBase64=h;CKEDITOR.pasteFilters.image.convertBlobUrlToBase64=m;CKEDITOR.pasteFilters.image.getImageTypeFromSignature=t;CKEDITOR.pasteFilters.image.supportedImageTypes=["image/png","image/jpeg","image/gif"];CKEDITOR.pasteFilters.image.recognizableImageTypes=[{marker:/\\pngblip/,type:"image/png"},{marker:/\\jpegblip/,type:"image/jpeg"},{marker:/\\emfblip/,type:"image/emf"},{marker:/\\wmetafile\d/,type:"image/wmf"}];CKEDITOR.pasteFilters.image.recognizableImageSignatures= +[{signature:"ffd8ff",type:"image/jpeg"},{signature:"47494638",type:"image/gif"},{signature:"89504e47",type:"image/png"}]})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/dialogs/placeholder.js b/static/ckeditor/ckeditor/plugins/placeholder/dialogs/placeholder.js new file mode 100644 index 0000000000..8412e175ae --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/dialogs/placeholder.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("placeholder",function(a){var b=a.lang.placeholder,a=a.lang.common.generalTab;return{title:b.title,minWidth:300,minHeight:80,contents:[{id:"info",label:a,title:a,elements:[{id:"name",type:"text",style:"width: 100%;",label:b.name,"default":"",required:!0,validate:CKEDITOR.dialog.validate.regex(/^[^\[\]<>]+$/,b.invalidName),setup:function(a){this.setValue(a.data.name)},commit:function(a){a.setData("name",this.getValue())}}]}]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/icons/hidpi/placeholder.png b/static/ckeditor/ckeditor/plugins/placeholder/icons/hidpi/placeholder.png new file mode 100644 index 0000000000..0b7abcec8a Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/placeholder/icons/hidpi/placeholder.png differ diff --git a/static/ckeditor/ckeditor/plugins/placeholder/icons/placeholder.png b/static/ckeditor/ckeditor/plugins/placeholder/icons/placeholder.png new file mode 100644 index 0000000000..cb12b48145 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/placeholder/icons/placeholder.png differ diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/af.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/af.js new file mode 100644 index 0000000000..20b1be7b66 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/af.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","af",{title:"Plekhouer eienskappe",toolbar:"Plekhouer",name:"Plekhouer naam",invalidName:"Die plekhouer mag nie leeg wees nie, en kan geen van die volgende karakters bevat nie. [, ], <, >",pathName:"plekhouer"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/ar.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/ar.js new file mode 100644 index 0000000000..745d4c5af3 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/ar.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","ar",{title:"خصائص الربط الموضعي",toolbar:"الربط الموضعي",name:"اسم الربط الموضعي",invalidName:"لا يمكن ترك الربط الموضعي فارغا و لا أن يحتوي على الرموز التالية [, ], <, >",pathName:"الربط الموضعي"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/bg.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/bg.js new file mode 100644 index 0000000000..540805bbf1 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/bg.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","bg",{title:"Настройки на контейнера",toolbar:"Нов контейнер",name:"Placeholder Name",invalidName:"The placeholder can not be empty and can not contain any of following characters: [, ], <, >",pathName:"placeholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/ca.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/ca.js new file mode 100644 index 0000000000..6b407fdb26 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/ca.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","ca",{title:"Propietats del marcador de posició",toolbar:"Marcador de posició",name:"Nom del marcador de posició",invalidName:"El marcador de posició no pot estar en blanc ni pot contenir cap dels caràcters següents: [,],<,>",pathName:"marcador de posició"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/cs.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/cs.js new file mode 100644 index 0000000000..4a1f753c30 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/cs.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","cs",{title:"Vlastnosti vyhrazeného prostoru",toolbar:"Vytvořit vyhrazený prostor",name:"Název vyhrazeného prostoru",invalidName:"Vyhrazený prostor nesmí být prázdný či obsahovat následující znaky: [, ], <, >",pathName:"Vyhrazený prostor"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/cy.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/cy.js new file mode 100644 index 0000000000..143c9bd578 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/cy.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","cy",{title:"Priodweddau'r Daliwr Geiriau",toolbar:"Daliwr Geiriau",name:"Enw'r Daliwr Geiriau",invalidName:"Dyw'r daliwr geiriau methu â bod yn wag ac na all gynnyws y nodau [, ], <, > ",pathName:"daliwr geiriau"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/da.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/da.js new file mode 100644 index 0000000000..f3a1783663 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/da.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","da",{title:"Egenskaber for pladsholder",toolbar:"Opret pladsholder",name:"Navn på pladsholder",invalidName:"Pladsholderen kan ikke være tom og må ikke indeholde nogen af følgende tegn: [, ], <, >",pathName:"pladsholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/de.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/de.js new file mode 100644 index 0000000000..a03ea810b6 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/de.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","de",{title:"Platzhaltereinstellungen",toolbar:"Platzhalter",name:"Platzhaltername",invalidName:"Der Platzhalter darf nicht leer sein und folgende Zeichen nicht enthalten: [, ], <, >",pathName:"Platzhalter"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/el.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/el.js new file mode 100644 index 0000000000..07ebe956a0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/el.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","el",{title:"Ιδιότητες Υποκαθιστόμενου Κειμένου",toolbar:"Δημιουργία Υποκαθιστόμενου Κειμένου",name:"Όνομα Υποκαθιστόμενου Κειμένου",invalidName:"Το υποκαθιστόμενου κειμένο πρέπει να μην είναι κενό και να μην έχει κανέναν από τους ακόλουθους χαρακτήρες: [, ], <, >",pathName:"υποκαθιστόμενο κείμενο"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/en-gb.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/en-gb.js new file mode 100644 index 0000000000..319bc08b25 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/en-gb.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","en-gb",{title:"Placeholder Properties",toolbar:"Placeholder",name:"Placeholder Name",invalidName:"The placeholder can not be empty and can not contain any of the following characters: [, ], <, >",pathName:"placeholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/en.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/en.js new file mode 100644 index 0000000000..7f7b148356 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/en.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","en",{title:"Placeholder Properties",toolbar:"Placeholder",name:"Placeholder Name",invalidName:"The placeholder can not be empty and can not contain any of following characters: [, ], <, >",pathName:"placeholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/eo.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/eo.js new file mode 100644 index 0000000000..d5f98a7be5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/eo.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","eo",{title:"Atributoj de la rezervita spaco",toolbar:"Rezervita Spaco",name:"Nomo de la rezervita spaco",invalidName:"La rezervita spaco ne povas esti malplena kaj ne povas enteni la sekvajn signojn : [, ], <, >",pathName:"rezervita spaco"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/es.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/es.js new file mode 100644 index 0000000000..1ef6ad984e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/es.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","es",{title:"Propiedades del Marcador de Posición",toolbar:"Crear Marcador de Posición",name:"Nombre del Marcador de Posición",invalidName:"El marcador de posición no puede estar vacío y no puede contener ninguno de los siguientes caracteres: [, ], <, >",pathName:"marcador de posición"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/et.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/et.js new file mode 100644 index 0000000000..aa4a8a559f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/et.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","et",{title:"Kohahoidja omadused",toolbar:"Kohahoidja loomine",name:"Placeholder Name",invalidName:"The placeholder can not be empty and can not contain any of following characters: [, ], <, >",pathName:"placeholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/eu.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/eu.js new file mode 100644 index 0000000000..758bce8d5b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/eu.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","eu",{title:"Leku-marka Aukerak",toolbar:"Leku-marka sortu",name:"Placeholder Name",invalidName:"The placeholder can not be empty and can not contain any of following characters: [, ], <, >",pathName:"placeholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/fa.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/fa.js new file mode 100644 index 0000000000..4df4731316 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/fa.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","fa",{title:"ویژگی‌های محل نگهداری",toolbar:"ایجاد یک محل نگهداری",name:"نام مکان نگهداری",invalidName:"مکان نگهداری نمی‌تواند خالی باشد و همچنین نمی‌تواند محتوی نویسه‌های مقابل باشد: [, ], <, >",pathName:"مکان نگهداری"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/fi.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/fi.js new file mode 100644 index 0000000000..44c7ceb3aa --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/fi.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","fi",{title:"Paikkamerkin ominaisuudet",toolbar:"Luo paikkamerkki",name:"Paikkamerkin nimi",invalidName:"Paikkamerkki ei voi olla tyhjä eikä sisältää seuraavia merkkejä: [, ], <, >",pathName:"paikkamerkki"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/fr-ca.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/fr-ca.js new file mode 100644 index 0000000000..f07de74285 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/fr-ca.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","fr-ca",{title:"Propriétés de l'espace réservé",toolbar:"Créer un espace réservé",name:"Placeholder Name",invalidName:"The placeholder can not be empty and can not contain any of following characters: [, ], <, >",pathName:"placeholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/fr.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/fr.js new file mode 100644 index 0000000000..1940028484 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/fr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","fr",{title:"Propriétés de l'Espace réservé",toolbar:"Créer l'Espace réservé",name:"Nom de l'espace réservé",invalidName:"L'espace réservé ne peut pas être vide ni contenir l'un de ses caractères : [, ], <, >",pathName:"espace réservé"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/gl.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/gl.js new file mode 100644 index 0000000000..d7f60496b5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/gl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","gl",{title:"Propiedades do marcador de posición",toolbar:"Crear un marcador de posición",name:"Nome do marcador de posición",invalidName:"O marcador de posición non pode estar baleiro e non pode conter ningún dos caracteres seguintes: [, ], <, >",pathName:"marcador de posición"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/he.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/he.js new file mode 100644 index 0000000000..ca00145199 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/he.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","he",{title:"מאפייני שומר מקום",toolbar:"צור שומר מקום",name:"שם שומר מקום",invalidName:"שומר מקום לא יכול להיות ריק ולא יכול להכיל את הסימנים: [, ], <, >",pathName:"שומר מקום"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/hr.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/hr.js new file mode 100644 index 0000000000..e53c847e7d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/hr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","hr",{title:"Svojstva rezerviranog mjesta",toolbar:"Napravi rezervirano mjesto",name:"Ime rezerviranog mjesta",invalidName:"Rezervirano mjesto ne može biti prazno niti može sadržavati ijedan od sljedećih znakova: [, ], <, >",pathName:"rezervirano mjesto"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/hu.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/hu.js new file mode 100644 index 0000000000..038ca05517 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/hu.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","hu",{title:"Helytartó beállítások",toolbar:"Helytartó készítése",name:"Helytartó neve",invalidName:"A helytartó nem lehet üres, és nem tartalmazhatja a következő karaktereket:[, ], <, > ",pathName:"helytartó"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/id.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/id.js new file mode 100644 index 0000000000..896ade14cc --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/id.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","id",{title:"Properti isian sementara",toolbar:"Buat isian sementara",name:"Placeholder Name",invalidName:"The placeholder can not be empty and can not contain any of following characters: [, ], <, >",pathName:"placeholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/it.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/it.js new file mode 100644 index 0000000000..2066596c1d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/it.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","it",{title:"Proprietà segnaposto",toolbar:"Crea segnaposto",name:"Nome segnaposto",invalidName:"Il segnaposto non può essere vuoto e non può contenere nessuno dei seguenti caratteri: [, ], <, >",pathName:"segnaposto"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/ja.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/ja.js new file mode 100644 index 0000000000..af7ec9f5ab --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/ja.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","ja",{title:"プレースホルダのプロパティ",toolbar:"プレースホルダを作成",name:"プレースホルダ名",invalidName:"プレースホルダは空欄にできません。また、[, ], <, > の文字は使用できません。",pathName:"placeholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/km.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/km.js new file mode 100644 index 0000000000..6ee9c46d27 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/km.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","km",{title:"លក្ខណៈ Placeholder",toolbar:"បង្កើត Placeholder",name:"ឈ្មោះ Placeholder",invalidName:"Placeholder មិន​អាច​ទទេរ ហើយក៏​មិន​អាច​មាន​តួ​អក្សរ​ទាំង​នេះ​ទេ៖ [, ], <, >",pathName:"placeholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/ko.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/ko.js new file mode 100644 index 0000000000..01afb3f187 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/ko.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","ko",{title:"플레이스홀더 속성",toolbar:"플레이스홀더",name:"플레이스홀더 이름",invalidName:"플레이스홀더는 빈칸이거나 다음 문자열을 포함할 수 없습니다: [, ], <, >",pathName:"플레이스홀더"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/ku.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/ku.js new file mode 100644 index 0000000000..d09d4a8cc5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/ku.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","ku",{title:"خاسیەتی شوێن هەڵگر",toolbar:"درووستکردنی شوێن هەڵگر",name:"ناوی شوێنگر",invalidName:"شوێنگر نابێت بەتاڵ بێت یان هەریەکێک لەم نووسانەی خوارەوەی تێدابێت: [, ], <, >",pathName:"شوێنگر"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/lv.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/lv.js new file mode 100644 index 0000000000..9853eb3cde --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/lv.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","lv",{title:"Viettura uzstādījumi",toolbar:"Izveidot vietturi",name:"Placeholder Name",invalidName:"The placeholder can not be empty and can not contain any of following characters: [, ], <, >",pathName:"placeholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/nb.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/nb.js new file mode 100644 index 0000000000..871fb5e330 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/nb.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","nb",{title:"Egenskaper for plassholder",toolbar:"Opprett plassholder",name:"Navn på plassholder",invalidName:"Plassholderen kan ikke være tom, og kan ikke inneholde følgende tegn: [, ], <, >",pathName:"plassholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/nl.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/nl.js new file mode 100644 index 0000000000..fdfeea7115 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/nl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","nl",{title:"Eigenschappen placeholder",toolbar:"Placeholder aanmaken",name:"Naam placeholder",invalidName:"De placeholder mag niet leeg zijn, en mag niet een van de volgende tekens bevatten: [, ], <, >",pathName:"placeholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/no.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/no.js new file mode 100644 index 0000000000..b706284e29 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/no.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","no",{title:"Egenskaper for plassholder",toolbar:"Opprett plassholder",name:"Navn på plassholder",invalidName:"Plassholderen kan ikke være tom, og kan ikke inneholde følgende tegn: [, ], <, >",pathName:"plassholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/pl.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/pl.js new file mode 100644 index 0000000000..1a5b10a2d9 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/pl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","pl",{title:"Właściwości wypełniacza",toolbar:"Utwórz wypełniacz",name:"Nazwa wypełniacza",invalidName:"Wypełniacz nie może być pusty ani nie może zawierać żadnego z następujących znaków: [, ], < oraz >",pathName:"wypełniacz"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/pt-br.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/pt-br.js new file mode 100644 index 0000000000..ad7e74cd8f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/pt-br.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","pt-br",{title:"Propriedades do Espaço Reservado",toolbar:"Criar Espaço Reservado",name:"Nome do Espaço Reservado",invalidName:"O espaço reservado não pode estar vazio e não pode conter nenhum dos seguintes caracteres: [, ], <, >",pathName:"Espaço Reservado"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/pt.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/pt.js new file mode 100644 index 0000000000..f2b5d8e8f8 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/pt.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","pt",{title:"Propriedades dos marcadores",toolbar:"Símbolo",name:"Nome do marcador",invalidName:"O marcador não pode estar em branco e não pode conter qualquer dos seguintes carateres: [, ], <, >",pathName:"símbolo"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/ru.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/ru.js new file mode 100644 index 0000000000..c55f095926 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/ru.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","ru",{title:"Свойства плейсхолдера",toolbar:"Создать плейсхолдер",name:"Имя плейсхолдера",invalidName:'Плейсхолдер не может быть пустым и содержать один из следующих символов: "[, ], <, >"',pathName:"плейсхолдер"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/si.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/si.js new file mode 100644 index 0000000000..d290aa8e4b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/si.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","si",{title:"ස්ථාන හීම්කරුගේ ",toolbar:"ස්ථාන හීම්කරු නිර්මාණය කිරීම",name:"Placeholder Name",invalidName:"The placeholder can not be empty and can not contain any of following characters: [, ], <, >",pathName:"placeholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/sk.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/sk.js new file mode 100644 index 0000000000..9c7d48f6aa --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/sk.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","sk",{title:"Vlastnosti placeholdera",toolbar:"Vytvoriť placeholder",name:"Názov placeholdera",invalidName:"Placeholder nemôže byť prázdny a nemôže obsahovať žiadny z nasledujúcich znakov: [,],<,>",pathName:"placeholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/sl.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/sl.js new file mode 100644 index 0000000000..0faff6f5d6 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/sl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","sl",{title:"Lastnosti Ograde",toolbar:"Ustvari Ogrado",name:"Placeholder Ime",invalidName:"Placeholder ne more biti prazen in ne sme vsebovati katerega od naslednjih znakov: [, ], <, >",pathName:"placeholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/sq.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/sq.js new file mode 100644 index 0000000000..646292800d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/sq.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","sq",{title:"Karakteristikat e Mbajtësit të Vendit",toolbar:"Krijo Mabjtës Vendi",name:"Placeholder Name",invalidName:"The placeholder can not be empty and can not contain any of following characters: [, ], <, >",pathName:"placeholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/sv.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/sv.js new file mode 100644 index 0000000000..471dac0459 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/sv.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","sv",{title:"Innehållsrutans egenskaper",toolbar:"Skapa innehållsruta",name:"Innehållsrutans namn",invalidName:"Innehållsrutan får inte vara tom och får inte innehålla någon av följande tecken: [, ], <, >",pathName:"innehållsruta"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/th.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/th.js new file mode 100644 index 0000000000..c552b0dc79 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/th.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","th",{title:"คุณสมบัติเกี่ยวกับตัวยึด",toolbar:"สร้างตัวยึด",name:"Placeholder Name",invalidName:"The placeholder can not be empty and can not contain any of following characters: [, ], <, >",pathName:"placeholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/tr.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/tr.js new file mode 100644 index 0000000000..ea653fac44 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/tr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","tr",{title:"Yer tutucu özellikleri",toolbar:"Yer tutucu oluşturun",name:"Yer Tutucu Adı",invalidName:"Yer tutucu adı boş bırakılamaz ve şu karakterleri içeremez: [, ], <, >",pathName:"yertutucu"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/tt.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/tt.js new file mode 100644 index 0000000000..ef5e162ec1 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/tt.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","tt",{title:"Тутырма үзлекләре",toolbar:"Тутырма",name:"Тутырма исеме",invalidName:"Тутырма буш булмаска тиеш һәм эчендә алдагы символлар булмаска тиеш: [, ], <, >",pathName:"тутырма"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/ug.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/ug.js new file mode 100644 index 0000000000..cae2f94a50 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/ug.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","ug",{title:"ئورۇن بەلگە خاسلىقى",toolbar:"ئورۇن بەلگە قۇر",name:"Placeholder Name",invalidName:"The placeholder can not be empty and can not contain any of following characters: [, ], <, >",pathName:"placeholder"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/uk.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/uk.js new file mode 100644 index 0000000000..7c90450228 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/uk.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","uk",{title:"Налаштування Заповнювача",toolbar:"Створити Заповнювач",name:"Назва заповнювача",invalidName:"Заповнювач не може бути порожнім і не може містити наступні символи: [, ], <, >",pathName:"заповнювач"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/vi.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/vi.js new file mode 100644 index 0000000000..79b38d64ab --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/vi.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","vi",{title:"Thuộc tính đặt chỗ",toolbar:"Tạo đặt chỗ",name:"Tên giữ chỗ",invalidName:"Giữ chỗ không thể để trống và không thể chứa bất kỳ ký tự sau: [,], <, >",pathName:"giữ chỗ"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/zh-cn.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/zh-cn.js new file mode 100644 index 0000000000..0e126f1223 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/zh-cn.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","zh-cn",{title:"占位符属性",toolbar:"占位符",name:"占位符名称",invalidName:"占位符名称不能为空,并且不能包含以下字符:[、]、<、>",pathName:"占位符"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/lang/zh.js b/static/ckeditor/ckeditor/plugins/placeholder/lang/zh.js new file mode 100644 index 0000000000..0a19d69d61 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/lang/zh.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("placeholder","zh",{title:"預留位置屬性",toolbar:"建立預留位置",name:"Placeholder 名稱",invalidName:"「預留位置」不可為空白且不可包含以下字元:[, ], <, >",pathName:"預留位置"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/placeholder/plugin.js b/static/ckeditor/ckeditor/plugins/placeholder/plugin.js new file mode 100644 index 0000000000..02e897967f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/placeholder/plugin.js @@ -0,0 +1,7 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){CKEDITOR.plugins.add("placeholder",{requires:"widget,dialog",lang:"af,ar,bg,ca,cs,cy,da,de,el,en,en-gb,eo,es,et,eu,fa,fi,fr,fr-ca,gl,he,hr,hu,id,it,ja,km,ko,ku,lv,nb,nl,no,pl,pt,pt-br,ru,si,sk,sl,sq,sv,th,tr,tt,ug,uk,vi,zh,zh-cn",icons:"placeholder",hidpi:!0,onLoad:function(){CKEDITOR.addCss(".cke_placeholder{background-color:#ff0}")},init:function(a){var b=a.lang.placeholder;CKEDITOR.dialog.add("placeholder",this.path+"dialogs/placeholder.js");a.widgets.add("placeholder",{dialog:"placeholder", +pathName:b.pathName,template:'<span class="cke_placeholder">[[]]</span>',downcast:function(){return new CKEDITOR.htmlParser.text("[["+this.data.name+"]]")},init:function(){this.setData("name",this.element.getText().slice(2,-2))},data:function(){this.element.setText("[["+this.data.name+"]]")}});a.ui.addButton&&a.ui.addButton("CreatePlaceholder",{label:b.toolbar,command:"placeholder",toolbar:"insert,5",icon:"placeholder"})},afterInit:function(a){var b=/\[\[([^\[\]])+\]\]/g;a.dataProcessor.dataFilter.addRules({text:function(f, +d){var e=d.parent&&CKEDITOR.dtd[d.parent.name];if(!e||e.span)return f.replace(b,function(b){var c=null,c=new CKEDITOR.htmlParser.element("span",{"class":"cke_placeholder"});c.add(new CKEDITOR.htmlParser.text(b));c=a.widgets.wrapElement(c,"placeholder");return c.getOuterHtml()})}})}})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/preview/images/pagebreak.gif b/static/ckeditor/ckeditor/plugins/preview/images/pagebreak.gif new file mode 100644 index 0000000000..a27b168498 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/preview/images/pagebreak.gif differ diff --git a/static/ckeditor/ckeditor/plugins/preview/preview.html b/static/ckeditor/ckeditor/plugins/preview/preview.html new file mode 100644 index 0000000000..8c0282628d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/preview/preview.html @@ -0,0 +1,13 @@ +<script> + +// Prevent from DOM clobbering. +if ( typeof window.opener._cke_htmlToLoad == 'string' ) { + var doc = document; + doc.open(); + doc.write( window.opener._cke_htmlToLoad ); + doc.close(); + + delete window.opener._cke_htmlToLoad; +} + +</script> diff --git a/static/ckeditor/ckeditor/plugins/preview/styles/screen.css b/static/ckeditor/ckeditor/plugins/preview/styles/screen.css new file mode 100644 index 0000000000..b6c5218f26 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/preview/styles/screen.css @@ -0,0 +1,10 @@ +div[style*="page-break-after"] { + background:url( ../images/pagebreak.gif ) no-repeat center center; + clear:both; + width:100%; + border-top:#999 1px dotted; + border-bottom:#999 1px dotted; + padding:0; + height:7px; + cursor:default; +} diff --git a/static/ckeditor/ckeditor/plugins/scayt/CHANGELOG.md b/static/ckeditor/ckeditor/plugins/scayt/CHANGELOG.md new file mode 100644 index 0000000000..ebd566ca37 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/scayt/CHANGELOG.md @@ -0,0 +1,4 @@ +SCAYT plugin for CKEditor 4 Changelog +==================== + +The full changelog of the SCAYT plugin for CKEditor 4 can be found on our website under the [release notes](https://webspellchecker.com/release-notes/) section. diff --git a/static/ckeditor/ckeditor/plugins/scayt/LICENSE.md b/static/ckeditor/ckeditor/plugins/scayt/LICENSE.md new file mode 100644 index 0000000000..844ab4de0b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/scayt/LICENSE.md @@ -0,0 +1,28 @@ +Software License Agreement +========================== + +**CKEditor SCAYT Plugin** +Copyright © 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved. + +Licensed under the terms of any of the following licenses at your choice: + +* GNU General Public License Version 2 or later (the "GPL"): + http://www.gnu.org/licenses/gpl.html + +* GNU Lesser General Public License Version 2.1 or later (the "LGPL"): + http://www.gnu.org/licenses/lgpl.html + +* Mozilla Public License Version 1.1 or later (the "MPL"): + http://www.mozilla.org/MPL/MPL-1.1.html + +You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice. + +Sources of Intellectual Property Included in this plugin +-------------------------------------------------------- + +Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission. + +Trademarks +---------- + +CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders. diff --git a/static/ckeditor/ckeditor/plugins/scayt/README.md b/static/ckeditor/ckeditor/plugins/scayt/README.md new file mode 100644 index 0000000000..6d234cdef4 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/scayt/README.md @@ -0,0 +1,81 @@ +SCAYT plugin for CKEditor 4 +===================== + +SpellCheckAsYouType (SCAYT) instantly underlines spelling and grammar errors while users type. To correct spelling or grammar error, a user simply needs to right-click the marked word to select from suggested corrections. +![SCAYT Plugin for CKEditor 4 View](https://webspellchecker.com/app/images/scayt_plugin_for_ckeditor4.png) + +This plugin brings the multi-language SCAYT functionality into CKEditor 4. It is integrated by default starting with [Standard Package of CKEditor 4](https://ckeditor.com/ckeditor-4/download/). You can find it on the CKEditor 4 toolbar panel under the ABC button (Enable SCAYT). + +If your version of CKEditor doesn’t have SCAYT built-in, you can easily add it by following the steps outlined in the Get Started section. + +The default version of SCAYT plugin for CKEditor 4 is using the free services of WebSpellChecker. It is provided with a banner ad and has some [limitations](https://docs.webspellchecker.net/display/WebSpellCheckerCloud/Free+and+Paid+WebSpellChecker+Cloud+Services+Comparison+for+CKEditor). + +To lift the limitations and get rid of the banner, [obtain a license](https://webspellchecker.com/wsc-scayt-ckeditor4/#pricing). Depending on your needs, you can choose a Cloud-based or Server (self-hosted) solution. + +Demo +------------ +SCAYT plugin for CKEditor 4: https://webspellchecker.com/wsc-scayt-ckeditor4/ + +Supported languages +------------ + +The SCAYT plugin for CKEditor as a part of the free services supports the next languages for check spelling: American English, British English, Canadian English, Canadian French, Danish, Dutch, Finnish, French, German, Greek, Italian, Norwegian Bokmal, Spanish, Swedish. + +There are also additional languages and specialized dictionaries available for a commercial license, you can check the full list [here](https://webspellchecker.com/additional-dictionaries/). + +Get started +------------ + +1. Clone/copy this repository contents in a new "plugins/scayt" folder in your CKEditor installation. +2. Enable the "scayt" plugin in the CKEditor configuration file (config.js): + + config.extraPlugins = 'scayt'; + +That's all. SCAYT will appear on the editor toolbar under the ABC button and will be ready to use. + +Supported browsers +------- + +This is the list of officially supported browsers for the SCAYT plugin for CKEditor 4. SCAYT may also work in other browsers and environments but we unable to check all of them and guarantee proper work. + +* Chrome (the latest) +* Firefox (the latest) +* Safari (the latest) +* MS Edge (the latest) +* Internet Explorer 8.0 (limited support) +* Internet Explorer 9.0+ (close to full support) + +Note: All browsers are to be supported for web pages that work in Standards Mode. + +Resources +------- + +* Demo: https://webspellchecker.com/wsc-scayt-ckeditor4/ +* Documentation: https://docs.webspellchecker.net/ +* YouTube video “How to Configure CKEditor 4 and SpellCheckAsYouType Plugin”: https://youtu.be/D0ahmVjYBq8 +* Term of Service: https://webspellchecker.com/terms-of-service/ +* CKEditor’s How-Tos for SCAYT: https://ckeditor.com/docs/ckeditor4/latest/guide/dev_howtos_scayt.html +* CKEditor’s example of SCAYT: https://ckeditor.com/docs/ckeditor4/latest/examples/spellchecker.html + +Technical support or questions +------- + +In cooperation with the CKEditor team, during the past 10 years we have simplified the installation and built the extensive amount of documentation devoted to SCAYT plugin for CKEditor 4 and less. + +If you are experiencing any difficulties with the setup of the plugin, please check the links provided in the Resources section. + +Holders of an active subscription to the services or a commercial license have access to professional technical assistance directly from the WebSpellChecker team. [Contact us here](https://webspellchecker.com/contact-us/)! + +Reporting issues +------- + +Please use the [SCAYT plugin for CKEditor 4 GitHub issue page](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues) to report bugs and feature requests. We will do our best to reply at our earliest convenience. + +License +------- + +This plugin is licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). + +See LICENSE.md for more information. + +Developed by [WebSpellChecker](https://webspellchecker.com/) in cooperation with CKSource. diff --git a/static/ckeditor/ckeditor/plugins/scayt/dialogs/dialog.css b/static/ckeditor/ckeditor/plugins/scayt/dialogs/dialog.css new file mode 100644 index 0000000000..aef75684f8 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/scayt/dialogs/dialog.css @@ -0,0 +1,23 @@ +div.cke_dialog_ui_scaytItemList { + border: 1px solid #c9cccf; +} + +.cke_scaytItemList-child { + position: relative; + padding: 6px 30px 6px 5px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.cke_scaytItemList-child:hover { + background: #ebebeb; +} + +.cke_scaytItemList-child .cke_scaytItemList_remove { + position: absolute; + top: 0; + right: 5px; + width: 26px; + height: 26px; +} diff --git a/static/ckeditor/ckeditor/plugins/scayt/dialogs/options.js b/static/ckeditor/ckeditor/plugins/scayt/dialogs/options.js new file mode 100644 index 0000000000..e47c97e932 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/scayt/dialogs/options.js @@ -0,0 +1,32 @@ +CKEDITOR.dialog.add("scaytDialog",function(d){var c=d.scayt,k='\x3cp\x3e\x3cimg alt\x3d"logo" title\x3d"logo" src\x3d"'+c.getLogo()+'" /\x3e\x3c/p\x3e\x3cp\x3e'+c.getLocal("version")+c.getVersion()+'\x3c/p\x3e\x3cp\x3e\x3ca href\x3d"'+c.getOption("CKUserManual")+'" target\x3d"_blank" style\x3d"text-decoration: underline; color: blue; cursor: pointer;"\x3e'+c.getLocal("btn_userManual")+"\x3c/a\x3e\x3c/p\x3e\x3cp\x3e"+c.getLocal("text_copyrights")+"\x3c/p\x3e",n=CKEDITOR.document,l={isChanged:function(){return null=== +this.newLang||this.currentLang===this.newLang?!1:!0},currentLang:c.getLang(),newLang:null,reset:function(){this.currentLang=c.getLang();this.newLang=null},id:"lang"},k=[{id:"options",label:c.getLocal("tab_options"),onShow:function(){},elements:[{type:"vbox",id:"scaytOptions",children:function(){var b=c.getApplicationConfig(),a=[],g={"ignore-all-caps-words":"label_allCaps","ignore-domain-names":"label_ignoreDomainNames","ignore-words-with-mixed-cases":"label_mixedCase","ignore-words-with-numbers":"label_mixedWithDigits"}, +h;for(h in b)b={type:"checkbox"},b.id=h,b.label=c.getLocal(g[h]),a.push(b);return a}(),onShow:function(){this.getChild();for(var b=d.scayt,a=0;a<this.getChild().length;a++)this.getChild()[a].setValue(b.getApplicationConfig()[this.getChild()[a].id])}}]},{id:"langs",label:c.getLocal("tab_languages"),elements:[{id:"leftLangColumn",type:"vbox",align:"left",widths:["100"],children:[{type:"html",id:"langBox",style:"overflow: hidden; white-space: normal;margin-bottom:15px;",html:'\x3cdiv\x3e\x3cdiv style\x3d"float:left;width:45%;margin-left:5px;" id\x3d"left-col-'+ +d.name+'" class\x3d"scayt-lang-list"\x3e\x3c/div\x3e\x3cdiv style\x3d"float:left;width:45%;margin-left:15px;" id\x3d"right-col-'+d.name+'" class\x3d"scayt-lang-list"\x3e\x3c/div\x3e\x3c/div\x3e',onShow:function(){var b=d.scayt.getLang();n.getById("scaytLang_"+d.name+"_"+b).$.checked=!0}}]}]},{id:"dictionaries",label:c.getLocal("tab_dictionaries"),elements:[{type:"vbox",id:"rightCol_col__left",children:[{type:"html",id:"dictionaryNote",html:""},{type:"text",id:"dictionaryName",label:c.getLocal("label_fieldNameDic")|| +"Dictionary name",onShow:function(b){var a=b.sender,g=d.scayt;b=SCAYT.prototype.UILib;var h=a.getContentElement("dictionaries","dictionaryName").getInputElement().$;g.isLicensed()||(h.disabled=!0,b.css(h,{cursor:"not-allowed"}));setTimeout(function(){a.getContentElement("dictionaries","dictionaryNote").getElement().setText("");null!=g.getUserDictionaryName()&&""!=g.getUserDictionaryName()&&a.getContentElement("dictionaries","dictionaryName").setValue(g.getUserDictionaryName())},0)}},{type:"hbox", +id:"udButtonsHolder",align:"left",widths:["auto"],style:"width:auto;",children:[{type:"button",id:"createDic",label:c.getLocal("btn_createDic"),title:c.getLocal("btn_createDic"),onLoad:function(){this.getDialog();var b=d.scayt,a=SCAYT.prototype.UILib,g=this.getElement().$,h=this.getElement().getChild(0).$;b.isLicensed()||(a.css(g,{cursor:"not-allowed"}),a.css(h,{cursor:"not-allowed"}))},onClick:function(){var b=this.getDialog(),a=f,g=d.scayt,h=b.getContentElement("dictionaries","dictionaryName").getValue(); +g.isLicensed()&&g.createUserDictionary(h,function(e){e.error||a.toggleDictionaryState.call(b,"dictionaryState");e.dialog=b;e.command="create";e.name=h;d.fire("scaytUserDictionaryAction",e)},function(a){a.dialog=b;a.command="create";a.name=h;d.fire("scaytUserDictionaryActionError",a)})}},{type:"button",id:"restoreDic",label:c.getLocal("btn_connectDic"),title:c.getLocal("btn_connectDic"),onLoad:function(){this.getDialog();var b=d.scayt,a=SCAYT.prototype.UILib,g=this.getElement().$,h=this.getElement().getChild(0).$; +b.isLicensed()||(a.css(g,{cursor:"not-allowed"}),a.css(h,{cursor:"not-allowed"}))},onClick:function(){var b=this.getDialog(),a=d.scayt,g=f,h=b.getContentElement("dictionaries","dictionaryName").getValue();a.isLicensed()&&a.restoreUserDictionary(h,function(a){a.dialog=b;a.error||g.toggleDictionaryState.call(b,"dictionaryState");a.command="restore";a.name=h;d.fire("scaytUserDictionaryAction",a)},function(a){a.dialog=b;a.command="restore";a.name=h;d.fire("scaytUserDictionaryActionError",a)})}},{type:"button", +id:"disconnectDic",label:c.getLocal("btn_disconnectDic"),title:c.getLocal("btn_disconnectDic"),onClick:function(){var b=this.getDialog(),a=d.scayt,g=f,h=b.getContentElement("dictionaries","dictionaryName"),e=h.getValue();a.isLicensed()&&(a.disconnectFromUserDictionary({}),h.setValue(""),g.toggleDictionaryState.call(b,"initialState"),d.fire("scaytUserDictionaryAction",{dialog:b,command:"disconnect",name:e}))}},{type:"button",id:"removeDic",label:c.getLocal("btn_deleteDic"),title:c.getLocal("btn_deleteDic"), +onClick:function(){var b=this.getDialog(),a=d.scayt,g=f,h=b.getContentElement("dictionaries","dictionaryName"),e=h.getValue();a.isLicensed()&&a.removeUserDictionary(e,function(a){h.setValue("");a.error||g.toggleDictionaryState.call(b,"initialState");a.dialog=b;a.command="remove";a.name=e;d.fire("scaytUserDictionaryAction",a)},function(a){a.dialog=b;a.command="remove";a.name=e;d.fire("scaytUserDictionaryActionError",a)})}},{type:"button",id:"renameDic",label:c.getLocal("btn_renameDic"),title:c.getLocal("btn_renameDic"), +onClick:function(){var b=this.getDialog(),a=d.scayt,g=b.getContentElement("dictionaries","dictionaryName").getValue();a.isLicensed()&&a.renameUserDictionary(g,function(a){a.dialog=b;a.command="rename";a.name=g;d.fire("scaytUserDictionaryAction",a)},function(a){a.dialog=b;a.command="rename";a.name=g;d.fire("scaytUserDictionaryActionError",a)})}},{type:"button",id:"editDic",label:c.getLocal("btn_goToDic"),title:c.getLocal("btn_goToDic"),onLoad:function(){this.getDialog()},onClick:function(){var b=this.getDialog(), +a=b.getContentElement("dictionaries","addWordField");f.clearWordList.call(b);a.setValue("");f.getUserDictionary.call(b);f.toggleDictionaryState.call(b,"wordsState")}}]},{type:"hbox",id:"dicInfo",align:"left",children:[{type:"html",id:"dicInfoHtml",html:'\x3cdiv id\x3d"dic_info_editor1" style\x3d"margin:5px auto; width:95%;white-space:normal;"\x3e'+(d.scayt.isLicensed&&d.scayt.isLicensed()?'\x3ca href\x3d"'+c.getOption("CKUserManual")+'" target\x3d"_blank" style\x3d"text-decoration: underline; color: blue; cursor: pointer;"\x3e'+ +c.getLocal("text_descriptionDicForPaid")+"\x3c/a\x3e":c.getLocal("text_descriptionDicForFree"))+"\x3c/div\x3e"}]},{id:"addWordAction",type:"hbox",style:"width: 100%; margin-bottom: 0;",widths:["40%","60%"],children:[{id:"addWord",type:"vbox",style:"min-width: 150px;",children:[{type:"text",id:"addWordField",label:"Add word",maxLength:"64"}]},{id:"addWordButtons",type:"vbox",style:"margin-top: 20px;",children:[{type:"hbox",id:"addWordButton",align:"left",children:[{type:"button",id:"addWord",label:c.getLocal("btn_addWord"), +title:c.getLocal("btn_addWord"),onClick:function(){var b=this.getDialog(),a=d.scayt,g=b.getContentElement("dictionaries","itemList"),h=b.getContentElement("dictionaries","addWordField"),e=h.getValue(),c=a.getOption("wordBoundaryRegex"),f=this;e&&(-1!==e.search(c)?d.fire("scaytUserDictionaryAction",{dialog:b,command:"wordWithBannedSymbols",name:e,error:!0}):g.inChildren(e)?(h.setValue(""),d.fire("scaytUserDictionaryAction",{dialog:b,command:"wordAlreadyAdded",name:e})):(this.disable(),a.addWordToUserDictionary(e, +function(a){a.error||(h.setValue(""),g.addChild(e,!0));a.dialog=b;a.command="addWord";a.name=e;f.enable();d.fire("scaytUserDictionaryAction",a)},function(a){a.dialog=b;a.command="addWord";a.name=e;f.enable();d.fire("scaytUserDictionaryActionError",a)})))}},{type:"button",id:"backToDic",label:c.getLocal("btn_dictionaryPreferences"),title:c.getLocal("btn_dictionaryPreferences"),align:"right",onClick:function(){var b=this.getDialog(),a=d.scayt;null!=a.getUserDictionaryName()&&""!=a.getUserDictionaryName()? +f.toggleDictionaryState.call(b,"dictionaryState"):f.toggleDictionaryState.call(b,"initialState")}}]}]}]},{id:"wordsHolder",type:"hbox",style:"width: 100%; height: 170px; margin-bottom: 0;",children:[{type:"scaytItemList",id:"itemList",align:"left",style:"width: 100%; height: 170px; overflow: auto",onClick:function(b){var a=b.data.$;b=d.scayt;var g=SCAYT.prototype.UILib,a=a.target||a.srcElement,h=g.parent(a)[0],e=g.attr(h,"data-cke-scayt-ud-word"),c=this.getDialog(),f=c.getContentElement("dictionaries", +"itemList"),q=this;g.hasClass(a,"cke_scaytItemList_remove")&&!this.isBlocked()&&(this.block(),b.deleteWordFromUserDictionary(e,function(a){a.error||f.removeChild(h,e);q.unblock();a.dialog=c;a.command="deleteWord";a.name=e;d.fire("scaytUserDictionaryAction",a)},function(a){q.unblock();a.dialog=c;a.command="deleteWord";a.name=e;d.fire("scaytUserDictionaryActionError",a)}))}}]}]}]},{id:"about",label:c.getLocal("tab_about"),elements:[{type:"html",id:"about",style:"margin: 5px 5px;",html:'\x3cdiv\x3e\x3cdiv id\x3d"scayt_about_"\x3e'+ +k+"\x3c/div\x3e\x3c/div\x3e"}]}];d.on("scaytUserDictionaryAction",function(b){var a=SCAYT.prototype.UILib,g=b.data.dialog,d=g.getContentElement("dictionaries","dictionaryNote").getElement(),e=b.editor.scayt,c;void 0===b.data.error?(c=e.getLocal("message_success_"+b.data.command+"Dic"),c=c.replace("%s",b.data.name),d.setText(c),a.css(d.$,{color:"blue"})):(""===b.data.name?d.setText(e.getLocal("message_info_emptyDic")):(c=e.getLocal("message_error_"+b.data.command+"Dic"),c=c.replace("%s",b.data.name), +d.setText(c)),a.css(d.$,{color:"red"}),null!=e.getUserDictionaryName()&&""!=e.getUserDictionaryName()?g.getContentElement("dictionaries","dictionaryName").setValue(e.getUserDictionaryName()):g.getContentElement("dictionaries","dictionaryName").setValue(""))});d.on("scaytUserDictionaryActionError",function(b){var a=SCAYT.prototype.UILib,g=b.data.dialog,d=g.getContentElement("dictionaries","dictionaryNote").getElement(),c=b.editor.scayt,f;""===b.data.name?d.setText(c.getLocal("message_info_emptyDic")): +(f=c.getLocal("message_error_"+b.data.command+"Dic"),f=f.replace("%s",b.data.name),d.setText(f));a.css(d.$,{color:"red"});null!=c.getUserDictionaryName()&&""!=c.getUserDictionaryName()?g.getContentElement("dictionaries","dictionaryName").setValue(c.getUserDictionaryName()):g.getContentElement("dictionaries","dictionaryName").setValue("")});var f={title:"SCAYT",resizable:CKEDITOR.DIALOG_RESIZE_BOTH,minWidth:"moono-lisa"==(CKEDITOR.skinName||d.config.skin)?450:340,minHeight:300,onLoad:function(){if(0!= +d.config.scayt_uiTabs[1]){var b=f,a=b.getLangBoxes.call(this);this.getContentElement("dictionaries","addWordField");a.getParent().setStyle("white-space","normal");b.renderLangList(a);this.definition.minWidth=this.getSize().width;this.resize(this.definition.minWidth,this.definition.minHeight)}},onCancel:function(){l.reset()},onHide:function(){d.unlockSelection()},onShow:function(){d.fire("scaytDialogShown",this);if(0!=d.config.scayt_uiTabs[2]){var b=this.getContentElement("dictionaries","addWordField"); +f.clearWordList.call(this);b.setValue("");f.getUserDictionary.call(this);f.toggleDictionaryState.call(this,"wordsState")}},onOk:function(){var b=f,a=d.scayt;this.getContentElement("options","scaytOptions");b=b.getChangedOption.call(this);a.commitOption({changedOptions:b})},toggleDictionaryButtons:function(b){var a=this.getContentElement("dictionaries","existDic").getElement().getParent(),d=this.getContentElement("dictionaries","notExistDic").getElement().getParent();b?(a.show(),d.hide()):(a.hide(), +d.show())},getChangedOption:function(){var b={};if(1==d.config.scayt_uiTabs[0])for(var a=this.getContentElement("options","scaytOptions").getChild(),c=0;c<a.length;c++)a[c].isChanged()&&(b[a[c].id]=a[c].getValue());l.isChanged()&&(b[l.id]=d.config.scayt_sLang=l.currentLang=l.newLang);return b},buildRadioInputs:function(b,a,c){c=new CKEDITOR.dom.element("div");var h="scaytLang_"+d.name+"_"+a,e=CKEDITOR.dom.element.createFromHtml('\x3cinput id\x3d"'+h+'" type\x3d"radio" value\x3d"'+a+'" name\x3d"scayt_lang" /\x3e'), +f=new CKEDITOR.dom.element("label"),k=d.scayt;c.setStyles({"white-space":"normal",position:"relative","padding-bottom":"2px"});e.on("click",function(a){l.newLang=a.sender.getValue()});f.appendText(b);f.setAttribute("for",h);c.append(e);c.append(f);a===k.getLang()&&(e.setAttribute("checked",!0),e.setAttribute("defaultChecked","defaultChecked"));return c},renderLangList:function(b){var a=d.name.replace(/(:|\.|\[|\]|,|=|@)/g,"\\$1"),g=b.find("#left-col-"+a).getItem(0);b=b.find("#right-col-"+a).getItem(0); +var h=c.getScaytLangList(),a=c.getGraytLangList(),e={},f=[],k=0,l=!1,m;for(m in h.ltr)e[m]=h.ltr[m];for(m in h.rtl)e[m]=h.rtl[m];for(m in e)f.push([m,e[m]]);f.sort(function(a,b){var c=0;a[1]>b[1]?c=1:a[1]<b[1]&&(c=-1);return c});e={};for(l=0;l<f.length;l++)e[f[l][0]]=f[l][1];f=Math.round(f.length/2);for(m in e)k++,l=m in a.ltr||m in a.rtl,this.buildRadioInputs(e[m],m,l).appendTo(k<=f?g:b)},getLangBoxes:function(){return this.getContentElement("langs","langBox").getElement()},toggleDictionaryState:function(b){var a= +this.getContentElement("dictionaries","dictionaryName").getElement().getParent(),c=this.getContentElement("dictionaries","udButtonsHolder").getElement().getParent(),d=this.getContentElement("dictionaries","createDic").getElement().getParent(),e=this.getContentElement("dictionaries","restoreDic").getElement().getParent(),f=this.getContentElement("dictionaries","disconnectDic").getElement().getParent(),l=this.getContentElement("dictionaries","removeDic").getElement().getParent(),k=this.getContentElement("dictionaries", +"renameDic").getElement().getParent(),m=this.getContentElement("dictionaries","dicInfo").getElement().getParent(),n=this.getContentElement("dictionaries","addWordAction").getElement().getParent(),p=this.getContentElement("dictionaries","wordsHolder").getElement().getParent();switch(b){case "initialState":a.show();c.show();d.show();e.show();f.hide();l.hide();k.hide();m.show();n.hide();p.hide();break;case "wordsState":a.hide();c.hide();m.hide();n.show();p.show();break;case "dictionaryState":a.show(), +c.show(),d.hide(),e.hide(),f.show(),l.show(),k.show(),m.show(),n.hide(),p.hide()}},clearWordList:function(){this.getContentElement("dictionaries","itemList").removeAllChild()},getUserDictionary:function(){var b=this,a=d.scayt;a.getUserDictionary(a.getUserDictionaryName(),function(a){a.error||f.renderItemList.call(b,a.wordlist)})},renderItemList:function(b){for(var a=this.getContentElement("dictionaries","itemList"),c=0;c<b.length;c++)a.addChild(b[c])},contents:function(b,a){var c=[],d=a.config.scayt_uiTabs; +if(d){for(var e in d)1==d[e]&&c.push(b[e]);c.push(b[b.length-1])}else return b;return c}(k,d)};return f});CKEDITOR.tools.extend(CKEDITOR.ui.dialog,{scaytItemList:function(d,c,k){if(arguments.length){var n=this;d.on("load",function(){n.getElement().on("click",function(c){})});CKEDITOR.ui.dialog.uiElement.call(this,d,c,k,"",null,null,function(){var d=['\x3cp class\x3d"cke_dialog_ui_',c.type,'"'];c.style&&d.push('style\x3d"'+c.style+'" ');d.push("\x3e");d.push("\x3c/p\x3e");return d.join("")})}}}); +CKEDITOR.ui.dialog.scaytItemList.prototype=CKEDITOR.tools.extend(new CKEDITOR.ui.dialog.uiElement,{children:[],blocked:!1,addChild:function(d,c){var k=new CKEDITOR.dom.element("p"),n=new CKEDITOR.dom.element("a"),l=this.getElement().getChildren().getItem(0);this.children.push(d);k.addClass("cke_scaytItemList-child");k.setAttribute("data-cke-scayt-ud-word",d);k.appendText(d);n.addClass("cke_scaytItemList_remove");n.addClass("cke_dialog_close_button");n.setAttribute("href","javascript:void(0)");k.append(n); +l.append(k,c?!0:!1)},inChildren:function(d){return SCAYT.prototype.Utils.inArray(this.children,d)},removeChild:function(d,c){this.children.splice(SCAYT.prototype.Utils.indexOf(this.children,c),1);this.getElement().getChildren().getItem(0).$.removeChild(d)},removeAllChild:function(){this.children=[];this.getElement().getChildren().getItem(0).setHtml("")},block:function(){this.blocked=!0},unblock:function(){this.blocked=!1},isBlocked:function(){return this.blocked}}); +(function(){commonBuilder={build:function(d,c,k){return new CKEDITOR.ui.dialog[c.type](d,c,k)}};CKEDITOR.dialog.addUIElement("scaytItemList",commonBuilder)})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/scayt/dialogs/toolbar.css b/static/ckeditor/ckeditor/plugins/scayt/dialogs/toolbar.css new file mode 100644 index 0000000000..ecabdac9d2 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/scayt/dialogs/toolbar.css @@ -0,0 +1,71 @@ +a +{ + text-decoration:none; + padding: 2px 4px 4px 6px; + display : block; + border-width: 1px; + border-style: solid; + margin : 0px; +} + +a.cke_scayt_toogle:hover, +a.cke_scayt_toogle:focus, +a.cke_scayt_toogle:active +{ + border-color: #316ac5; + background-color: #dff1ff; + color : #000; + cursor: pointer; + margin : 0px; +} +a.cke_scayt_toogle { + color : #316ac5; + border-color: #fff; +} +.scayt_enabled a.cke_scayt_item { + color : #316ac5; + border-color: #fff; + margin : 0px; +} +.scayt_disabled a.cke_scayt_item { + color : gray; + border-color : #fff; +} +.scayt_enabled a.cke_scayt_item:hover, +.scayt_enabled a.cke_scayt_item:focus, +.scayt_enabled a.cke_scayt_item:active +{ + border-color: #316ac5; + background-color: #dff1ff; + color : #000; + cursor: pointer; +} +.scayt_disabled a.cke_scayt_item:hover, +.scayt_disabled a.cke_scayt_item:focus, +.scayt_disabled a.cke_scayt_item:active +{ + border-color: gray; + background-color: #dff1ff; + color : gray; + cursor: no-drop; +} +.cke_scayt_set_on, .cke_scayt_set_off +{ + display: none; +} +.scayt_enabled .cke_scayt_set_on +{ + display: none; +} +.scayt_disabled .cke_scayt_set_on +{ + display: inline; +} +.scayt_disabled .cke_scayt_set_off +{ + display: none; +} +.scayt_enabled .cke_scayt_set_off +{ + display: inline; +} diff --git a/static/ckeditor/ckeditor/plugins/scayt/skins/moono-lisa/scayt.css b/static/ckeditor/ckeditor/plugins/scayt/skins/moono-lisa/scayt.css new file mode 100644 index 0000000000..8d624be47a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/scayt/skins/moono-lisa/scayt.css @@ -0,0 +1,25 @@ +.scayt-lang-list > div +{ + padding-bottom: 6px !important; +} + +.scayt-lang-list > div input +{ + margin-right: 4px; +} + +#scayt_about_ +{ + margin: 30px auto 0 auto; +} + +#scayt_about_ p +{ + text-align: center; + margin-bottom: 10px; +} + +.cke_dialog_contents_body div[name=dictionaries] .cke_dialog_ui_hbox_last > a.cke_dialog_ui_button +{ + margin-top: 0; +} diff --git a/static/ckeditor/ckeditor/plugins/sharedspace/plugin.js b/static/ckeditor/ckeditor/plugins/sharedspace/plugin.js new file mode 100644 index 0000000000..372fbde3c0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sharedspace/plugin.js @@ -0,0 +1,7 @@ +/* + Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){function f(a,b,c){var e,d;if(c="string"==typeof c?CKEDITOR.document.getById(c):new CKEDITOR.dom.element(c))if(e=a.fire("uiSpace",{space:b,html:""}).html)a.on("uiSpace",function(a){a.data.space==b&&a.cancel()},null,null,1),d=c.append(CKEDITOR.dom.element.createFromHtml(g.output({id:a.id,name:a.name,langDir:a.lang.dir,langCode:a.langCode,space:b,spaceId:a.ui.spaceId(b),content:e}))),c.getCustomData("cke_hasshared")?d.hide():c.setCustomData("cke_hasshared",1),d.unselectable(),d.on("mousedown", +function(a){a=a.data;a.getTarget().hasAscendant("a",1)||a.preventDefault()}),a.focusManager.add(d,1),a.on("focus",function(){for(var a=0,b,e=c.getChildren();b=e.getItem(a);a++)b.type==CKEDITOR.NODE_ELEMENT&&(!b.equals(d)&&b.hasClass("cke_shared"))&&b.hide();d.show()}),a.on("destroy",function(){d.remove()})}var g=CKEDITOR.addTemplate("sharedcontainer",'<div id="cke_{name}" class="cke {id} cke_reset_all cke_chrome cke_editor_{name} cke_shared cke_detached cke_{langDir} '+CKEDITOR.env.cssClass+'" dir="{langDir}" title="'+ +(CKEDITOR.env.gecko?" ":"")+'" lang="{langCode}" role="presentation"><div class="cke_inner"><div id="{spaceId}" class="cke_{space}" role="presentation">{content}</div></div></div>');CKEDITOR.plugins.add("sharedspace",{init:function(a){a.on("loaded",function(){var b=a.config.sharedSpaces;if(b)for(var c in b)f(a,c,b[c])},null,null,9)}})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/showblocks/images/block_address.png b/static/ckeditor/ckeditor/plugins/showblocks/images/block_address.png new file mode 100644 index 0000000000..5abdae1279 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/showblocks/images/block_address.png differ diff --git a/static/ckeditor/ckeditor/plugins/showblocks/images/block_blockquote.png b/static/ckeditor/ckeditor/plugins/showblocks/images/block_blockquote.png new file mode 100644 index 0000000000..a8f497353c Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/showblocks/images/block_blockquote.png differ diff --git a/static/ckeditor/ckeditor/plugins/showblocks/images/block_div.png b/static/ckeditor/ckeditor/plugins/showblocks/images/block_div.png new file mode 100644 index 0000000000..87b3c17146 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/showblocks/images/block_div.png differ diff --git a/static/ckeditor/ckeditor/plugins/showblocks/images/block_h1.png b/static/ckeditor/ckeditor/plugins/showblocks/images/block_h1.png new file mode 100644 index 0000000000..3933325c08 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/showblocks/images/block_h1.png differ diff --git a/static/ckeditor/ckeditor/plugins/showblocks/images/block_h2.png b/static/ckeditor/ckeditor/plugins/showblocks/images/block_h2.png new file mode 100644 index 0000000000..c99894c265 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/showblocks/images/block_h2.png differ diff --git a/static/ckeditor/ckeditor/plugins/showblocks/images/block_h3.png b/static/ckeditor/ckeditor/plugins/showblocks/images/block_h3.png new file mode 100644 index 0000000000..cb73d679eb Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/showblocks/images/block_h3.png differ diff --git a/static/ckeditor/ckeditor/plugins/showblocks/images/block_h4.png b/static/ckeditor/ckeditor/plugins/showblocks/images/block_h4.png new file mode 100644 index 0000000000..7af6bb4984 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/showblocks/images/block_h4.png differ diff --git a/static/ckeditor/ckeditor/plugins/showblocks/images/block_h5.png b/static/ckeditor/ckeditor/plugins/showblocks/images/block_h5.png new file mode 100644 index 0000000000..ce5bec16cf Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/showblocks/images/block_h5.png differ diff --git a/static/ckeditor/ckeditor/plugins/showblocks/images/block_h6.png b/static/ckeditor/ckeditor/plugins/showblocks/images/block_h6.png new file mode 100644 index 0000000000..e67b982985 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/showblocks/images/block_h6.png differ diff --git a/static/ckeditor/ckeditor/plugins/showblocks/images/block_p.png b/static/ckeditor/ckeditor/plugins/showblocks/images/block_p.png new file mode 100644 index 0000000000..63a5820246 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/showblocks/images/block_p.png differ diff --git a/static/ckeditor/ckeditor/plugins/showblocks/images/block_pre.png b/static/ckeditor/ckeditor/plugins/showblocks/images/block_pre.png new file mode 100644 index 0000000000..955a8689a1 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/showblocks/images/block_pre.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/dialogs/smiley.js b/static/ckeditor/ckeditor/plugins/smiley/dialogs/smiley.js new file mode 100644 index 0000000000..37ceb70b1b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/smiley/dialogs/smiley.js @@ -0,0 +1,11 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.dialog.add("smiley",function(f){for(var e=f.config,a=f.lang.smiley,h=e.smiley_images,g=e.smiley_columns||8,k,m=function(l){var c=l.data.getTarget(),b=c.getName();if("a"==b)c=c.getChild(0);else if("img"!=b)return;var b=c.getAttribute("cke_src"),a=c.getAttribute("title"),c=f.document.createElement("img",{attributes:{src:b,"data-cke-saved-src":b,title:a,alt:a,width:c.$.width,height:c.$.height}});f.insertElement(c);k.hide();l.data.preventDefault()},q=CKEDITOR.tools.addFunction(function(a,c){a= +new CKEDITOR.dom.event(a);c=new CKEDITOR.dom.element(c);var b;b=a.getKeystroke();var d="rtl"==f.lang.dir;switch(b){case 38:if(b=c.getParent().getParent().getPrevious())b=b.getChild([c.getParent().getIndex(),0]),b.focus();a.preventDefault();break;case 40:(b=c.getParent().getParent().getNext())&&(b=b.getChild([c.getParent().getIndex(),0]))&&b.focus();a.preventDefault();break;case 32:m({data:a});a.preventDefault();break;case d?37:39:if(b=c.getParent().getNext())b=b.getChild(0),b.focus(),a.preventDefault(!0); +else if(b=c.getParent().getParent().getNext())(b=b.getChild([0,0]))&&b.focus(),a.preventDefault(!0);break;case d?39:37:if(b=c.getParent().getPrevious())b=b.getChild(0),b.focus(),a.preventDefault(!0);else if(b=c.getParent().getParent().getPrevious())b=b.getLast().getChild(0),b.focus(),a.preventDefault(!0)}}),d=CKEDITOR.tools.getNextId()+"_smiley_emtions_label",d=['\x3cdiv\x3e\x3cspan id\x3d"'+d+'" class\x3d"cke_voice_label"\x3e'+a.options+"\x3c/span\x3e",'\x3ctable role\x3d"listbox" aria-labelledby\x3d"'+ +d+'" style\x3d"width:100%;height:100%;border-collapse:separate;" cellspacing\x3d"2" cellpadding\x3d"2"',CKEDITOR.env.ie&&CKEDITOR.env.quirks?' style\x3d"position:absolute;"':"","\x3e\x3ctbody\x3e"],n=h.length,a=0;a<n;a++){0===a%g&&d.push('\x3ctr role\x3d"presentation"\x3e');var p="cke_smile_label_"+a+"_"+CKEDITOR.tools.getNextNumber();d.push('\x3ctd class\x3d"cke_dark_background cke_centered" style\x3d"vertical-align: middle;" role\x3d"presentation"\x3e\x3ca href\x3d"javascript:void(0)" role\x3d"option"', +' aria-posinset\x3d"'+(a+1)+'"',' aria-setsize\x3d"'+n+'"',' aria-labelledby\x3d"'+p+'"',' class\x3d"cke_smile cke_hand" tabindex\x3d"-1" onkeydown\x3d"CKEDITOR.tools.callFunction( ',q,', event, this );"\x3e','\x3cimg class\x3d"cke_hand" title\x3d"',e.smiley_descriptions[a],'" cke_src\x3d"',CKEDITOR.tools.htmlEncode(e.smiley_path+h[a]),'" alt\x3d"',e.smiley_descriptions[a],'"',' src\x3d"',CKEDITOR.tools.htmlEncode(e.smiley_path+h[a]),'"',CKEDITOR.env.ie?" onload\x3d\"this.setAttribute('width', 2); this.removeAttribute('width');\" ": +"",'\x3e\x3cspan id\x3d"'+p+'" class\x3d"cke_voice_label"\x3e'+e.smiley_descriptions[a]+"\x3c/span\x3e\x3c/a\x3e","\x3c/td\x3e");a%g==g-1&&d.push("\x3c/tr\x3e")}if(a<g-1){for(;a<g-1;a++)d.push("\x3ctd\x3e\x3c/td\x3e");d.push("\x3c/tr\x3e")}d.push("\x3c/tbody\x3e\x3c/table\x3e\x3c/div\x3e");e={type:"html",id:"smileySelector",html:d.join(""),onLoad:function(a){k=a.sender},focus:function(){var a=this;setTimeout(function(){a.getElement().getElementsByTag("a").getItem(0).focus()},0)},onClick:m,style:"width: 100%; border-collapse: separate;"}; +return{title:f.lang.smiley.title,minWidth:270,minHeight:120,contents:[{id:"tab1",label:"",title:"",expand:!0,padding:0,elements:[e]}],buttons:[CKEDITOR.dialog.cancelButton]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.gif b/static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.gif new file mode 100644 index 0000000000..21f81a2fab Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.png b/static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.png new file mode 100644 index 0000000000..559e5e71a3 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.gif b/static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.gif new file mode 100644 index 0000000000..c912d99ba7 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.png b/static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.png new file mode 100644 index 0000000000..c05d2be3a7 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.gif b/static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.gif new file mode 100644 index 0000000000..4162a7b24d Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.png b/static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.png new file mode 100644 index 0000000000..a711c0d8d8 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.gif b/static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.gif new file mode 100644 index 0000000000..0e420cba4a Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.png b/static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.png new file mode 100644 index 0000000000..e0b8e5c6f1 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.gif b/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.gif new file mode 100644 index 0000000000..b513342782 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.png b/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.png new file mode 100644 index 0000000000..a1891a3428 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.gif b/static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.gif new file mode 100644 index 0000000000..9b2a10055b Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.png b/static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.png new file mode 100644 index 0000000000..53247a8835 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/embaressed_smile.gif b/static/ckeditor/ckeditor/plugins/smiley/images/embaressed_smile.gif new file mode 100644 index 0000000000..8d39f252bb Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/embaressed_smile.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.gif b/static/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.gif new file mode 100644 index 0000000000..8d39f252bb Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.png b/static/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.png new file mode 100644 index 0000000000..34904b6667 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/envelope.gif b/static/ckeditor/ckeditor/plugins/smiley/images/envelope.gif new file mode 100644 index 0000000000..5294ec488d Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/envelope.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/envelope.png b/static/ckeditor/ckeditor/plugins/smiley/images/envelope.png new file mode 100644 index 0000000000..44398ad137 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/envelope.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/heart.gif b/static/ckeditor/ckeditor/plugins/smiley/images/heart.gif new file mode 100644 index 0000000000..160be8eff8 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/heart.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/heart.png b/static/ckeditor/ckeditor/plugins/smiley/images/heart.png new file mode 100644 index 0000000000..df409e62f5 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/heart.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/kiss.gif b/static/ckeditor/ckeditor/plugins/smiley/images/kiss.gif new file mode 100644 index 0000000000..ffb23db05a Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/kiss.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/kiss.png b/static/ckeditor/ckeditor/plugins/smiley/images/kiss.png new file mode 100644 index 0000000000..a4f2f36382 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/kiss.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.gif b/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.gif new file mode 100644 index 0000000000..ceb6e2d9ea Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.png b/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.png new file mode 100644 index 0000000000..0c4a92400d Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.gif b/static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.gif new file mode 100644 index 0000000000..3177355fe8 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.png b/static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.png new file mode 100644 index 0000000000..abc4e2d0fd Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.gif b/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.gif new file mode 100644 index 0000000000..fdcf5c33e3 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png b/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png new file mode 100644 index 0000000000..0f2649b78a Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.gif b/static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.gif new file mode 100644 index 0000000000..cca0729dd5 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.png b/static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.png new file mode 100644 index 0000000000..f20f3bf3c0 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.gif b/static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.gif new file mode 100644 index 0000000000..7d93474c32 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.png b/static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.png new file mode 100644 index 0000000000..fdaa28b786 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.gif b/static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.gif new file mode 100644 index 0000000000..44c3799690 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.png b/static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.png new file mode 100644 index 0000000000..5e63785e42 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.gif b/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.gif new file mode 100644 index 0000000000..5c8bee300d Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.png b/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.png new file mode 100644 index 0000000000..1823481f2f Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.gif b/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.gif new file mode 100644 index 0000000000..9cc37029a9 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.png b/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.png new file mode 100644 index 0000000000..d4e8b22a3c Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.gif b/static/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.gif new file mode 100644 index 0000000000..81e05b0f6a Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.png b/static/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.png new file mode 100644 index 0000000000..56553fbe11 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/tounge_smile.gif b/static/ckeditor/ckeditor/plugins/smiley/images/tounge_smile.gif new file mode 100644 index 0000000000..81e05b0f6a Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/tounge_smile.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif b/static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif new file mode 100644 index 0000000000..eef4fc00ab Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png b/static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png new file mode 100644 index 0000000000..f9714d1b3b Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.gif b/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.gif new file mode 100644 index 0000000000..6d3d64bd12 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.gif differ diff --git a/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.png b/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.png new file mode 100644 index 0000000000..7c99c3fc54 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.png differ diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/dialogs/sourcedialog.js b/static/ckeditor/ckeditor/plugins/sourcedialog/dialogs/sourcedialog.js new file mode 100644 index 0000000000..21e3292e71 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/dialogs/sourcedialog.js @@ -0,0 +1,6 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("sourcedialog",function(a){var b=CKEDITOR.document.getWindow().getViewPaneSize(),e=Math.min(b.width-70,800),b=b.height/1.5,d;return{title:a.lang.sourcedialog.title,minWidth:100,minHeight:100,onShow:function(){this.setValueOf("main","data",d=a.getData())},onOk:function(){function b(f,c){a.focus();a.setData(c,function(){f.hide();var b=a.createRange();b.moveToElementEditStart(a.editable());b.select()})}return function(){var a=this.getValueOf("main","data").replace(/\r/g,""),c=this; +if(a===d)return!0;setTimeout(function(){b(c,a)});return!1}}(),contents:[{id:"main",label:a.lang.sourcedialog.title,elements:[{type:"textarea",id:"data",dir:"ltr",inputStyle:"cursor:auto;width:"+e+"px;height:"+b+"px;tab-size:4;text-align:left;","class":"cke_source"}]}]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog-rtl.png b/static/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog-rtl.png new file mode 100644 index 0000000000..adf4af3c98 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog-rtl.png differ diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog.png b/static/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog.png new file mode 100644 index 0000000000..b4d0a15a4d Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog.png differ diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog-rtl.png b/static/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog-rtl.png new file mode 100644 index 0000000000..27d1ba8819 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog-rtl.png differ diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog.png b/static/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog.png new file mode 100644 index 0000000000..e44db37985 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog.png differ diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/af.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/af.js new file mode 100644 index 0000000000..f1491d1f0a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/af.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","af",{toolbar:"Bron",title:"Bron"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ar.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ar.js new file mode 100644 index 0000000000..b755d750ec --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ar.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","ar",{toolbar:"المصدر",title:"المصدر"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/bg.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/bg.js new file mode 100644 index 0000000000..1d8c6dca75 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/bg.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","bg",{toolbar:"Източник",title:"Източник"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/bn.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/bn.js new file mode 100644 index 0000000000..fd41806f75 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/bn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","bn",{toolbar:"সোর্স",title:"সোর্স"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/bs.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/bs.js new file mode 100644 index 0000000000..9cd039302c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/bs.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","bs",{toolbar:"HTML kôd",title:"HTML kôd"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ca.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ca.js new file mode 100644 index 0000000000..2419335079 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","ca",{toolbar:"Codi font",title:"Codi font"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/cs.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/cs.js new file mode 100644 index 0000000000..acd14e8da0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/cs.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","cs",{toolbar:"Zdroj",title:"Zdroj"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/cy.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/cy.js new file mode 100644 index 0000000000..d61bd35e4a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/cy.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","cy",{toolbar:"HTML",title:"HTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/da.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/da.js new file mode 100644 index 0000000000..7c21ca42f0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/da.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","da",{toolbar:"Kilde",title:"Kilde"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/de.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/de.js new file mode 100644 index 0000000000..49f7c610c9 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/de.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","de",{toolbar:"Quellcode",title:"Quellcode"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/el.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/el.js new file mode 100644 index 0000000000..58f9dd6c7b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/el.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","el",{toolbar:"Κώδικας",title:"Κώδικας"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en-au.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en-au.js new file mode 100644 index 0000000000..9dede83857 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en-au.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","en-au",{toolbar:"Source",title:"Source"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en-ca.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en-ca.js new file mode 100644 index 0000000000..244ef5ffb8 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en-ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","en-ca",{toolbar:"Source",title:"Source"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en-gb.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en-gb.js new file mode 100644 index 0000000000..9381cd0e9f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en-gb.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","en-gb",{toolbar:"Source",title:"Source"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en.js new file mode 100644 index 0000000000..20b116ed3e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","en",{toolbar:"Source",title:"Source"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/eo.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/eo.js new file mode 100644 index 0000000000..902480da4e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/eo.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","eo",{toolbar:"Fonto",title:"Fonto"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/es.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/es.js new file mode 100644 index 0000000000..e7f8551050 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/es.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","es",{toolbar:"Fuente HTML",title:"Fuente HTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/et.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/et.js new file mode 100644 index 0000000000..9c3848b2c4 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/et.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","et",{toolbar:"Lähtekood",title:"Lähtekood"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/eu.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/eu.js new file mode 100644 index 0000000000..dc75afe0af --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/eu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","eu",{toolbar:"HTML Iturburua",title:"HTML Iturburua"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fa.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fa.js new file mode 100644 index 0000000000..65b6306287 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fa.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","fa",{toolbar:"منبع",title:"منبع"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fi.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fi.js new file mode 100644 index 0000000000..b7630ff0fe --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","fi",{toolbar:"Koodi",title:"Koodi"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fo.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fo.js new file mode 100644 index 0000000000..ab4e55706a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fo.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","fo",{toolbar:"Kelda",title:"Kelda"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fr-ca.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fr-ca.js new file mode 100644 index 0000000000..23148f8e07 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fr-ca.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","fr-ca",{toolbar:"Source",title:"Source"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fr.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fr.js new file mode 100644 index 0000000000..8bc19780ad --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","fr",{toolbar:"Source",title:"Source"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/gl.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/gl.js new file mode 100644 index 0000000000..8a3bcbcd55 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/gl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","gl",{toolbar:"Orixe",title:"Orixe"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/gu.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/gu.js new file mode 100644 index 0000000000..2241ec6018 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/gu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","gu",{toolbar:"મૂળ કે પ્રાથમિક દસ્તાવેજ",title:"મૂળ કે પ્રાથમિક દસ્તાવેજ"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/he.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/he.js new file mode 100644 index 0000000000..4f25550236 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/he.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","he",{toolbar:"מקור",title:"מקור"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/hi.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/hi.js new file mode 100644 index 0000000000..41ebe9b1d7 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/hi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","hi",{toolbar:"सोर्स",title:"सोर्स"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/hr.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/hr.js new file mode 100644 index 0000000000..51d2d4dbe5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/hr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","hr",{toolbar:"Kôd",title:"Kôd"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/hu.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/hu.js new file mode 100644 index 0000000000..5e80c1e79f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/hu.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","hu",{toolbar:"Forráskód",title:"Forráskód"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/id.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/id.js new file mode 100644 index 0000000000..e5af768eaf --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/id.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","id",{toolbar:"Sumber",title:"Sumber"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/is.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/is.js new file mode 100644 index 0000000000..fa21def4a6 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/is.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","is",{toolbar:"Kóði",title:"Kóði"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/it.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/it.js new file mode 100644 index 0000000000..0a6c8c04d1 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/it.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","it",{toolbar:"Sorgente",title:"Sorgente"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ja.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ja.js new file mode 100644 index 0000000000..8183259105 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ja.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","ja",{toolbar:"ソース",title:"ソース"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ka.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ka.js new file mode 100644 index 0000000000..201586a46f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ka.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","ka",{toolbar:"კოდები",title:"კოდები"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/km.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/km.js new file mode 100644 index 0000000000..421b42c886 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/km.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","km",{toolbar:"អក្សរ​កូដ",title:"អក្សរ​កូដ"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ko.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ko.js new file mode 100644 index 0000000000..64aa700492 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ko.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","ko",{toolbar:"소스",title:"소스"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ku.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ku.js new file mode 100644 index 0000000000..61faf97b5c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ku.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","ku",{toolbar:"سەرچاوە",title:"سەرچاوە"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/lt.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/lt.js new file mode 100644 index 0000000000..4b297dd3ca --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/lt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","lt",{toolbar:"Šaltinis",title:"Šaltinis"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/lv.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/lv.js new file mode 100644 index 0000000000..1f454578fe --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/lv.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","lv",{toolbar:"HTML kods",title:"HTML kods"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/mn.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/mn.js new file mode 100644 index 0000000000..d1d2b63507 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/mn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","mn",{toolbar:"Код",title:"Код"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ms.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ms.js new file mode 100644 index 0000000000..69e7e9fb2b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ms.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","ms",{toolbar:"Sumber",title:"Sumber"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/nb.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/nb.js new file mode 100644 index 0000000000..224b0855bd --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/nb.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","nb",{toolbar:"Kilde",title:"Kilde"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/nl.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/nl.js new file mode 100644 index 0000000000..47d692d92e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/nl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","nl",{toolbar:"Broncode",title:"Broncode"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/no.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/no.js new file mode 100644 index 0000000000..02cadbac91 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/no.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","no",{toolbar:"Kilde",title:"Kilde"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/pl.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/pl.js new file mode 100644 index 0000000000..80d4f44b60 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/pl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","pl",{toolbar:"Źródło dokumentu",title:"Źródło dokumentu"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/pt-br.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/pt-br.js new file mode 100644 index 0000000000..358cfd18b1 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/pt-br.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","pt-br",{toolbar:"Código-Fonte",title:"Código-Fonte"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/pt.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/pt.js new file mode 100644 index 0000000000..f924ce8ddd --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/pt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","pt",{toolbar:"Fonte",title:"Fonte"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ro.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ro.js new file mode 100644 index 0000000000..cc82c71df2 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ro.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","ro",{toolbar:"Sursa",title:"Sursa"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ru.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ru.js new file mode 100644 index 0000000000..fbf6efb722 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ru.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","ru",{toolbar:"Исходник",title:"Источник"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/si.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/si.js new file mode 100644 index 0000000000..f869386e8f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/si.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","si",{toolbar:"මුලාශ්‍රය",title:"මුලාශ්‍රය"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sk.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sk.js new file mode 100644 index 0000000000..18dcae9288 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","sk",{toolbar:"Zdroj",title:"Zdroj"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sl.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sl.js new file mode 100644 index 0000000000..85cfe161e3 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sl.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","sl",{toolbar:"Izvorna koda",title:"Izvorna koda"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sq.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sq.js new file mode 100644 index 0000000000..1266a7fdec --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sq.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","sq",{toolbar:"Burimi",title:"Burimi"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sr-latn.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sr-latn.js new file mode 100644 index 0000000000..4f0736c2f7 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sr-latn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","sr-latn",{toolbar:"Kôd",title:"Kôd"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sr.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sr.js new file mode 100644 index 0000000000..84073825d5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","sr",{toolbar:"Kôд",title:"Kôд"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sv.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sv.js new file mode 100644 index 0000000000..2fec89c7e0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sv.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","sv",{toolbar:"Källa",title:"Källa"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/th.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/th.js new file mode 100644 index 0000000000..03e48901be --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/th.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","th",{toolbar:"ดูรหัส HTML",title:"ดูรหัส HTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/tr.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/tr.js new file mode 100644 index 0000000000..31ac46b5ea --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/tr.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","tr",{toolbar:"Kaynak",title:"Kaynak"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/tt.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/tt.js new file mode 100644 index 0000000000..a4c7d5eb4a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/tt.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","tt",{toolbar:"Чыганак",title:"Чыганак"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ug.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ug.js new file mode 100644 index 0000000000..efcc9d797e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ug.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","ug",{toolbar:"مەنبە",title:"مەنبە"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/uk.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/uk.js new file mode 100644 index 0000000000..ca9afc2e45 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/uk.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","uk",{toolbar:"Джерело",title:"Джерело"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/vi.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/vi.js new file mode 100644 index 0000000000..65c47d611b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/vi.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","vi",{toolbar:"Mã HTML",title:"Mã HTML"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/zh-cn.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/zh-cn.js new file mode 100644 index 0000000000..fc5bb0d8d5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/zh-cn.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","zh-cn",{toolbar:"源码",title:"源码"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/lang/zh.js b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/zh.js new file mode 100644 index 0000000000..c49aa82e04 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/lang/zh.js @@ -0,0 +1 @@ +CKEDITOR.plugins.setLang("sourcedialog","zh",{toolbar:"原始碼",title:"原始碼"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/sourcedialog/plugin.js b/static/ckeditor/ckeditor/plugins/sourcedialog/plugin.js new file mode 100644 index 0000000000..e730d679b7 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/sourcedialog/plugin.js @@ -0,0 +1,6 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.add("sourcedialog",{lang:"af,ar,bg,bn,bs,ca,cs,cy,da,de,el,en,en-au,en-ca,en-gb,eo,es,et,eu,fa,fi,fo,fr,fr-ca,gl,gu,he,hi,hr,hu,id,is,it,ja,ka,km,ko,ku,lt,lv,mn,ms,nb,nl,no,pl,pt,pt-br,ro,ru,si,sk,sl,sq,sr,sr-latn,sv,th,tr,tt,ug,uk,vi,zh,zh-cn",icons:"sourcedialog,sourcedialog-rtl",hidpi:!0,init:function(a){a.addCommand("sourcedialog",new CKEDITOR.dialogCommand("sourcedialog"));CKEDITOR.dialog.add("sourcedialog",this.path+"dialogs/sourcedialog.js");a.ui.addButton&&a.ui.addButton("Sourcedialog", +{label:a.lang.sourcedialog.toolbar,command:"sourcedialog",toolbar:"mode,10"})}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt new file mode 100644 index 0000000000..48472fb914 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt @@ -0,0 +1,20 @@ +Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + +cs.js Found: 118 Missing: 0 +cy.js Found: 118 Missing: 0 +de.js Found: 118 Missing: 0 +el.js Found: 16 Missing: 102 +eo.js Found: 118 Missing: 0 +et.js Found: 31 Missing: 87 +fa.js Found: 24 Missing: 94 +fi.js Found: 23 Missing: 95 +fr.js Found: 118 Missing: 0 +hr.js Found: 23 Missing: 95 +it.js Found: 118 Missing: 0 +nb.js Found: 118 Missing: 0 +nl.js Found: 118 Missing: 0 +no.js Found: 118 Missing: 0 +tr.js Found: 118 Missing: 0 +ug.js Found: 39 Missing: 79 +zh-cn.js Found: 118 Missing: 0 diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/af.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/af.js new file mode 100644 index 0000000000..5407963303 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/af.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","af",{euro:"Euroteken",lsquo:"Linker enkelkwotasie",rsquo:"Regter enkelkwotasie",ldquo:"Linker dubbelkwotasie",rdquo:"Regter dubbelkwotasie",ndash:"Kortkoppelteken",mdash:"Langkoppelteken",iexcl:"Omgekeerdeuitroepteken",cent:"Centteken",pound:"Pondteken",curren:"Geldeenheidteken",yen:"Yenteken",brvbar:"Gebreekte balk",sect:"Afdeelingsteken",uml:"Deelteken",copy:"Kopieregteken",ordf:"Vroulikekenteken",laquo:"Linkgeoorienteerde aanhaalingsteken",not:"Verbodeteken", +reg:"Regestrasieteken",macr:"Lengteteken",deg:"Gradeteken",sup2:"Kwadraatteken",sup3:"Kubiekteken",acute:"Akuutaksentteken",micro:"Mikroteken",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent", +Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent", +Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke", +Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis", +aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth", +ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis", +yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis", +trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ar.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ar.js new file mode 100644 index 0000000000..4e1860beac --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ar.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","ar",{euro:"رمز اليورو",lsquo:"علامة تنصيص فردية علي اليسار",rsquo:"علامة تنصيص فردية علي اليمين",ldquo:"علامة تنصيص مزدوجة علي اليسار",rdquo:"علامة تنصيص مزدوجة علي اليمين",ndash:"En dash",mdash:"Em dash",iexcl:"علامة تعجب مقلوبة",cent:"رمز السنت",pound:"رمز الاسترليني",curren:"رمز العملة",yen:"رمز الين",brvbar:"شريط مقطوع",sect:"رمز القسم",uml:"Diaeresis",copy:"علامة حقوق الطبع",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark", +not:"ليست علامة",reg:"علامة مسجّلة",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"علامة الإستفهام غير صحيحة",Agrave:"Latin capital letter A with grave accent", +Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent", +Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke", +Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis", +aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth", +ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis", +yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis", +trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/az.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/az.js new file mode 100644 index 0000000000..36eb1974d8 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/az.js @@ -0,0 +1,10 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","az",{euro:"Avropa valyuta işarəsi",lsquo:"Sol tək dırnaq işarəsi",rsquo:"Sağ tək dırnaq işarəsi",ldquo:"Sol cüt dırnaq işarəsi",rdquo:"Sağ cüt dırnaq işarəsi",ndash:"Çıxma işarəsi",mdash:"Tire",iexcl:"Çevrilmiş nida işarəsi",cent:"Sent işarəsi",pound:"Funt sterlinq işarəsi",curren:"Valyuta işarəsi",yen:"İena işarəsi",brvbar:"Sınmış zolaq",sect:"Paraqraf işarəsi",uml:"Umlyaut",copy:"Müəllif hüquqları haqqında işarəsi",ordf:"Qadın sıra indikatoru (a)",laquo:"Sola göstərən cüt bucaqlı dırnaq", +not:"QEYRİ işarəsi",reg:"Qeyd olunmuş işarəsi",macr:"Makron",deg:"Dərəcə işarəsi",sup2:"Yuxarı indeks 2",sup3:"Yuxarı indeks 3",acute:"Vurğu işarəsi",micro:"Mikro işarəsi",para:"Abzas işarəsi",middot:"Orta nöqtə",cedil:"Tsedilla işarəsi",sup1:"Yuxarı indeks 1",ordm:"Kişi say indikatoru (o)",raquo:"Sağa göstərən cüt bucaqlı dırnaq",frac14:"Dörddə bir hissə kəsri",frac12:"Bir yarım kəsri",frac34:"Dörddə üç hissə kəsri",iquest:"Çevrilmiş sual işarəsi",Agrave:"Soldan vurğu ilə A",Aacute:"Vurğu ilə A", +Acirc:"Dam işarəsi ilə A",Atilde:"Tilda işarəsi ilə A",Auml:"Umlyaut ilə A",Aring:"Dairəli A",AElig:"Æ hərfi",Ccedil:"Tsedilla ilə C",Egrave:"Soldan vurğu ilə E",Eacute:"Vurğu ilə E",Ecirc:"Dam işarəsi ilə E",Euml:"Umlyaut ilə E",Igrave:"Soldan vurğu ilə I",Iacute:"Vurğu ilə I",Icirc:"Dam işarəsi ilə I",Iuml:"Umlyaut ilə I",ETH:"Eth latin hərfi",Ntilde:"Tilda işarəsi ilə N",Ograve:"Soldan vurğu ilə O",Oacute:"Vurğu ilə O",Ocirc:"Dam işarəsi ilə E",Otilde:"Tilda işarəsi ilə O",Ouml:"Umlyaut ilə O", +times:"Vurma işarəsi",Oslash:"Üstxəttli O",Ugrave:"Soldan vurğu ilə U",Uacute:"Vurğu ilə U",Ucirc:"Dam işarəsi ilə U",Uuml:"Umlyaut ilə U",Yacute:"Vurğu ilə Y",THORN:"Thorn hərfi",szlig:"İti s kiçik hərfi",agrave:"Soldan vurğu ilə a",aacute:"Vurğu ilə a",acirc:"Dam işarəsi ilə a",atilde:"Tilda işarəsi ilə a",auml:"Umlyaut ilə a",aring:"Dairəli a",aelig:"æ hərfi",ccedil:"ç hərfi",egrave:"Soldan vurğu ilə e",eacute:"Vurğu ilə e",ecirc:"Dam işarəsi ilə e",euml:"Umlyaut ilə e",igrave:"Soldan vurğu ilə i", +iacute:"Vurğu ilə i",icirc:"Dam işarəsi ilə i",iuml:"Umlyaut ilə i",eth:"eth kiçik hərfi",ntilde:"Tilda işarəsi ilə n",ograve:"Soldan vurğu ilə o",oacute:"Vurğu ilə o",ocirc:"Dam işarəsi ilə o",otilde:"Tilda işarəsi ilə o",ouml:"Umlyaut ilə o",divide:"Bölünmə işarəsi",oslash:"Üstxəttli o",ugrave:"Soldan vurğu ilə u",uacute:"Vurğu ilə u",ucirc:"Dam işarəsi ilə u",uuml:"Umlyaut ilə u",yacute:"Vurğu ilə y",thorn:"Thorn kiçik hərfi",yuml:"Umlyaut ilə y",OElig:"OE ligaturası",oelig:"oe ligaturası",372:"Dam işarəsi ilə W", +374:"Dam işarəsi ilə Y",373:"Dam işarəsi ilə w",375:"Dam işarəsi ilə y",sbquo:"Aşağı dırnaq",8219:"Tək yuxarı çevrilmiş dırnaq",bdquo:"Aşağı cütlü dırnaqlar",hellip:"Üfüqi ellips",trade:"Əmtəə nişanı",9658:"Sağa göstərici",bull:"Marker",rarr:"Sağa istiqamətləndirən ox",rArr:"Sağa istiqamətləndirən cütlü ox",hArr:"Hərtərəfli ox",diams:"Qara kərpic",asymp:"Təxmini barabər"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/bg.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/bg.js new file mode 100644 index 0000000000..04b865efef --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/bg.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","bg",{euro:"Евро знак",lsquo:"Лява маркировка за цитат",rsquo:"Дясна маркировка за цитат",ldquo:"Лява двойна кавичка за цитат",rdquo:"Дясна двойна кавичка за цитат",ndash:"\\\\",mdash:"/",iexcl:"Обърната питанка",cent:"Знак за цент",pound:"Знак за паунд",curren:"Валутен знак",yen:"Знак за йена",brvbar:"Прекъсната линия",sect:"Знак за секция",uml:"Diaeresis",copy:"Знак за Copyright",ordf:"Женски ординарен индикатор",laquo:"Знак с двоен ъгъл за означаване на лява посока", +not:"Not sign",reg:"Registered sign",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent", +Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent", +Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke", +Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis", +aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth", +ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis", +yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis", +trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ca.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ca.js new file mode 100644 index 0000000000..6e91bc7e63 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ca.js @@ -0,0 +1,14 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","ca",{euro:"Símbol d'euro",lsquo:"Signe de cometa simple esquerra",rsquo:"Signe de cometa simple dreta",ldquo:"Signe de cometa doble esquerra",rdquo:"Signe de cometa doble dreta",ndash:"Guió",mdash:"Guió baix",iexcl:"Signe d'exclamació inversa",cent:"Símbol de percentatge",pound:"Símbol de lliura",curren:"Símbol de moneda",yen:"Símbol de Yen",brvbar:"Barra trencada",sect:"Símbol de secció",uml:"Dièresi",copy:"Símbol de Copyright",ordf:"Indicador ordinal femení", +laquo:"Signe de cometes angulars esquerra",not:"Símbol de negació",reg:"Símbol registrat",macr:"Macron",deg:"Símbol de grau",sup2:"Superíndex dos",sup3:"Superíndex tres",acute:"Accent agut",micro:"Símbol de micro",para:"Símbol de calderó",middot:"Punt volat",cedil:"Ce trencada",sup1:"Superíndex u",ordm:"Indicador ordinal masculí",raquo:"Signe de cometes angulars dreta",frac14:"Fracció vulgar un quart",frac12:"Fracció vulgar una meitat",frac34:"Fracció vulgar tres quarts",iquest:"Símbol d'interrogació invertit", +Agrave:"Lletra majúscula llatina A amb accent greu",Aacute:"Lletra majúscula llatina A amb accent agut",Acirc:"Lletra majúscula llatina A amb circumflex",Atilde:"Lletra majúscula llatina A amb titlla",Auml:"Lletra majúscula llatina A amb dièresi",Aring:"Lletra majúscula llatina A amb anell superior",AElig:"Lletra majúscula llatina Æ",Ccedil:"Lletra majúscula llatina C amb ce trencada",Egrave:"Lletra majúscula llatina E amb accent greu",Eacute:"Lletra majúscula llatina E amb accent agut",Ecirc:"Lletra majúscula llatina E amb circumflex", +Euml:"Lletra majúscula llatina E amb dièresi",Igrave:"Lletra majúscula llatina I amb accent greu",Iacute:"Lletra majúscula llatina I amb accent agut",Icirc:"Lletra majúscula llatina I amb circumflex",Iuml:"Lletra majúscula llatina I amb dièresi",ETH:"Lletra majúscula llatina Eth",Ntilde:"Lletra majúscula llatina N amb titlla",Ograve:"Lletra majúscula llatina O amb accent greu",Oacute:"Lletra majúscula llatina O amb accent agut",Ocirc:"Lletra majúscula llatina O amb circumflex",Otilde:"Lletra majúscula llatina O amb titlla", +Ouml:"Lletra majúscula llatina O amb dièresi",times:"Símbol de multiplicació",Oslash:"Lletra majúscula llatina O amb barra",Ugrave:"Lletra majúscula llatina U amb accent greu",Uacute:"Lletra majúscula llatina U amb accent agut",Ucirc:"Lletra majúscula llatina U amb circumflex",Uuml:"Lletra majúscula llatina U amb dièresi",Yacute:"Lletra majúscula llatina Y amb accent agut",THORN:"Lletra majúscula llatina Thorn",szlig:"Lletra minúscula llatina sharp s",agrave:"Lletra minúscula llatina a amb accent greu", +aacute:"Lletra minúscula llatina a amb accent agut",acirc:"Lletra minúscula llatina a amb circumflex",atilde:"Lletra minúscula llatina a amb titlla",auml:"Lletra minúscula llatina a amb dièresi",aring:"Lletra minúscula llatina a amb anell superior",aelig:"Lletra minúscula llatina æ",ccedil:"Lletra minúscula llatina c amb ce trencada",egrave:"Lletra minúscula llatina e amb accent greu",eacute:"Lletra minúscula llatina e amb accent agut",ecirc:"Lletra minúscula llatina e amb circumflex",euml:"Lletra minúscula llatina e amb dièresi", +igrave:"Lletra minúscula llatina i amb accent greu",iacute:"Lletra minúscula llatina i amb accent agut",icirc:"Lletra minúscula llatina i amb circumflex",iuml:"Lletra minúscula llatina i amb dièresi",eth:"Lletra minúscula llatina eth",ntilde:"Lletra minúscula llatina n amb titlla",ograve:"Lletra minúscula llatina o amb accent greu",oacute:"Lletra minúscula llatina o amb accent agut",ocirc:"Lletra minúscula llatina o amb circumflex",otilde:"Lletra minúscula llatina o amb titlla",ouml:"Lletra minúscula llatina o amb dièresi", +divide:"Símbol de divisió",oslash:"Lletra minúscula llatina o amb barra",ugrave:"Lletra minúscula llatina u amb accent greu",uacute:"Lletra minúscula llatina u amb accent agut",ucirc:"Lletra minúscula llatina u amb circumflex",uuml:"Lletra minúscula llatina u amb dièresi",yacute:"Lletra minúscula llatina y amb accent agut",thorn:"Lletra minúscula llatina thorn",yuml:"Lletra minúscula llatina y amb dièresi",OElig:"Lligadura majúscula llatina OE",oelig:"Lligadura minúscula llatina oe",372:"Lletra majúscula llatina W amb circumflex", +374:"Lletra majúscula llatina Y amb circumflex",373:"Lletra minúscula llatina w amb circumflex",375:"Lletra minúscula llatina y amb circumflex",sbquo:"Signe de cita simple baixa-9",8219:"Signe de cita simple alta-invertida-9",bdquo:"Signe de cita doble baixa-9",hellip:"Punts suspensius",trade:"Símbol de marca registrada",9658:"Punter negre apuntant cap a la dreta",bull:"Vinyeta",rarr:"Fletxa cap a la dreta",rArr:"Doble fletxa cap a la dreta",hArr:"Doble fletxa esquerra dreta",diams:"Vestit negre diamant", +asymp:"Gairebé igual a"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/cs.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/cs.js new file mode 100644 index 0000000000..77f3bec533 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/cs.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","cs",{euro:"Znak eura",lsquo:"Počáteční uvozovka jednoduchá",rsquo:"Koncová uvozovka jednoduchá",ldquo:"Počáteční uvozovka dvojitá",rdquo:"Koncová uvozovka dvojitá",ndash:"En pomlčka",mdash:"Em pomlčka",iexcl:"Obrácený vykřičník",cent:"Znak centu",pound:"Znak libry",curren:"Znak měny",yen:"Znak jenu",brvbar:"Přerušená svislá čára",sect:"Znak oddílu",uml:"Přehláska",copy:"Znak copyrightu",ordf:"Ženský indikátor rodu",laquo:"Znak dvojitých lomených uvozovek vlevo", +not:"Logistický zápor",reg:"Znak registrace",macr:"Pomlčka nad",deg:"Znak stupně",sup2:"Dvojka jako horní index",sup3:"Trojka jako horní index",acute:"Čárka nad vpravo",micro:"Znak mikro",para:"Znak odstavce",middot:"Tečka uprostřed",cedil:"Ocásek vlevo",sup1:"Jednička jako horní index",ordm:"Mužský indikátor rodu",raquo:"Znak dvojitých lomených uvozovek vpravo",frac14:"Obyčejný zlomek jedna čtvrtina",frac12:"Obyčejný zlomek jedna polovina",frac34:"Obyčejný zlomek tři čtvrtiny",iquest:"Znak obráceného otazníku", +Agrave:"Velké písmeno latinky A s čárkou nad vlevo",Aacute:"Velké písmeno latinky A s čárkou nad vpravo",Acirc:"Velké písmeno latinky A s vokáněm",Atilde:"Velké písmeno latinky A s tildou",Auml:"Velké písmeno latinky A s dvěma tečkami",Aring:"Velké písmeno latinky A s kroužkem nad",AElig:"Velké písmeno latinky Æ",Ccedil:"Velké písmeno latinky C s ocáskem vlevo",Egrave:"Velké písmeno latinky E s čárkou nad vlevo",Eacute:"Velké písmeno latinky E s čárkou nad vpravo",Ecirc:"Velké písmeno latinky E s vokáněm", +Euml:"Velké písmeno latinky E s dvěma tečkami",Igrave:"Velké písmeno latinky I s čárkou nad vlevo",Iacute:"Velké písmeno latinky I s čárkou nad vpravo",Icirc:"Velké písmeno latinky I s vokáněm",Iuml:"Velké písmeno latinky I s dvěma tečkami",ETH:"Velké písmeno latinky Eth",Ntilde:"Velké písmeno latinky N s tildou",Ograve:"Velké písmeno latinky O s čárkou nad vlevo",Oacute:"Velké písmeno latinky O s čárkou nad vpravo",Ocirc:"Velké písmeno latinky O s vokáněm",Otilde:"Velké písmeno latinky O s tildou", +Ouml:"Velké písmeno latinky O s dvěma tečkami",times:"Znak násobení",Oslash:"Velké písmeno latinky O přeškrtnuté",Ugrave:"Velké písmeno latinky U s čárkou nad vlevo",Uacute:"Velké písmeno latinky U s čárkou nad vpravo",Ucirc:"Velké písmeno latinky U s vokáněm",Uuml:"Velké písmeno latinky U s dvěma tečkami",Yacute:"Velké písmeno latinky Y s čárkou nad vpravo",THORN:"Velké písmeno latinky Thorn",szlig:"Malé písmeno latinky ostré s",agrave:"Malé písmeno latinky a s čárkou nad vlevo",aacute:"Malé písmeno latinky a s čárkou nad vpravo", +acirc:"Malé písmeno latinky a s vokáněm",atilde:"Malé písmeno latinky a s tildou",auml:"Malé písmeno latinky a s dvěma tečkami",aring:"Malé písmeno latinky a s kroužkem nad",aelig:"Malé písmeno latinky ae",ccedil:"Malé písmeno latinky c s ocáskem vlevo",egrave:"Malé písmeno latinky e s čárkou nad vlevo",eacute:"Malé písmeno latinky e s čárkou nad vpravo",ecirc:"Malé písmeno latinky e s vokáněm",euml:"Malé písmeno latinky e s dvěma tečkami",igrave:"Malé písmeno latinky i s čárkou nad vlevo",iacute:"Malé písmeno latinky i s čárkou nad vpravo", +icirc:"Malé písmeno latinky i s vokáněm",iuml:"Malé písmeno latinky i s dvěma tečkami",eth:"Malé písmeno latinky eth",ntilde:"Malé písmeno latinky n s tildou",ograve:"Malé písmeno latinky o s čárkou nad vlevo",oacute:"Malé písmeno latinky o s čárkou nad vpravo",ocirc:"Malé písmeno latinky o s vokáněm",otilde:"Malé písmeno latinky o s tildou",ouml:"Malé písmeno latinky o s dvěma tečkami",divide:"Znak dělení",oslash:"Malé písmeno latinky o přeškrtnuté",ugrave:"Malé písmeno latinky u s čárkou nad vlevo", +uacute:"Malé písmeno latinky u s čárkou nad vpravo",ucirc:"Malé písmeno latinky u s vokáněm",uuml:"Malé písmeno latinky u s dvěma tečkami",yacute:"Malé písmeno latinky y s čárkou nad vpravo",thorn:"Malé písmeno latinky thorn",yuml:"Malé písmeno latinky y s dvěma tečkami",OElig:"Velká ligatura latinky OE",oelig:"Malá ligatura latinky OE",372:"Velké písmeno latinky W s vokáněm",374:"Velké písmeno latinky Y s vokáněm",373:"Malé písmeno latinky w s vokáněm",375:"Malé písmeno latinky y s vokáněm",sbquo:"Dolní 9 uvozovka jednoduchá", +8219:"Horní obrácená 9 uvozovka jednoduchá",bdquo:"Dolní 9 uvozovka dvojitá",hellip:"Trojtečkový úvod",trade:"Obchodní značka",9658:"Černý ukazatel směřující vpravo",bull:"Kolečko",rarr:"Šipka vpravo",rArr:"Dvojitá šipka vpravo",hArr:"Dvojitá šipka vlevo a vpravo",diams:"Černé piky",asymp:"Téměř se rovná"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/cy.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/cy.js new file mode 100644 index 0000000000..d5a32e7f63 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/cy.js @@ -0,0 +1,14 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","cy",{euro:"Arwydd yr Ewro",lsquo:"Dyfynnod chwith unigol",rsquo:"Dyfynnod dde unigol",ldquo:"Dyfynnod chwith dwbl",rdquo:"Dyfynnod dde dwbl",ndash:"Cysylltnod en",mdash:"Cysylltnod em",iexcl:"Ebychnod gwrthdro",cent:"Arwydd sent",pound:"Arwydd punt",curren:"Arwydd arian cyfred",yen:"Arwydd yen",brvbar:"Bar toriedig",sect:"Arwydd adran",uml:"Didolnod",copy:"Arwydd hawlfraint",ordf:"Dangosydd benywaidd",laquo:"Dyfynnod dwbl ar ongl i'r chwith",not:"Arwydd Nid", +reg:"Arwydd cofrestredig",macr:"Macron",deg:"Arwydd gradd",sup2:"Dau uwchsgript",sup3:"Tri uwchsgript",acute:"Acen ddyrchafedig",micro:"Arwydd micro",para:"Arwydd pilcrow",middot:"Dot canol",cedil:"Sedila",sup1:"Un uwchsgript",ordm:"Dangosydd gwrywaidd",raquo:"Dyfynnod dwbl ar ongl i'r dde",frac14:"Ffracsiwn cyffredin un cwarter",frac12:"Ffracsiwn cyffredin un hanner",frac34:"Ffracsiwn cyffredin tri chwarter",iquest:"Marc cwestiwn gwrthdroëdig",Agrave:"Priflythyren A Lladinaidd gydag acen ddisgynedig", +Aacute:"Priflythyren A Lladinaidd gydag acen ddyrchafedig",Acirc:"Priflythyren A Lladinaidd gydag acen grom",Atilde:"Priflythyren A Lladinaidd gyda thild",Auml:"Priflythyren A Lladinaidd gyda didolnod",Aring:"Priflythyren A Lladinaidd gyda chylch uwchben",AElig:"Priflythyren Æ Lladinaidd",Ccedil:"Priflythyren C Lladinaidd gyda sedila",Egrave:"Priflythyren E Lladinaidd gydag acen ddisgynedig",Eacute:"Priflythyren E Lladinaidd gydag acen ddyrchafedig",Ecirc:"Priflythyren E Lladinaidd gydag acen grom", +Euml:"Priflythyren E Lladinaidd gyda didolnod",Igrave:"Priflythyren I Lladinaidd gydag acen ddisgynedig",Iacute:"Priflythyren I Lladinaidd gydag acen ddyrchafedig",Icirc:"Priflythyren I Lladinaidd gydag acen grom",Iuml:"Priflythyren I Lladinaidd gyda didolnod",ETH:"Priflythyren Eth",Ntilde:"Priflythyren N Lladinaidd gyda thild",Ograve:"Priflythyren O Lladinaidd gydag acen ddisgynedig",Oacute:"Priflythyren O Lladinaidd gydag acen ddyrchafedig",Ocirc:"Priflythyren O Lladinaidd gydag acen grom",Otilde:"Priflythyren O Lladinaidd gyda thild", +Ouml:"Priflythyren O Lladinaidd gyda didolnod",times:"Arwydd lluosi",Oslash:"Priflythyren O Lladinaidd gyda strôc",Ugrave:"Priflythyren U Lladinaidd gydag acen ddisgynedig",Uacute:"Priflythyren U Lladinaidd gydag acen ddyrchafedig",Ucirc:"Priflythyren U Lladinaidd gydag acen grom",Uuml:"Priflythyren U Lladinaidd gyda didolnod",Yacute:"Priflythyren Y Lladinaidd gydag acen ddyrchafedig",THORN:"Priflythyren Thorn",szlig:"Llythyren s fach Lladinaidd siarp ",agrave:"Llythyren a fach Lladinaidd gydag acen ddisgynedig", +aacute:"Llythyren a fach Lladinaidd gydag acen ddyrchafedig",acirc:"Llythyren a fach Lladinaidd gydag acen grom",atilde:"Llythyren a fach Lladinaidd gyda thild",auml:"Llythyren a fach Lladinaidd gyda didolnod",aring:"Llythyren a fach Lladinaidd gyda chylch uwchben",aelig:"Llythyren æ fach Lladinaidd",ccedil:"Llythyren c fach Lladinaidd gyda sedila",egrave:"Llythyren e fach Lladinaidd gydag acen ddisgynedig",eacute:"Llythyren e fach Lladinaidd gydag acen ddyrchafedig",ecirc:"Llythyren e fach Lladinaidd gydag acen grom", +euml:"Llythyren e fach Lladinaidd gyda didolnod",igrave:"Llythyren i fach Lladinaidd gydag acen ddisgynedig",iacute:"Llythyren i fach Lladinaidd gydag acen ddyrchafedig",icirc:"Llythyren i fach Lladinaidd gydag acen grom",iuml:"Llythyren i fach Lladinaidd gyda didolnod",eth:"Llythyren eth fach",ntilde:"Llythyren n fach Lladinaidd gyda thild",ograve:"Llythyren o fach Lladinaidd gydag acen ddisgynedig",oacute:"Llythyren o fach Lladinaidd gydag acen ddyrchafedig",ocirc:"Llythyren o fach Lladinaidd gydag acen grom", +otilde:"Llythyren o fach Lladinaidd gyda thild",ouml:"Llythyren o fach Lladinaidd gyda didolnod",divide:"Arwydd rhannu",oslash:"Llythyren o fach Lladinaidd gyda strôc",ugrave:"Llythyren u fach Lladinaidd gydag acen ddisgynedig",uacute:"Llythyren u fach Lladinaidd gydag acen ddyrchafedig",ucirc:"Llythyren u fach Lladinaidd gydag acen grom",uuml:"Llythyren u fach Lladinaidd gyda didolnod",yacute:"Llythyren y fach Lladinaidd gydag acen ddisgynedig",thorn:"Llythyren o fach Lladinaidd gyda strôc",yuml:"Llythyren y fach Lladinaidd gyda didolnod", +OElig:"Priflythyren cwlwm OE Lladinaidd ",oelig:"Priflythyren cwlwm oe Lladinaidd ",372:"Priflythyren W gydag acen grom",374:"Priflythyren Y gydag acen grom",373:"Llythyren w fach gydag acen grom",375:"Llythyren y fach gydag acen grom",sbquo:"Dyfynnod sengl 9-isel",8219:"Dyfynnod sengl 9-uchel cildro",bdquo:"Dyfynnod dwbl 9-isel",hellip:"Coll geiriau llorweddol",trade:"Arwydd marc masnachol",9658:"Pwyntydd du i'r dde",bull:"Bwled",rarr:"Saeth i'r dde",rArr:"Saeth ddwbl i'r dde",hArr:"Saeth ddwbl i'r chwith", +diams:"Siwt diemwnt du",asymp:"Bron yn hafal iddo"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/da.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/da.js new file mode 100644 index 0000000000..42c60ff743 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/da.js @@ -0,0 +1,11 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","da",{euro:"Euro-tegn",lsquo:"Venstre enkelt anførselstegn",rsquo:"Højre enkelt anførselstegn",ldquo:"Venstre dobbelt anførselstegn",rdquo:"Højre dobbelt anførselstegn",ndash:"Bindestreg",mdash:"Tankestreg",iexcl:"Omvendt udråbstegn",cent:"Cent-tegn",pound:"Pund-tegn",curren:"Valuta-tegn",yen:"Yen-tegn",brvbar:"Brudt streg",sect:"Paragraftegn",uml:"Umlaut",copy:"Copyright-tegn",ordf:"Feminin ordinal indikator",laquo:"Venstre dobbel citations-vinkel",not:"Negation", +reg:"Registreret varemærke tegn",macr:"Macron",deg:"Grad-tegn",sup2:"Superscript to",sup3:"Superscript tre",acute:"Prim-tegn",micro:"Mikro-tegn",para:"Pilcrow-tegn",middot:"Punkt-tegn",cedil:"Cedille",sup1:"Superscript et",ordm:"Maskulin ordinal indikator",raquo:"Højre dobbel citations-vinkel",frac14:"En fjerdedel",frac12:"En halv",frac34:"En tredjedel",iquest:"Omvendt udråbstegn",Agrave:"Stort A med accent grave",Aacute:"Stort A med accent aigu",Acirc:"Stort A med cirkumfleks",Atilde:"Stort A med tilde", +Auml:"Stort A med umlaut",Aring:"Stort Å",AElig:"Stort Æ",Ccedil:"Stort C med cedille",Egrave:"Stort E med accent grave",Eacute:"Stort E med accent aigu",Ecirc:"Stort E med cirkumfleks",Euml:"Stort E med umlaut",Igrave:"Stort I med accent grave",Iacute:"Stort I med accent aigu",Icirc:"Stort I med cirkumfleks",Iuml:"Stort I med umlaut",ETH:"Stort Ð (edd)",Ntilde:"Stort N med tilde",Ograve:"Stort O med accent grave",Oacute:"Stort O med accent aigu",Ocirc:"Stort O med cirkumfleks",Otilde:"Stort O med tilde", +Ouml:"Stort O med umlaut",times:"Gange-tegn",Oslash:"Stort Ø",Ugrave:"Stort U med accent grave",Uacute:"Stort U med accent aigu",Ucirc:"Stort U med cirkumfleks",Uuml:"Stort U med umlaut",Yacute:"Stort Y med accent aigu",THORN:"Stort Thorn",szlig:"Lille eszett",agrave:"Lille a med accent grave",aacute:"Lille a med accent aigu",acirc:"Lille a med cirkumfleks",atilde:"Lille a med tilde",auml:"Lille a med umlaut",aring:"Lilla å",aelig:"Lille æ",ccedil:"Lille c med cedille",egrave:"Lille e med accent grave", +eacute:"Lille e med accent aigu",ecirc:"Lille e med cirkumfleks",euml:"Lille e med umlaut",igrave:"Lille i med accent grave",iacute:"Lille i med accent aigu",icirc:"Lille i med cirkumfleks",iuml:"Lille i med umlaut",eth:"Lille ð (edd)",ntilde:"Lille n med tilde",ograve:"Lille o med accent grave",oacute:"Lille o med accent aigu",ocirc:"Lille o med cirkumfleks",otilde:"Lille o med tilde",ouml:"Lille o med umlaut",divide:"Divisions-tegn",oslash:"Lille ø",ugrave:"Lille u med accent grave",uacute:"Lille u med accent aigu", +ucirc:"Lille u med cirkumfleks",uuml:"Lille u med umlaut",yacute:"Lille y med accent aigu",thorn:"Lille thorn",yuml:"Lille y med umlaut",OElig:"Stort Æ",oelig:"Lille æ",372:"Stort W med cirkumfleks",374:"Stort Y med cirkumfleks",373:"Lille w med cirkumfleks",375:"Lille y med cirkumfleks",sbquo:"Lavt enkelt 9-komma citationstegn",8219:"Højt enkelt 9-komma citationstegn",bdquo:"Dobbelt 9-komma citationstegn",hellip:"Tre horizontale prikker",trade:"Varemærke-tegn",9658:"Sort højre pil",bull:"Punkt", +rarr:"Højre pil",rArr:"Højre dobbelt pil",hArr:"Venstre højre dobbelt pil",diams:"Sort diamant",asymp:"Næsten lig med"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/de-ch.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/de-ch.js new file mode 100644 index 0000000000..08a0f2fd0c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/de-ch.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","de-ch",{euro:"Euro-Zeichen",lsquo:"Hochkomma links",rsquo:"Hochkomma rechts",ldquo:"Anführungszeichen links",rdquo:"Anführungszeichen rechts",ndash:"Kleiner Strich",mdash:"Mittlerer Strich",iexcl:"Invertiertes Ausrufezeichen",cent:"Cent-Zeichen",pound:"Pfund-Zeichen",curren:"Währungszeichen",yen:"Yen",brvbar:"Gestrichelte Linie",sect:"Paragrafenzeichen",uml:"Diäresis",copy:"Copyright-Zeichen",ordf:"Feminine ordinal Anzeige",laquo:"Nach links zeigenden Doppel-Winkel Anführungszeichen", +not:"Not-Zeichen",reg:"Registriert-Zeichen",macr:"Längezeichen",deg:"Grad-Zeichen",sup2:"Hoch 2",sup3:"Hoch 3",acute:"Akzentzeichen ",micro:"Mikro-Zeichen",para:"Pilcrow-Zeichen",middot:"Mittelpunkt",cedil:"Cedilla",sup1:"Hoch 1",ordm:"Männliche Ordnungszahl Anzeige",raquo:"Nach rechts zeigenden Doppel-Winkel Anführungszeichen",frac14:"ein Viertel",frac12:"Hälfte",frac34:"Dreiviertel",iquest:"Umgekehrtes Fragezeichen",Agrave:"Lateinischer Buchstabe A mit Accent grave",Aacute:"Lateinischer Buchstabe A mit Akutakzent", +Acirc:"Lateinischer Buchstabe A mit Zirkumflex",Atilde:"Lateinischer Buchstabe A mit Tilde",Auml:"Lateinischer Buchstabe A mit Trema",Aring:"Lateinischer Buchstabe A mit Ring oben",AElig:"Lateinischer Buchstabe Æ",Ccedil:"Lateinischer Buchstabe C mit Cedille",Egrave:"Lateinischer Buchstabe E mit Accent grave",Eacute:"Lateinischer Buchstabe E mit Akutakzent",Ecirc:"Lateinischer Buchstabe E mit Zirkumflex",Euml:"Lateinischer Buchstabe E Trema",Igrave:"Lateinischer Buchstabe I mit Accent grave",Iacute:"Lateinischer Buchstabe I mit Akutakzent", +Icirc:"Lateinischer Buchstabe I mit Zirkumflex",Iuml:"Lateinischer Buchstabe I mit Trema",ETH:"Lateinischer Buchstabe Eth",Ntilde:"Lateinischer Buchstabe N mit Tilde",Ograve:"Lateinischer Buchstabe O mit Accent grave",Oacute:"Lateinischer Buchstabe O mit Akutakzent",Ocirc:"Lateinischer Buchstabe O mit Zirkumflex",Otilde:"Lateinischer Buchstabe O mit Tilde",Ouml:"Lateinischer Buchstabe O mit Trema",times:"Multiplikation",Oslash:"Lateinischer Buchstabe O durchgestrichen",Ugrave:"Lateinischer Buchstabe U mit Accent grave", +Uacute:"Lateinischer Buchstabe U mit Akutakzent",Ucirc:"Lateinischer Buchstabe U mit Zirkumflex",Uuml:"Lateinischer Buchstabe a mit Trema",Yacute:"Lateinischer Buchstabe a mit Akzent",THORN:"Lateinischer Buchstabe mit Dorn",szlig:"Kleiner lateinischer Buchstabe scharfem s",agrave:"Kleiner lateinischer Buchstabe a mit Accent grave",aacute:"Kleiner lateinischer Buchstabe a mit Akut",acirc:"Lateinischer Buchstabe a mit Zirkumflex",atilde:"Lateinischer Buchstabe a mit Tilde",auml:"Kleiner lateinischer Buchstabe a mit Trema", +aring:"Kleiner lateinischer Buchstabe a mit Ring oben",aelig:"Lateinischer Buchstabe æ",ccedil:"Kleiner lateinischer Buchstabe c mit Cedille",egrave:"Kleiner lateinischer Buchstabe e mit Accent grave",eacute:"Kleiner lateinischer Buchstabe e mit Akut",ecirc:"Kleiner lateinischer Buchstabe e mit Zirkumflex",euml:"Kleiner lateinischer Buchstabe e mit Trema",igrave:"Kleiner lateinischer Buchstabe i mit AkzentGrave",iacute:"Kleiner lateinischer Buchstabe i mit Akzent",icirc:"Kleiner lateinischer Buchstabe i mit Zirkumflex", +iuml:"Kleiner lateinischer Buchstabe i mit Trema",eth:"Kleiner lateinischer Buchstabe eth",ntilde:"Kleiner lateinischer Buchstabe n mit Tilde",ograve:"Kleiner lateinischer Buchstabe o mit Accent grave",oacute:"Kleiner lateinischer Buchstabe o mit Akzent",ocirc:"Kleiner lateinischer Buchstabe o mit Zirkumflex",otilde:"Lateinischer Buchstabe i mit Tilde",ouml:"Kleiner lateinischer Buchstabe o mit Trema",divide:"Divisionszeichen",oslash:"Kleiner lateinischer Buchstabe o durchgestrichen",ugrave:"Kleiner lateinischer Buchstabe u mit Accent grave", +uacute:"Kleiner lateinischer Buchstabe u mit Akut",ucirc:"Kleiner lateinischer Buchstabe u mit Zirkumflex",uuml:"Kleiner lateinischer Buchstabe u mit Trema",yacute:"Kleiner lateinischer Buchstabe y mit Akut",thorn:"Kleiner lateinischer Buchstabe Dorn",yuml:"Kleiner lateinischer Buchstabe y mit Trema",OElig:"Lateinischer Buchstabe Ligatur OE",oelig:"Kleiner lateinischer Buchstabe Ligatur OE",372:"Lateinischer Buchstabe W mit Zirkumflex",374:"Lateinischer Buchstabe Y mit Zirkumflex",373:"Kleiner lateinischer Buchstabe w mit Zirkumflex", +375:"Kleiner lateinischer Buchstabe y mit Zirkumflex",sbquo:"Tiefergestelltes Komma",8219:"Rumgedrehtes Komma",bdquo:"Doppeltes Anführungszeichen unten",hellip:"horizontale Auslassungspunkte",trade:"Handelszeichen",9658:"Dreickspfeil rechts",bull:"Bullet",rarr:"Pfeil rechts",rArr:"Doppelpfeil rechts",hArr:"Doppelpfeil links",diams:"Karo",asymp:"Ungefähr"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/de.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/de.js new file mode 100644 index 0000000000..c651a12815 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/de.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","de",{euro:"Euro Zeichen",lsquo:"Hochkomma links",rsquo:"Hochkomma rechts",ldquo:"Anführungszeichen links",rdquo:"Anführungszeichen rechts",ndash:"Kleiner Strich",mdash:"Mittlerer Strich",iexcl:"Invertiertes Ausrufezeichen",cent:"Cent-Zeichen",pound:"Pfund-Zeichen",curren:"Währungszeichen",yen:"Yen",brvbar:"Gestrichelte Linie",sect:"Paragrafenzeichen",uml:"Diäresis",copy:"Copyright-Zeichen",ordf:"Feminine ordinal Anzeige",laquo:"Nach links zeigenden Doppel-Winkel Anführungszeichen", +not:"Not-Zeichen",reg:"Registriert-Zeichen",macr:"Längezeichen",deg:"Grad-Zeichen",sup2:"Hoch 2",sup3:"Hoch 3",acute:"Akzentzeichen ",micro:"Mikro-Zeichen",para:"Pilcrow-Zeichen",middot:"Mittelpunkt",cedil:"Cedilla",sup1:"Hoch 1",ordm:"Männliche Ordnungszahl Anzeige",raquo:"Nach rechts zeigenden Doppel-Winkel Anführungszeichen",frac14:"ein Viertel",frac12:"Hälfte",frac34:"Dreiviertel",iquest:"Umgekehrtes Fragezeichen",Agrave:"Lateinischer Buchstabe A mit AkzentGrave",Aacute:"Lateinischer Buchstabe A mit Akutakzent", +Acirc:"Lateinischer Buchstabe A mit Zirkumflex",Atilde:"Lateinischer Buchstabe A mit Tilde",Auml:"Lateinischer Buchstabe A mit Trema",Aring:"Lateinischer Buchstabe A mit Ring oben",AElig:"Lateinischer Buchstabe Æ",Ccedil:"Lateinischer Buchstabe C mit Cedille",Egrave:"Lateinischer Buchstabe E mit AkzentGrave",Eacute:"Lateinischer Buchstabe E mit Akutakzent",Ecirc:"Lateinischer Buchstabe E mit Zirkumflex",Euml:"Lateinischer Buchstabe E Trema",Igrave:"Lateinischer Buchstabe I mit AkzentGrave",Iacute:"Lateinischer Buchstabe I mit Akutakzent", +Icirc:"Lateinischer Buchstabe I mit Zirkumflex",Iuml:"Lateinischer Buchstabe I mit Trema",ETH:"Lateinischer Buchstabe Eth",Ntilde:"Lateinischer Buchstabe N mit Tilde",Ograve:"Lateinischer Buchstabe O mit AkzentGrave",Oacute:"Lateinischer Buchstabe O mit Akutakzent",Ocirc:"Lateinischer Buchstabe O mit Zirkumflex",Otilde:"Lateinischer Buchstabe O mit Tilde",Ouml:"Lateinischer Buchstabe O mit Trema",times:"Multiplikation",Oslash:"Lateinischer Buchstabe O durchgestrichen",Ugrave:"Lateinischer Buchstabe U mit Akzentgrave", +Uacute:"Lateinischer Buchstabe U mit Akutakzent",Ucirc:"Lateinischer Buchstabe U mit Zirkumflex",Uuml:"Lateinischer Buchstabe a mit Trema",Yacute:"Lateinischer Buchstabe a mit Akzent",THORN:"Lateinischer Buchstabe mit Dorn",szlig:"Kleiner lateinischer Buchstabe scharfe s",agrave:"Kleiner lateinischer Buchstabe a mit Accent grave",aacute:"Kleiner lateinischer Buchstabe a mit Akut",acirc:"Lateinischer Buchstabe a mit Zirkumflex",atilde:"Lateinischer Buchstabe a mit Tilde",auml:"Kleiner lateinischer Buchstabe a mit Trema", +aring:"Kleiner lateinischer Buchstabe a mit Ring oben",aelig:"Lateinischer Buchstabe æ",ccedil:"Kleiner lateinischer Buchstabe c mit Cedille",egrave:"Kleiner lateinischer Buchstabe e mit Accent grave",eacute:"Kleiner lateinischer Buchstabe e mit Akut",ecirc:"Kleiner lateinischer Buchstabe e mit Zirkumflex",euml:"Kleiner lateinischer Buchstabe e mit Trema",igrave:"Kleiner lateinischer Buchstabe i mit AkzentGrave",iacute:"Kleiner lateinischer Buchstabe i mit Akzent",icirc:"Kleiner lateinischer Buchstabe i mit Zirkumflex", +iuml:"Kleiner lateinischer Buchstabe i mit Trema",eth:"Kleiner lateinischer Buchstabe eth",ntilde:"Kleiner lateinischer Buchstabe n mit Tilde",ograve:"Kleiner lateinischer Buchstabe o mit Accent grave",oacute:"Kleiner lateinischer Buchstabe o mit Akzent",ocirc:"Kleiner lateinischer Buchstabe o mit Zirkumflex",otilde:"Lateinischer Buchstabe i mit Tilde",ouml:"Kleiner lateinischer Buchstabe o mit Trema",divide:"Divisionszeichen",oslash:"Kleiner lateinischer Buchstabe o durchgestrichen",ugrave:"Kleiner lateinischer Buchstabe u mit Accent grave", +uacute:"Kleiner lateinischer Buchstabe u mit Akut",ucirc:"Kleiner lateinischer Buchstabe u mit Zirkumflex",uuml:"Kleiner lateinischer Buchstabe u mit Trema",yacute:"Kleiner lateinischer Buchstabe y mit Akut",thorn:"Kleiner lateinischer Buchstabe Dorn",yuml:"Kleiner lateinischer Buchstabe y mit Trema",OElig:"Lateinischer Buchstabe Ligatur OE",oelig:"Kleiner lateinischer Buchstabe Ligatur OE",372:"Lateinischer Buchstabe W mit Zirkumflex",374:"Lateinischer Buchstabe Y mit Zirkumflex",373:"Kleiner lateinischer Buchstabe w mit Zirkumflex", +375:"Kleiner lateinischer Buchstabe y mit Zirkumflex",sbquo:"Tiefergestelltes Komma",8219:"Rumgedrehtes Komma",bdquo:"Doppeltes Anführungszeichen unten",hellip:"horizontale Auslassungspunkte",trade:"Handelszeichen",9658:"Dreickspfeil rechts",bull:"Bullet",rarr:"Pfeil rechts",rArr:"Doppelpfeil rechts",hArr:"Doppelpfeil links",diams:"Karo",asymp:"Ungefähr"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/el.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/el.js new file mode 100644 index 0000000000..9edbf9631b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/el.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","el",{euro:"Σύμβολο Ευρώ",lsquo:"Αριστερός χαρακτήρας μονού εισαγωγικού",rsquo:"Δεξιός χαρακτήρας μονού εισαγωγικού",ldquo:"Αριστερός χαρακτήρας ευθύγραμμων εισαγωγικών",rdquo:"Δεξιός χαρακτήρας ευθύγραμμων εισαγωγικών",ndash:"Παύλα en",mdash:"Παύλα em",iexcl:"Ανάποδο θαυμαστικό",cent:"Σύμβολο σεντ",pound:"Σύμβολο λίρας",curren:"Σύμβολο συναλλαγματικής μονάδας",yen:"Σύμβολο Γιεν",brvbar:"Σπασμένη μπάρα",sect:"Σύμβολο τμήματος",uml:"Διαίρεση",copy:"Σύμβολο πνευματικών δικαιωμάτων", +ordf:"Θηλυκός τακτικός δείκτης",laquo:"Γωνιώδη εισαγωγικά αριστερής κατάδειξης",not:"Σύμβολο άρνησης",reg:"Σύμβολο σημάτων κατατεθέν",macr:"Μακρόν",deg:"Σύμβολο βαθμού",sup2:"Εκτεθειμένο δύο",sup3:"Εκτεθειμένο τρία",acute:"Οξεία",micro:"Σύμβολο μικρού",para:"Σύμβολο παραγράφου",middot:"Μέση τελεία",cedil:"Υπογεγραμμένη",sup1:"Εκτεθειμένο ένα",ordm:"Αρσενικός τακτικός δείκτης",raquo:"Γωνιώδη εισαγωγικά δεξιάς κατάδειξης",frac14:"Γνήσιο κλάσμα ενός τετάρτου",frac12:"Γνήσιο κλάσμα ενός δεύτερου",frac34:"Γνήσιο κλάσμα τριών τετάρτων", +iquest:"Ανάποδο θαυμαστικό",Agrave:"Λατινικό κεφαλαίο γράμμα A με βαρεία",Aacute:"Λατινικό κεφαλαίο γράμμα A με οξεία",Acirc:"Λατινικό κεφαλαίο γράμμα A με περισπωμένη",Atilde:"Λατινικό κεφαλαίο γράμμα A με περισπωμένη",Auml:"Λατινικό κεφαλαίο γράμμα A με διαλυτικά",Aring:"Λατινικό κεφαλαίο γράμμα A με δακτύλιο επάνω",AElig:"Λατινικό κεφαλαίο γράμμα Æ",Ccedil:"Λατινικό κεφαλαίο γράμμα C με υπογεγραμμένη",Egrave:"Λατινικό κεφαλαίο γράμμα E με βαρεία",Eacute:"Λατινικό κεφαλαίο γράμμα E με οξεία",Ecirc:"Λατινικό κεφαλαίο γράμμα Ε με περισπωμένη ", +Euml:"Λατινικό κεφαλαίο γράμμα Ε με διαλυτικά",Igrave:"Λατινικό κεφαλαίο γράμμα I με βαρεία",Iacute:"Λατινικό κεφαλαίο γράμμα I με οξεία",Icirc:"Λατινικό κεφαλαίο γράμμα I με περισπωμένη",Iuml:"Λατινικό κεφαλαίο γράμμα I με διαλυτικά ",ETH:"Λατινικό κεφαλαίο γράμμα Eth",Ntilde:"Λατινικό κεφαλαίο γράμμα N με περισπωμένη",Ograve:"Λατινικό κεφαλαίο γράμμα O με βαρεία",Oacute:"Λατινικό κεφαλαίο γράμμα O με οξεία",Ocirc:"Λατινικό κεφαλαίο γράμμα O με περισπωμένη ",Otilde:"Λατινικό κεφαλαίο γράμμα O με περισπωμένη", +Ouml:"Λατινικό κεφαλαίο γράμμα O με διαλυτικά",times:"Σύμβολο πολλαπλασιασμού",Oslash:"Λατινικό κεφαλαίο γράμμα O με μολυβιά",Ugrave:"Λατινικό κεφαλαίο γράμμα U με βαρεία",Uacute:"Λατινικό κεφαλαίο γράμμα U με οξεία",Ucirc:"Λατινικό κεφαλαίο γράμμα U με περισπωμένη",Uuml:"Λατινικό κεφαλαίο γράμμα U με διαλυτικά",Yacute:"Λατινικό κεφαλαίο γράμμα Y με οξεία",THORN:"Λατινικό κεφαλαίο γράμμα Thorn",szlig:"Λατινικό μικρό γράμμα απότομο s",agrave:"Λατινικό μικρό γράμμα a με βαρεία",aacute:"Λατινικό μικρό γράμμα a με οξεία", +acirc:"Λατινικό μικρό γράμμα a με περισπωμένη",atilde:"Λατινικό μικρό γράμμα a με περισπωμένη",auml:"Λατινικό μικρό γράμμα a με διαλυτικά",aring:"Λατινικό μικρό γράμμα a με δακτύλιο πάνω",aelig:"Λατινικό μικρό γράμμα æ",ccedil:"Λατινικό μικρό γράμμα c με υπογεγραμμένη",egrave:"Λατινικό μικρό γράμμα ε με βαρεία",eacute:"Λατινικό μικρό γράμμα e με οξεία",ecirc:"Λατινικό μικρό γράμμα e με περισπωμένη",euml:"Λατινικό μικρό γράμμα e με διαλυτικά",igrave:"Λατινικό μικρό γράμμα i με βαρεία",iacute:"Λατινικό μικρό γράμμα i με οξεία", +icirc:"Λατινικό μικρό γράμμα i με περισπωμένη",iuml:"Λατινικό μικρό γράμμα i με διαλυτικά",eth:"Λατινικό μικρό γράμμα eth",ntilde:"Λατινικό μικρό γράμμα n με περισπωμένη",ograve:"Λατινικό μικρό γράμμα o με βαρεία",oacute:"Λατινικό μικρό γράμμα o με οξεία ",ocirc:"Λατινικό πεζό γράμμα o με περισπωμένη",otilde:"Λατινικό μικρό γράμμα o με περισπωμένη ",ouml:"Λατινικό μικρό γράμμα o με διαλυτικά",divide:"Σύμβολο διαίρεσης",oslash:"Λατινικό μικρό γράμμα o με περισπωμένη",ugrave:"Λατινικό μικρό γράμμα u με βαρεία", +uacute:"Λατινικό μικρό γράμμα u με οξεία",ucirc:"Λατινικό μικρό γράμμα u με περισπωμένη",uuml:"Λατινικό μικρό γράμμα u με διαλυτικά",yacute:"Λατινικό μικρό γράμμα y με οξεία",thorn:"Λατινικό μικρό γράμμα thorn",yuml:"Λατινικό μικρό γράμμα y με διαλυτικά",OElig:"Λατινικό κεφαλαίο σύμπλεγμα ΟΕ",oelig:"Λατινικό μικρό σύμπλεγμα oe",372:"Λατινικό κεφαλαίο γράμμα W με περισπωμένη",374:"Λατινικό κεφαλαίο γράμμα Y με περισπωμένη",373:"Λατινικό μικρό γράμμα w με περισπωμένη",375:"Λατινικό μικρό γράμμα y με περισπωμένη", +sbquo:"Ενιαίο χαμηλο -9 εισαγωγικό ",8219:"Ενιαίο υψηλο ανεστραμμένο-9 εισαγωγικό ",bdquo:"Διπλό χαμηλό-9 εισαγωγικό ",hellip:"Οριζόντια αποσιωπητικά",trade:"Σύμβολο εμπορικού κατατεθέν",9658:"Μαύρος δείκτης που δείχνει προς τα δεξιά",bull:"Κουκκίδα",rarr:"Δεξί βελάκι",rArr:"Διπλό δεξί βελάκι",hArr:"Διπλό βελάκι αριστερά-δεξιά",diams:"Μαύρο διαμάντι",asymp:"Σχεδόν ίσο με"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/en-au.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/en-au.js new file mode 100644 index 0000000000..6d0e8a0b7d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/en-au.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","en-au",{euro:"Euro sign",lsquo:"Left single quotation mark",rsquo:"Right single quotation mark",ldquo:"Left double quotation mark",rdquo:"Right double quotation mark",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"Cent sign",pound:"Pound sign",curren:"Currency sign",yen:"Yen sign",brvbar:"Broken bar",sect:"Section sign",uml:"Diaeresis",copy:"Copyright sign",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark", +not:"Not sign",reg:"Registered sign",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent", +Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent", +Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke", +Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis", +aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth", +ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis", +yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis", +trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/en-ca.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/en-ca.js new file mode 100644 index 0000000000..1172cf2120 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/en-ca.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","en-ca",{euro:"Euro sign",lsquo:"Left single quotation mark",rsquo:"Right single quotation mark",ldquo:"Left double quotation mark",rdquo:"Right double quotation mark",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"Cent sign",pound:"Pound sign",curren:"Currency sign",yen:"Yen sign",brvbar:"Broken bar",sect:"Section sign",uml:"Diaeresis",copy:"Copyright sign",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark", +not:"Not sign",reg:"Registered sign",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent", +Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent", +Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke", +Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis", +aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth", +ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis", +yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis", +trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/en-gb.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/en-gb.js new file mode 100644 index 0000000000..7e03bd9384 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/en-gb.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","en-gb",{euro:"Euro sign",lsquo:"Left single quotation mark",rsquo:"Right single quotation mark",ldquo:"Left double quotation mark",rdquo:"Right double quotation mark",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"Cent sign",pound:"Pound sign",curren:"Currency sign",yen:"Yen sign",brvbar:"Broken bar",sect:"Section sign",uml:"Diaeresis",copy:"Copyright sign",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark", +not:"Not sign",reg:"Registered sign",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent", +Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent", +Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke", +Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis", +aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth", +ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis", +yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis", +trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/en.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/en.js new file mode 100644 index 0000000000..6e6b4d080f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/en.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","en",{euro:"Euro sign",lsquo:"Left single quotation mark",rsquo:"Right single quotation mark",ldquo:"Left double quotation mark",rdquo:"Right double quotation mark",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"Cent sign",pound:"Pound sign",curren:"Currency sign",yen:"Yen sign",brvbar:"Broken bar",sect:"Section sign",uml:"Diaeresis",copy:"Copyright sign",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark", +not:"Not sign",reg:"Registered sign",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent", +Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent", +Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke", +Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis", +aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth", +ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis", +yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis", +trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/eo.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/eo.js new file mode 100644 index 0000000000..455a199533 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/eo.js @@ -0,0 +1,12 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","eo",{euro:"Eŭrosigno",lsquo:"Supra 6-citilo",rsquo:"Supra 9-citilo",ldquo:"Supra 66-citilo",rdquo:"Supra 99-citilo",ndash:"Streketo",mdash:"Substreko",iexcl:"Renversita krisigno",cent:"Cendosigno",pound:"Pundosigno",curren:"Monersigno",yen:"Enosigno",brvbar:"Rompita vertikala streko",sect:"Kurba paragrafo",uml:"Tremao",copy:"Kopirajtosigno",ordf:"Adjektiva numerfinaĵo",laquo:"Duobla malplio-citilo",not:"Negohoko",reg:"Registrita marko",macr:"Superstreko",deg:"Gradosigno", +sup2:"Supra indico 2",sup3:"Supra indico 3",acute:"Dekstra korno",micro:"Mikrosigno",para:"Rekta paragrafo",middot:"Meza punkto",cedil:"Zoeto",sup1:"Supra indico 1",ordm:"Substantiva numerfinaĵo",raquo:"Duobla plio-citilo",frac14:"Kvaronosigno",frac12:"Duonosigno",frac34:"Trikvaronosigno",iquest:"renversita demandosigno",Agrave:"Latina ĉeflitero A kun liva korno",Aacute:"Latina ĉeflitero A kun dekstra korno",Acirc:"Latina ĉeflitero A kun ĉapelo",Atilde:"Latina ĉeflitero A kun tildo",Auml:"Latina ĉeflitero A kun tremao", +Aring:"Latina ĉeflitero A kun superringo",AElig:"Latina ĉeflitera ligaturo Æ",Ccedil:"Latina ĉeflitero C kun zoeto",Egrave:"Latina ĉeflitero E kun liva korno",Eacute:"Latina ĉeflitero E kun dekstra korno",Ecirc:"Latina ĉeflitero E kun ĉapelo",Euml:"Latina ĉeflitero E kun tremao",Igrave:"Latina ĉeflitero I kun liva korno",Iacute:"Latina ĉeflitero I kun dekstra korno",Icirc:"Latina ĉeflitero I kun ĉapelo",Iuml:"Latina ĉeflitero I kun tremao",ETH:"Latina ĉeflitero islanda edo",Ntilde:"Latina ĉeflitero N kun tildo", +Ograve:"Latina ĉeflitero O kun liva korno",Oacute:"Latina ĉeflitero O kun dekstra korno",Ocirc:"Latina ĉeflitero O kun ĉapelo",Otilde:"Latina ĉeflitero O kun tildo",Ouml:"Latina ĉeflitero O kun tremao",times:"Multipliko",Oslash:"Latina ĉeflitero O trastrekita",Ugrave:"Latina ĉeflitero U kun liva korno",Uacute:"Latina ĉeflitero U kun dekstra korno",Ucirc:"Latina ĉeflitero U kun ĉapelo",Uuml:"Latina ĉeflitero U kun tremao",Yacute:"Latina ĉeflitero Y kun dekstra korno",THORN:"Latina ĉeflitero islanda dorno", +szlig:"Latina etlitero germana sozo (akra s)",agrave:"Latina etlitero a kun liva korno",aacute:"Latina etlitero a kun dekstra korno",acirc:"Latina etlitero a kun ĉapelo",atilde:"Latina etlitero a kun tildo",auml:"Latina etlitero a kun tremao",aring:"Latina etlitero a kun superringo",aelig:"Latina etlitera ligaturo æ",ccedil:"Latina etlitero c kun zoeto",egrave:"Latina etlitero e kun liva korno",eacute:"Latina etlitero e kun dekstra korno",ecirc:"Latina etlitero e kun ĉapelo",euml:"Latina etlitero e kun tremao", +igrave:"Latina etlitero i kun liva korno",iacute:"Latina etlitero i kun dekstra korno",icirc:"Latina etlitero i kun ĉapelo",iuml:"Latina etlitero i kun tremao",eth:"Latina etlitero islanda edo",ntilde:"Latina etlitero n kun tildo",ograve:"Latina etlitero o kun liva korno",oacute:"Latina etlitero o kun dekstra korno",ocirc:"Latina etlitero o kun ĉapelo",otilde:"Latina etlitero o kun tildo",ouml:"Latina etlitero o kun tremao",divide:"Dividosigno",oslash:"Latina etlitero o trastrekita",ugrave:"Latina etlitero u kun liva korno", +uacute:"Latina etlitero u kun dekstra korno",ucirc:"Latina etlitero u kun ĉapelo",uuml:"Latina etlitero u kun tremao",yacute:"Latina etlitero y kun dekstra korno",thorn:"Latina etlitero islanda dorno",yuml:"Latina etlitero y kun tremao",OElig:"Latina ĉeflitera ligaturo Œ",oelig:"Latina etlitera ligaturo œ",372:"Latina ĉeflitero W kun ĉapelo",374:"Latina ĉeflitero Y kun ĉapelo",373:"Latina etlitero w kun ĉapelo",375:"Latina etlitero y kun ĉapelo",sbquo:"Suba 9-citilo",8219:"Supra renversita 9-citilo", +bdquo:"Suba 99-citilo",hellip:"Tripunkto",trade:"Varmarka signo",9658:"Nigra sago dekstren",bull:"Bulmarko",rarr:"Sago dekstren",rArr:"Duobla sago dekstren",hArr:"Duobla sago maldekstren",diams:"Nigra kvadrato",asymp:"Preskaŭ egala"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/es-mx.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/es-mx.js new file mode 100644 index 0000000000..945e0976ed --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/es-mx.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","es-mx",{euro:"Signo de Euro",lsquo:"Comillas simple izquierda",rsquo:"Comillas simple derecha",ldquo:"Comillas dobles izquierda",rdquo:"Comillas dobles derecha",ndash:"Guión corto",mdash:"Guión largo",iexcl:"Signo de exclamación invertido",cent:"Signo de centavo",pound:"Signo de Libra",curren:"Signo de moneda",yen:"Signo de Yen",brvbar:"Barra rota",sect:"Signo de la sección",uml:"Diéresis",copy:"Signo de Derechos reservados",ordf:"Indicador ordinal femenino", +laquo:"Señal de doble ángulo hacia la izquierda",not:"Sin signo",reg:"Signo registrado",macr:"Macron",deg:"signo de grados",sup2:"Superíndice dos",sup3:"Superíndice tres",acute:"Acento agudo",micro:"Signo micro",para:"Signo pilcrow",middot:"Punto medio",cedil:"Cedilla",sup1:"Superíndice uno",ordm:"Indicador ordinal masculino",raquo:"Señal de doble ángulo hacia la derecha",frac14:"Fracción un cuarto",frac12:"Fracción medio",frac34:"Fracción tres cuartos",iquest:"Signo de interrogación invertido",Agrave:"Letra mayúscula latina A con acento grave", +Aacute:"Letra mayúscula latina A con acento agudo",Acirc:"Letra mayúscula latina A con circunflexo",Atilde:"Letra mayúscula latina A con tilde",Auml:"Letra mayúscula latina A con diéresis",Aring:"Letra mayúscula latina A con anillo arriba",AElig:"Letra mayúscula latina Æ",Ccedil:"Letra mayúscula latina C con cedilla",Egrave:"Letra mayúscula latina E con acento grave",Eacute:"Letra mayúscula latina E con acento agudo",Ecirc:"Letra mayúscula latina E con circumflex",Euml:"Letra mayúscula latina E con diéresis", +Igrave:"Letra mayúscula latina I con acento grave",Iacute:"Letra mayúscula latina I con acento agudo",Icirc:"Letra mayúscula latina I con circumflex",Iuml:"Letra mayúscula latina E con diéresis",ETH:"Letra mayúscula latina Eth",Ntilde:"Letra mayúscula latina N con tilde",Ograve:"Letra mayúscula latina O con acento grave",Oacute:"Letra mayúscula latina O con acento agudo",Ocirc:"Letra mayúscula latina O con circumflex",Otilde:"Letra mayúscula latina O con tilde",Ouml:"Letra mayúscula latina O con diéresis", +times:"Signo de multiplicación",Oslash:"Letra mayúscula latina O con trazo",Ugrave:"Letra mayúscula latina U con acento grave",Uacute:"Letra mayúscula latina U con acento agudo",Ucirc:"Letra mayúscula latina U con circumflex",Uuml:"Letra mayúscula latina U con diéresis",Yacute:"Letra mayúscula latina Y con acento agudo",THORN:"Letra mayúscula latina Thorn",szlig:"Letra pequeña latina s",agrave:"Letra pequeña latina a con acento grave",aacute:"Letra pequeña latina a con acento agudo",acirc:"Letra pequeña latina a con circumflex", +atilde:"Letra pequeña latina a con tilde",auml:"Letra pequeña latina a con diéresis",aring:"Letra pequeña latina a con anillo arriba",aelig:"Letra pequeña latina æ",ccedil:"Letra pequeña latina c con cedilla",egrave:"Letra pequeña latina e con acento grave",eacute:"Letra pequeña latina e con acento agudo",ecirc:"Letra pequeña latina e con circumflex",euml:"Letra pequeña latina e con diéresis",igrave:"Letra pequeña latina i con acento grave",iacute:"Letra pequeña latina i con acento agudo",icirc:"Letra pequeña latina i con circumflex", +iuml:"Letra pequeña latina i con diéresis",eth:"Letra pequeña latina eth",ntilde:"Letra pequeña latina n con tilde",ograve:"Letra pequeña latina o con acento grave",oacute:"Letra pequeña latina o con acento agudo",ocirc:"Letra pequeña latina o con circumflex",otilde:"Letra pequeña latina o con tilde",ouml:"Letra pequeña latina o con diéresis",divide:"Signo de división",oslash:"Letra pequeña latina o con trazo",ugrave:"Letra pequeña latina u con acento grave",uacute:"Letra pequeña latina u con acento agudo", +ucirc:"Letra pequeña latina u con circumflex",uuml:"Letra pequeña latina u con diéresis",yacute:"Letra pequeña latina y con acento agudo",thorn:"Espina de letra pequeña latina",yuml:"Letra pequeña latina y con diéresis",OElig:"Ligadura de capital latino OE",oelig:"Ligadura de pequeña latino OE",372:"Letra latina mayúscula W con circunflexo",374:"Letra latina mayúscula Y con circunflexo",373:"Letra latina minúscula w con circunflexo",375:"Letra latina minúscula y con circunflexo",sbquo:"Signo de comillas simple abajo", +8219:"Signo de comillas simple arriba",bdquo:"Signo de doble comillas abajo",hellip:"Elipsis horizontal",trade:"Signo merccantl",9658:"Puntero derecho negro",bull:"Bala",rarr:"Flecha hacia la derecha",rArr:"Doble flecha hacia la derecha",hArr:"Flecha doble izquierda derecha",diams:"Palo de diamante negro",asymp:"Casi igual a"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/es.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/es.js new file mode 100644 index 0000000000..8ca2e838b9 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/es.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","es",{euro:"Símbolo de euro",lsquo:"Comilla simple izquierda",rsquo:"Comilla simple derecha",ldquo:"Comilla doble izquierda",rdquo:"Comilla doble derecha",ndash:"Guión corto",mdash:"Guión medio largo",iexcl:"Signo de admiración invertido",cent:"Símbolo centavo",pound:"Símbolo libra",curren:"Símbolo moneda",yen:"Símbolo yen",brvbar:"Barra vertical rota",sect:"Símbolo sección",uml:"Diéresis",copy:"Signo de derechos de autor",ordf:"Indicador ordinal femenino",laquo:"Abre comillas angulares", +not:"Signo negación",reg:"Signo de marca registrada",macr:"Guión alto",deg:"Signo de grado",sup2:"Superíndice dos",sup3:"Superíndice tres",acute:"Acento agudo",micro:"Signo micro",para:"Signo de pi",middot:"Punto medio",cedil:"Cedilla",sup1:"Superíndice uno",ordm:"Indicador orginal masculino",raquo:"Cierra comillas angulares",frac14:"Fracción ordinaria de un quarto",frac12:"Fracción ordinaria de una mitad",frac34:"Fracción ordinaria de tres cuartos",iquest:"Signo de interrogación invertido",Agrave:"Letra A latina mayúscula con acento grave", +Aacute:"Letra A latina mayúscula con acento agudo",Acirc:"Letra A latina mayúscula con acento circunflejo",Atilde:"Letra A latina mayúscula con tilde",Auml:"Letra A latina mayúscula con diéresis",Aring:"Letra A latina mayúscula con aro arriba",AElig:"Letra Æ latina mayúscula",Ccedil:"Letra C latina mayúscula con cedilla",Egrave:"Letra E latina mayúscula con acento grave",Eacute:"Letra E latina mayúscula con acento agudo",Ecirc:"Letra E latina mayúscula con acento circunflejo",Euml:"Letra E latina mayúscula con diéresis", +Igrave:"Letra I latina mayúscula con acento grave",Iacute:"Letra I latina mayúscula con acento agudo",Icirc:"Letra I latina mayúscula con acento circunflejo",Iuml:"Letra I latina mayúscula con diéresis",ETH:"Letra Eth latina mayúscula",Ntilde:"Letra N latina mayúscula con tilde",Ograve:"Letra O latina mayúscula con acento grave",Oacute:"Letra O latina mayúscula con acento agudo",Ocirc:"Letra O latina mayúscula con acento circunflejo",Otilde:"Letra O latina mayúscula con tilde",Ouml:"Letra O latina mayúscula con diéresis", +times:"Signo de multiplicación",Oslash:"Letra O latina mayúscula con barra inclinada",Ugrave:"Letra U latina mayúscula con acento grave",Uacute:"Letra U latina mayúscula con acento agudo",Ucirc:"Letra U latina mayúscula con acento circunflejo",Uuml:"Letra U latina mayúscula con diéresis",Yacute:"Letra Y latina mayúscula con acento agudo",THORN:"Letra Thorn latina mayúscula",szlig:"Letra s latina fuerte pequeña",agrave:"Letra a latina pequeña con acento grave",aacute:"Letra a latina pequeña con acento agudo", +acirc:"Letra a latina pequeña con acento circunflejo",atilde:"Letra a latina pequeña con tilde",auml:"Letra a latina pequeña con diéresis",aring:"Letra a latina pequeña con aro arriba",aelig:"Letra æ latina pequeña",ccedil:"Letra c latina pequeña con cedilla",egrave:"Letra e latina pequeña con acento grave",eacute:"Letra e latina pequeña con acento agudo",ecirc:"Letra e latina pequeña con acento circunflejo",euml:"Letra e latina pequeña con diéresis",igrave:"Letra i latina pequeña con acento grave", +iacute:"Letra i latina pequeña con acento agudo",icirc:"Letra i latina pequeña con acento circunflejo",iuml:"Letra i latina pequeña con diéresis",eth:"Letra eth latina pequeña",ntilde:"Letra n latina pequeña con tilde",ograve:"Letra o latina pequeña con acento grave",oacute:"Letra o latina pequeña con acento agudo",ocirc:"Letra o latina pequeña con acento circunflejo",otilde:"Letra o latina pequeña con tilde",ouml:"Letra o latina pequeña con diéresis",divide:"Signo de división",oslash:"Letra o latina minúscula con barra inclinada", +ugrave:"Letra u latina pequeña con acento grave",uacute:"Letra u latina pequeña con acento agudo",ucirc:"Letra u latina pequeña con acento circunflejo",uuml:"Letra u latina pequeña con diéresis",yacute:"Letra u latina pequeña con acento agudo",thorn:"Letra thorn latina minúscula",yuml:"Letra y latina pequeña con diéresis",OElig:"Diptongo OE latino en mayúscula",oelig:"Diptongo oe latino en minúscula",372:"Letra W latina mayúscula con acento circunflejo",374:"Letra Y latina mayúscula con acento circunflejo", +373:"Letra w latina pequeña con acento circunflejo",375:"Letra y latina pequeña con acento circunflejo",sbquo:"Comilla simple baja-9",8219:"Comilla simple alta invertida-9",bdquo:"Comillas dobles bajas-9",hellip:"Puntos suspensivos horizontales",trade:"Signo de marca registrada",9658:"Apuntador negro apuntando a la derecha",bull:"Viñeta",rarr:"Flecha a la derecha",rArr:"Flecha doble a la derecha",hArr:"Flecha izquierda derecha doble",diams:"Diamante negro",asymp:"Casi igual a"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/et.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/et.js new file mode 100644 index 0000000000..d4120b321d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/et.js @@ -0,0 +1,11 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","et",{euro:"Euromärk",lsquo:"Alustav ühekordne jutumärk",rsquo:"Lõpetav ühekordne jutumärk",ldquo:"Alustav kahekordne jutumärk",rdquo:"Lõpetav kahekordne jutumärk",ndash:"Enn-kriips",mdash:"Emm-kriips",iexcl:"Pööratud hüüumärk",cent:"Sendimärk",pound:"Naela märk",curren:"Valuutamärk",yen:"Jeeni märk",brvbar:"Katkestatud kriips",sect:"Lõigu märk",uml:"Täpid",copy:"Autoriõiguse märk",ordf:"Naissoost järjestuse märk",laquo:"Alustav kahekordne nurk jutumärk",not:"Ei-märk", +reg:"Kaubamärk registreeritud märk",macr:"Pikkusmärk",deg:"Kraadimärk",sup2:"Ülaindeks kaks",sup3:"Ülaindeks kolm",acute:"Akuutrõhk",micro:"Mikro-märk",para:"Lõigumärk",middot:"Keskpunkt",cedil:"Sedii",sup1:"Ülaindeks üks",ordm:"Meessoost järjestuse märk",raquo:"Lõpetav kahekordne nurk jutumärk",frac14:"Lihtmurd veerand",frac12:"Lihtmurd pool",frac34:"Lihtmurd kolmveerand",iquest:"Pööratud küsimärk",Agrave:"Ladina suur A graavisega",Aacute:"Ladina suur A akuudiga",Acirc:"Ladina suur A tsirkumfleksiga", +Atilde:"Ladina suur A tildega",Auml:"Ladina suur A täppidega",Aring:"Ladina suur A ülasõõriga",AElig:"Ladina suur AE",Ccedil:"Ladina suur E sediiga",Egrave:"Ladina suur E graavisega",Eacute:"Ladina suur E akuudiga",Ecirc:"Ladina suur E tsirkumfleksiga",Euml:"Ladina suur E täppidega",Igrave:"Ladina suur I graavisega",Iacute:"Ladina suur I akuudiga",Icirc:"Ladina suur I tsirkumfleksiga",Iuml:"Ladina suur I täppidega",ETH:"Ladina suur ETH",Ntilde:"Ladina suur N tildega",Ograve:"Ladina suur O graavisega", +Oacute:"Ladina suur O akuudiga",Ocirc:"Ladina suur O tsirkumfleksiga",Otilde:"Ladina suur O tildega",Ouml:"Täppidega ladina suur O",times:"Korrutusmärk",Oslash:"Ladina suur O kaldkriipsuga",Ugrave:"Ladina suur U graavisega",Uacute:"Ladina suur U akuudiga",Ucirc:"Kandilise katusega suur ladina U",Uuml:"Täppidega ladina suur U",Yacute:"Ladina suur Y akuudiga",THORN:"Ladina suur THORN",szlig:"Ladina väike terav s",agrave:"Ladina väike a graavisega",aacute:"Ladina väike a akuudiga",acirc:"Kandilise katusega ladina väike a", +atilde:"Tildega ladina väike a",auml:"Täppidega ladina väike a",aring:"Ladina väike a ülasõõriga",aelig:"Ladina väike ae",ccedil:"Ladina väike c sediiga",egrave:"Ladina väike e graavisega",eacute:"Ladina väike e akuudiga",ecirc:"Ladina väike e ülasõõriga",euml:"Ladina väike e täppidega",igrave:"Ladina väike i graavisega",iacute:"Ladina väike i akuudiga",icirc:"Ladina väike i tsirkumfleksiga",iuml:"Ladina väike i täppidega",eth:"Ladina väike ETH",ntilde:"Ladina väike n tildega",ograve:"Ladina väike o graavisega", +oacute:"Ladina väike o akuudiga",ocirc:"Ladina väike o tsirkumfleksiga",otilde:"Ladina väike o tildega",ouml:"Ladina väike o täppidega",divide:"Jagamismärk",oslash:"Ladina väike o läbiva kaldkriipsuga",ugrave:"Ladina väike u graavisega",uacute:"Ladina väike u akuudiga",ucirc:"Ladina väike u tsirkumfleksiga",uuml:"Ladina väike u täppidega",yacute:"Ladina väike y akuudiga",thorn:"Ladina väike THORN",yuml:"Ladina väike y täppidega",OElig:"Ladina suur ligatuur OE",oelig:"Ladina väike ligatuur OE",372:"Ladina suur W tsirkumfleksiga", +374:"Ladina suur Y tsirkumfleksiga",373:"Ladina väike w tsirkumfleksiga",375:"Ladina väike y tsirkumfleksiga",sbquo:"Ühekordne jutumärk üheksa all",8219:"Ühekordne jutumärk kuus üleval",bdquo:"Kahekordne jutumärk üheksa all",hellip:"Horisontaalne kolmikpunkt",trade:"Kaubamärgi märk",9658:"Must nool paremale",bull:"Kuul",rarr:"Nool paremale",rArr:"Topeltnool paremale",hArr:"Topeltnool vasakule",diams:"Must romb",asymp:"Ligikaudu võrdne"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/eu.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/eu.js new file mode 100644 index 0000000000..7a5e8e6576 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/eu.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","eu",{euro:"Euro zeinua",lsquo:"Left single quotation mark",rsquo:"Right single quotation mark",ldquo:"Left double quotation mark",rdquo:"Right double quotation mark",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"Cent sign",pound:"Libera zeinua",curren:"Currency sign",yen:"Yen zeinua",brvbar:"Broken bar",sect:"Section sign",uml:"Dieresia",copy:"Copyright zeinua",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark", +not:"Ez zeinua",reg:"Registered sign",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent", +Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent", +Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Bider zeinua",Oslash:"Latin capital letter O with stroke", +Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis", +aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth", +ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis", +yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis", +trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Buleta",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/fa.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/fa.js new file mode 100644 index 0000000000..93deeb0b20 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/fa.js @@ -0,0 +1,12 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","fa",{euro:"نشان یورو",lsquo:"علامت نقل قول تکی چپ",rsquo:"علامت نقل قول تکی راست",ldquo:"علامت نقل قول دوتایی چپ",rdquo:"علامت نقل قول دوتایی راست",ndash:"خط تیره En",mdash:"خط تیره Em",iexcl:"علامت تعجب وارونه",cent:"نشان سنت",pound:"نشان پوند",curren:"نشان ارز",yen:"نشان ین",brvbar:"نوار شکسته",sect:"نشان بخش",uml:"نشان سواگیری",copy:"نشان کپی رایت",ordf:"شاخص ترتیبی مونث",laquo:"اشاره چپ مکرر برای زاویه علامت نقل قول",not:"نشان ثبت نشده",reg:"نشان ثبت شده", +macr:"نشان خط بالای حرف",deg:"نشان درجه",sup2:"بالانویس دو",sup3:"بالانویس سه",acute:"لهجه غلیظ",micro:"نشان مایکرو",para:"نشان محل بند",middot:"نقطه میانی",cedil:"سدیل",sup1:"بالانویس 1",ordm:"شاخص ترتیبی مذکر",raquo:"نشان زاویه‌دار دوتایی نقل قول راست چین",frac14:"واحد عامیانه 1/4",frac12:"واحد عامینه نصف",frac34:"واحد عامیانه 3/4",iquest:"علامت سوال معکوس",Agrave:"حرف A بزرگ لاتین با تلفظ غلیظ",Aacute:"حرف A بزرگ لاتین با تلفظ شدید",Acirc:"حرف A بزرگ لاتین با دور",Atilde:"حرف A بزرگ لاتین با صدای کامی", +Auml:"حرف A بزرگ لاتین با نشان سواگیری",Aring:"حرف A بزرگ لاتین با حلقه بالا",AElig:"حرف Æ بزرگ لاتین",Ccedil:"حرف C بزرگ لاتین با نشان سواگیری",Egrave:"حرف E بزرگ لاتین با تلفظ درشت",Eacute:"حرف E بزرگ لاتین با تلفظ زیر",Ecirc:"حرف E بزرگ لاتین با خمان",Euml:"حرف E بزرگ لاتین با نشان سواگیری",Igrave:"حرف I بزرگ لاتین با تلفظ درشت",Iacute:"حرف I بزرگ لاتین با تلفظ ریز",Icirc:"حرف I بزرگ لاتین با خمان",Iuml:"حرف I بزرگ لاتین با نشان سواگیری",ETH:"حرف لاتین بزرگ واکه ترتیبی",Ntilde:"حرف N بزرگ لاتین با مد", +Ograve:"حرف O بزرگ لاتین با تلفظ درشت",Oacute:"حرف O بزرگ لاتین با تلفظ ریز",Ocirc:"حرف O بزرگ لاتین با خمان",Otilde:"حرف O بزرگ لاتین با مد",Ouml:"حرف O بزرگ لاتین با نشان سواگیری",times:"نشان ضربدر",Oslash:"حرف O بزرگ لاتین با میان خط",Ugrave:"حرف U بزرگ لاتین با تلفظ درشت",Uacute:"حرف U بزرگ لاتین با تلفظ ریز",Ucirc:"حرف U بزرگ لاتین با خمان",Uuml:"حرف U بزرگ لاتین با نشان سواگیری",Yacute:"حرف Y بزرگ لاتین با تلفظ ریز",THORN:"حرف بزرگ لاتین خاردار",szlig:"حرف کوچک لاتین شارپ s",agrave:"حرف a کوچک لاتین با تلفظ درشت", +aacute:"حرف a کوچک لاتین با تلفظ ریز",acirc:"حرف a کوچک لاتین با خمان",atilde:"حرف a کوچک لاتین با صدای کامی",auml:"حرف a کوچک لاتین با نشان سواگیری",aring:"حرف a کوچک لاتین گوشواره دار",aelig:"حرف کوچک لاتین æ",ccedil:"حرف c کوچک لاتین با نشان سدیل",egrave:"حرف e کوچک لاتین با تلفظ درشت",eacute:"حرف e کوچک لاتین با تلفظ ریز",ecirc:"حرف e کوچک لاتین با خمان",euml:"حرف e کوچک لاتین با نشان سواگیری",igrave:"حرف i کوچک لاتین با تلفظ درشت",iacute:"حرف i کوچک لاتین با تلفظ ریز",icirc:"حرف i کوچک لاتین با خمان", +iuml:"حرف i کوچک لاتین با نشان سواگیری",eth:"حرف کوچک لاتین eth",ntilde:"حرف n کوچک لاتین با صدای کامی",ograve:"حرف o کوچک لاتین با تلفظ درشت",oacute:"حرف o کوچک لاتین با تلفظ زیر",ocirc:"حرف o کوچک لاتین با خمان",otilde:"حرف o کوچک لاتین با صدای کامی",ouml:"حرف o کوچک لاتین با نشان سواگیری",divide:"نشان بخش",oslash:"حرف o کوچک لاتین با میان خط",ugrave:"حرف u کوچک لاتین با تلفظ درشت",uacute:"حرف u کوچک لاتین با تلفظ ریز",ucirc:"حرف u کوچک لاتین با خمان",uuml:"حرف u کوچک لاتین با نشان سواگیری",yacute:"حرف y کوچک لاتین با تلفظ ریز", +thorn:"حرف کوچک لاتین خاردار",yuml:"حرف y کوچک لاتین با نشان سواگیری",OElig:"بند بزرگ لاتین OE",oelig:"بند کوچک لاتین oe",372:"حرف W بزرگ لاتین با خمان",374:"حرف Y بزرگ لاتین با خمان",373:"حرف w کوچک لاتین با خمان",375:"حرف y کوچک لاتین با خمان",sbquo:"نشان نقل قول تکی زیر-9",8219:"نشان نقل قول تکی high-reversed-9",bdquo:"نقل قول دوتایی پایین-9",hellip:"حذف افقی",trade:"نشان تجاری",9658:"نشانگر سیاه جهت راست",bull:"گلوله",rarr:"فلش راست",rArr:"فلش دوتایی راست",hArr:"فلش دوتایی چپ راست",diams:"نشان الماس سیاه", +asymp:"تقریبا برابر با"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/fi.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/fi.js new file mode 100644 index 0000000000..b97768e709 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/fi.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","fi",{euro:"Euron merkki",lsquo:"Vasen yksittäinen lainausmerkki",rsquo:"Oikea yksittäinen lainausmerkki",ldquo:"Vasen kaksoislainausmerkki",rdquo:"Oikea kaksoislainausmerkki",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"Sentin merkki",pound:"Punnan merkki",curren:"Valuuttamerkki",yen:"Yenin merkki",brvbar:"Broken bar",sect:"Section sign",uml:"Diaeresis",copy:"Copyright sign",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark", +not:"Not sign",reg:"Rekisteröity merkki",macr:"Macron",deg:"Asteen merkki",sup2:"Yläindeksi kaksi",sup3:"Yläindeksi kolme",acute:"Acute accent",micro:"Mikron merkki",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Yläindeksi yksi",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Ylösalaisin oleva kysymysmerkki",Agrave:"Latin capital letter A with grave accent", +Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent", +Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Kertomerkki",Oslash:"Latin capital letter O with stroke", +Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis", +aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth", +ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Jakomerkki",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis", +yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis", +trade:"Tavaramerkki merkki",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Nuoli oikealle",rArr:"Kaksoisnuoli oikealle",hArr:"Kaksoisnuoli oikealle ja vasemmalle",diams:"Black diamond suit",asymp:"Noin"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js new file mode 100644 index 0000000000..a22ab4e1b3 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js @@ -0,0 +1,10 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","fr-ca",{euro:"Symbole Euro",lsquo:"Guillemet simple ouvrant",rsquo:"Guillemet simple fermant",ldquo:"Guillemet double ouvrant",rdquo:"Guillemet double fermant",ndash:"Tiret haut",mdash:"Tiret",iexcl:"Point d'exclamation inversé",cent:"Symbole de cent",pound:"Symbole de Livre Sterling",curren:"Symbole monétaire",yen:"Symbole du Yen",brvbar:"Barre scindée",sect:"Symbole de section",uml:"Tréma",copy:"Symbole de copyright",ordf:"Indicateur ordinal féminin",laquo:"Guillemet français ouvrant", +not:"Indicateur de négation",reg:"Symbole de marque déposée",macr:"Macron",deg:"Degré",sup2:"Exposant 2",sup3:"Exposant 3",acute:"Accent aigüe",micro:"Symbole micro",para:"Paragraphe",middot:"Point médian",cedil:"Cédille",sup1:"Exposant 1",ordm:"Indicateur ordinal masculin",raquo:"Guillemet français fermant",frac14:"Un quart",frac12:"Une demi",frac34:"Trois quart",iquest:"Point d'interrogation inversé",Agrave:"A accent grave",Aacute:"A accent aigüe",Acirc:"A circonflexe",Atilde:"A tilde",Auml:"A tréma", +Aring:"A avec un rond au dessus",AElig:"Æ majuscule",Ccedil:"C cédille",Egrave:"E accent grave",Eacute:"E accent aigüe",Ecirc:"E accent circonflexe",Euml:"E tréma",Igrave:"I accent grave",Iacute:"I accent aigüe",Icirc:"I accent circonflexe",Iuml:"I tréma",ETH:"Lettre majuscule islandaise ED",Ntilde:"N tilde",Ograve:"O accent grave",Oacute:"O accent aigüe",Ocirc:"O accent circonflexe",Otilde:"O tilde",Ouml:"O tréma",times:"Symbole de multiplication",Oslash:"O barré",Ugrave:"U accent grave",Uacute:"U accent aigüe", +Ucirc:"U accent circonflexe",Uuml:"U tréma",Yacute:"Y accent aigüe",THORN:"Lettre islandaise Thorn majuscule",szlig:"Lettre minuscule allemande s dur",agrave:"a accent grave",aacute:"a accent aigüe",acirc:"a accent circonflexe",atilde:"a tilde",auml:"a tréma",aring:"a avec un cercle au dessus",aelig:"æ",ccedil:"c cédille",egrave:"e accent grave",eacute:"e accent aigüe",ecirc:"e accent circonflexe",euml:"e tréma",igrave:"i accent grave",iacute:"i accent aigüe",icirc:"i accent circonflexe",iuml:"i tréma", +eth:"Lettre minuscule islandaise ED",ntilde:"n tilde",ograve:"o accent grave",oacute:"o accent aigüe",ocirc:"O accent circonflexe",otilde:"O tilde",ouml:"O tréma",divide:"Symbole de division",oslash:"o barré",ugrave:"u accent grave",uacute:"u accent aigüe",ucirc:"u accent circonflexe",uuml:"u tréma",yacute:"y accent aigüe",thorn:"Lettre islandaise thorn minuscule",yuml:"y tréma",OElig:"ligature majuscule latine Œ",oelig:"ligature minuscule latine œ",372:"W accent circonflexe",374:"Y accent circonflexe", +373:"w accent circonflexe",375:"y accent circonflexe",sbquo:"Guillemet simple fermant",8219:"Guillemet-virgule supérieur culbuté",bdquo:"Guillemet-virgule double inférieur",hellip:"Points de suspension",trade:"Symbole de marque déposée",9658:"Flèche noire pointant vers la droite",bull:"Puce",rarr:"Flèche vers la droite",rArr:"Flèche double vers la droite",hArr:"Flèche double vers la gauche",diams:"Carreau",asymp:"Presque égal"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/fr.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/fr.js new file mode 100644 index 0000000000..c9335151af --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/fr.js @@ -0,0 +1,12 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","fr",{euro:"Symbole euro",lsquo:"Guillemet simple ouvrant",rsquo:"Guillemet simple fermant",ldquo:"Guillemet double ouvrant",rdquo:"Guillemet double fermant",ndash:"Tiret demi-cadratin",mdash:"Tiret cadratin",iexcl:"Point d'exclamation inversé",cent:"Symbole cent",pound:"Symbole Livre sterling",curren:"Symbole monétaire",yen:"Symbole yen",brvbar:"Barre verticale scindée",sect:"Signe de section",uml:"Tréma",copy:"Symbole Copyright",ordf:"Indicateur ordinal féminin", +laquo:"Guillemet français ouvrant",not:"Crochet de négation",reg:"Symbole de marque déposée",macr:"Macron",deg:"Symbole degré",sup2:"Exposant 2",sup3:"Exposant 3",acute:"Accent aigu",micro:"Symbole micro",para:"Symbole pied-de-mouche",middot:"Point médian",cedil:"Cédille",sup1:"Exposant 1",ordm:"Indicateur ordinal masculin",raquo:"Guillemet français fermant",frac14:"Fraction un quart",frac12:"Fraction un demi",frac34:"Fraction trois quarts",iquest:"Point d'interrogation inversé",Agrave:"A accent grave majuscule", +Aacute:"A accent aigu majuscule",Acirc:"A accent circonflexe majuscule",Atilde:"A caron majuscule",Auml:"A tréma majuscule",Aring:"A rond majuscule",AElig:"Ligature Æ majuscule",Ccedil:"C cédille majuscule",Egrave:"E accent grave majuscule",Eacute:"E accent aigu majuscule",Ecirc:"E accent circonflexe majuscule",Euml:"E tréma majuscule",Igrave:"I accent grave majuscule",Iacute:"I accent aigu majuscule",Icirc:"I accent circonflexe majuscule",Iuml:"I tréma majuscule",ETH:"Lettre majuscule islandaise ED", +Ntilde:"N caron majuscule",Ograve:"O accent grave majuscule",Oacute:"O accent aigu majuscule",Ocirc:"O accent circonflexe majuscule",Otilde:"O caron majuscule",Ouml:"O tréma majuscule",times:"Symbole de multiplication",Oslash:"O barré majuscule",Ugrave:"U accent grave majuscule",Uacute:"U accent aigu majuscule",Ucirc:"U accent circonflexe majuscule",Uuml:"U tréma majuscule",Yacute:"Y accent aigu majuscule",THORN:"Lettre islandaise thorn majuscule",szlig:"Lettre minuscule allemande S dur",agrave:"A accent grave minuscule", +aacute:"A accent aigu minuscule",acirc:"A accent circonflexe minuscule",atilde:"A tilde minuscule",auml:"A tréma minuscule",aring:"A rond minuscule",aelig:"Ligature Æ minuscule",ccedil:"C cédille minuscule",egrave:"E accent grave minuscule",eacute:"E accent aigu minuscule",ecirc:"E accent circonflexe minuscule",euml:"E tréma minuscule",igrave:"I accent grave minuscule",iacute:"I accent aigu minuscule",icirc:"I accent circonflexe minuscule",iuml:"i minuscule tréma",eth:"Lettre minuscule islandaise ED", +ntilde:"N caron minuscule",ograve:"O minuscule accent grave",oacute:"O accent aigu minuscule",ocirc:"O accent circonflexe minuscule",otilde:"O tilde minuscule",ouml:"O tréma minuscule",divide:"Symbole de division",oslash:"O barré minuscule",ugrave:"U accent grave minuscule",uacute:"U accent aigu minuscule",ucirc:"U accent circonflexe minuscule",uuml:"U tréma minuscule",yacute:"Y accent aigu minuscule",thorn:"Lettre islandaise thorn minuscule",yuml:"Y tréma minuscule",OElig:"Ligature Œ majuscule", +oelig:"Ligature Œ minuscule",372:"W accent circonflexe majuscule",374:"Y accent circonflexe majuscule",373:"W accent circonflexe minuscule",375:"Y accent circonflexe minuscule",sbquo:"Guillemet simple fermant inférieur",8219:"Guillemet-virgule supérieur culbuté",bdquo:"Guillemet-virgule double inférieur",hellip:"Points de suspension",trade:"Symbole de marque commerciale",9658:"Flèche noire pointant vers la droite",bull:"Gros point médian",rarr:"Flèche vers la droite",rArr:"Double flèche vers la droite", +hArr:"Double flèche vers la gauche",diams:"Losange noir",asymp:"Environ égal"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/gl.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/gl.js new file mode 100644 index 0000000000..9743aff220 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/gl.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","gl",{euro:"Símbolo do euro",lsquo:"Comiña simple esquerda",rsquo:"Comiña simple dereita",ldquo:"Comiñas dobres esquerda",rdquo:"Comiñas dobres dereita",ndash:"Guión",mdash:"Raia",iexcl:"Signo de admiración invertido",cent:"Símbolo do centavo",pound:"Símbolo da libra",curren:"Símbolo de moeda",yen:"Símbolo do yen",brvbar:"Barra vertical rota",sect:"Símbolo de sección",uml:"Diérese",copy:"Símbolo de dereitos de autoría",ordf:"Indicador ordinal feminino",laquo:"Comiñas latinas, apertura", +not:"Signo negación",reg:"Símbolo de marca rexistrada",macr:"Guión alto",deg:"Signo de grao",sup2:"Superíndice dous",sup3:"Superíndice tres",acute:"Acento agudo",micro:"Signo de micro",para:"Signo de pi",middot:"Punto medio",cedil:"Cedilla",sup1:"Superíndice un",ordm:"Indicador ordinal masculino",raquo:"Comiñas latinas, peche",frac14:"Fracción ordinaria de un cuarto",frac12:"Fracción ordinaria de un medio",frac34:"Fracción ordinaria de tres cuartos",iquest:"Signo de interrogación invertido",Agrave:"Letra A latina maiúscula con acento grave", +Aacute:"Letra A latina maiúscula con acento agudo",Acirc:"Letra A latina maiúscula con acento circunflexo",Atilde:"Letra A latina maiúscula con til",Auml:"Letra A latina maiúscula con diérese",Aring:"Letra A latina maiúscula con aro enriba",AElig:"Letra Æ latina maiúscula",Ccedil:"Letra C latina maiúscula con cedilla",Egrave:"Letra E latina maiúscula con acento grave",Eacute:"Letra E latina maiúscula con acento agudo",Ecirc:"Letra E latina maiúscula con acento circunflexo",Euml:"Letra E latina maiúscula con diérese", +Igrave:"Letra I latina maiúscula con acento grave",Iacute:"Letra I latina maiúscula con acento agudo",Icirc:"Letra I latina maiúscula con acento circunflexo",Iuml:"Letra I latina maiúscula con diérese",ETH:"Letra Ed latina maiúscula",Ntilde:"Letra N latina maiúscula con til",Ograve:"Letra O latina maiúscula con acento grave",Oacute:"Letra O latina maiúscula con acento agudo",Ocirc:"Letra O latina maiúscula con acento circunflexo",Otilde:"Letra O latina maiúscula con til",Ouml:"Letra O latina maiúscula con diérese", +times:"Signo de multiplicación",Oslash:"Letra O latina maiúscula con barra transversal",Ugrave:"Letra U latina maiúscula con acento grave",Uacute:"Letra U latina maiúscula con acento agudo",Ucirc:"Letra U latina maiúscula con acento circunflexo",Uuml:"Letra U latina maiúscula con diérese",Yacute:"Letra Y latina maiúscula con acento agudo",THORN:"Letra Thorn latina maiúscula",szlig:"Letra s latina forte minúscula",agrave:"Letra a latina minúscula con acento grave",aacute:"Letra a latina minúscula con acento agudo", +acirc:"Letra a latina minúscula con acento circunflexo",atilde:"Letra a latina minúscula con til",auml:"Letra a latina minúscula con diérese",aring:"Letra a latina minúscula con aro enriba",aelig:"Letra æ latina minúscula",ccedil:"Letra c latina minúscula con cedilla",egrave:"Letra e latina minúscula con acento grave",eacute:"Letra e latina minúscula con acento agudo",ecirc:"Letra e latina minúscula con acento circunflexo",euml:"Letra e latina minúscula con diérese",igrave:"Letra i latina minúscula con acento grave", +iacute:"Letra i latina minúscula con acento agudo",icirc:"Letra i latina minúscula con acento circunflexo",iuml:"Letra i latina minúscula con diérese",eth:"Letra ed latina minúscula",ntilde:"Letra n latina minúscula con til",ograve:"Letra o latina minúscula con acento grave",oacute:"Letra o latina minúscula con acento agudo",ocirc:"Letra o latina minúscula con acento circunflexo",otilde:"Letra o latina minúscula con til",ouml:"Letra o latina minúscula con diérese",divide:"Signo de división",oslash:"Letra o latina minúscula con barra transversal", +ugrave:"Letra u latina minúscula con acento grave",uacute:"Letra u latina minúscula con acento agudo",ucirc:"Letra u latina minúscula con acento circunflexo",uuml:"Letra u latina minúscula con diérese",yacute:"Letra y latina minúscula con acento agudo",thorn:"Letra Thorn latina minúscula",yuml:"Letra y latina minúscula con diérese",OElig:"Ligadura OE latina maiúscula",oelig:"Ligadura oe latina minúscula",372:"Letra W latina maiúscula con acento circunflexo",374:"Letra Y latina maiúscula con acento circunflexo", +373:"Letra w latina minúscula con acento circunflexo",375:"Letra y latina minúscula con acento circunflexo",sbquo:"Comiña simple baixa, de apertura",8219:"Comiña simple alta, de peche",bdquo:"Comiñas dobres baixas, de apertura",hellip:"Elipse, puntos suspensivos",trade:"Signo de marca rexistrada",9658:"Apuntador negro apuntando á dereita",bull:"Viñeta",rarr:"Frecha á dereita",rArr:"Frecha dobre á dereita",hArr:"Frecha dobre da esquerda á dereita",diams:"Diamante negro",asymp:"Case igual a"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/he.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/he.js new file mode 100644 index 0000000000..0214d2ab8e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/he.js @@ -0,0 +1,12 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","he",{euro:"יורו",lsquo:"סימן ציטוט יחיד שמאלי",rsquo:"סימן ציטוט יחיד ימני",ldquo:"סימן ציטוט כפול שמאלי",rdquo:"סימן ציטוט כפול ימני",ndash:"קו מפריד קצר",mdash:"קו מפריד ארוך",iexcl:"סימן קריאה הפוך",cent:"סנט",pound:"פאונד",curren:"מטבע",yen:"ין",brvbar:"קו שבור",sect:"סימן מקטע",uml:"שתי נקודות אופקיות (Diaeresis)",copy:"סימן זכויות יוצרים (Copyright)",ordf:"סימן אורדינאלי נקבי",laquo:"סימן ציטוט זווית כפולה לשמאל",not:"סימן שלילה מתמטי",reg:"סימן רשום", +macr:"מקרון (הגיה ארוכה)",deg:"מעלות",sup2:"2 בכתיב עילי",sup3:"3 בכתיב עילי",acute:"סימן דגוש (Acute)",micro:"מיקרו",para:"סימון פסקה",middot:"נקודה אמצעית",cedil:"סדיליה",sup1:"1 בכתיב עילי",ordm:"סימן אורדינאלי זכרי",raquo:"סימן ציטוט זווית כפולה לימין",frac14:"רבע בשבר פשוט",frac12:"חצי בשבר פשוט",frac34:"שלושה רבעים בשבר פשוט",iquest:"סימן שאלה הפוך",Agrave:"אות לטינית A עם גרש (Grave)",Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde", +Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"אות לטינית Æ גדולה",Ccedil:"Latin capital letter C with cedilla",Egrave:"אות לטינית E עם גרש (Grave)",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"אות לטינית I עם גרש (Grave)",Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis", +ETH:"אות לטינית Eth גדולה",Ntilde:"Latin capital letter N with tilde",Ograve:"אות לטינית O עם גרש (Grave)",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"סימן כפל",Oslash:"Latin capital letter O with stroke",Ugrave:"אות לטינית U עם גרש (Grave)",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis", +Yacute:"Latin capital letter Y with acute accent",THORN:"אות לטינית Thorn גדולה",szlig:"אות לטינית s חדה קטנה",agrave:"אות לטינית a עם גרש (Grave)",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",aring:"Latin small letter a with ring above",aelig:"אות לטינית æ קטנה",ccedil:"Latin small letter c with cedilla",egrave:"אות לטינית e עם גרש (Grave)",eacute:"Latin small letter e with acute accent", +ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"אות לטינית i עם גרש (Grave)",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"אות לטינית eth קטנה",ntilde:"Latin small letter n with tilde",ograve:"אות לטינית o עם גרש (Grave)",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis", +divide:"סימן חלוקה",oslash:"Latin small letter o with stroke",ugrave:"אות לטינית u עם גרש (Grave)",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",yacute:"Latin small letter y with acute accent",thorn:"אות לטינית thorn קטנה",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex", +373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"סימן ציטוט נמוך יחיד",8219:"סימן ציטוט",bdquo:"סימן ציטוט נמוך כפול",hellip:"שלוש נקודות",trade:"סימן טריידמארק",9658:"סמן שחור לצד ימין",bull:"תבליט (רשימה)",rarr:"חץ לימין",rArr:"חץ כפול לימין",hArr:"חץ כפול לימין ושמאל",diams:"יהלום מלא",asymp:"כמעט שווה"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/hr.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/hr.js new file mode 100644 index 0000000000..0f755bd3dc --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/hr.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","hr",{euro:"Euro znak",lsquo:"Lijevi jednostruki navodnik",rsquo:"Desni jednostruki navodnik",ldquo:"Lijevi dvostruki navodnik",rdquo:"Desni dvostruki navodnik",ndash:"En crtica",mdash:"Em crtica",iexcl:"Naopaki uskličnik",cent:"Cent znak",pound:"Funta znak",curren:"Znak valute",yen:"Yen znak",brvbar:"Potrgana prečka",sect:"Znak odjeljka",uml:"Prijeglasi",copy:"Copyright znak",ordf:"Ženska redna oznaka",laquo:"Lijevi dvostruki uglati navodnik",not:"Not znak", +reg:"Registered znak",macr:"Crta iznad",deg:"Stupanj znak",sup2:"Eksponent 2",sup3:"Eksponent tri",acute:"Akcent",micro:"Mikro znak",para:"Znak paragrafa",middot:"Srednja točka",cedil:"Cedilla",sup1:"Eksponent 1",ordm:"Muška redna oznaka",raquo:"Desni dvostruku uglati navodnik",frac14:"Četvrtina",frac12:"Polovina",frac34:"Tri četvrtine",iquest:"Naopaki upitnik",Agrave:"Veliko latinsko slovo A s akcentom",Aacute:"Latinično veliko slovo A sa oštrim naglaskom",Acirc:"Latinično veliko slovo A sa circumflex", +Atilde:"Latinično veliko slovo A sa tildom",Auml:"Latinično veliko slovo A sa diaeresis",Aring:"Latinično veliko slovo A sa gornjim prstenom",AElig:"Latinično veliko slovo Æ",Ccedil:"Veliko latinično slovo C sa cedilla",Egrave:"Veliko latinično slovo E sa akcentom",Eacute:"Veliko latinično slovo E sa akcentom",Ecirc:"Veliko latinično slovo E sa circumflex",Euml:"Veliko latinično slovo E sa diaresis",Igrave:"Veliko latinično slovo I sa akcentom",Iacute:"Veliko latinično slovo I sa akcentom",Icirc:"Veliko latinično slovo I sa circumflex", +Iuml:"Veliko latinično slovo I sa diaresis",ETH:"Veliko latinično slovo Eth",Ntilde:"Veliko latinično slovo N sa tildom",Ograve:"Veliko latinično slovo O sa akcentom",Oacute:"Veliko latinično slovo O sa akcentom",Ocirc:"Veliko latinično slovo O sa circumflex",Otilde:"Veliko latinično slovo O sa tildom",Ouml:"Veliko latinično slovo O sa diaresis",times:"Znak množenja",Oslash:"Veliko latinično slovo O sa crtom",Ugrave:"Veliko latinično slovo U sa akcentom",Uacute:"Veliko latinično slovo U sa akcentom", +Ucirc:"Veliko latinično slovo U sa circumflex",Uuml:"Veliko latinično slovo U sa diaresis",Yacute:"Veliko latinično slovo Y sa akcentom",THORN:"Veliko latinično slovo Trn",szlig:"Malo latinično slovo oštro s",agrave:"Malo latinično slovo a sa akcentom",aacute:"Malo latinično slovo sa akcentom",acirc:"Malo latinično slovo a sa circumflex",atilde:"Malo latinično slovo a sa tildom",auml:"Malo latinično slovo a sa diaresis",aring:"Malo latinično slovo a sa gornjim prstenom",aelig:"Malo latinično slovo æ", +ccedil:"Malo latinično slovo e sa cedilla",egrave:"Malo latinično slovo e sa akcentom",eacute:"Malo latinično slovo e sa akcentom",ecirc:"Malo latinično slovo e sa circumflex",euml:"Malo latinično slovo e sa diaresis",igrave:"Malo latinično slovo i sa akcentom",iacute:"Malo latinično slovo i sa akcentom",icirc:"Malo latinično slovo i sa circumflex",iuml:"Malo latinično slovo i sa diaresis",eth:"Malo latinično slovo eth",ntilde:"Malo latinično slovo n sa tildom",ograve:"Malo latinično slovo o sa akcentom", +oacute:"Malo latinično slovo o sa akcentom",ocirc:"Malo latinično slovo o sa circumflex",otilde:"Malo latinično slovo o sa tildom",ouml:"Malo latinično slovo o sa diaresis",divide:"Znak dijeljenja",oslash:"Malo latinično slovo o sa crtom",ugrave:"Malo latinično slovo s akcentom",uacute:"Malo latinično slovo u sa akcentom",ucirc:"Malo latinično slovo sa circumflex",uuml:"Malo latinično slovo u sa diaresis",yacute:"Malo latinično slovo y s akcentom",thorn:"Malo latinično slovo Trn",yuml:"Malo latinično slovo y sa diaresis", +OElig:"Veliko latinično slovo OE",oelig:"Malo latinično slovoe OE",372:"Veliko latinično slovo W sa circumflex",374:"Veliko latinično slovo Y sa circumflex",373:"Malo latinično slovo w sa circumflex",375:"Malo latinično slovo y sa circumflex",sbquo:"Jednostruki donji navodnik",8219:"Jednostruki gornji navodnik",bdquo:"Dvostruki donji navodnik",hellip:"Tri točkice",trade:"TM znak",9658:"Crni desni pokazivač",bull:"Bullet",rarr:"Desna strelica",rArr:"Desna dvostruka strelica",hArr:"Dvostruka strelica", +diams:"Crni dijamant",asymp:"Približno"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/hu.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/hu.js new file mode 100644 index 0000000000..340a42a549 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/hu.js @@ -0,0 +1,12 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","hu",{euro:"Euró jel",lsquo:"Bal szimpla idézőjel",rsquo:"Jobb szimpla idézőjel",ldquo:"Bal dupla idézőjel",rdquo:"Jobb dupla idézőjel",ndash:"Rövid gondolatjel",mdash:"Hosszú gondolatjel",iexcl:"Fordított felkiáltójel",cent:"Cent jel",pound:"Font jel",curren:"Valuta jel",yen:"Yen jel",brvbar:"Hosszú kettőspont",sect:"Paragrafus jel",uml:"Kettős hangzó jel",copy:"Szerzői jog jel",ordf:"Női sorrend mutatója",laquo:"Balra mutató duplanyíl",not:"Feltételes kötőjel", +reg:"Bejegyzett védjegy jele",macr:"Hosszúsági jel",deg:"Fok jel",sup2:"Négyzeten jel",sup3:"Köbön jel",acute:"Éles ékezet",micro:"Mikro-jel",para:"Bekezdés jel",middot:"Közép pont",cedil:"Cédille",sup1:"Elsőn jel",ordm:"Férfi sorrend mutatója",raquo:"Jobbra mutató duplanyíl",frac14:"Egy negyed jel",frac12:"Egy ketted jel",frac34:"Három negyed jel",iquest:"Fordított kérdőjel",Agrave:"Latin nagy A fordított ékezettel",Aacute:"Latin nagy A normál ékezettel",Acirc:"Latin nagy A hajtott ékezettel",Atilde:"Latin nagy A hullámjellel", +Auml:"Latin nagy A kettőspont ékezettel",Aring:"Latin nagy A gyűrű ékezettel",AElig:"Latin nagy Æ betű",Ccedil:"Latin nagy C cedillával",Egrave:"Latin nagy E fordított ékezettel",Eacute:"Latin nagy E normál ékezettel",Ecirc:"Latin nagy E hajtott ékezettel",Euml:"Latin nagy E dupla kettőspont ékezettel",Igrave:"Latin nagy I fordított ékezettel",Iacute:"Latin nagy I normál ékezettel",Icirc:"Latin nagy I hajtott ékezettel",Iuml:"Latin nagy I kettőspont ékezettel",ETH:"Latin nagy Eth betű",Ntilde:"Latin nagy N hullámjellel", +Ograve:"Latin nagy O fordított ékezettel",Oacute:"Latin nagy O normál ékezettel",Ocirc:"Latin nagy O hajtott ékezettel",Otilde:"Latin nagy O hullámjellel",Ouml:"Latin nagy O kettőspont ékezettel",times:"Szorzás jel",Oslash:"Latin O betű áthúzással",Ugrave:"Latin nagy U fordított ékezettel",Uacute:"Latin nagy U normál ékezettel",Ucirc:"Latin nagy U hajtott ékezettel",Uuml:"Latin nagy U kettőspont ékezettel",Yacute:"Latin nagy Y normál ékezettel",THORN:"Latin nagy Thorn betű",szlig:"Latin kis s betű", +agrave:"Latin kis a fordított ékezettel",aacute:"Latin kis a normál ékezettel",acirc:"Latin kis a hajtott ékezettel",atilde:"Latin kis a hullámjellel",auml:"Latin kis a kettőspont ékezettel",aring:"Latin kis a gyűrű ékezettel",aelig:"Latin kis æ betű",ccedil:"Latin kis c cedillával",egrave:"Latin kis e fordított ékezettel",eacute:"Latin kis e normál ékezettel",ecirc:"Latin kis e hajtott ékezettel",euml:"Latin kis e dupla kettőspont ékezettel",igrave:"Latin kis i fordított ékezettel",iacute:"Latin kis i normál ékezettel", +icirc:"Latin kis i hajtott ékezettel",iuml:"Latin kis i kettőspont ékezettel",eth:"Latin kis eth betű",ntilde:"Latin kis n hullámjellel",ograve:"Latin kis o fordított ékezettel",oacute:"Latin kis o normál ékezettel",ocirc:"Latin kis o hajtott ékezettel",otilde:"Latin kis o hullámjellel",ouml:"Latin kis o kettőspont ékezettel",divide:"Osztásjel",oslash:"Latin kis o betű áthúzással",ugrave:"Latin kis u fordított ékezettel",uacute:"Latin kis u normál ékezettel",ucirc:"Latin kis u hajtott ékezettel", +uuml:"Latin kis u kettőspont ékezettel",yacute:"Latin kis y normál ékezettel",thorn:"Latin kis thorn jel",yuml:"Latin kis y kettőspont ékezettel",OElig:"Latin nagy OE-jel",oelig:"Latin kis oe-jel",372:"Latin nagy W hajtott ékezettel",374:"Latin nagy Y hajtott ékezettel",373:"Latin kis w hajtott ékezettel",375:"Latin kis y hajtott ékezettel",sbquo:"Nyitó nyomdai szimpla idézőjel",8219:"Záró nyomdai záró idézőjel",bdquo:"Nyitó nyomdai dupla idézőjel",hellip:"Három pont",trade:"Kereskedelmi védjegy jele", +9658:"Jobbra mutató fekete mutató",bull:"Golyó",rarr:"Jobbra mutató nyíl",rArr:"Jobbra mutató duplanyíl",hArr:"Bal-jobb duplanyíl",diams:"Fekete gyémánt jel",asymp:"Majdnem egyenlő jel"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/id.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/id.js new file mode 100644 index 0000000000..a52221961c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/id.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","id",{euro:"Tanda Euro",lsquo:"Tanda kutip tunggal kiri",rsquo:"Tanda kutip tunggal kanan",ldquo:"Tanda kutip ganda kiri",rdquo:"Tanda kutip ganda kanan",ndash:"Tanda hubung",mdash:"Sisipan",iexcl:"Tanda seru terbalik",cent:"Tanda cent",pound:"Tanda pound",curren:"Tanda mata uang",yen:"Tanda Yen",brvbar:"Broken bar",sect:"Penanda bagian",uml:"Diaeresis",copy:"Tanda Hak Cipta",ordf:"Indikator ordinal feminin",laquo:"Tanda kutip sudut ganda mengarah ke kiri",not:"Bukan tanda", +reg:"Tanda Telah Terdaftar",macr:"Garis makron",deg:"Tanda derajat",sup2:"Superskrip dua",sup3:"Superskrip tiga",acute:"Aksen akut",micro:"Tanda mikro",para:"Tanda Pilcrow",middot:"Titik tengah",cedil:"Cedilla",sup1:"Superskrip satu",ordm:"Indikator ordinal maskulin",raquo:"Tanda kutip sudut ganda menunjuk ke kanan",frac14:"Bilangan Pecahan seperempat",frac12:"Bilangan Pecahan setengah",frac34:"Bilangan Pecahan tigaperempat",iquest:"Tanda baca terbalik",Agrave:"Huruf kapital Latin A dengan aksen grave", +Aacute:"Huruf kapital Latin A dengan aksen acute",Acirc:"Huruf kapital Latin A dengan circumflex",Atilde:"Huruf kapital Latin A dengan tilde",Auml:"Huruf kapital Latin A dengan diaeresis",Aring:"Huruf kapital Latin A dengan cincin di atas",AElig:"huruf kapital latin Æ",Ccedil:"Huruf kapital latin C dengan cedilla",Egrave:"Huruf kapital Latin E dengan aksen grave",Eacute:"Huruf kapital Latin E dengan aksen acute",Ecirc:"Huruf kapital Latin E dengan circumflex",Euml:"Latin capital letter E with diaeresis", +Igrave:"Latin capital letter I with grave accent",Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis", +times:"Tanda perkalian",Oslash:"Latin capital letter O with stroke",Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex", +atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex", +iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Tanda bagi",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex", +uuml:"Latin small letter u with diaeresis",yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark", +hellip:"Horizontal ellipsis",trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/it.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/it.js new file mode 100644 index 0000000000..66704da95f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/it.js @@ -0,0 +1,14 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","it",{euro:"Simbolo Euro",lsquo:"Virgoletta singola sinistra",rsquo:"Virgoletta singola destra",ldquo:"Virgolette aperte",rdquo:"Virgolette chiuse",ndash:"Trattino",mdash:"Trattino lungo",iexcl:"Punto esclavamativo invertito",cent:"Simbolo Cent",pound:"Simbolo Sterlina",curren:"Simbolo Moneta",yen:"Simbolo Yen",brvbar:"Barra interrotta",sect:"Simbolo di sezione",uml:"Dieresi",copy:"Simbolo Copyright",ordf:"Indicatore ordinale femminile",laquo:"Virgolette basse aperte", +not:"Nessun segno",reg:"Simbolo Registrato",macr:"Macron",deg:"Simbolo Grado",sup2:"Apice Due",sup3:"Apice Tre",acute:"Accento acuto",micro:"Simbolo Micro",para:"Simbolo Paragrafo",middot:"Punto centrale",cedil:"Cediglia",sup1:"Apice Uno",ordm:"Indicatore ordinale maschile",raquo:"Virgolette basse chiuse",frac14:"Frazione volgare un quarto",frac12:"Frazione volgare un mezzo",frac34:"Frazione volgare tre quarti",iquest:"Punto interrogativo invertito",Agrave:"Lettera maiuscola latina A con accento grave", +Aacute:"Lettera maiuscola latina A con accento acuto",Acirc:"Lettera maiuscola latina A con accento circonflesso",Atilde:"Lettera maiuscola latina A con tilde",Auml:"Lettera maiuscola latina A con dieresi",Aring:"Lettera maiuscola latina A con anello sopra",AElig:"Lettera maiuscola latina Æ",Ccedil:"Lettera maiuscola latina C con cediglia",Egrave:"Lettera maiuscola latina E con accento grave",Eacute:"Lettera maiuscola latina E con accento acuto",Ecirc:"Lettera maiuscola latina E con accento circonflesso", +Euml:"Lettera maiuscola latina E con dieresi",Igrave:"Lettera maiuscola latina I con accento grave",Iacute:"Lettera maiuscola latina I con accento acuto",Icirc:"Lettera maiuscola latina I con accento circonflesso",Iuml:"Lettera maiuscola latina I con dieresi",ETH:"Lettera maiuscola latina Eth",Ntilde:"Lettera maiuscola latina N con tilde",Ograve:"Lettera maiuscola latina O con accento grave",Oacute:"Lettera maiuscola latina O con accento acuto",Ocirc:"Lettera maiuscola latina O con accento circonflesso", +Otilde:"Lettera maiuscola latina O con tilde",Ouml:"Lettera maiuscola latina O con dieresi",times:"Simbolo di moltiplicazione",Oslash:"Lettera maiuscola latina O barrata",Ugrave:"Lettera maiuscola latina U con accento grave",Uacute:"Lettera maiuscola latina U con accento acuto",Ucirc:"Lettera maiuscola latina U con accento circonflesso",Uuml:"Lettera maiuscola latina U con accento circonflesso",Yacute:"Lettera maiuscola latina Y con accento acuto",THORN:"Lettera maiuscola latina Thorn",szlig:"Lettera latina minuscola doppia S", +agrave:"Lettera minuscola latina a con accento grave",aacute:"Lettera minuscola latina a con accento acuto",acirc:"Lettera minuscola latina a con accento circonflesso",atilde:"Lettera minuscola latina a con tilde",auml:"Lettera minuscola latina a con dieresi",aring:"Lettera minuscola latina a con anello superiore",aelig:"Lettera minuscola latina ae",ccedil:"Lettera minuscola latina c con cediglia",egrave:"Lettera minuscola latina e con accento grave",eacute:"Lettera minuscola latina e con accento acuto", +ecirc:"Lettera minuscola latina e con accento circonflesso",euml:"Lettera minuscola latina e con dieresi",igrave:"Lettera minuscola latina i con accento grave",iacute:"Lettera minuscola latina i con accento acuto",icirc:"Lettera minuscola latina i con accento circonflesso",iuml:"Lettera minuscola latina i con dieresi",eth:"Lettera minuscola latina eth",ntilde:"Lettera minuscola latina n con tilde",ograve:"Lettera minuscola latina o con accento grave",oacute:"Lettera minuscola latina o con accento acuto", +ocirc:"Lettera minuscola latina o con accento circonflesso",otilde:"Lettera minuscola latina o con tilde",ouml:"Lettera minuscola latina o con dieresi",divide:"Simbolo di divisione",oslash:"Lettera minuscola latina o barrata",ugrave:"Lettera minuscola latina u con accento grave",uacute:"Lettera minuscola latina u con accento acuto",ucirc:"Lettera minuscola latina u con accento circonflesso",uuml:"Lettera minuscola latina u con dieresi",yacute:"Lettera minuscola latina y con accento acuto",thorn:"Lettera minuscola latina thorn", +yuml:"Lettera minuscola latina y con dieresi",OElig:"Legatura maiuscola latina OE",oelig:"Legatura minuscola latina oe",372:"Lettera maiuscola latina W con accento circonflesso",374:"Lettera maiuscola latina Y con accento circonflesso",373:"Lettera minuscola latina w con accento circonflesso",375:"Lettera minuscola latina y con accento circonflesso",sbquo:"Singola virgoletta bassa low-9",8219:"Singola virgoletta bassa low-9 inversa",bdquo:"Doppia virgoletta bassa low-9",hellip:"Ellissi orizzontale", +trade:"Simbolo TM",9658:"Puntatore nero rivolto verso destra",bull:"Punto",rarr:"Freccia verso destra",rArr:"Doppia freccia verso destra",hArr:"Doppia freccia sinistra destra",diams:"Simbolo nero diamante",asymp:"Quasi uguale a"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ja.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ja.js new file mode 100644 index 0000000000..e5db92e78e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ja.js @@ -0,0 +1,9 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","ja",{euro:"ユーロ記号",lsquo:"左シングル引用符",rsquo:"右シングル引用符",ldquo:"左ダブル引用符",rdquo:"右ダブル引用符",ndash:"半角ダッシュ",mdash:"全角ダッシュ",iexcl:"逆さ感嘆符",cent:"セント記号",pound:"ポンド記号",curren:"通貨記号",yen:"円記号",brvbar:"上下に分かれた縦棒",sect:"節記号",uml:"分音記号(ウムラウト)",copy:"著作権表示記号",ordf:"女性序数標識",laquo:" 始め二重山括弧引用記号",not:"論理否定記号",reg:"登録商標記号",macr:"長音符",deg:"度記号",sup2:"上つき2, 2乗",sup3:"上つき3, 3乗",acute:"揚音符",micro:"ミクロン記号",para:"段落記号",middot:"中黒",cedil:"セディラ",sup1:"上つき1",ordm:"男性序数標識",raquo:"終わり二重山括弧引用記号", +frac14:"四分の一",frac12:"二分の一",frac34:"四分の三",iquest:"逆疑問符",Agrave:"抑音符つき大文字A",Aacute:"揚音符つき大文字A",Acirc:"曲折アクセントつき大文字A",Atilde:"チルダつき大文字A",Auml:"分音記号つき大文字A",Aring:"リングつき大文字A",AElig:"AとEの合字",Ccedil:"セディラつき大文字C",Egrave:"抑音符つき大文字E",Eacute:"揚音符つき大文字E",Ecirc:"曲折アクセントつき大文字E",Euml:"分音記号つき大文字E",Igrave:"抑音符つき大文字I",Iacute:"揚音符つき大文字I",Icirc:"曲折アクセントつき大文字I",Iuml:"分音記号つき大文字I",ETH:"[アイスランド語]大文字ETH",Ntilde:"チルダつき大文字N",Ograve:"抑音符つき大文字O",Oacute:"揚音符つき大文字O",Ocirc:"曲折アクセントつき大文字O",Otilde:"チルダつき大文字O",Ouml:" 分音記号つき大文字O", +times:"乗算記号",Oslash:"打ち消し線つき大文字O",Ugrave:"抑音符つき大文字U",Uacute:"揚音符つき大文字U",Ucirc:"曲折アクセントつき大文字U",Uuml:"分音記号つき大文字U",Yacute:"揚音符つき大文字Y",THORN:"[アイスランド語]大文字THORN",szlig:"ドイツ語エスツェット",agrave:"抑音符つき小文字a",aacute:"揚音符つき小文字a",acirc:"曲折アクセントつき小文字a",atilde:"チルダつき小文字a",auml:"分音記号つき小文字a",aring:"リングつき小文字a",aelig:"aとeの合字",ccedil:"セディラつき小文字c",egrave:"抑音符つき小文字e",eacute:"揚音符つき小文字e",ecirc:"曲折アクセントつき小文字e",euml:"分音記号つき小文字e",igrave:"抑音符つき小文字i",iacute:"揚音符つき小文字i",icirc:"曲折アクセントつき小文字i",iuml:"分音記号つき小文字i",eth:"アイスランド語小文字eth", +ntilde:"チルダつき小文字n",ograve:"抑音符つき小文字o",oacute:"揚音符つき小文字o",ocirc:"曲折アクセントつき小文字o",otilde:"チルダつき小文字o",ouml:"分音記号つき小文字o",divide:"除算記号",oslash:"打ち消し線つき小文字o",ugrave:"抑音符つき小文字u",uacute:"揚音符つき小文字u",ucirc:"曲折アクセントつき小文字u",uuml:"分音記号つき小文字u",yacute:"揚音符つき小文字y",thorn:"アイスランド語小文字thorn",yuml:"分音記号つき小文字y",OElig:"OとEの合字",oelig:"oとeの合字",372:"曲折アクセントつき大文字W",374:"曲折アクセントつき大文字Y",373:"曲折アクセントつき小文字w",375:"曲折アクセントつき小文字y",sbquo:"シングル下引用符",8219:"左右逆の左引用符",bdquo:"ダブル下引用符",hellip:"三点リーダ",trade:"商標記号",9658:"右黒三角ポインタ",bull:"黒丸", +rarr:"右矢印",rArr:"右二重矢印",hArr:"左右二重矢印",diams:"ダイヤ",asymp:"漸近"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/km.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/km.js new file mode 100644 index 0000000000..d5e5f02a2b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/km.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","km",{euro:"សញ្ញា​អឺរ៉ូ",lsquo:"Left single quotation mark",rsquo:"Right single quotation mark",ldquo:"Left double quotation mark",rdquo:"Right double quotation mark",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"សញ្ញា​សេន",pound:"សញ្ញា​ផោន",curren:"សញ្ញា​រូបិយបណ្ណ",yen:"សញ្ញា​យ៉េន",brvbar:"Broken bar",sect:"Section sign",uml:"Diaeresis",copy:"សញ្ញា​រក្សា​សិទ្ធិ",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark", +not:"Not sign",reg:"Registered sign",macr:"Macron",deg:"សញ្ញា​ដឺក្រេ",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"សញ្ញា​មីក្រូ",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent", +Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent", +Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke", +Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis", +aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth", +ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis", +yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis", +trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ko.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ko.js new file mode 100644 index 0000000000..e85a82be6a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ko.js @@ -0,0 +1,10 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","ko",{euro:"유로화 기호",lsquo:"왼쪽 외 따옴표",rsquo:"오른쪽 외 따옴표",ldquo:"왼쪽 쌍 따옴표",rdquo:"오른쪽 쌍 따옴표",ndash:"반각 대시",mdash:"전각 대시",iexcl:"반전된 느낌표",cent:"센트 기호",pound:"파운드화 기호",curren:"커런시 기호",yen:"위안화 기호",brvbar:"파선",sect:"섹션 기호",uml:"분음 부호",copy:"저작권 기호",ordf:"Feminine ordinal indicator",laquo:"왼쪽 쌍꺽쇠 인용 부호",not:"금지 기호",reg:"등록 기호",macr:"장음 기호",deg:"도 기호",sup2:"위첨자 2",sup3:"위첨자 3",acute:"양음 악센트 부호",micro:"마이크로 기호",para:"단락 기호",middot:"가운데 점",cedil:"세디유",sup1:"위첨자 1",ordm:"Masculine ordinal indicator", +raquo:"오른쪽 쌍꺽쇠 인용 부호",frac14:"분수 사분의 일",frac12:"분수 이분의 일",frac34:"분수 사분의 삼",iquest:"뒤집힌 물음표",Agrave:"억음 부호가 있는 라틴 대문자 A",Aacute:"양음 악센트 부호가 있는 라틴 대문자 A",Acirc:"곡절 악센트 부호가 있는 라틴 대문자 A",Atilde:"틸데가 있는 라틴 대문자 A",Auml:"분음 기호가 있는 라틴 대문자 A",Aring:"윗고리가 있는 라틴 대문자 A",AElig:"라틴 대문자 Æ",Ccedil:"세디유가 있는 라틴 대문자 C",Egrave:"억음 부호가 있는 라틴 대문자 E",Eacute:"양음 악센트 부호가 있는 라틴 대문자 E",Ecirc:"곡절 악센트 부호가 있는 라틴 대문자 E",Euml:"분음 기호가 있는 라틴 대문자 E",Igrave:"억음 부호가 있는 라틴 대문자 I",Iacute:"양음 악센트 부호가 있는 라틴 대문자 I",Icirc:"곡절 악센트 부호가 있는 라틴 대문자 I", +Iuml:"분음 기호가 있는 라틴 대문자 I",ETH:"라틴 대문자 Eth",Ntilde:"틸데가 있는 라틴 대문자 N",Ograve:"억음 부호가 있는 라틴 대문자 O",Oacute:"양음 부호가 있는 라틴 대문자 O",Ocirc:"곡절 악센트 부호가 있는 라틴 대문자 O",Otilde:"틸데가 있는 라틴 대문자 O",Ouml:"분음 기호가 있는 라틴 대문자 O",times:"곱하기 기호",Oslash:"사선이 있는 라틴 대문자 O",Ugrave:"억음 부호가 있는 라틴 대문자 U",Uacute:"양음 부호가 있는 라틴 대문자 U",Ucirc:"곡절 악센트 부호가 있는 라틴 대문자 U",Uuml:"분음 기호가 있는 라틴 대문자 U",Yacute:"양음 부호가 있는 라틴 대문자 Y",THORN:"라틴 대문자 Thorn",szlig:"라틴 소문자 sharp s",agrave:"억음 부호가 있는 라틴 소문자 a",aacute:"양음 부호가 있는 라틴 소문자 a",acirc:"곡절 악센트 부호가 있는 라틴 소문자 a", +atilde:"틸데가 있는 라틴 소문자 a",auml:"분음 기호가 있는 라틴 소문자 a",aring:"윗고리가 있는 라틴 소문자 a",aelig:"라틴 소문자 æ",ccedil:"세디유가 있는 라틴 소문자 c",egrave:"억음 부호가 있는 라틴 소문자 e",eacute:"양음 부호가 있는 라틴 소문자 e",ecirc:"곡절 악센트 부호가 있는 라틴 소문자 e",euml:"분음 기호가 있는 라틴 소문자 e",igrave:"억음 부호가 있는 라틴 소문자 i",iacute:"양음 부호가 있는 라틴 소문자 i",icirc:"곡절 악센트 부호가 있는 라틴 소문자 i",iuml:"분음 기호가 있는 라틴 소문자 i",eth:"라틴 소문자 eth",ntilde:"틸데가 있는 라틴 소문자 n",ograve:"억음 부호가 있는 라틴 소문자 o",oacute:"양음 부호가 있는 라틴 소문자 o",ocirc:"곡절 악센트 부호가 있는 라틴 소문자 o",otilde:"틸데가 있는 라틴 소문자 o",ouml:"분음 기호가 있는 라틴 소문자 o", +divide:"나누기 기호",oslash:"사선이 있는 라틴 소문자 o",ugrave:"억음 부호가 있는 라틴 소문자 u",uacute:"양음 부호가 있는 라틴 소문자 u",ucirc:"곡절 악센트 부호가 있는 라틴 소문자 u",uuml:"분음 기호가 있는 라틴 소문자 u",yacute:"양음 부호가 있는 라틴 소문자 y",thorn:"라틴 소문자 thorn",yuml:"분음 기호가 있는 라틴 소문자 y",OElig:"라틴 대문합자 OE",oelig:"라틴 소문합자 oe",372:"곡절 악센트 부호가 있는 라틴 대문자 W",374:"곡절 악센트 부호가 있는 라틴 대문자 Y",373:"곡절 악센트 부호가 있는 라틴 소문자 w",375:"곡절 악센트 부호가 있는 라틴 소문자 y",sbquo:"외 아래-9 인용 부호",8219:"외 위쪽-뒤집힌-9 인용 부호",bdquo:"쌍 아래-9 인용 부호",hellip:"수평 생략 부호",trade:"상표 기호",9658:"검정 오른쪽 포인터",bull:"큰 점", +rarr:"오른쪽 화살표",rArr:"오른쪽 두 줄 화살표",hArr:"양쪽 두 줄 화살표",diams:"검정 다이아몬드",asymp:"근사"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ku.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ku.js new file mode 100644 index 0000000000..3580138535 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ku.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","ku",{euro:"نیشانەی یۆرۆ",lsquo:"نیشانەی فاریزەی سەرووژێری تاکی چەپ",rsquo:"نیشانەی فاریزەی سەرووژێری تاکی ڕاست",ldquo:"نیشانەی فاریزەی سەرووژێری دووهێندەی چه‌پ",rdquo:"نیشانەی فاریزەی سەرووژێری دووهێندەی ڕاست",ndash:"تەقەڵی کورت",mdash:"تەقەڵی درێژ",iexcl:"نیشانەی هەڵەوگێڕی سەرسوڕهێنەر",cent:"نیشانەی سەنت",pound:"نیشانەی پاوەند",curren:"نیشانەی دراو",yen:"نیشانەی یەنی ژاپۆنی",brvbar:"شریتی ئەستوونی پچڕاو",sect:"نیشانەی دوو s لەسەریەک",uml:"خاڵ",copy:"نیشانەی مافی چاپ", +ordf:"هێڵ لەسەر پیتی a",laquo:"دوو تیری بەدووایەکی چەپ",not:"نیشانەی نەخێر",reg:"نیشانەی R لەناو بازنەدا",macr:"ماکڕۆن",deg:"نیشانەی پلە",sup2:"سەرنووسی دوو",sup3:"سەرنووسی سێ",acute:"لاری تیژ",micro:"نیشانەی u لق درێژی چەپی خواروو",para:"نیشانەی پەڕەگراف",middot:"ناوەڕاستی خاڵ",cedil:"نیشانەی c ژێر چووکرە",sup1:"سەرنووسی یەک",ordm:"هێڵ لەژێر پیتی o",raquo:"دوو تیری بەدووایەکی ڕاست",frac14:"یەک لەسەر چووار",frac12:"یەک لەسەر دوو",frac34:"سێ لەسەر چووار",iquest:"هێمای هەڵەوگێری پرسیار",Agrave:"پیتی لاتینی A-ی گەورە لەگەڵ ڕوومەتداری لار", +Aacute:"پیتی لاتینی A-ی گەورە لەگەڵ ڕوومەتداری تیژ",Acirc:"پیتی لاتینی A-ی گەورە لەگەڵ نیشانە لەسەری",Atilde:"پیتی لاتینی A-ی گەورە لەگەڵ زەڕە",Auml:"پیتی لاتینی A-ی گەورە لەگەڵ نیشانە لەسەری",Aring:"پیتی لاتینی گەورەی Å",AElig:"پیتی لاتینی گەورەی Æ",Ccedil:"پیتی لاتینی C-ی گەورە لەگەڵ ژێر چووکرە",Egrave:"پیتی لاتینی E-ی گەورە لەگەڵ ڕوومەتداری لار",Eacute:"پیتی لاتینی E-ی گەورە لەگەڵ ڕوومەتداری تیژ",Ecirc:"پیتی لاتینی E-ی گەورە لەگەڵ نیشانە لەسەری",Euml:"پیتی لاتینی E-ی گەورە لەگەڵ نیشانە لەسەری", +Igrave:"پیتی لاتینی I-ی گەورە لەگەڵ ڕوومەتداری لار",Iacute:"پیتی لاتینی I-ی گەورە لەگەڵ ڕوومەتداری تیژ",Icirc:"پیتی لاتینی I-ی گەورە لەگەڵ نیشانە لەسەری",Iuml:"پیتی لاتینی I-ی گەورە لەگەڵ نیشانە لەسەری",ETH:"پیتی لاتینی E-ی گەورەی",Ntilde:"پیتی لاتینی N-ی گەورە لەگەڵ زەڕە",Ograve:"پیتی لاتینی O-ی گەورە لەگەڵ ڕوومەتداری لار",Oacute:"پیتی لاتینی O-ی گەورە لەگەڵ ڕوومەتداری تیژ",Ocirc:"پیتی لاتینی O-ی گەورە لەگەڵ نیشانە لەسەری",Otilde:"پیتی لاتینی O-ی گەورە لەگەڵ زەڕە",Ouml:"پیتی لاتینی O-ی گەورە لەگەڵ نیشانە لەسەری", +times:"نیشانەی لێکدان",Oslash:"پیتی لاتینی گەورەی Ø لەگەڵ هێمای دڵ وەستان",Ugrave:"پیتی لاتینی U-ی گەورە لەگەڵ ڕوومەتداری لار",Uacute:"پیتی لاتینی U-ی گەورە لەگەڵ ڕوومەتداری تیژ",Ucirc:"پیتی لاتینی U-ی گەورە لەگەڵ نیشانە لەسەری",Uuml:"پیتی لاتینی U-ی گەورە لەگەڵ نیشانە لەسەری",Yacute:"پیتی لاتینی Y-ی گەورە لەگەڵ ڕوومەتداری تیژ",THORN:"پیتی لاتینی دڕکی گەورە",szlig:"پیتی لاتنی نووک تیژی s",agrave:"پیتی لاتینی a-ی بچووک لەگەڵ ڕوومەتداری لار",aacute:"پیتی لاتینی a-ی بچووك لەگەڵ ڕوومەتداری تیژ",acirc:"پیتی لاتینی a-ی بچووك لەگەڵ نیشانە لەسەری", +atilde:"پیتی لاتینی a-ی بچووك لەگەڵ زەڕە",auml:"پیتی لاتینی a-ی بچووك لەگەڵ نیشانە لەسەری",aring:"پیتی لاتینی å-ی بچووك",aelig:"پیتی لاتینی æ-ی بچووك",ccedil:"پیتی لاتینی c-ی بچووك لەگەڵ ژێر چووکرە",egrave:"پیتی لاتینی e-ی بچووك لەگەڵ ڕوومەتداری لار",eacute:"پیتی لاتینی e-ی بچووك لەگەڵ ڕوومەتداری تیژ",ecirc:"پیتی لاتینی e-ی بچووك لەگەڵ نیشانە لەسەری",euml:"پیتی لاتینی e-ی بچووك لەگەڵ نیشانە لەسەری",igrave:"پیتی لاتینی i-ی بچووك لەگەڵ ڕوومەتداری لار",iacute:"پیتی لاتینی i-ی بچووك لەگەڵ ڕوومەتداری تیژ", +icirc:"پیتی لاتینی i-ی بچووك لەگەڵ نیشانە لەسەری",iuml:"پیتی لاتینی i-ی بچووك لەگەڵ نیشانە لەسەری",eth:"پیتی لاتینی e-ی بچووك",ntilde:"پیتی لاتینی n-ی بچووك لەگەڵ زەڕە",ograve:"پیتی لاتینی o-ی بچووك لەگەڵ ڕوومەتداری لار",oacute:"پیتی لاتینی o-ی بچووك له‌گەڵ ڕوومەتداری تیژ",ocirc:"پیتی لاتینی o-ی بچووك لەگەڵ نیشانە لەسەری",otilde:"پیتی لاتینی o-ی بچووك لەگەڵ زەڕە",ouml:"پیتی لاتینی o-ی بچووك لەگەڵ نیشانە لەسەری",divide:"نیشانەی دابەش",oslash:"پیتی لاتینی گەورەی ø لەگەڵ هێمای دڵ وەستان",ugrave:"پیتی لاتینی u-ی بچووك لەگەڵ ڕوومەتداری لار", +uacute:"پیتی لاتینی u-ی بچووك لەگەڵ ڕوومەتداری تیژ",ucirc:"پیتی لاتینی u-ی بچووك لەگەڵ نیشانە لەسەری",uuml:"پیتی لاتینی u-ی بچووك لەگەڵ نیشانە لەسەری",yacute:"پیتی لاتینی y-ی بچووك لەگەڵ ڕوومەتداری تیژ",thorn:"پیتی لاتینی دڕکی بچووك",yuml:"پیتی لاتینی y-ی بچووك لەگەڵ نیشانە لەسەری",OElig:"پیتی لاتینی گەورەی پێکەوەنووسراوی OE",oelig:"پیتی لاتینی بچووکی پێکەوەنووسراوی oe",372:"پیتی لاتینی W-ی گەورە لەگەڵ نیشانە لەسەری",374:"پیتی لاتینی Y-ی گەورە لەگەڵ نیشانە لەسەری",373:"پیتی لاتینی w-ی بچووکی لەگەڵ نیشانە لەسەری", +375:"پیتی لاتینی y-ی بچووکی لەگەڵ نیشانە لەسەری",sbquo:"نیشانەی فاریزەی نزم",8219:"نیشانەی فاریزەی بەرزی پێچەوانە",bdquo:"دوو فاریزەی تەنیش یەك",hellip:"ئاسۆیی بازنە",trade:"نیشانەی بازرگانی",9658:"ئاراستەی ڕەشی دەستی ڕاست",bull:"فیشەك",rarr:"تیری دەستی ڕاست",rArr:"دووتیری دەستی ڕاست",hArr:"دوو تیری ڕاست و چەپ",diams:"ڕەشی پاقڵاوەیی",asymp:"نیشانەی یەکسانە"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/lt.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/lt.js new file mode 100644 index 0000000000..5b12e40f70 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/lt.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","lt",{euro:"Euro ženklas",lsquo:"Left single quotation mark",rsquo:"Right single quotation mark",ldquo:"Left double quotation mark",rdquo:"Right double quotation mark",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"Cento ženklas",pound:"Svaro ženklas",curren:"Valiutos ženklas",yen:"Jenos ženklas",brvbar:"Broken bar",sect:"Section sign",uml:"Diaeresis",copy:"Copyright sign",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark", +not:"Ne ženklas",reg:"Registered sign",macr:"Makronas",deg:"Laipsnio ženklas",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Mikro ženklas",para:"Pilcrow sign",middot:"Vidurinis taškas",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent", +Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent", +Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke", +Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis", +aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth", +ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis", +yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis", +trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/lv.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/lv.js new file mode 100644 index 0000000000..4a85cb3c20 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/lv.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","lv",{euro:"Euro zīme",lsquo:"Kreisā vienkārtīga pēdiņa",rsquo:"Labā vienkārtīga pēdiņa",ldquo:"Kreisā dubult pēdiņa",rdquo:"Labā dubult pēdiņa",ndash:"En svītra",mdash:"Em svītra",iexcl:"Apgriezta izsaukuma zīme",cent:"Centu naudas zīme",pound:"Sterliņu mārciņu naudas zīme",curren:"Valūtas zīme",yen:"Jenu naudas zīme",brvbar:"Vertikāla pārrauta līnija",sect:"Paragrāfa zīme",uml:"Diakritiska zīme",copy:"Autortiesību zīme",ordf:"Sievišķas kārtas rādītājs", +laquo:"Kreisā dubult stūra pēdiņu zīme",not:"Neparakstīts",reg:"Reģistrēta zīme",macr:"Garumzīme",deg:"Grādu zīme",sup2:"Augšraksts divi",sup3:"Augšraksts trīs",acute:"Akūta uzsvara zīme",micro:"Mikro zīme",para:"Rindkopas zīme ",middot:"Vidējs punkts",cedil:"Āķītis zem burta",sup1:"Augšraksts viens",ordm:"Vīrišķīgas kārtas rādītājs",raquo:"Labā dubult stūra pēdiņu zīme",frac14:"Vulgāra frakcija 1/4",frac12:"Vulgāra frakcija 1/2",frac34:"Vulgāra frakcija 3/4",iquest:"Apgriezta jautājuma zīme",Agrave:"Lielais latīņu burts A ar uzsvara zīmi", +Aacute:"Lielais latīņu burts A ar akūtu uzsvara zīmi",Acirc:"Lielais latīņu burts A ar diakritisku zīmi",Atilde:"Lielais latīņu burts A ar tildi ",Auml:"Lielais latīņu burts A ar diakritisko zīmi",Aring:"Lielais latīņu burts A ar aplīti augšā",AElig:"Lielais latīņu burts Æ",Ccedil:"Lielais latīņu burts C ar āķīti zem burta",Egrave:"Lielais latīņu burts E ar apostrofu",Eacute:"Lielais latīņu burts E ar akūtu uzsvara zīmi",Ecirc:"Lielais latīņu burts E ar diakritisko zīmi",Euml:"Lielais latīņu burts E ar diakritisko zīmi", +Igrave:"Lielais latīņu burts I ar uzsvaras zīmi",Iacute:"Lielais latīņu burts I ar akūtu uzsvara zīmi",Icirc:"Lielais latīņu burts I ar diakritisko zīmi",Iuml:"Lielais latīņu burts I ar diakritisko zīmi",ETH:"Lielais latīņu burts Eth",Ntilde:"Lielais latīņu burts N ar tildi",Ograve:"Lielais latīņu burts O ar uzsvara zīmi",Oacute:"Lielais latīņu burts O ar akūto uzsvara zīmi",Ocirc:"Lielais latīņu burts O ar diakritisko zīmi",Otilde:"Lielais latīņu burts O ar tildi",Ouml:"Lielais latīņu burts O ar diakritisko zīmi", +times:"Reizināšanas zīme ",Oslash:"Lielais latīņu burts O ar iesvītrojumu",Ugrave:"Lielais latīņu burts U ar uzsvaras zīmi",Uacute:"Lielais latīņu burts U ar akūto uzsvars zīmi",Ucirc:"Lielais latīņu burts U ar diakritisko zīmi",Uuml:"Lielais latīņu burts U ar diakritisko zīmi",Yacute:"Lielais latīņu burts Y ar akūto uzsvaras zīmi",THORN:"Lielais latīņu burts torn",szlig:"Mazs latīņu burts ar ligatūru",agrave:"Mazs latīņu burts a ar uzsvara zīmi",aacute:"Mazs latīņu burts a ar akūto uzsvara zīmi", +acirc:"Mazs latīņu burts a ar diakritisko zīmi",atilde:"Mazs latīņu burts a ar tildi",auml:"Mazs latīņu burts a ar diakritisko zīmi",aring:"Mazs latīņu burts a ar aplīti augšā",aelig:"Mazs latīņu burts æ",ccedil:"Mazs latīņu burts c ar āķīti zem burta",egrave:"Mazs latīņu burts e ar uzsvara zīmi ",eacute:"Mazs latīņu burts e ar akūtu uzsvara zīmi",ecirc:"Mazs latīņu burts e ar diakritisko zīmi",euml:"Mazs latīņu burts e ar diakritisko zīmi",igrave:"Mazs latīņu burts i ar uzsvara zīmi ",iacute:"Mazs latīņu burts i ar akūtu uzsvara zīmi", +icirc:"Mazs latīņu burts i ar diakritisko zīmi",iuml:"Mazs latīņu burts i ar diakritisko zīmi",eth:"Mazs latīņu burts eth",ntilde:"Mazs latīņu burts n ar tildi",ograve:"Mazs latīņu burts o ar uzsvara zīmi ",oacute:"Mazs latīņu burts o ar akūtu uzsvara zīmi",ocirc:"Mazs latīņu burts o ar diakritisko zīmi",otilde:"Mazs latīņu burts o ar tildi",ouml:"Mazs latīņu burts o ar diakritisko zīmi",divide:"Dalīšanas zīme",oslash:"Mazs latīņu burts o ar iesvītrojumu",ugrave:"Mazs latīņu burts u ar uzsvara zīmi ", +uacute:"Mazs latīņu burts u ar akūtu uzsvara zīmi",ucirc:"Mazs latīņu burts u ar diakritisko zīmi",uuml:"Mazs latīņu burts u ar diakritisko zīmi",yacute:"Mazs latīņu burts y ar akūtu uzsvaras zīmi",thorn:"Mazs latīņu burts torns",yuml:"Mazs latīņu burts y ar diakritisko zīmi",OElig:"Liela latīņu ligatūra OE",oelig:"Maza latīņu ligatūra oe",372:"Liels latīņu burts W ar diakritisko zīmi ",374:"Liels latīņu burts Y ar diakritisko zīmi ",373:"Mazs latīņu burts w ar diakritisko zīmi ",375:"Mazs latīņu burts y ar diakritisko zīmi ", +sbquo:"Mazas-9 vienkārtīgas pēdiņas",8219:"Lielas-9 vienkārtīgas apgrieztas pēdiņas",bdquo:"Mazas-9 dubultas pēdiņas",hellip:"Horizontāli daudzpunkti",trade:"Preču zīmes zīme",9658:"Melns pa labi pagriezts radītājs",bull:"Lode",rarr:"Bulta pa labi",rArr:"Dubulta Bulta pa labi",hArr:"Bulta pa kreisi",diams:"Dubulta Bulta pa kreisi",asymp:"Gandrīz vienāds ar"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/nb.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/nb.js new file mode 100644 index 0000000000..306174e29c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/nb.js @@ -0,0 +1,11 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","nb",{euro:"Eurosymbol",lsquo:"Venstre enkelt anførselstegn",rsquo:"Høyre enkelt anførselstegn",ldquo:"Venstre dobbelt anførselstegn",rdquo:"Høyre anførsesltegn",ndash:"Kort tankestrek",mdash:"Lang tankestrek",iexcl:"Omvendt utropstegn",cent:"Centsymbol",pound:"Pundsymbol",curren:"Valutategn",yen:"Yensymbol",brvbar:"Brutt loddrett strek",sect:"Paragraftegn",uml:"Tøddel",copy:"Copyrighttegn",ordf:"Feminin ordensindikator",laquo:"Venstre anførselstegn",not:"Negasjonstegn", +reg:"Registrert varemerke-tegn",macr:"Makron",deg:"Gradsymbol",sup2:"Hevet totall",sup3:"Hevet tretall",acute:"Akutt aksent",micro:"Mikrosymbol",para:"Avsnittstegn",middot:"Midtstilt prikk",cedil:"Cedille",sup1:"Hevet ettall",ordm:"Maskulin ordensindikator",raquo:"Høyre anførselstegn",frac14:"Fjerdedelsbrøk",frac12:"Halvbrøk",frac34:"Tre fjerdedelers brøk",iquest:"Omvendt spørsmålstegn",Agrave:"Stor A med grav aksent",Aacute:"Stor A med akutt aksent",Acirc:"Stor A med cirkumfleks",Atilde:"Stor A med tilde", +Auml:"Stor A med tøddel",Aring:"Stor Å",AElig:"Stor Æ",Ccedil:"Stor C med cedille",Egrave:"Stor E med grav aksent",Eacute:"Stor E med akutt aksent",Ecirc:"Stor E med cirkumfleks",Euml:"Stor E med tøddel",Igrave:"Stor I med grav aksent",Iacute:"Stor I med akutt aksent",Icirc:"Stor I med cirkumfleks",Iuml:"Stor I med tøddel",ETH:"Stor Edd/stungen D",Ntilde:"Stor N med tilde",Ograve:"Stor O med grav aksent",Oacute:"Stor O med akutt aksent",Ocirc:"Stor O med cirkumfleks",Otilde:"Stor O med tilde",Ouml:"Stor O med tøddel", +times:"Multiplikasjonstegn",Oslash:"Stor Ø",Ugrave:"Stor U med grav aksent",Uacute:"Stor U med akutt aksent",Ucirc:"Stor U med cirkumfleks",Uuml:"Stor U med tøddel",Yacute:"Stor Y med akutt aksent",THORN:"Stor Thorn",szlig:"Liten dobbelt-s/Eszett",agrave:"Liten a med grav aksent",aacute:"Liten a med akutt aksent",acirc:"Liten a med cirkumfleks",atilde:"Liten a med tilde",auml:"Liten a med tøddel",aring:"Liten å",aelig:"Liten æ",ccedil:"Liten c med cedille",egrave:"Liten e med grav aksent",eacute:"Liten e med akutt aksent", +ecirc:"Liten e med cirkumfleks",euml:"Liten e med tøddel",igrave:"Liten i med grav aksent",iacute:"Liten i med akutt aksent",icirc:"Liten i med cirkumfleks",iuml:"Liten i med tøddel",eth:"Liten edd/stungen d",ntilde:"Liten n med tilde",ograve:"Liten o med grav aksent",oacute:"Liten o med akutt aksent",ocirc:"Liten o med cirkumfleks",otilde:"Liten o med tilde",ouml:"Liten o med tøddel",divide:"Divisjonstegn",oslash:"Liten ø",ugrave:"Liten u med grav aksent",uacute:"Liten u med akutt aksent",ucirc:"Liten u med cirkumfleks", +uuml:"Liten u med tøddel",yacute:"Liten y med akutt aksent",thorn:"Liten thorn",yuml:"Liten y med tøddel",OElig:"Stor ligatur av O og E",oelig:"Liten ligatur av o og e",372:"Stor W med cirkumfleks",374:"Stor Y med cirkumfleks",373:"Liten w med cirkumfleks",375:"Liten y med cirkumfleks",sbquo:"Enkelt lavt 9-anførselstegn",8219:"Enkelt høyt reversert 9-anførselstegn",bdquo:"Dobbelt lavt 9-anførselstegn",hellip:"Ellipse",trade:"Varemerkesymbol",9658:"Svart høyrevendt peker",bull:"Tykk interpunkt",rarr:"Høyrevendt pil", +rArr:"Dobbel høyrevendt pil",hArr:"Dobbel venstrevendt pil",diams:"Svart ruter",asymp:"Omtrent likhetstegn"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/nl.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/nl.js new file mode 100644 index 0000000000..73fb0b3b71 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/nl.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","nl",{euro:"Euro-teken",lsquo:"Linker enkel aanhalingsteken",rsquo:"Rechter enkel aanhalingsteken",ldquo:"Linker dubbel aanhalingsteken",rdquo:"Rechter dubbel aanhalingsteken",ndash:"En dash",mdash:"Em dash",iexcl:"Omgekeerd uitroepteken",cent:"Cent-teken",pound:"Pond-teken",curren:"Valuta-teken",yen:"Yen-teken",brvbar:"Gebroken streep",sect:"Paragraaf-teken",uml:"Trema",copy:"Copyright-teken",ordf:"Vrouwelijk ordinaal",laquo:"Linker guillemet",not:"Ongelijk-teken", +reg:"Geregistreerd handelsmerk-teken",macr:"Macron",deg:"Graden-teken",sup2:"Superscript twee",sup3:"Superscript drie",acute:"Accent aigu",micro:"Micro-teken",para:"Alinea-teken",middot:"Halfhoge punt",cedil:"Cedille",sup1:"Superscript een",ordm:"Mannelijk ordinaal",raquo:"Rechter guillemet",frac14:"Breuk kwart",frac12:"Breuk half",frac34:"Breuk driekwart",iquest:"Omgekeerd vraagteken",Agrave:"Latijnse hoofdletter A met een accent grave",Aacute:"Latijnse hoofdletter A met een accent aigu",Acirc:"Latijnse hoofdletter A met een circonflexe", +Atilde:"Latijnse hoofdletter A met een tilde",Auml:"Latijnse hoofdletter A met een trema",Aring:"Latijnse hoofdletter A met een corona",AElig:"Latijnse hoofdletter Æ",Ccedil:"Latijnse hoofdletter C met een cedille",Egrave:"Latijnse hoofdletter E met een accent grave",Eacute:"Latijnse hoofdletter E met een accent aigu",Ecirc:"Latijnse hoofdletter E met een circonflexe",Euml:"Latijnse hoofdletter E met een trema",Igrave:"Latijnse hoofdletter I met een accent grave",Iacute:"Latijnse hoofdletter I met een accent aigu", +Icirc:"Latijnse hoofdletter I met een circonflexe",Iuml:"Latijnse hoofdletter I met een trema",ETH:"Latijnse hoofdletter Eth",Ntilde:"Latijnse hoofdletter N met een tilde",Ograve:"Latijnse hoofdletter O met een accent grave",Oacute:"Latijnse hoofdletter O met een accent aigu",Ocirc:"Latijnse hoofdletter O met een circonflexe",Otilde:"Latijnse hoofdletter O met een tilde",Ouml:"Latijnse hoofdletter O met een trema",times:"Maal-teken",Oslash:"Latijnse hoofdletter O met een schuine streep",Ugrave:"Latijnse hoofdletter U met een accent grave", +Uacute:"Latijnse hoofdletter U met een accent aigu",Ucirc:"Latijnse hoofdletter U met een circonflexe",Uuml:"Latijnse hoofdletter U met een trema",Yacute:"Latijnse hoofdletter Y met een accent aigu",THORN:"Latijnse hoofdletter Thorn",szlig:"Latijnse kleine ringel-s",agrave:"Latijnse kleine letter a met een accent grave",aacute:"Latijnse kleine letter a met een accent aigu",acirc:"Latijnse kleine letter a met een circonflexe",atilde:"Latijnse kleine letter a met een tilde",auml:"Latijnse kleine letter a met een trema", +aring:"Latijnse kleine letter a met een corona",aelig:"Latijnse kleine letter æ",ccedil:"Latijnse kleine letter c met een cedille",egrave:"Latijnse kleine letter e met een accent grave",eacute:"Latijnse kleine letter e met een accent aigu",ecirc:"Latijnse kleine letter e met een circonflexe",euml:"Latijnse kleine letter e met een trema",igrave:"Latijnse kleine letter i met een accent grave",iacute:"Latijnse kleine letter i met een accent aigu",icirc:"Latijnse kleine letter i met een circonflexe", +iuml:"Latijnse kleine letter i met een trema",eth:"Latijnse kleine letter eth",ntilde:"Latijnse kleine letter n met een tilde",ograve:"Latijnse kleine letter o met een accent grave",oacute:"Latijnse kleine letter o met een accent aigu",ocirc:"Latijnse kleine letter o met een circonflexe",otilde:"Latijnse kleine letter o met een tilde",ouml:"Latijnse kleine letter o met een trema",divide:"Deel-teken",oslash:"Latijnse kleine letter o met een schuine streep",ugrave:"Latijnse kleine letter u met een accent grave", +uacute:"Latijnse kleine letter u met een accent aigu",ucirc:"Latijnse kleine letter u met een circonflexe",uuml:"Latijnse kleine letter u met een trema",yacute:"Latijnse kleine letter y met een accent aigu",thorn:"Latijnse kleine letter thorn",yuml:"Latijnse kleine letter y met een trema",OElig:"Latijnse hoofdletter Œ",oelig:"Latijnse kleine letter œ",372:"Latijnse hoofdletter W met een circonflexe",374:"Latijnse hoofdletter Y met een circonflexe",373:"Latijnse kleine letter w met een circonflexe", +375:"Latijnse kleine letter y met een circonflexe",sbquo:"Lage enkele aanhalingsteken",8219:"Hoge omgekeerde enkele aanhalingsteken",bdquo:"Lage dubbele aanhalingsteken",hellip:"Beletselteken",trade:"Trademark-teken",9658:"Zwarte driehoek naar rechts",bull:"Bullet",rarr:"Pijl naar rechts",rArr:"Dubbele pijl naar rechts",hArr:"Dubbele pijl naar links",diams:"Zwart ruitje",asymp:"Benaderingsteken"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/no.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/no.js new file mode 100644 index 0000000000..298c41d46a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/no.js @@ -0,0 +1,11 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","no",{euro:"Eurosymbol",lsquo:"Venstre enkelt anførselstegn",rsquo:"Høyre enkelt anførselstegn",ldquo:"Venstre dobbelt anførselstegn",rdquo:"Høyre anførsesltegn",ndash:"Kort tankestrek",mdash:"Lang tankestrek",iexcl:"Omvendt utropstegn",cent:"Centsymbol",pound:"Pundsymbol",curren:"Valutategn",yen:"Yensymbol",brvbar:"Brutt loddrett strek",sect:"Paragraftegn",uml:"Tøddel",copy:"Copyrighttegn",ordf:"Feminin ordensindikator",laquo:"Venstre anførselstegn",not:"Negasjonstegn", +reg:"Registrert varemerke-tegn",macr:"Makron",deg:"Gradsymbol",sup2:"Hevet totall",sup3:"Hevet tretall",acute:"Akutt aksent",micro:"Mikrosymbol",para:"Avsnittstegn",middot:"Midtstilt prikk",cedil:"Cedille",sup1:"Hevet ettall",ordm:"Maskulin ordensindikator",raquo:"Høyre anførselstegn",frac14:"Fjerdedelsbrøk",frac12:"Halvbrøk",frac34:"Tre fjerdedelers brøk",iquest:"Omvendt spørsmålstegn",Agrave:"Stor A med grav aksent",Aacute:"Stor A med akutt aksent",Acirc:"Stor A med cirkumfleks",Atilde:"Stor A med tilde", +Auml:"Stor A med tøddel",Aring:"Stor Å",AElig:"Stor Æ",Ccedil:"Stor C med cedille",Egrave:"Stor E med grav aksent",Eacute:"Stor E med akutt aksent",Ecirc:"Stor E med cirkumfleks",Euml:"Stor E med tøddel",Igrave:"Stor I med grav aksent",Iacute:"Stor I med akutt aksent",Icirc:"Stor I med cirkumfleks",Iuml:"Stor I med tøddel",ETH:"Stor Edd/stungen D",Ntilde:"Stor N med tilde",Ograve:"Stor O med grav aksent",Oacute:"Stor O med akutt aksent",Ocirc:"Stor O med cirkumfleks",Otilde:"Stor O med tilde",Ouml:"Stor O med tøddel", +times:"Multiplikasjonstegn",Oslash:"Stor Ø",Ugrave:"Stor U med grav aksent",Uacute:"Stor U med akutt aksent",Ucirc:"Stor U med cirkumfleks",Uuml:"Stor U med tøddel",Yacute:"Stor Y med akutt aksent",THORN:"Stor Thorn",szlig:"Liten dobbelt-s/Eszett",agrave:"Liten a med grav aksent",aacute:"Liten a med akutt aksent",acirc:"Liten a med cirkumfleks",atilde:"Liten a med tilde",auml:"Liten a med tøddel",aring:"Liten å",aelig:"Liten æ",ccedil:"Liten c med cedille",egrave:"Liten e med grav aksent",eacute:"Liten e med akutt aksent", +ecirc:"Liten e med cirkumfleks",euml:"Liten e med tøddel",igrave:"Liten i med grav aksent",iacute:"Liten i med akutt aksent",icirc:"Liten i med cirkumfleks",iuml:"Liten i med tøddel",eth:"Liten edd/stungen d",ntilde:"Liten n med tilde",ograve:"Liten o med grav aksent",oacute:"Liten o med akutt aksent",ocirc:"Liten o med cirkumfleks",otilde:"Liten o med tilde",ouml:"Liten o med tøddel",divide:"Divisjonstegn",oslash:"Liten ø",ugrave:"Liten u med grav aksent",uacute:"Liten u med akutt aksent",ucirc:"Liten u med cirkumfleks", +uuml:"Liten u med tøddel",yacute:"Liten y med akutt aksent",thorn:"Liten thorn",yuml:"Liten y med tøddel",OElig:"Stor ligatur av O og E",oelig:"Liten ligatur av o og e",372:"Stor W med cirkumfleks",374:"Stor Y med cirkumfleks",373:"Liten w med cirkumfleks",375:"Liten y med cirkumfleks",sbquo:"Enkelt lavt 9-anførselstegn",8219:"Enkelt høyt reversert 9-anførselstegn",bdquo:"Dobbelt lavt 9-anførselstegn",hellip:"Ellipse",trade:"Varemerkesymbol",9658:"Svart høyrevendt peker",bull:"Tykk interpunkt",rarr:"Høyrevendt pil", +rArr:"Dobbel høyrevendt pil",hArr:"Dobbel venstrevendt pil",diams:"Svart ruter",asymp:"Omtrent likhetstegn"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/oc.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/oc.js new file mode 100644 index 0000000000..6dce15e58e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/oc.js @@ -0,0 +1,12 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","oc",{euro:"Simbòl èuro",lsquo:"Vergueta simpla dobrenta",rsquo:"Vergueta simpla tampanta",ldquo:"Vergueta dobla dobrenta",rdquo:"Vergueta dobla tampanta",ndash:"Jonhent semi-quadratin",mdash:"Jonhent quadratin",iexcl:"Punt d'exclamacion inversat",cent:"Simbòl cent",pound:"Simbòl Liura sterling",curren:"Simbòl monetari",yen:"Simbòl ièn",brvbar:"Barra verticala separada",sect:"Signe de seccion",uml:"Trèma",copy:"Simbòl Copyright",ordf:"Indicador ordinal femenin", +laquo:"Vergueta francesa dobrenta",not:"Croquet de negacion",reg:"Simbòl de marca depausada",macr:"Macron",deg:"Simbòl gra",sup2:"Exponent 2",sup3:"Exponent 3",acute:"Accent agut",micro:"Simbòl micro",para:"Simbòl pè de mòsca",middot:"Punt median",cedil:"Cedilha",sup1:"Exponent 1",ordm:"Indicador ordenal masculin",raquo:"Vergueta francesa tampanta",frac14:"Fraccion un quart",frac12:"Fraccion un mièg",frac34:"Fraccion tres quarts",iquest:"Punt d'interrogacion inversat",Agrave:"A accent grèu majuscula", +Aacute:"A accent agut majuscula",Acirc:"A accent circonflèxe majuscula",Atilde:"A caron majuscula",Auml:"A trèma majuscula",Aring:"A redond majuscula",AElig:"Ligatura Æ majuscula",Ccedil:"C cédille majuscula",Egrave:"E accent grèu majuscula",Eacute:"E accent agut majuscula",Ecirc:"E accent circonflèxe majuscula",Euml:"E trèma majuscula",Igrave:"I accent grèu majuscula",Iacute:"I accent agut majuscula",Icirc:"I accent circonflèxe majuscula",Iuml:"I trèma majuscula",ETH:"Letra majuscula islandaise ED", +Ntilde:"N caron majuscula",Ograve:"O accent grèu majuscula",Oacute:"O accent agut majuscula",Ocirc:"O accent circonflèxe majuscula",Otilde:"O caron majuscula",Ouml:"O trèma majuscula",times:"Simbòl de multiplicacion",Oslash:"O raiat majuscula",Ugrave:"U accent grèu majuscula",Uacute:"U accent agut majuscula",Ucirc:"U accent circonflèxe majuscula",Uuml:"U trèma majuscula",Yacute:"Y accent agut majuscula",THORN:"Letra islandesa thorn majuscula",szlig:"Letra minuscula alemanda S dur",agrave:"A accent grèu minuscula", +aacute:"A accent agut minuscula",acirc:"A accent circonflèxe minuscula",atilde:"A tilda minuscula",auml:"A trèma minuscula",aring:"A redond minuscula",aelig:"Ligatura Æ minuscula",ccedil:"C cédille minuscula",egrave:"E accent grèu minuscula",eacute:"E accent agut minuscula",ecirc:"E accent circonflèxe minuscula",euml:"E trèma minuscula",igrave:"I accent grèu minuscula",iacute:"I accent agut minuscula",icirc:"I accent circonflèxe minuscula",iuml:"i minuscula trèma",eth:"Letra minuscula islandaise ED", +ntilde:"N caron minuscula",ograve:"O minuscula accent grèu",oacute:"O accent agut minuscula",ocirc:"O accent circonflèxe minuscula",otilde:"O tilda minuscula",ouml:"O trèma minuscula",divide:"Simbòl de division",oslash:"O raiat minuscula",ugrave:"U accent grèu minuscula",uacute:"U accent agut minuscula",ucirc:"U accent circonflèxe minuscula",uuml:"U trèma minuscula",yacute:"Y accent agut minuscula",thorn:"Letra islandaise thorn minuscula",yuml:"Y trèma minuscula",OElig:"Ligatura Œ majuscula",oelig:"Ligatura Œ minuscula", +372:"W accent circonflèxe majuscula",374:"Y accent circonflèxe majuscula",373:"W accent circonflèxe minuscula",375:"Y accent circonflèxe minuscula",sbquo:"Vergueta simpla tampanta inferior",8219:"Vergueta-virgula superior culbuté",bdquo:"Vergueta-virgula double inferior",hellip:"Punts de suspension",trade:"Simbòl de marca comerciala",9658:"Sageta negra puntant cap a dreita",bull:"Gròs punt median",rarr:"Sageta cap a dreita",rArr:"Sageta dobla cap a dreita",hArr:"Sageta dobla cap a esquèrra",diams:"Lausange negre", +asymp:"Environ egal"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/pl.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/pl.js new file mode 100644 index 0000000000..da08c9ce86 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/pl.js @@ -0,0 +1,12 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","pl",{euro:"Znak euro",lsquo:"Cudzysłów pojedynczy otwierający",rsquo:"Cudzysłów pojedynczy zamykający",ldquo:"Cudzysłów apostrofowy otwierający",rdquo:"Cudzysłów apostrofowy zamykający",ndash:"Półpauza",mdash:"Pauza",iexcl:"Odwrócony wykrzyknik",cent:"Znak centa",pound:"Znak funta",curren:"Znak waluty",yen:"Znak jena",brvbar:"Przerwana pionowa kreska",sect:"Paragraf",uml:"Diereza",copy:"Znak praw autorskich",ordf:"Wskaźnik rodzaju żeńskiego liczebnika porządkowego", +laquo:"Lewy cudzysłów ostrokątny",not:"Znak negacji",reg:"Zastrzeżony znak towarowy",macr:"Makron",deg:"Znak stopnia",sup2:"Druga potęga",sup3:"Trzecia potęga",acute:"Akcent ostry",micro:"Znak mikro",para:"Znak akapitu",middot:"Kropka środkowa",cedil:"Cedylla",sup1:"Pierwsza potęga",ordm:"Wskaźnik rodzaju męskiego liczebnika porządkowego",raquo:"Prawy cudzysłów ostrokątny",frac14:"Ułamek zwykły jedna czwarta",frac12:"Ułamek zwykły jedna druga",frac34:"Ułamek zwykły trzy czwarte",iquest:"Odwrócony znak zapytania", +Agrave:"Wielka litera A z akcentem ciężkim",Aacute:"Wielka litera A z akcentem ostrym",Acirc:"Wielka litera A z akcentem przeciągłym",Atilde:"Wielka litera A z tyldą",Auml:"Wielka litera A z dierezą",Aring:"Wielka litera A z kółkiem",AElig:"Wielka ligatura Æ",Ccedil:"Wielka litera C z cedyllą",Egrave:"Wielka litera E z akcentem ciężkim",Eacute:"Wielka litera E z akcentem ostrym",Ecirc:"Wielka litera E z akcentem przeciągłym",Euml:"Wielka litera E z dierezą",Igrave:"Wielka litera I z akcentem ciężkim", +Iacute:"Wielka litera I z akcentem ostrym",Icirc:"Wielka litera I z akcentem przeciągłym",Iuml:"Wielka litera I z dierezą",ETH:"Wielka litera Eth",Ntilde:"Wielka litera N z tyldą",Ograve:"Wielka litera O z akcentem ciężkim",Oacute:"Wielka litera O z akcentem ostrym",Ocirc:"Wielka litera O z akcentem przeciągłym",Otilde:"Wielka litera O z tyldą",Ouml:"Wielka litera O z dierezą",times:"Znak mnożenia wektorowego",Oslash:"Wielka litera O z przekreśleniem",Ugrave:"Wielka litera U z akcentem ciężkim",Uacute:"Wielka litera U z akcentem ostrym", +Ucirc:"Wielka litera U z akcentem przeciągłym",Uuml:"Wielka litera U z dierezą",Yacute:"Wielka litera Y z akcentem ostrym",THORN:"Wielka litera Thorn",szlig:"Mała litera ostre s (eszet)",agrave:"Mała litera a z akcentem ciężkim",aacute:"Mała litera a z akcentem ostrym",acirc:"Mała litera a z akcentem przeciągłym",atilde:"Mała litera a z tyldą",auml:"Mała litera a z dierezą",aring:"Mała litera a z kółkiem",aelig:"Mała ligatura æ",ccedil:"Mała litera c z cedyllą",egrave:"Mała litera e z akcentem ciężkim", +eacute:"Mała litera e z akcentem ostrym",ecirc:"Mała litera e z akcentem przeciągłym",euml:"Mała litera e z dierezą",igrave:"Mała litera i z akcentem ciężkim",iacute:"Mała litera i z akcentem ostrym",icirc:"Mała litera i z akcentem przeciągłym",iuml:"Mała litera i z dierezą",eth:"Mała litera eth",ntilde:"Mała litera n z tyldą",ograve:"Mała litera o z akcentem ciężkim",oacute:"Mała litera o z akcentem ostrym",ocirc:"Mała litera o z akcentem przeciągłym",otilde:"Mała litera o z tyldą",ouml:"Mała litera o z dierezą", +divide:"Anglosaski znak dzielenia",oslash:"Mała litera o z przekreśleniem",ugrave:"Mała litera u z akcentem ciężkim",uacute:"Mała litera u z akcentem ostrym",ucirc:"Mała litera u z akcentem przeciągłym",uuml:"Mała litera u z dierezą",yacute:"Mała litera y z akcentem ostrym",thorn:"Mała litera thorn",yuml:"Mała litera y z dierezą",OElig:"Wielka ligatura OE",oelig:"Mała ligatura oe",372:"Wielka litera W z akcentem przeciągłym",374:"Wielka litera Y z akcentem przeciągłym",373:"Mała litera w z akcentem przeciągłym", +375:"Mała litera y z akcentem przeciągłym",sbquo:"Pojedynczy apostrof dolny",8219:"Pojedynczy apostrof górny",bdquo:"Podwójny apostrof dolny",hellip:"Wielokropek",trade:"Znak towarowy",9658:"Czarny wskaźnik wskazujący w prawo",bull:"Punktor",rarr:"Strzałka w prawo",rArr:"Podwójna strzałka w prawo",hArr:"Podwójna strzałka obustronna",diams:"Czarny znak karo",asymp:"Znak prawie równe"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js new file mode 100644 index 0000000000..720a74506f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js @@ -0,0 +1,11 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","pt-br",{euro:"Euro",lsquo:"Aspas simples esquerda",rsquo:"Aspas simples direita",ldquo:"Aspas duplas esquerda",rdquo:"Aspas duplas direita",ndash:"Traço",mdash:"Travessão",iexcl:"Ponto de exclamação invertido",cent:"Cent",pound:"Cerquilha",curren:"Dinheiro",yen:"Yen",brvbar:"Bara interrompida",sect:"Símbolo de Parágrafo",uml:"Trema",copy:"Direito de Cópia",ordf:"Indicador ordinal feminino",laquo:"Aspas duplas angulares esquerda",not:"Negação",reg:"Marca Registrada", +macr:"Mácron",deg:"Grau",sup2:"2 Superscrito",sup3:"3 Superscrito",acute:"Acento agudo",micro:"Micro",para:"Pé de mosca",middot:"Ponto mediano",cedil:"Cedilha",sup1:"1 Superscrito",ordm:"Indicador ordinal masculino",raquo:"Aspas duplas angulares direita",frac14:"Um quarto",frac12:"Um meio",frac34:"Três quartos",iquest:"Interrogação invertida",Agrave:"A maiúsculo com acento grave",Aacute:"A maiúsculo com acento agudo",Acirc:"A maiúsculo com acento circunflexo",Atilde:"A maiúsculo com til",Auml:"A maiúsculo com trema", +Aring:"A maiúsculo com anel acima",AElig:"Æ maiúsculo",Ccedil:"Ç maiúlculo",Egrave:"E maiúsculo com acento grave",Eacute:"E maiúsculo com acento agudo",Ecirc:"E maiúsculo com acento circumflexo",Euml:"E maiúsculo com trema",Igrave:"I maiúsculo com acento grave",Iacute:"I maiúsculo com acento agudo",Icirc:"I maiúsculo com acento circunflexo",Iuml:"I maiúsculo com crase",ETH:"Eth maiúsculo",Ntilde:"N maiúsculo com til",Ograve:"O maiúsculo com acento grave",Oacute:"O maiúsculo com acento agudo",Ocirc:"O maiúsculo com acento circunflexo", +Otilde:"O maiúsculo com til",Ouml:"O maiúsculo com trema",times:"Multiplicação",Oslash:"Diâmetro",Ugrave:"U maiúsculo com acento grave",Uacute:"U maiúsculo com acento agudo",Ucirc:"U maiúsculo com acento circunflexo",Uuml:"U maiúsculo com trema",Yacute:"Y maiúsculo com acento agudo",THORN:"Thorn maiúsculo",szlig:"Eszett minúsculo",agrave:"a minúsculo com acento grave",aacute:"a minúsculo com acento agudo",acirc:"a minúsculo com acento circunflexo",atilde:"a minúsculo com til",auml:"a minúsculo com trema", +aring:"a minúsculo com anel acima",aelig:"æ minúsculo",ccedil:"ç minúsculo",egrave:"e minúsculo com acento grave",eacute:"e minúsculo com acento agudo",ecirc:"e minúsculo com acento circunflexo",euml:"e minúsculo com trema",igrave:"i minúsculo com acento grave",iacute:"i minúsculo com acento agudo",icirc:"i minúsculo com acento circunflexo",iuml:"i minúsculo com trema",eth:"eth minúsculo",ntilde:"n minúsculo com til",ograve:"o minúsculo com acento grave",oacute:"o minúsculo com acento agudo",ocirc:"o minúsculo com acento circunflexo", +otilde:"o minúsculo com til",ouml:"o minúsculo com trema",divide:"Divisão",oslash:"o minúsculo com cortado ou diâmetro",ugrave:"u minúsculo com acento grave",uacute:"u minúsculo com acento agudo",ucirc:"u minúsculo com acento circunflexo",uuml:"u minúsculo com trema",yacute:"y minúsculo com acento agudo",thorn:"thorn minúsculo",yuml:"y minúsculo com trema",OElig:"Ligação tipográfica OE maiúscula",oelig:"Ligação tipográfica oe minúscula",372:"W maiúsculo com acento circunflexo",374:"Y maiúsculo com acento circunflexo", +373:"w minúsculo com acento circunflexo",375:"y minúsculo com acento circunflexo",sbquo:"Aspas simples inferior direita",8219:"Aspas simples superior esquerda",bdquo:"Aspas duplas inferior direita",hellip:"Reticências",trade:"Trade mark",9658:"Ponta de seta preta para direita",bull:"Ponto lista",rarr:"Seta para direita",rArr:"Seta dupla para direita",hArr:"Seta dupla direita e esquerda",diams:"Ouros",asymp:"Aproximadamente"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/pt.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/pt.js new file mode 100644 index 0000000000..0e8dd46390 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/pt.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","pt",{euro:"Símbolo de Euro",lsquo:"Aspa esquerda simples",rsquo:"Aspa direita simples",ldquo:"Aspa esquerda dupla",rdquo:"Aspa direita dupla",ndash:"Travessão simples",mdash:"Travessão longo",iexcl:"Ponto de exclamação invertido",cent:"Símbolo de cêntimo",pound:"Símbolo de Libra",curren:"Símbolo de Moeda",yen:"Símbolo de Iene",brvbar:"Barra quebrada",sect:"Símbolo de secção",uml:"Trema",copy:"Símbolo de direitos de autor",ordf:"Indicador ordinal feminino",laquo:"Aspa esquerda ângulo duplo", +not:"Não símbolo",reg:"Símbolo de registado",macr:"Mácron",deg:"Símbolo de graus",sup2:"Expoente 2",sup3:"Expoente 3",acute:"Acento agudo",micro:"Símbolo de micro",para:"Símbolo de parágrafo",middot:"Ponto do meio",cedil:"Cedilha",sup1:"Expoente 1",ordm:"Indicador ordinal masculino",raquo:"Aspas ângulo duplo para a direita",frac14:"Fração vulgar 1/4",frac12:"Fração vulgar 1/2",frac34:"Fração vulgar 3/4",iquest:"Ponto de interrogação invertido",Agrave:"Letra maiúscula latina A com acento grave",Aacute:"Letra maiúscula latina A com acento agudo", +Acirc:"Letra maiúscula latina A com circunflexo",Atilde:"Letra maiúscula latina A com til",Auml:"Letra maiúscula latina A com trema",Aring:"Letra maiúscula latina A com sinal diacrítico",AElig:"Letra maiúscula latina Æ",Ccedil:"Letra maiúscula latina C com cedilha",Egrave:"Letra maiúscula latina E com acento grave",Eacute:"Letra maiúscula latina E com acento agudo",Ecirc:"Letra maiúscula latina E com circunflexo",Euml:"Letra maiúscula latina E com trema",Igrave:"Letra maiúscula latina I com acento grave", +Iacute:"Letra maiúscula latina I com acento agudo",Icirc:"Letra maiúscula latina I com cincunflexo",Iuml:"Letra maiúscula latina I com trema",ETH:"Letra maiúscula latina Eth (Ðð)",Ntilde:"Letra maiúscula latina N com til",Ograve:"Letra maiúscula latina O com acento grave",Oacute:"Letra maiúscula latina O com acento agudo",Ocirc:"Letra maiúscula latina I com circunflexo",Otilde:"Letra maiúscula latina O com til",Ouml:"Letra maiúscula latina O com trema",times:"Símbolo de multiplicação",Oslash:"Letra maiúscula O com barra", +Ugrave:"Letra maiúscula latina U com acento grave",Uacute:"Letra maiúscula latina U com acento agudo",Ucirc:"Letra maiúscula latina U com circunflexo",Uuml:"Letra maiúscula latina E com trema",Yacute:"Letra maiúscula latina Y com acento agudo",THORN:"Letra maiúscula latina Rúnico",szlig:"Letra minúscula latina s forte",agrave:"Letra minúscula latina a com acento grave",aacute:"Letra minúscula latina a com acento agudo",acirc:"Letra minúscula latina a com circunflexo",atilde:"Letra minúscula latina a com til", +auml:"Letra minúscula latina a com trema",aring:"Letra minúscula latina a com sinal diacrítico",aelig:"Letra minúscula latina æ",ccedil:"Letra minúscula latina c com cedilha",egrave:"Letra minúscula latina e com acento grave",eacute:"Letra minúscula latina e com acento agudo",ecirc:"Letra minúscula latina e com circunflexo",euml:"Letra minúscula latina e com trema",igrave:"Letra minúscula latina i com acento grave",iacute:"Letra minúscula latina i com acento agudo",icirc:"Letra minúscula latina i com circunflexo", +iuml:"Letra pequena latina i com trema",eth:"Letra minúscula latina eth",ntilde:"Letra minúscula latina n com til",ograve:"Letra minúscula latina o com acento grave",oacute:"Letra minúscula latina o com acento agudo",ocirc:"Letra minúscula latina o com circunflexo",otilde:"Letra minúscula latina o com til",ouml:"Letra minúscula latina o com trema",divide:"Símbolo de divisão",oslash:"Letra minúscula latina o com barra",ugrave:"Letra minúscula latina u com acento grave",uacute:"Letra minúscula latina u com acento agudo", +ucirc:"Letra minúscula latina u com circunflexo",uuml:"Letra minúscula latina u com trema",yacute:"Letra minúscula latina y com acento agudo",thorn:"Letra minúscula latina Rúnico",yuml:"Letra minúscula latina y com trema",OElig:"Ligadura maiúscula latina OE",oelig:"Ligadura minúscula latina oe",372:"Letra maiúscula latina W com circunflexo",374:"Letra maiúscula latina Y com circunflexo",373:"Letra minúscula latina w com circunflexo",375:"Letra minúscula latina y com circunflexo",sbquo:"Aspa Simples inferior-9", +8219:"Aspa simples superior invertida-9",bdquo:"Aspa duplas inferior-9",hellip:"Elipse horizontal ",trade:"Símbolo de marca registada",9658:"Ponteiro preto direito",bull:"Marca",rarr:"Seta para a direita",rArr:"Seta dupla para a direita",hArr:"Seta dupla direita esquerda",diams:"Naipe diamante preto",asymp:"Quase igual a "}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ro.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ro.js new file mode 100644 index 0000000000..be6c5fee98 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ro.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","ro",{euro:"Simbol EURO €",lsquo:"Ghilimea simplă stânga",rsquo:"Ghilimea simplă dreapta",ldquo:"Ghilimea dublă stânga",rdquo:"Ghilimea dublă dreapta",ndash:"liniuță despărțire cu spații",mdash:"liniuță despărțire cuvinte fără spații",iexcl:"semnul exclamației inversat",cent:"simbol cent",pound:"simbol lira sterlină",curren:"simbol monedă",yen:"simbol yen",brvbar:"bara verticală întreruptă",sect:"simbol paragraf",uml:"tréma",copy:"simbol drept de autor",ordf:"Indicatorul ordinal feminin a superscript", +laquo:"Left-pointing double angle quotation mark",not:"Not sign",reg:"Registered sign",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Sedila",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Semnul întrebării inversat", +Agrave:"Latin capital letter A with grave accent",Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex", +Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde", +Ouml:"Latin capital letter O with diaeresis",times:"Simbol înmulțire",Oslash:"Latin capital letter O with stroke",Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent", +acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent", +icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Simbol împărțire",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent", +ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark", +bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Aproximativ egal cu"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ru.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ru.js new file mode 100644 index 0000000000..39b8023291 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ru.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","ru",{euro:"Знак евро",lsquo:"Левая одинарная кавычка",rsquo:"Правая одинарная кавычка",ldquo:"Левая двойная кавычка",rdquo:"Левая двойная кавычка",ndash:"Среднее тире",mdash:"Длинное тире",iexcl:"перевёрнутый восклицательный знак",cent:"Цент",pound:"Фунт",curren:"Знак валюты",yen:"Йена",brvbar:"Вертикальная черта с разрывом",sect:"Знак параграфа",uml:"Умлаут",copy:"Знак охраны авторского права",ordf:"Указатель окончания женского рода ...ая",laquo:"Левая кавычка-«ёлочка»", +not:"Отрицание",reg:"Знак охраны смежных прав\\t",macr:"Макрон",deg:"Градус",sup2:"Надстрочное два",sup3:"Надстрочное три",acute:"Акут",micro:"Микро",para:"Абзац",middot:"Интерпункт",cedil:"Седиль",sup1:"Надстрочная единица",ordm:"Порядковое числительное",raquo:"Правая кавычка-«ёлочка»",frac14:"Одна четвертая",frac12:"Одна вторая",frac34:"Три четвёртых",iquest:"Перевёрнутый вопросительный знак",Agrave:"Латинская заглавная буква А с апострофом",Aacute:"Латинская заглавная буква A с ударением",Acirc:"Латинская заглавная буква А с циркумфлексом", +Atilde:"Латинская заглавная буква А с тильдой",Auml:"Латинская заглавная буква А с тремой",Aring:"Латинская заглавная буква А с кольцом над ней",AElig:"Латинская большая буква Æ",Ccedil:"Латинская заглавная буква C с седилью",Egrave:"Латинская заглавная буква Е с апострофом",Eacute:"Латинская заглавная буква Е с ударением",Ecirc:"Латинская заглавная буква Е с циркумфлексом",Euml:"Латинская заглавная буква Е с тремой",Igrave:"Латинская заглавная буква I с апострофом",Iacute:"Латинская заглавная буква I с ударением", +Icirc:"Латинская заглавная буква I с циркумфлексом",Iuml:"Латинская заглавная буква I с тремой",ETH:"Латинская большая буква Eth",Ntilde:"Латинская заглавная буква N с тильдой",Ograve:"Латинская заглавная буква O с апострофом",Oacute:"Латинская заглавная буква O с ударением",Ocirc:"Латинская заглавная буква O с циркумфлексом",Otilde:"Латинская заглавная буква O с тильдой",Ouml:"Латинская заглавная буква O с тремой",times:"Знак умножения",Oslash:"Латинская большая перечеркнутая O",Ugrave:"Латинская заглавная буква U с апострофом", +Uacute:"Латинская заглавная буква U с ударением",Ucirc:"Латинская заглавная буква U с циркумфлексом",Uuml:"Латинская заглавная буква U с тремой",Yacute:"Латинская заглавная буква Y с ударением",THORN:"Латинская заглавная буква Thorn",szlig:"Знак диеза",agrave:"Латинская маленькая буква a с апострофом",aacute:"Латинская маленькая буква a с ударением",acirc:"Латинская маленькая буква a с циркумфлексом",atilde:"Латинская маленькая буква a с тильдой",auml:"Латинская маленькая буква a с тремой",aring:"Латинская маленькая буква a с кольцом", +aelig:"Латинская маленькая буква æ",ccedil:"Латинская маленькая буква с с седилью",egrave:"Латинская маленькая буква е с апострофом",eacute:"Латинская маленькая буква е с ударением",ecirc:"Латинская маленькая буква е с циркумфлексом",euml:"Латинская маленькая буква е с тремой",igrave:"Латинская маленькая буква i с апострофом",iacute:"Латинская маленькая буква i с ударением",icirc:"Латинская маленькая буква i с циркумфлексом",iuml:"Латинская маленькая буква i с тремой",eth:"Латинская маленькая буква eth", +ntilde:"Латинская маленькая буква n с тильдой",ograve:"Латинская маленькая буква o с апострофом",oacute:"Латинская маленькая буква o с ударением",ocirc:"Латинская маленькая буква o с циркумфлексом",otilde:"Латинская маленькая буква o с тильдой",ouml:"Латинская маленькая буква o с тремой",divide:"Знак деления",oslash:"Латинская строчная перечеркнутая o",ugrave:"Латинская маленькая буква u с апострофом",uacute:"Латинская маленькая буква u с ударением",ucirc:"Латинская маленькая буква u с циркумфлексом", +uuml:"Латинская маленькая буква u с тремой",yacute:"Латинская маленькая буква y с ударением",thorn:"Латинская маленькая буква thorn",yuml:"Латинская маленькая буква y с тремой",OElig:"Латинская прописная лигатура OE",oelig:"Латинская строчная лигатура oe",372:"Латинская заглавная буква W с циркумфлексом",374:"Латинская заглавная буква Y с циркумфлексом",373:"Латинская маленькая буква w с циркумфлексом",375:"Латинская маленькая буква y с циркумфлексом",sbquo:"Нижняя одинарная кавычка",8219:"Правая одинарная кавычка", +bdquo:"Левая двойная кавычка",hellip:"Горизонтальное многоточие",trade:"Товарный знак",9658:"Черный указатель вправо",bull:"Маркер списка",rarr:"Стрелка вправо",rArr:"Двойная стрелка вправо",hArr:"Двойная стрелка влево-вправо",diams:"Черный ромб",asymp:"Примерно равно"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/si.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/si.js new file mode 100644 index 0000000000..9f158d13e0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/si.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","si",{euro:"යුරෝ සලකුණ",lsquo:"වමේ තනි උපුටා දක්වීම ",rsquo:"දකුණේ තනි උපුටා දක්වීම ",ldquo:"වමේ දිත්ව උපුටා දක්වීම ",rdquo:"දකුණේ දිත්ව උපුටා දක්වීම ",ndash:"En dash",mdash:"Em dash",iexcl:"යටිකුරු හර්ෂදී ",cent:"Cent sign",pound:"Pound sign",curren:"මුල්‍යමය ",yen:"යෙන් ",brvbar:"Broken bar",sect:"තෙරේම් ",uml:"Diaeresis",copy:"පිටපත් අයිතිය ",ordf:"දර්ශකය",laquo:"Left-pointing double angle quotation mark",not:"සලකුණක් නොවේ",reg:"සලකුණක් ලියාපදිංචි කිරීම", +macr:"මුද්‍රිත ",deg:"සලකුණේ ",sup2:"උඩු ලකුණු දෙක",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",Aacute:"Latin capital letter A with acute accent", +Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",Iacute:"Latin capital letter I with acute accent", +Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",Ugrave:"Latin capital letter U with grave accent", +Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",aring:"Latin small letter a with ring above", +aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",ntilde:"Latin small letter n with tilde", +ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",yacute:"Latin small letter y with acute accent", +thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",trade:"Trade mark sign",9658:"Black right-pointing pointer", +bull:"Bullet",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/sk.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/sk.js new file mode 100644 index 0000000000..e23706a169 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/sk.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","sk",{euro:"Znak eura",lsquo:"Ľavá jednoduchá úvodzovka",rsquo:"Pravá jednoduchá úvodzovka",ldquo:"Pravá dvojitá úvodzovka",rdquo:"Pravá dvojitá úvodzovka",ndash:"En pomlčka",mdash:"Em pomlčka",iexcl:"Obrátený výkričník",cent:"Znak centu",pound:"Znak libry",curren:"Znak meny",yen:"Znak jenu",brvbar:"Prerušená zvislá čiara",sect:"Znak odseku",uml:"Prehláska",copy:"Znak copyrightu",ordf:"Ženský indikátor rodu",laquo:"Znak dvojitých lomených úvodzoviek vľavo",not:"Logistický zápor", +reg:"Znak registrácie",macr:"Pomlčka nad",deg:"Znak stupňa",sup2:"Dvojka ako horný index",sup3:"Trojka ako horný index",acute:"Dĺžeň",micro:"Znak mikro",para:"Znak odstavca",middot:"Bodka uprostred",cedil:"Chvost vľavo",sup1:"Jednotka ako horný index",ordm:"Mužský indikátor rodu",raquo:"Znak dvojitých lomených úvodzoviek vpravo",frac14:"Obyčajný zlomok jedna štvrtina",frac12:"Obyčajný zlomok jedna polovica",frac34:"Obyčajný zlomok tri štvrtiny",iquest:"Otočený otáznik",Agrave:"Veľké písmeno latinky A s accentom", +Aacute:"Veľké písmeno latinky A s dĺžňom",Acirc:"Veľké písmeno latinky A s mäkčeňom",Atilde:"Veľké písmeno latinky A s tildou",Auml:"Veľké písmeno latinky A s dvoma bodkami",Aring:"Veľké písmeno latinky A s krúžkom nad",AElig:"Veľké písmeno latinky Æ",Ccedil:"Veľké písmeno latinky C s chvostom vľavo",Egrave:"Veľké písmeno latinky E s accentom",Eacute:"Veľké písmeno latinky E s dĺžňom",Ecirc:"Veľké písmeno latinky E s mäkčeňom",Euml:"Veľké písmeno latinky E s dvoma bodkami",Igrave:"Veľké písmeno latinky I s accentom", +Iacute:"Veľké písmeno latinky I s dĺžňom",Icirc:"Veľké písmeno latinky I s mäkčeňom",Iuml:"Veľké písmeno latinky I s dvoma bodkami",ETH:"Veľké písmeno latinky Eth",Ntilde:"Veľké písmeno latinky N s tildou",Ograve:"Veľké písmeno latinky O s accentom",Oacute:"Veľké písmeno latinky O s dĺžňom",Ocirc:"Veľké písmeno latinky O s mäkčeňom",Otilde:"Veľké písmeno latinky O s tildou",Ouml:"Veľké písmeno latinky O s dvoma bodkami",times:"Znak násobenia",Oslash:"Veľké písmeno latinky O preškrtnuté",Ugrave:"Veľké písmeno latinky U s accentom", +Uacute:"Veľké písmeno latinky U s dĺžňom",Ucirc:"Veľké písmeno latinky U s mäkčeňom",Uuml:"Veľké písmeno latinky U s dvoma bodkami",Yacute:"Veľké písmeno latinky Y s dĺžňom",THORN:"Veľké písmeno latinky Thorn",szlig:"Malé písmeno latinky ostré s",agrave:"Malé písmeno latinky a s accentom",aacute:"Malé písmeno latinky a s dĺžňom",acirc:"Malé písmeno latinky a s mäkčeňom",atilde:"Malé písmeno latinky a s tildou",auml:"Malé písmeno latinky a s dvoma bodkami",aring:"Malé písmeno latinky a s krúžkom nad", +aelig:"Malé písmeno latinky æ",ccedil:"Malé písmeno latinky c s chvostom vľavo",egrave:"Malé písmeno latinky e s accentom",eacute:"Malé písmeno latinky e s dĺžňom",ecirc:"Malé písmeno latinky e s mäkčeňom",euml:"Malé písmeno latinky e s dvoma bodkami",igrave:"Malé písmeno latinky i s accentom",iacute:"Malé písmeno latinky i s dĺžňom",icirc:"Malé písmeno latinky i s mäkčeňom",iuml:"Malé písmeno latinky i s dvoma bodkami",eth:"Malé písmeno latinky eth",ntilde:"Malé písmeno latinky n s tildou",ograve:"Malé písmeno latinky o s accentom", +oacute:"Malé písmeno latinky o s dĺžňom",ocirc:"Malé písmeno latinky o s mäkčeňom",otilde:"Malé písmeno latinky o s tildou",ouml:"Malé písmeno latinky o s dvoma bodkami",divide:"Znak delenia",oslash:"Malé písmeno latinky o preškrtnuté",ugrave:"Malé písmeno latinky u s accentom",uacute:"Malé písmeno latinky u s dĺžňom",ucirc:"Malé písmeno latinky u s mäkčeňom",uuml:"Malé písmeno latinky u s dvoma bodkami",yacute:"Malé písmeno latinky y s dĺžňom",thorn:"Malé písmeno latinky thorn",yuml:"Malé písmeno latinky y s dvoma bodkami", +OElig:"Veľká ligatúra latinky OE",oelig:"Malá ligatúra latinky OE",372:"Veľké písmeno latinky W s mäkčeňom",374:"Veľké písmeno latinky Y s mäkčeňom",373:"Malé písmeno latinky w s mäkčeňom",375:"Malé písmeno latinky y s mäkčeňom",sbquo:"Dolná jednoduchá 9-úvodzovka",8219:"Horná jednoduchá otočená 9-úvodzovka",bdquo:"Dolná dvojitá 9-úvodzovka",hellip:"Trojbodkový úvod",trade:"Znak ibchodnej značky",9658:"Čierny ukazovateľ smerujúci vpravo",bull:"Kruh",rarr:"Šípka vpravo",rArr:"Dvojitá šipka vpravo", +hArr:"Dvojitá šipka vľavo a vpravo",diams:"Čierne piky",asymp:"Skoro sa rovná"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/sl.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/sl.js new file mode 100644 index 0000000000..7beed925ea --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/sl.js @@ -0,0 +1,12 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","sl",{euro:"Znak za evro",lsquo:"Levi enojni narekovaj",rsquo:"Desni enojni narekovaj",ldquo:"Levi dvojni narekovaj",rdquo:"Desni dvojni narekovaj",ndash:"Pomišljaj",mdash:"Dolgi pomišljaj",iexcl:"Obrnjen klicaj",cent:"Znak za cent",pound:"Znak za funt",curren:"Znak valute",yen:"Znak za jen",brvbar:"Zlomljena črta",sect:"Znak za člen",uml:"Diereza",copy:"Znak avtorskih pravic",ordf:"Ženski zaporedni kazalnik",laquo:"Levi dvojni lomljeni narekovaj",not:"Znak za ne", +reg:"Registrirani znak",macr:"Nadčrtano",deg:"Znak za stopinje",sup2:"Nadpisano dva",sup3:"Nadpisano tri",acute:"Ostrivec",micro:"Znak za mikro",para:"Znak za odstavek",middot:"Usredinjena pika",cedil:"Cedilla",sup1:"Nadpisano ena",ordm:"Moški zaporedni kazalnik",raquo:"Desno obrnjen dvojni kotni narekovaj",frac14:"Ena četrtina",frac12:"Ena polovica",frac34:"Tri četrtine",iquest:"Obrnjen vprašaj",Agrave:"Velika latinska črka A s krativcem",Aacute:"Velika latinska črka A z ostrivcem",Acirc:"Velika latinska črka A s strešico", +Atilde:"Velika latinska črka A z tildo",Auml:"Velika latinska črka A z diaeresis-om",Aring:"Velika latinska črka A z obročem",AElig:"Velika latinska črka Æ",Ccedil:"Velika latinska črka C s cedillo",Egrave:"Velika latinska črka E s krativcem",Eacute:"Velika latinska črka E z ostrivcem",Ecirc:"Velika latinska črka E s strešico",Euml:"Velika latinska črka E z diaeresis-om",Igrave:"Velika latinska črka I s krativcem",Iacute:"Velika latinska črka I z ostrivcem",Icirc:"Velika latinska črka I s strešico", +Iuml:"Velika latinska črka I z diaeresis-om",ETH:"Velika latinska črka Eth",Ntilde:"Velika latinska črka N s tildo",Ograve:"Velika latinska črka O s krativcem",Oacute:"Velika latinska črka O z ostrivcem",Ocirc:"Velika latinska črka O s strešico",Otilde:"Velika latinska črka O s tildo",Ouml:"Velika latinska črka O z diaeresis-om",times:"Znak za množenje",Oslash:"Velika prečrtana latinska črka O",Ugrave:"Velika latinska črka U s krativcem",Uacute:"Velika latinska črka U z ostrivcem",Ucirc:"Velika latinska črka U s strešico", +Uuml:"Velika latinska črka U z diaeresis-om",Yacute:"Velika latinska črka Y z ostrivcem",THORN:"Velika latinska črka Thorn",szlig:"Mala ostra latinska črka s",agrave:"Mala latinska črka a s krativcem",aacute:"Mala latinska črka a z ostrivcem",acirc:"Mala latinska črka a s strešico",atilde:"Mala latinska črka a s tildo",auml:"Mala latinska črka a z diaeresis-om",aring:"Mala latinska črka a z obročem",aelig:"Mala latinska črka æ",ccedil:"Mala latinska črka c s cedillo",egrave:"Mala latinska črka e s krativcem", +eacute:"Mala latinska črka e z ostrivcem",ecirc:"Mala latinska črka e s strešico",euml:"Mala latinska črka e z diaeresis-om",igrave:"Mala latinska črka i s krativcem",iacute:"Mala latinska črka i z ostrivcem",icirc:"Mala latinska črka i s strešico",iuml:"Mala latinska črka i z diaeresis-om",eth:"Mala latinska črka eth",ntilde:"Mala latinska črka n s tildo",ograve:"Mala latinska črka o s krativcem",oacute:"Mala latinska črka o z ostrivcem",ocirc:"Mala latinska črka o s strešico",otilde:"Mala latinska črka o s tildo", +ouml:"Mala latinska črka o z diaeresis-om",divide:"Znak za deljenje",oslash:"Mala prečrtana latinska črka o",ugrave:"Mala latinska črka u s krativcem",uacute:"Mala latinska črka u z ostrivcem",ucirc:"Mala latinska črka u s strešico",uuml:"Mala latinska črka u z diaeresis-om",yacute:"Mala latinska črka y z ostrivcem",thorn:"Mala latinska črka thorn",yuml:"Mala latinska črka y z diaeresis-om",OElig:"Velika latinska ligatura OE",oelig:"Mala latinska ligatura oe",372:"Velika latinska črka W s strešico", +374:"Velika latinska črka Y s strešico",373:"Mala latinska črka w s strešico",375:"Mala latinska črka y s strešico",sbquo:"Enojni nizki-9 narekovaj",8219:"Enojni visoki-obrnjen-9 narekovaj",bdquo:"Dvojni nizki-9 narekovaj",hellip:"Horizontalni izpust",trade:"Znak blagovne znamke",9658:"Črni desno-usmerjen kazalec",bull:"Krogla",rarr:"Desno-usmerjena puščica",rArr:"Desno-usmerjena dvojna puščica",hArr:"Leva in desna dvojna puščica",diams:"Črna kara",asymp:"Skoraj enako"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/sq.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/sq.js new file mode 100644 index 0000000000..4cfaf75a09 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/sq.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","sq",{euro:"Shenja e Euros",lsquo:"Thonjëza majtas me një vi",rsquo:"Thonjëza djathtas me një vi",ldquo:"Thonjëza majtas",rdquo:"Thonjëza djathtas",ndash:"En viza lidhëse",mdash:"Em viza lidhëse",iexcl:"Pikëçuditëse e përmbysur",cent:"Shenja e Centit",pound:"Shejna e Funtit",curren:"Shenja e valutës",yen:"Shenja e Jenit",brvbar:"Viza e këputur",sect:"Shenja e pjesës",uml:"Diaeresis",copy:"Shenja e të drejtave të kopjimit",ordf:"Tregues rendor femror",laquo:"Thonjëz me dy kënde e kthyer majtas", +not:"Nuk ka shenjë",reg:"Shenja e të regjistruarit",macr:"Macron",deg:"Shenja e shkallës",sup2:"Super-skripta dy",sup3:"Super-skripta tre",acute:"Theks i mprehtë",micro:"Shjenja e Mikros",para:"Shenja Pilkrou",middot:"Pika e Mesme",cedil:"Hark nën shkronja",sup1:"Super-skripta një",ordm:"Tregues rendor mashkullor",raquo:"Thonjëz me dy kënde e kthyer djathtas",frac14:"Thyesa një të katrat",frac12:"Thyesa një të dytat",frac34:"Thyesa tre të katrat",iquest:"Pikëpyetje e përmbysur",Agrave:"Shkronja e madhe latine A me theks të rëndë", +Aacute:"Shkronja e madhe latine A me theks akute",Acirc:"Shkronja e madhe latine A me theks lakor",Atilde:"Shkronja e madhe latine A me tildë",Auml:"Shkronja e madhe latine A me dy pika",Aring:"Shkronja e madhe latine A me unazë mbi",AElig:"Shkronja e madhe latine Æ",Ccedil:"Shkronja e madhe latine C me hark poshtë",Egrave:"Shkronja e madhe latine E me theks të rëndë",Eacute:"Shkronja e madhe latine E me theks akute",Ecirc:"Shkronja e madhe latine E me theks lakor",Euml:"Shkronja e madhe latine E me dy pika", +Igrave:"Shkronja e madhe latine I me theks të rëndë",Iacute:"Shkronja e madhe latine I me theks akute",Icirc:"Shkronja e madhe latine I me theks lakor",Iuml:"Shkronja e madhe latine I me dy pika",ETH:"Shkronja e madhe latine Eth",Ntilde:"Shkronja e madhe latine N me tildë",Ograve:"Shkronja e madhe latine O me theks të rëndë",Oacute:"Shkronja e madhe latine O me theks akute",Ocirc:"Shkronja e madhe latine O me theks lakor",Otilde:"Shkronja e madhe latine O me tildë",Ouml:"Shkronja e madhe latine O me dy pika", +times:"Shenja e shumëzimit",Oslash:"Shkronja e madhe latine O me vizë në mes",Ugrave:"Shkronja e madhe latine U me theks të rëndë",Uacute:"Shkronja e madhe latine U me theks akute",Ucirc:"Shkronja e madhe latine U me theks lakor",Uuml:"Shkronja e madhe latine U me dy pika",Yacute:"Shkronja e madhe latine Y me theks akute",THORN:"Shkronja e madhe latine Thorn",szlig:"Shkronja e vogë latine s e mprehtë",agrave:"Shkronja e vogë latine a me theks të rëndë",aacute:"Shkronja e vogë latine a me theks të mprehtë", +acirc:"Shkronja e vogël latine a me theks lakor",atilde:"Shkronja e vogël latine a me tildë",auml:"Shkronja e vogël latine a me dy pika",aring:"Shkronja e vogë latine a me unazë mbi",aelig:"Shkronja e vogë latine æ",ccedil:"Shkronja e vogël latine c me hark poshtë",egrave:"Shkronja e vogë latine e me theks të rëndë",eacute:"Shkronja e vogë latine e me theks të mprehtë",ecirc:"Shkronja e vogël latine e me theks lakor",euml:"Shkronja e vogël latine e me dy pika",igrave:"Shkronja e vogë latine i me theks të rëndë", +iacute:"Shkronja e vogë latine i me theks të mprehtë",icirc:"Shkronja e vogël latine i me theks lakor",iuml:"Shkronja e vogël latine i me dy pika",eth:"Shkronja e vogë latine eth",ntilde:"Shkronja e vogël latine n me tildë",ograve:"Shkronja e vogë latine o me theks të rëndë",oacute:"Shkronja e vogë latine o me theks të mprehtë",ocirc:"Shkronja e vogël latine o me theks lakor",otilde:"Shkronja e vogël latine o me tildë",ouml:"Shkronja e vogël latine o me dy pika",divide:"Shenja ndarëse",oslash:"Shkronja e vogël latine o me vizë në mes", +ugrave:"Shkronja e vogë latine u me theks të rëndë",uacute:"Shkronja e vogë latine u me theks të mprehtë",ucirc:"Shkronja e vogël latine u me theks lakor",uuml:"Shkronja e vogël latine u me dy pika",yacute:"Shkronja e vogë latine y me theks të mprehtë",thorn:"Shkronja e vogël latine thorn",yuml:"Shkronja e vogël latine y me dy pika",OElig:"Shkronja e madhe e bashkuar latine OE",oelig:"Shkronja e vogël e bashkuar latine oe",372:"Shkronja e madhe latine W me theks lakor",374:"Shkronja e madhe latine Y me theks lakor", +373:"Shkronja e vogël latine w me theks lakor",375:"Shkronja e vogël latine y me theks lakor",sbquo:"Thonjëz-9 e vetme poshtë",8219:"Thonjëz-9 lartë e vetme e kthyer në të kundërtën",bdquo:"Thonjëza-9 poshtë",hellip:"Tri pika horizontale",trade:"Shenja e Simbolit Tregtarë",9658:"Shenjë tregues kthyer djathtas-prapa",bull:"Pulla",rarr:"Shigjeta djathtas",rArr:"Shenja të dyfishta djathtas",hArr:"Shigjeta e dyfishë majtas-djathtas",diams:"Karo me ngjyrë të zezë",asymp:"Gati e barabar me"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/sr-latn.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/sr-latn.js new file mode 100644 index 0000000000..c784d1a1aa --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/sr-latn.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","sr-latn",{euro:"Znak eura",lsquo:"Levi simpli znak navoda",rsquo:"Desni simpli znak navoda",ldquo:"Levi dupli znak navoda",rdquo:"Desni dupli znak navoda",ndash:"Kratka crtica",mdash:"Dugačka crtica",iexcl:"Obrnuti uzvičnik",cent:"Znak za cent",pound:"Znak za funtе",curren:"Znak za valutu",yen:"Znak za jenа",brvbar:"Traka sa prekidom",sect:"Znak paragrafa",uml:"Umlaut",copy:"Znak za autorsko pravo",ordf:"Ženski redni indikator",laquo:"Dupla strelica levo",not:"Bez znaka", +reg:"Registrovani znak",macr:"Znak dužine",deg:"Znak za stepen",sup2:"Znak za kvadrat",sup3:"Znak za kub",acute:"Oštar akcenat",micro:"Znak mikro",para:"Znak pasusa",middot:"Srednja tačka",cedil:"Cedila",sup1:"Znak na prvom",ordm:"Muški redni indikator",raquo:"Dupla strelica desno",frac14:"Znak za četvrtinu",frac12:"Znak za polovinu",frac34:"Znak za trećinu",iquest:"Obrnuti upitnik",Agrave:"Veliko latinično slovo A sa obrnutom kukicom.",Aacute:"Veliko latinično slovo A sa kukicom.",Acirc:"Veliko latinično slovo A sa savijenom kukicom.", +Atilde:"Veliko latinično slovo A sa znakom talasa.",Auml:"Veliko latinično slovo A sa dvotačkom",Aring:"Veliko latinično slovo A sa prstenom iznad.",AElig:"Veliko latinično slovo Æ",Ccedil:"Veliko latinično slovo C sa cedilom",Egrave:"Veliko latinično slovo E sa obrnutom kukicom",Eacute:"Veliko latinično slovo E sa kukicom.",Ecirc:"Veliko latinično slovo E sa savijenom kukicom.",Euml:"Veliko latinično slovo E sa dvotačkom",Igrave:"Veliko latinično slovo I sa obrnutom kukicom",Iacute:"Veliko latinično slovo I sa kukicom.", +Icirc:"Veliko latinično slovo I sa savijenom kukicom.",Iuml:"Veliko latinično slovo I sa dvotačkom",ETH:"Veliko latinično slovo Eth",Ntilde:"Veliko latinično slovo N sa znakom talasa.",Ograve:"Veliko latinično slovo O sa obrnutom kukicom",Oacute:"Veliko latinično slovo O sa kukicom.",Ocirc:"Veliko latinično slovo O sa savijenom kukicom.",Otilde:"Veliko latinično slovo O sa znakom talasa.",Ouml:"Veliko latinično slovo O sa dvotačkom",times:"Znak množenja",Oslash:"Latinično slovo O precrtano",Ugrave:"Veliko latinično slovo U sa obrnutom kukicom", +Uacute:"Veliko latinično slovo U sa kukicom",Ucirc:"Veliko latinično slovo U sa savijenom kukicom.",Uuml:"Veliko latinično slovo U sa dvotačkom",Yacute:"Veliko latinično slovo Y sa kukicom",THORN:"Veliko latinično slovo Thotn",szlig:"Malo latinično slovo s",agrave:"Malo latinično slovo a sa obrnutom kukicom",aacute:"Malo latinično slovo a sa kukicom",acirc:"Malo latinično slovo a sa savijenom kukicom",atilde:"Malo latinično slovo a sa znakom talasa",auml:"Malo latinično slovo a sa dvotačkom",aring:"Malo latinično slovo a sa prstenom iznad", +aelig:"Malo latinično slovo æ",ccedil:"Malo latinično slovo c sa cedilom",egrave:"Malo latinično slovo e sa obrnutom kukicom",eacute:"Malo latinično slovo e sa kukicom",ecirc:"Malo latinično slovo e sa savijenom kukicom",euml:"Malo latinično slovo e sa dvotačkom",igrave:"Malo latinično slovo i sa obrnutom kukicom",iacute:"Malo latinično slovo i sa kukicom",icirc:"Malo latinično slovo i sa savijenom kukicom",iuml:"Malo latinično slovo i sa dvotačkom",eth:"Malo latinično slovo eth",ntilde:"Malo latinično slovo n sa znakom talasa", +ograve:"Malo latinično slovo o sa obrnutom kukicom",oacute:"Malo latinično slovo o sa kukicom",ocirc:"Malo latinično slovo o sa savijenom kukicom",otilde:"Malo latinično slovo o sa znakom talasa",ouml:"Malo latinično slovo o dvotačkom",divide:"Znak deljenja",oslash:"Malo latinično slovo o precrtano",ugrave:"Malo latinično slovo u sa obrnutom kukicom",uacute:"Malo latinično slovo u sa kukicom",ucirc:"Malo latinično slovo u sa savijenom kukicom",uuml:"Malo latinično slovo u sa dvotačkom",yacute:"Malo latinično slovo y sa kukicom", +thorn:"Malo latinično slovo thorn",yuml:"Malo latinično slovo y sa dvotačkom",OElig:"Veliki latinični znak OE",oelig:"Mali latinični znak OE",372:"Veliko latinično slovo W sa savijenom kukicom.",374:"Veliko latinično slovo Y sa savijenom kukicom.",373:"Malo latinično slovo w sa savijenom kukicom.",375:"Malo latinično slovo y sa savijenom kukicom.",sbquo:"Tipografski simpli navodnik za otvaranje",8219:"Tipografski simpli navodnik za zatvaranje",bdquo:"Tipografski dupli navodnik ",hellip:"Tri tačke", +trade:"Znak robne marke",9658:"Crni pokazivač desno",bull:"Tačka",rarr:"Strelica desno",rArr:"Dupla strelica desno",hArr:"Levo desno dupla strelica",diams:"Crni dijamant znak",asymp:"Znak skoro jednako"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/sr.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/sr.js new file mode 100644 index 0000000000..865545341b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/sr.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","sr",{euro:"Знак еура",lsquo:"Леви симпли знак навода",rsquo:"Десни симпли знак навода",ldquo:"Леви дупли знак навода",rdquo:"Десни дупли знак навода",ndash:"Кратка цртица",mdash:"Дугачка цртица",iexcl:"Обрнути узвичник",cent:"Знак цент",pound:"Знак фунте",curren:"Знак валуте",yen:"Знак јена",brvbar:"Трака са прекидом",sect:"Знак параграфа",uml:"Умлаут",copy:"Знак ауторско право",ordf:"Женски редни индикатор",laquo:"Дупла стрелица лево",not:"Без знака",reg:"Регистровани знак", +macr:"Знак дужине",deg:"Знак за степен",sup2:"Знак на квадрату",sup3:"Знак на куб",acute:"Оштар акценат",micro:"Знак микро",para:"Знак пасуса",middot:"Средња тачка",cedil:"Цедиле",sup1:"Знак на првом",ordm:"Мушки редни индикатор",raquo:"Десна дупла стрелица",frac14:"Знак за четвртину",frac12:"Знак за половину",frac34:"Знак за трећину",iquest:"Обрнути упитник",Agrave:"Велико латинично слово А са обрнутом кукицом",Aacute:"Велико латинично слово А са кукицом",Acirc:"Велико латинично слово А са савијеном кукицом", +Atilde:"Велико латинично слово А са знаком таласа",Auml:"Велико латинично слово А са двотачком",Aring:"Велико латинично слово А прстеном изнад",AElig:"Велико латинично слово Æ",Ccedil:"Велико латинично слово Ц са цедилом",Egrave:"Велико латинично слово Е са обрнутом кукицом",Eacute:"Велико латинично слово Е са кукицом",Ecirc:"Велико латинично слово Е са савијеном кукицом",Euml:"Велико латинично слово Е са двотачком",Igrave:"Велико латинично слово И са обрнутом кукицом",Iacute:"Велико латинично слово И са кукицом", +Icirc:"Велико латинично слово И са савијеном кукицом",Iuml:"Велико латинично слово И са двотачком",ETH:"Велико латинично слово Eth",Ntilde:"Велико латинично слово Н са знаком таласа",Ograve:"Велико латинично слово О са обрнутом кукицом",Oacute:"Велико латинично слово О са кукицом",Ocirc:"Велико латинично слово О са савијеном кукицом",Otilde:"Велико латинично слово О са знаком таласа",Ouml:"Велико латинично слово О са двотачком",times:"Знак множења",Oslash:"Велико латинично слово О прецртано",Ugrave:"Велико латинично слово У са обрнутом кукицом", +Uacute:"Велико латинично слово У са кукицом",Ucirc:"Велико латинично слово У са савијеном кукицом",Uuml:"Велико латинично слово У са двотачком",Yacute:"Велико латинично слово ИПСИЛОН са кукицом",THORN:"Велико латинично словоThorn",szlig:"Мало латинично слово с",agrave:"Мало латинично слово с са обрнутом кукицом",aacute:"Мало латинично слово а са кукицом",acirc:"Мало латинично слово а са савијеном кукицом",atilde:"Мало латинично слово а са знаком таласа",auml:"Мало латинично слово а са двотачком", +aring:"Мало латинично слово а са прстеном изнад",aelig:"Мало латинично слово æ",ccedil:"Мало латинично слово ц са цедилом",egrave:"Мало латинично слово е са обрнутом кукицом",eacute:"Мало латинично слово е са кукицом",ecirc:"Мало латинично слово е са савијеном кукицом",euml:"Мало латинично слово е са двотачком",igrave:"Мало латинично слово и са обрнутом кукицом",iacute:"Мало латинично слово и са кукицом",icirc:"Мало латинично слово и са савијеном кукицом",iuml:"Мало латинично слово и са двотачком", +eth:"Мало латинично слово eth",ntilde:" Мало латинично слово н са знаком таласа",ograve:"Мало латинично слово о са обрнутом кукицом",oacute:"Мало латинично слово о са кукицом",ocirc:"Мало латинично слово о са савијеном кукицом",otilde:"Мало латинично слово о са знаком таласа",ouml:"Мало латинично слово о са двотачком",divide:"Знак дељења",oslash:"Мало латинично слово о прецртано",ugrave:"Мало латинично слово у са обрнутом кукицом",uacute:"Мало латинично слово у са кукицом",ucirc:"Мало латинично слово у са савијеном кукицом", +uuml:"Мало латинично слово у са двотачком",yacute:"Мало латинично слово ипсилон са кукицом",thorn:"Мало латинично слово thorn",yuml:"Мало латинично слово ипсилон са двотачком",OElig:"Белико латинично слово ОЕ",oelig:"Мало латинично слово ОЕ",372:"Белико латинично слово W са савијеном кукицом",374:"Велико латинично слово ипсилон са савијеном кукицом",373:"Мало латинично слово w са савијеном кукицом",375:"Мало латинично слово ипсилон са савијеном кукицом",sbquo:"Типографски симпли наводник за отварање", +8219:"Типографски симпли наводник за затварање",bdquo:"Типографски дупли наводник ",hellip:"Три тачке",trade:"Знак робне марке",9658:"Црни показивач десно",bull:"Тачка",rarr:"Стрелица десно",rArr:"Дупла стрелица десно",hArr:"Дупла стрелица лево десно",diams:"Црни дијамант знак",asymp:"Знак скоро једнако"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/sv.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/sv.js new file mode 100644 index 0000000000..e1d6b92952 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/sv.js @@ -0,0 +1,11 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","sv",{euro:"Eurotecken",lsquo:"Enkelt vänster citattecken",rsquo:"Enkelt höger citattecken",ldquo:"Dubbelt vänster citattecken",rdquo:"Dubbelt höger citattecken",ndash:"Snedstreck",mdash:"Långt tankstreck",iexcl:"Inverterad utropstecken",cent:"Centtecken",pound:"Pundtecken",curren:"Valutatecken",yen:"Yentecken",brvbar:"Brutet lodrätt streck",sect:"Paragraftecken",uml:"Diaeresis",copy:"Upphovsrättstecken",ordf:"Feminit ordningstalsindikator",laquo:"Vänsterställt dubbelt vinkelcitationstecken", +not:"Icke-tecken",reg:"Registrerad",macr:"Macron",deg:"Grader",sup2:"Upphöjt två",sup3:"Upphöjt tre",acute:"Akut accent",micro:"Mikrotecken",para:"Alinea",middot:"Centrerad prick",cedil:"Cedilj",sup1:"Upphöjt en",ordm:"Maskulina ordningsändelsen",raquo:"Högerställt dubbelt vinkelcitationstecken",frac14:"Bråktal - en kvart",frac12:"Bråktal - en halv",frac34:"Bråktal - tre fjärdedelar",iquest:"Inverterat frågetecken",Agrave:"Stort A med grav accent",Aacute:"Stort A med akutaccent",Acirc:"Stort A med circumflex", +Atilde:"Stort A med tilde",Auml:"Stort A med diaresis",Aring:"Stort A med ring ovan",AElig:"Stort Æ",Ccedil:"Stort C med cedilj",Egrave:"Stort E med grav accent",Eacute:"Stort E med aktuaccent",Ecirc:"Stort E med circumflex",Euml:"Stort E med diaeresis",Igrave:"Stort I med grav accent",Iacute:"Stort I med akutaccent",Icirc:"Stort I med circumflex",Iuml:"Stort I med diaeresis",ETH:"Stort Eth",Ntilde:"Stort N med tilde",Ograve:"Stort O med grav accent",Oacute:"Stort O med aktuaccent",Ocirc:"Stort O med circumflex", +Otilde:"Stort O med tilde",Ouml:"Stort O med diaeresis",times:"Multiplicera",Oslash:"Stor Ø",Ugrave:"Stort U med grav accent",Uacute:"Stort U med akutaccent",Ucirc:"Stort U med circumflex",Uuml:"Stort U med diaeresis",Yacute:"Stort Y med akutaccent",THORN:"Stort Thorn",szlig:"Litet dubbel-s/Eszett",agrave:"Litet a med grav accent",aacute:"Litet a med akutaccent",acirc:"Litet a med circumflex",atilde:"Litet a med tilde",auml:"Litet a med diaeresis",aring:"Litet a med ring ovan",aelig:"Bokstaven æ", +ccedil:"Litet c med cedilj",egrave:"Litet e med grav accent",eacute:"Litet e med akutaccent",ecirc:"Litet e med circumflex",euml:"Litet e med diaeresis",igrave:"Litet i med grav accent",iacute:"Litet i med akutaccent",icirc:"LItet i med circumflex",iuml:"Litet i med didaeresis",eth:"Litet eth",ntilde:"Litet n med tilde",ograve:"LItet o med grav accent",oacute:"LItet o med akutaccent",ocirc:"Litet o med circumflex",otilde:"LItet o med tilde",ouml:"Litet o med diaeresis",divide:"Division",oslash:"ø", +ugrave:"Litet u med grav accent",uacute:"Litet u med akutaccent",ucirc:"LItet u med circumflex",uuml:"Litet u med diaeresis",yacute:"Litet y med akutaccent",thorn:"Litet thorn",yuml:"Litet y med diaeresis",OElig:"Stor ligatur av OE",oelig:"Liten ligatur av oe",372:"Stort W med circumflex",374:"Stort Y med circumflex",373:"Litet w med circumflex",375:"Litet y med circumflex",sbquo:"Enkelt lågt 9-citationstecken",8219:"Enkelt högt bakvänt 9-citationstecken",bdquo:"Dubbelt lågt 9-citationstecken",hellip:"Horisontellt uteslutningstecken", +trade:"Varumärke",9658:"Svart högervänd pekare",bull:"Listpunkt",rarr:"Högerpil",rArr:"Dubbel högerpil",hArr:"Dubbel vänsterpil",diams:"Svart ruter",asymp:"Ungefär lika med"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/th.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/th.js new file mode 100644 index 0000000000..aeb7f813db --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/th.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","th",{euro:"Euro sign",lsquo:"Left single quotation mark",rsquo:"Right single quotation mark",ldquo:"Left double quotation mark",rdquo:"Right double quotation mark",ndash:"En dash",mdash:"Em dash",iexcl:"Inverted exclamation mark",cent:"Cent sign",pound:"Pound sign",curren:"สัญลักษณ์สกุลเงิน",yen:"สัญลักษณ์เงินเยน",brvbar:"Broken bar",sect:"Section sign",uml:"Diaeresis",copy:"Copyright sign",ordf:"Feminine ordinal indicator",laquo:"Left-pointing double angle quotation mark", +not:"Not sign",reg:"Registered sign",macr:"Macron",deg:"Degree sign",sup2:"Superscript two",sup3:"Superscript three",acute:"Acute accent",micro:"Micro sign",para:"Pilcrow sign",middot:"Middle dot",cedil:"Cedilla",sup1:"Superscript one",ordm:"Masculine ordinal indicator",raquo:"Right-pointing double angle quotation mark",frac14:"Vulgar fraction one quarter",frac12:"Vulgar fraction one half",frac34:"Vulgar fraction three quarters",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent", +Aacute:"Latin capital letter A with acute accent",Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent", +Iacute:"Latin capital letter I with acute accent",Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"Latin capital letter O with grave accent",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke", +Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent",Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis", +aring:"Latin small letter a with ring above",aelig:"Latin small letter æ",ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth", +ntilde:"Latin small letter n with tilde",ograve:"Latin small letter o with grave accent",oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"Division sign",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis", +yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn",yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis", +trade:"Trade mark sign",9658:"Black right-pointing pointer",bull:"สัญลักษณ์หัวข้อย่อย",rarr:"Rightwards arrow",rArr:"Rightwards double arrow",hArr:"Left right double arrow",diams:"Black diamond suit",asymp:"Almost equal to"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/tr.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/tr.js new file mode 100644 index 0000000000..30f032e12b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/tr.js @@ -0,0 +1,12 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","tr",{euro:"Euro işareti",lsquo:"Sol tek tırnak işareti",rsquo:"Sağ tek tırnak işareti",ldquo:"Sol çift tırnak işareti",rdquo:"Sağ çift tırnak işareti",ndash:"En tire",mdash:"Em tire",iexcl:"Ters ünlem işareti",cent:"Cent işareti",pound:"Pound işareti",curren:"Para birimi işareti",yen:"Yen işareti",brvbar:"Kırık bar",sect:"Bölüm işareti",uml:"İki sesli harfin ayrılması",copy:"Telif hakkı işareti",ordf:"Dişil sıralı gösterge",laquo:"Sol-işaret çift açı tırnak işareti", +not:"Not işareti",reg:"Kayıtlı işareti",macr:"Makron",deg:"Derece işareti",sup2:"İkili üstsimge",sup3:"Üçlü üstsimge",acute:"Aksan işareti",micro:"Mikro işareti",para:"Pilcrow işareti",middot:"Orta nokta",cedil:"Kedilla",sup1:"Üstsimge",ordm:"Eril sıralı gösterge",raquo:"Sağ işaret çift açı tırnak işareti",frac14:"Bayağı kesrin dörtte biri",frac12:"Bayağı kesrin bir yarım",frac34:"Bayağı kesrin dörtte üç",iquest:"Ters soru işareti",Agrave:"Aksanlı latin harfi",Aacute:"Aşırı aksanıyla Latin harfi", +Acirc:"Çarpık Latin harfi",Atilde:"Tilde latin harfi",Auml:"Sesli harf ayrılımlıı latin harfi",Aring:"Halkalı latin büyük A harfi",AElig:"Latin büyük Æ harfi",Ccedil:"Latin büyük C harfi ile kedilla",Egrave:"Aksanlı latin büyük E harfi",Eacute:"Aşırı vurgulu latin büyük E harfi",Ecirc:"Çarpık latin büyük E harfi",Euml:"Sesli harf ayrılımlıı latin büyük E harfi",Igrave:"Aksanlı latin büyük I harfi",Iacute:"Aşırı aksanlı latin büyük I harfi",Icirc:"Çarpık latin büyük I harfi",Iuml:"Sesli harf ayrılımlıı latin büyük I harfi", +ETH:"Latin büyük Eth harfi",Ntilde:"Tildeli latin büyük N harfi",Ograve:"Aksanlı latin büyük O harfi",Oacute:"Aşırı aksanlı latin büyük O harfi",Ocirc:"Çarpık latin büyük O harfi",Otilde:"Tildeli latin büyük O harfi",Ouml:"Sesli harf ayrılımlı latin büyük O harfi",times:"Çarpma işareti",Oslash:"Vurgulu latin büyük O harfi",Ugrave:"Aksanlı latin büyük U harfi",Uacute:"Aşırı aksanlı latin büyük U harfi",Ucirc:"Çarpık latin büyük U harfi",Uuml:"Sesli harf ayrılımlı latin büyük U harfi",Yacute:"Aşırı aksanlı latin büyük Y harfi", +THORN:"Latin büyük Thorn harfi",szlig:"Latin küçük keskin s harfi",agrave:"Aksanlı latin küçük a harfi",aacute:"Aşırı aksanlı latin küçük a harfi",acirc:"Çarpık latin küçük a harfi",atilde:"Tildeli latin küçük a harfi",auml:"Sesli harf ayrılımlı latin küçük a harfi",aring:"Halkalı latin küçük a harfi",aelig:"Latin büyük æ harfi",ccedil:"Kedillalı latin küçük c harfi",egrave:"Aksanlı latin küçük e harfi",eacute:"Aşırı aksanlı latin küçük e harfi",ecirc:"Çarpık latin küçük e harfi",euml:"Sesli harf ayrılımlı latin küçük e harfi", +igrave:"Aksanlı latin küçük i harfi",iacute:"Aşırı aksanlı latin küçük i harfi",icirc:"Çarpık latin küçük i harfi",iuml:"Sesli harf ayrılımlı latin küçük i harfi",eth:"Latin küçük eth harfi",ntilde:"Tildeli latin küçük n harfi",ograve:"Aksanlı latin küçük o harfi",oacute:"Aşırı aksanlı latin küçük o harfi",ocirc:"Çarpık latin küçük o harfi",otilde:"Tildeli latin küçük o harfi",ouml:"Sesli harf ayrılımlı latin küçük o harfi",divide:"Bölme işareti",oslash:"Vurgulu latin küçük o harfi",ugrave:"Aksanlı latin küçük u harfi", +uacute:"Aşırı aksanlı latin küçük u harfi",ucirc:"Çarpık latin küçük u harfi",uuml:"Sesli harf ayrılımlı latin küçük u harfi",yacute:"Aşırı aksanlı latin küçük y harfi",thorn:"Latin küçük thorn harfi",yuml:"Sesli harf ayrılımlı latin küçük y harfi",OElig:"Latin büyük bağlı OE harfi",oelig:"Latin küçük bağlı oe harfi",372:"Çarpık latin büyük W harfi",374:"Çarpık latin büyük Y harfi",373:"Çarpık latin küçük w harfi",375:"Çarpık latin küçük y harfi",sbquo:"Tek düşük-9 tırnak işareti",8219:"Tek yüksek-ters-9 tırnak işareti", +bdquo:"Çift düşük-9 tırnak işareti",hellip:"Yatay elips",trade:"Marka tescili işareti",9658:"Siyah sağ işaret işaretçisi",bull:"Koyu nokta",rarr:"Sağa doğru ok",rArr:"Sağa doğru çift ok",hArr:"Sol, sağ çift ok",diams:"Siyah elmas takımı",asymp:"Hemen hemen eşit"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/tt.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/tt.js new file mode 100644 index 0000000000..9b44a912a9 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/tt.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","tt",{euro:"Евро тамгасы",lsquo:"Сул бер иңле куштырнаклар",rsquo:"Уң бер иңле куштырнаклар",ldquo:"Сул ике иңле куштырнаклар",rdquo:"Уң ике иңле куштырнаклар",ndash:"Кыска сызык",mdash:"Озын сызык",iexcl:"Әйләндерелгән өндәү билгесе",cent:"Цент тамгасы",pound:"Фунт тамгасы",curren:"Акча берәмлеге тамгасы",yen:"Иена тамгасы",brvbar:"Broken bar",sect:"Параграф билгесе",uml:"Диерезис",copy:"Хокук иясе булу билгесе",ordf:"Feminine ordinal indicator",laquo:"Ачылучы чыршысыман җәя", +not:"Юклык ишарəсе",reg:"Теркәләнгән булу билгесе",macr:"Макрон",deg:"Градус билгесе",sup2:"Икенче өске индекс",sup3:"Өченче өске индекс",acute:"Басым билгесе",micro:"Микро билгесе",para:"Параграф билгесе",middot:"Уртадагы нокта",cedil:"Седиль",sup1:"Беренче өске индекс",ordm:"Masculine ordinal indicator",raquo:"Ябылучы чыршысыман җәя",frac14:"Гади дүрттән бер билгесе",frac12:"Гади икедән бер билгесе",frac34:"Гади дүрттән өч билгесе",iquest:"Әйләндерелгән өндәү билгесе",Agrave:"Гравис белән латин A баш хәрефе", +Aacute:"Басым билгесе белән латин A баш хәрефе",Acirc:"Циркумфлекс белән латин A баш хәрефе",Atilde:"Тильда белән латин A баш хәрефе",Auml:"Диерезис белән латин A баш хәрефе",Aring:"Өстендә боҗра булган латин A баш хәрефе",AElig:"Латин Æ баш хәрефе",Ccedil:"Седиль белән латин C баш хәрефе",Egrave:"Гравис белән латин E баш хәрефе",Eacute:"Басым билгесе белән латин E баш хәрефе",Ecirc:"Циркумфлекс белән латин E баш хәрефе",Euml:"Диерезис белән латин E баш хәрефе",Igrave:"Гравис белән латин I баш хәрефе", +Iacute:"Басым билгесе белән латин I баш хәрефе",Icirc:"Циркумфлекс белән латин I баш хәрефе",Iuml:"Диерезис белән латин I баш хәрефе",ETH:"Латин Eth баш хәрефе",Ntilde:"Тильда белән латин N баш хәрефе",Ograve:"Гравис белән латин O баш хәрефе",Oacute:"Басым билгесе белән латин O баш хәрефе",Ocirc:"Циркумфлекс белән латин O баш хәрефе",Otilde:"Тильда белән латин O баш хәрефе",Ouml:"Диерезис белән латин O баш хәрефе",times:"Тапкырлау билгесе",Oslash:"Сызык белән латин O баш хәрефе",Ugrave:"Гравис белән латин U баш хәрефе", +Uacute:"Басым билгесе белән латин U баш хәрефе",Ucirc:"Циркумфлекс белән латин U баш хәрефе",Uuml:"Диерезис белән латин U баш хәрефе",Yacute:"Басым билгесе белән латин Y баш хәрефе",THORN:"Латин Thorn баш хәрефе",szlig:"Латин beta юл хәрефе",agrave:"Гравис белән латин a юл хәрефе",aacute:"Басым билгесе белән латин a юл хәрефе",acirc:"Циркумфлекс белән латин a юл хәрефе",atilde:"Тильда белән латин a юл хәрефе",auml:"Диерезис белән латин a юл хәрефе",aring:"Өстендә боҗра булган латин a юл хәрефе",aelig:"Латин æ юл хәрефе", +ccedil:"Седиль белән латин c юл хәрефе",egrave:"Гравис белән латин e юл хәрефе",eacute:"Басым билгесе белән латин e юл хәрефе",ecirc:"Циркумфлекс белән латин e юл хәрефе",euml:"Диерезис белән латин e юл хәрефе",igrave:"Гравис белән латин i юл хәрефе",iacute:"Басым билгесе белән латин i юл хәрефе",icirc:"Циркумфлекс белән латин i юл хәрефе",iuml:"Диерезис белән латин i юл хәрефе",eth:"Латин eth юл хәрефе",ntilde:"Тильда белән латин n юл хәрефе",ograve:"Гравис белән латин o юл хәрефе",oacute:"Басым билгесе белән латин o юл хәрефе", +ocirc:"Циркумфлекс белән латин o юл хәрефе",otilde:"Тильда белән латин o юл хәрефе",ouml:"Диерезис белән латин o юл хәрефе",divide:"Бүлү билгесе",oslash:"Сызык белән латин o юл хәрефе",ugrave:"Гравис белән латин u юл хәрефе",uacute:"Басым билгесе белән латин u юл хәрефе",ucirc:"Циркумфлекс белән латин u юл хәрефе",uuml:"Диерезис белән латин u юл хәрефе",yacute:"Басым билгесе белән латин y юл хәрефе",thorn:"Латин thorn юл хәрефе",yuml:"Диерезис белән латин y юл хәрефе",OElig:"Латин лигатура OE баш хәрефе", +oelig:"Латин лигатура oe юл хәрефе",372:"Циркумфлекс белән латин W баш хәрефе",374:"Циркумфлекс белән латин Y баш хәрефе",373:"Циркумфлекс белән латин w юл хәрефе",375:"Циркумфлекс белән латин y юл хәрефе",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Ятма эллипс",trade:"Сәүдә маркасы билгесе",9658:"Black right-pointing pointer",bull:"Маркер",rarr:"Уң якка ук",rArr:"Уң якка икеләтә ук",hArr:"Ике якка икеләтә ук",diams:"Black diamond suit", +asymp:"якынча"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ug.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ug.js new file mode 100644 index 0000000000..81eb350558 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/ug.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","ug",{euro:"ياۋرو بەلگىسى",lsquo:"يالاڭ پەش سول",rsquo:"يالاڭ پەش ئوڭ",ldquo:"قوش پەش سول",rdquo:"قوش پەش ئوڭ",ndash:"سىزىقچە",mdash:"سىزىق",iexcl:"ئۈندەش",cent:"تىيىن بەلگىسى",pound:"فوند ستېرلىڭ",curren:"پۇل بەلگىسى",yen:"ياپونىيە يىنى",brvbar:"ئۈزۈك بالداق",sect:"پاراگراف بەلگىسى",uml:"تاۋۇش ئايرىش بەلگىسى",copy:"نەشر ھوقۇقى بەلگىسى",ordf:"Feminine ordinal indicator",laquo:"قوش تىرناق سول",not:"غەيرى بەلگە",reg:"خەتلەتكەن تاۋار ماركىسى",macr:"سوزۇش بەلگىسى", +deg:"گىرادۇس بەلگىسى",sup2:"يۇقىرى ئىندېكىس 2",sup3:"يۇقىرى ئىندېكىس 3",acute:"ئۇرغۇ بەلگىسى",micro:"Micro sign",para:"ئابزاس بەلگىسى",middot:"ئوتتۇرا چېكىت",cedil:"ئاستىغا قوشۇلىدىغان بەلگە",sup1:"يۇقىرى ئىندېكىس 1",ordm:"Masculine ordinal indicator",raquo:"قوش تىرناق ئوڭ",frac14:"ئاددىي كەسىر تۆتتىن بىر",frac12:"ئاددىي كەسىر ئىككىدىن بىر",frac34:"ئاددىي كەسىر ئۈچتىن تۆرت",iquest:"Inverted question mark",Agrave:"Latin capital letter A with grave accent",Aacute:"Latin capital letter A with acute accent", +Acirc:"Latin capital letter A with circumflex",Atilde:"Latin capital letter A with tilde",Auml:"Latin capital letter A with diaeresis",Aring:"Latin capital letter A with ring above",AElig:"Latin capital letter Æ",Ccedil:"Latin capital letter C with cedilla",Egrave:"Latin capital letter E with grave accent",Eacute:"Latin capital letter E with acute accent",Ecirc:"Latin capital letter E with circumflex",Euml:"Latin capital letter E with diaeresis",Igrave:"Latin capital letter I with grave accent",Iacute:"Latin capital letter I with acute accent", +Icirc:"Latin capital letter I with circumflex",Iuml:"Latin capital letter I with diaeresis",ETH:"Latin capital letter Eth",Ntilde:"Latin capital letter N with tilde",Ograve:"قوش پەش ئوڭ",Oacute:"Latin capital letter O with acute accent",Ocirc:"Latin capital letter O with circumflex",Otilde:"Latin capital letter O with tilde",Ouml:"Latin capital letter O with diaeresis",times:"Multiplication sign",Oslash:"Latin capital letter O with stroke",Ugrave:"Latin capital letter U with grave accent",Uacute:"Latin capital letter U with acute accent", +Ucirc:"Latin capital letter U with circumflex",Uuml:"Latin capital letter U with diaeresis",Yacute:"Latin capital letter Y with acute accent",THORN:"Latin capital letter Thorn",szlig:"Latin small letter sharp s",agrave:"Latin small letter a with grave accent",aacute:"Latin small letter a with acute accent",acirc:"Latin small letter a with circumflex",atilde:"Latin small letter a with tilde",auml:"Latin small letter a with diaeresis",aring:"Latin small letter a with ring above",aelig:"Latin small letter æ", +ccedil:"Latin small letter c with cedilla",egrave:"Latin small letter e with grave accent",eacute:"Latin small letter e with acute accent",ecirc:"Latin small letter e with circumflex",euml:"Latin small letter e with diaeresis",igrave:"Latin small letter i with grave accent",iacute:"Latin small letter i with acute accent",icirc:"Latin small letter i with circumflex",iuml:"Latin small letter i with diaeresis",eth:"Latin small letter eth",ntilde:"تىك موللاق سوئال بەلگىسى",ograve:"Latin small letter o with grave accent", +oacute:"Latin small letter o with acute accent",ocirc:"Latin small letter o with circumflex",otilde:"Latin small letter o with tilde",ouml:"Latin small letter o with diaeresis",divide:"بۆلۈش بەلگىسى",oslash:"Latin small letter o with stroke",ugrave:"Latin small letter u with grave accent",uacute:"Latin small letter u with acute accent",ucirc:"Latin small letter u with circumflex",uuml:"Latin small letter u with diaeresis",yacute:"Latin small letter y with acute accent",thorn:"Latin small letter thorn", +yuml:"Latin small letter y with diaeresis",OElig:"Latin capital ligature OE",oelig:"Latin small ligature oe",372:"Latin capital letter W with circumflex",374:"Latin capital letter Y with circumflex",373:"Latin small letter w with circumflex",375:"Latin small letter y with circumflex",sbquo:"Single low-9 quotation mark",8219:"Single high-reversed-9 quotation mark",bdquo:"Double low-9 quotation mark",hellip:"Horizontal ellipsis",trade:"خەتلەتكەن تاۋار ماركىسى بەلگىسى",9658:"Black right-pointing pointer", +bull:"Bullet",rarr:"ئوڭ يا ئوق",rArr:"ئوڭ قوش سىزىق يا ئوق",hArr:"ئوڭ سول قوش سىزىق يا ئوق",diams:"ئۇيۇل غىچ",asymp:"تەخمىنەن تەڭ"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/uk.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/uk.js new file mode 100644 index 0000000000..1c1a0a4e01 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/uk.js @@ -0,0 +1,12 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","uk",{euro:"Знак євро",lsquo:"Ліві одинарні лапки",rsquo:"Праві одинарні лапки",ldquo:"Ліві подвійні лапки",rdquo:"Праві подвійні лапки",ndash:"Середнє тире",mdash:"Довге тире",iexcl:"Перевернутий знак оклику",cent:"Знак цента",pound:"Знак фунта",curren:"Знак валюти",yen:"Знак єни",brvbar:"Переривчаста вертикальна лінія",sect:"Знак параграфу",uml:"Умлаут",copy:"Знак авторських прав",ordf:"Жіночий порядковий вказівник",laquo:"ліві вказівні подвійні кутові дужки", +not:"Заперечення",reg:"Знак охорони суміжних прав",macr:"Макрон",deg:"Знак градуса",sup2:"два у верхньому індексі",sup3:"три у верхньому індексі",acute:"Знак акута",micro:"Знак мікро",para:"Знак абзацу",middot:"Інтерпункт",cedil:"Седиль",sup1:"Один у верхньому індексі",ordm:"Чоловічий порядковий вказівник",raquo:"праві вказівні подвійні кутові дужки",frac14:"Одна четвертина",frac12:"Одна друга",frac34:"три четвертих",iquest:"Перевернутий знак питання",Agrave:"Велика латинська A з гравісом",Aacute:"Велика латинська А з акутом", +Acirc:"Велика латинська А з циркумфлексом",Atilde:"Велика латинська А з тильдою",Auml:"Велике латинське А з умлаутом",Aring:"Велика латинська A з кільцем згори",AElig:"Велика латинська Æ",Ccedil:"Велика латинська C з седиллю",Egrave:"Велика латинська E з гравісом",Eacute:"Велика латинська E з акутом",Ecirc:"Велика латинська E з циркумфлексом",Euml:"Велика латинська А з умлаутом",Igrave:"Велика латинська I з гравісом",Iacute:"Велика латинська I з акутом",Icirc:"Велика латинська I з циркумфлексом", +Iuml:"Велика латинська І з умлаутом",ETH:"Велика латинська Eth",Ntilde:"Велика латинська N з тильдою",Ograve:"Велика латинська O з гравісом",Oacute:"Велика латинська O з акутом",Ocirc:"Велика латинська O з циркумфлексом",Otilde:"Велика латинська O з тильдою",Ouml:"Велика латинська О з умлаутом",times:"Знак множення",Oslash:"Велика латинська перекреслена O ",Ugrave:"Велика латинська U з гравісом",Uacute:"Велика латинська U з акутом",Ucirc:"Велика латинська U з циркумфлексом",Uuml:"Велика латинська U з умлаутом", +Yacute:"Велика латинська Y з акутом",THORN:"Велика латинська Торн",szlig:"Мала латинська есцет",agrave:"Мала латинська a з гравісом",aacute:"Мала латинська a з акутом",acirc:"Мала латинська a з циркумфлексом",atilde:"Мала латинська a з тильдою",auml:"Мала латинська a з умлаутом",aring:"Мала латинська a з кільцем згори",aelig:"Мала латинська æ",ccedil:"Мала латинська C з седиллю",egrave:"Мала латинська e з гравісом",eacute:"Мала латинська e з акутом",ecirc:"Мала латинська e з циркумфлексом",euml:"Мала латинська e з умлаутом", +igrave:"Мала латинська i з гравісом",iacute:"Мала латинська i з акутом",icirc:"Мала латинська i з циркумфлексом",iuml:"Мала латинська i з умлаутом",eth:"Мала латинська Eth",ntilde:"Мала латинська n з тильдою",ograve:"Мала латинська o з гравісом",oacute:"Мала латинська o з акутом",ocirc:"Мала латинська o з циркумфлексом",otilde:"Мала латинська o з тильдою",ouml:"Мала латинська o з умлаутом",divide:"Знак ділення",oslash:"Мала латинська перекреслена o",ugrave:"Мала латинська u з гравісом",uacute:"Мала латинська u з акутом", +ucirc:"Мала латинська u з циркумфлексом",uuml:"Мала латинська u з умлаутом",yacute:"Мала латинська y з акутом",thorn:"Мала латинська торн",yuml:"Мала латинська y з умлаутом",OElig:"Велика латинська лігатура OE",oelig:"Мала латинська лігатура oe",372:"Велика латинська W з циркумфлексом",374:"Велика латинська Y з циркумфлексом",373:"Мала латинська w з циркумфлексом",375:"Мала латинська y з циркумфлексом",sbquo:"Одиничні нижні лабки",8219:"Верхні одиничні обернені лабки",bdquo:"Подвійні нижні лабки", +hellip:"Три крапки",trade:"Знак торгової марки",9658:"Чорний правий вказівник",bull:"Маркер списку",rarr:"Стрілка вправо",rArr:"Подвійна стрілка вправо",hArr:"Подвійна стрілка вліво-вправо",diams:"Чорний діамонт",asymp:"Наближено дорівнює"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/vi.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/vi.js new file mode 100644 index 0000000000..99d962d6eb --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/vi.js @@ -0,0 +1,14 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","vi",{euro:"Ký hiệu Euro",lsquo:"Dấu ngoặc đơn trái",rsquo:"Dấu ngoặc đơn phải",ldquo:"Dấu ngoặc đôi trái",rdquo:"Dấu ngoặc đôi phải",ndash:"Gạch ngang tiếng anh",mdash:"Gạch ngang Em",iexcl:"Chuyển đổi dấu chấm than",cent:"Ký tự tiền Mỹ",pound:"Ký tự tiền Anh",curren:"Ký tự tiền tệ",yen:"Ký tự tiền Yên Nhật",brvbar:"Thanh hỏng",sect:"Ký tự khu vực",uml:"Dấu tách đôi",copy:"Ký tự bản quyền",ordf:"Phần chỉ thị giống cái",laquo:"Chọn dấu ngoặc đôi trái",not:"Không có ký tự", +reg:"Ký tự đăng ký",macr:"Dấu nguyên âm dài",deg:"Ký tự độ",sup2:"Chữ trồi lên trên dạng 2",sup3:"Chữ trồi lên trên dạng 3",acute:"Dấu trọng âm",micro:"Ký tự micro",para:"Ký tự đoạn văn",middot:"Dấu chấm tròn",cedil:"Dấu móc lưới",sup1:"Ký tự trồi lên cấp 1",ordm:"Ký tự biểu hiện giống đực",raquo:"Chọn dấu ngoặc đôi phải",frac14:"Tỉ lệ một phần tư",frac12:"Tỉ lệ một nửa",frac34:"Tỉ lệ ba phần tư",iquest:"Chuyển đổi dấu chấm hỏi",Agrave:"Ký tự la-tinh viết hoa A với dấu huyền",Aacute:"Ký tự la-tinh viết hoa A với dấu sắc", +Acirc:"Ký tự la-tinh viết hoa A với dấu mũ",Atilde:"Ký tự la-tinh viết hoa A với dấu ngã",Auml:"Ký tự la-tinh viết hoa A với dấu hai chấm trên đầu",Aring:"Ký tự la-tinh viết hoa A với biểu tượng vòng tròn trên đầu",AElig:"Ký tự la-tinh viết hoa của Æ",Ccedil:"Ký tự la-tinh viết hoa C với dấu móc bên dưới",Egrave:"Ký tự la-tinh viết hoa E với dấu huyền",Eacute:"Ký tự la-tinh viết hoa E với dấu sắc",Ecirc:"Ký tự la-tinh viết hoa E với dấu mũ",Euml:"Ký tự la-tinh viết hoa E với dấu hai chấm trên đầu", +Igrave:"Ký tự la-tinh viết hoa I với dấu huyền",Iacute:"Ký tự la-tinh viết hoa I với dấu sắc",Icirc:"Ký tự la-tinh viết hoa I với dấu mũ",Iuml:"Ký tự la-tinh viết hoa I với dấu hai chấm trên đầu",ETH:"Viết hoa của ký tự Eth",Ntilde:"Ký tự la-tinh viết hoa N với dấu ngã",Ograve:"Ký tự la-tinh viết hoa O với dấu huyền",Oacute:"Ký tự la-tinh viết hoa O với dấu sắc",Ocirc:"Ký tự la-tinh viết hoa O với dấu mũ",Otilde:"Ký tự la-tinh viết hoa O với dấu ngã",Ouml:"Ký tự la-tinh viết hoa O với dấu hai chấm trên đầu", +times:"Ký tự phép toán nhân",Oslash:"Ký tự la-tinh viết hoa A với dấu ngã xuống",Ugrave:"Ký tự la-tinh viết hoa U với dấu huyền",Uacute:"Ký tự la-tinh viết hoa U với dấu sắc",Ucirc:"Ký tự la-tinh viết hoa U với dấu mũ",Uuml:"Ký tự la-tinh viết hoa U với dấu hai chấm trên đầu",Yacute:"Ký tự la-tinh viết hoa Y với dấu sắc",THORN:"Phần viết hoa của ký tự Thorn",szlig:"Ký tự viết nhỏ la-tinh của chữ s",agrave:"Ký tự la-tinh thường với dấu huyền",aacute:"Ký tự la-tinh thường với dấu sắc",acirc:"Ký tự la-tinh thường với dấu mũ", +atilde:"Ký tự la-tinh thường với dấu ngã",auml:"Ký tự la-tinh thường với dấu hai chấm trên đầu",aring:"Ký tự la-tinh viết thường với biểu tượng vòng tròn trên đầu",aelig:"Ký tự la-tinh viết thường của æ",ccedil:"Ký tự la-tinh viết thường của c với dấu móc bên dưới",egrave:"Ký tự la-tinh viết thường e với dấu huyền",eacute:"Ký tự la-tinh viết thường e với dấu sắc",ecirc:"Ký tự la-tinh viết thường e với dấu mũ",euml:"Ký tự la-tinh viết thường e với dấu hai chấm trên đầu",igrave:"Ký tự la-tinh viết thường i với dấu huyền", +iacute:"Ký tự la-tinh viết thường i với dấu sắc",icirc:"Ký tự la-tinh viết thường i với dấu mũ",iuml:"Ký tự la-tinh viết thường i với dấu hai chấm trên đầu",eth:"Ký tự la-tinh viết thường của eth",ntilde:"Ký tự la-tinh viết thường n với dấu ngã",ograve:"Ký tự la-tinh viết thường o với dấu huyền",oacute:"Ký tự la-tinh viết thường o với dấu sắc",ocirc:"Ký tự la-tinh viết thường o với dấu mũ",otilde:"Ký tự la-tinh viết thường o với dấu ngã",ouml:"Ký tự la-tinh viết thường o với dấu hai chấm trên đầu", +divide:"Ký hiệu phép tính chia",oslash:"Ký tự la-tinh viết thường o với dấu ngã",ugrave:"Ký tự la-tinh viết thường u với dấu huyền",uacute:"Ký tự la-tinh viết thường u với dấu sắc",ucirc:"Ký tự la-tinh viết thường u với dấu mũ",uuml:"Ký tự la-tinh viết thường u với dấu hai chấm trên đầu",yacute:"Ký tự la-tinh viết thường y với dấu sắc",thorn:"Ký tự la-tinh viết thường của chữ thorn",yuml:"Ký tự la-tinh viết thường y với dấu hai chấm trên đầu",OElig:"Ký tự la-tinh viết hoa gạch nối OE",oelig:"Ký tự la-tinh viết thường gạch nối OE", +372:"Ký tự la-tinh viết hoa W với dấu mũ",374:"Ký tự la-tinh viết hoa Y với dấu mũ",373:"Ký tự la-tinh viết thường w với dấu mũ",375:"Ký tự la-tinh viết thường y với dấu mũ",sbquo:"Dấu ngoặc đơn thấp số-9",8219:"Dấu ngoặc đơn đảo ngược số-9",bdquo:"Gấp đôi dấu ngoặc đơn số-9",hellip:"Tĩnh dược chiều ngang",trade:"Ký tự thương hiệu",9658:"Ký tự trỏ về hướng bên phải màu đen",bull:"Ký hiệu",rarr:"Mũi tên hướng bên phải",rArr:"Mũi tên hướng bên phải dạng đôi",hArr:"Mũi tên hướng bên trái dạng đôi",diams:"Ký hiệu hình thoi", +asymp:"Gần bằng với"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js new file mode 100644 index 0000000000..e85260e6d9 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js @@ -0,0 +1,9 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","zh-cn",{euro:"欧元符号",lsquo:"左单引号",rsquo:"右单引号",ldquo:"左双引号",rdquo:"右双引号",ndash:"短划线",mdash:"长划线",iexcl:"竖翻叹号",cent:"分币符号",pound:"英镑符号",curren:"货币符号",yen:"日元符号",brvbar:"间断条",sect:"节标记",uml:"分音符",copy:"版权所有标记",ordf:"阴性顺序指示符",laquo:"左指双尖引号",not:"非标记",reg:"注册标记",macr:"长音符",deg:"度标记",sup2:"上标二",sup3:"上标三",acute:"锐音符",micro:"微符",para:"段落标记",middot:"中间点",cedil:"下加符",sup1:"上标一",ordm:"阳性顺序指示符",raquo:"右指双尖引号",frac14:"普通分数四分之一",frac12:"普通分数二分之一",frac34:"普通分数四分之三",iquest:"竖翻问号", +Agrave:"带抑音符的拉丁文大写字母 A",Aacute:"带锐音符的拉丁文大写字母 A",Acirc:"带扬抑符的拉丁文大写字母 A",Atilde:"带颚化符的拉丁文大写字母 A",Auml:"带分音符的拉丁文大写字母 A",Aring:"带上圆圈的拉丁文大写字母 A",AElig:"拉丁文大写字母 Æ",Ccedil:"带下加符的拉丁文大写字母 C",Egrave:"带抑音符的拉丁文大写字母 E",Eacute:"带锐音符的拉丁文大写字母 E",Ecirc:"带扬抑符的拉丁文大写字母 E",Euml:"带分音符的拉丁文大写字母 E",Igrave:"带抑音符的拉丁文大写字母 I",Iacute:"带锐音符的拉丁文大写字母 I",Icirc:"带扬抑符的拉丁文大写字母 I",Iuml:"带分音符的拉丁文大写字母 I",ETH:"拉丁文大写字母 Eth",Ntilde:"带颚化符的拉丁文大写字母 N",Ograve:"带抑音符的拉丁文大写字母 O",Oacute:"带锐音符的拉丁文大写字母 O",Ocirc:"带扬抑符的拉丁文大写字母 O",Otilde:"带颚化符的拉丁文大写字母 O", +Ouml:"带分音符的拉丁文大写字母 O",times:"乘号",Oslash:"带粗线的拉丁文大写字母 O",Ugrave:"带抑音符的拉丁文大写字母 U",Uacute:"带锐音符的拉丁文大写字母 U",Ucirc:"带扬抑符的拉丁文大写字母 U",Uuml:"带分音符的拉丁文大写字母 U",Yacute:"带抑音符的拉丁文大写字母 Y",THORN:"拉丁文大写字母 Thorn",szlig:"拉丁文小写字母清音 S",agrave:"带抑音符的拉丁文小写字母 A",aacute:"带锐音符的拉丁文小写字母 A",acirc:"带扬抑符的拉丁文小写字母 A",atilde:"带颚化符的拉丁文小写字母 A",auml:"带分音符的拉丁文小写字母 A",aring:"带上圆圈的拉丁文小写字母 A",aelig:"拉丁文小写字母 Ae",ccedil:"带下加符的拉丁文小写字母 C",egrave:"带抑音符的拉丁文小写字母 E",eacute:"带锐音符的拉丁文小写字母 E",ecirc:"带扬抑符的拉丁文小写字母 E",euml:"带分音符的拉丁文小写字母 E",igrave:"带抑音符的拉丁文小写字母 I", +iacute:"带锐音符的拉丁文小写字母 I",icirc:"带扬抑符的拉丁文小写字母 I",iuml:"带分音符的拉丁文小写字母 I",eth:"拉丁文小写字母 Eth",ntilde:"带颚化符的拉丁文小写字母 N",ograve:"带抑音符的拉丁文小写字母 O",oacute:"带锐音符的拉丁文小写字母 O",ocirc:"带扬抑符的拉丁文小写字母 O",otilde:"带颚化符的拉丁文小写字母 O",ouml:"带分音符的拉丁文小写字母 O",divide:"除号",oslash:"带粗线的拉丁文小写字母 O",ugrave:"带抑音符的拉丁文小写字母 U",uacute:"带锐音符的拉丁文小写字母 U",ucirc:"带扬抑符的拉丁文小写字母 U",uuml:"带分音符的拉丁文小写字母 U",yacute:"带抑音符的拉丁文小写字母 Y",thorn:"拉丁文小写字母 Thorn",yuml:"带分音符的拉丁文小写字母 Y",OElig:"拉丁文大写连字 Oe",oelig:"拉丁文小写连字 Oe",372:"带扬抑符的拉丁文大写字母 W",374:"带扬抑符的拉丁文大写字母 Y", +373:"带扬抑符的拉丁文小写字母 W",375:"带扬抑符的拉丁文小写字母 Y",sbquo:"单下 9 形引号",8219:"单高横翻 9 形引号",bdquo:"双下 9 形引号",hellip:"水平省略号",trade:"商标标志",9658:"实心右指指针",bull:"加重号",rarr:"向右箭头",rArr:"向右双线箭头",hArr:"左右双线箭头",diams:"实心方块纸牌",asymp:"约等于"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/zh.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/zh.js new file mode 100644 index 0000000000..0de1626bd6 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/lang/zh.js @@ -0,0 +1,9 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.plugins.setLang("specialchar","zh",{euro:"歐元符號",lsquo:"左單引號",rsquo:"右單引號",ldquo:"左雙引號",rdquo:"右雙引號",ndash:"短破折號",mdash:"長破折號",iexcl:"倒置的驚嘆號",cent:"美分符號",pound:"英鎊符號",curren:"貨幣符號",yen:"日圓符號",brvbar:"破折號",sect:"章節符號",uml:"分音符號",copy:"版權符號",ordf:"雌性符號",laquo:"左雙角括號",not:"Not 符號",reg:"註冊商標符號",macr:"長音符號",deg:"度數符號",sup2:"上標字 2",sup3:"上標字 3",acute:"尖音符號",micro:"微",para:"段落符號",middot:"中間點",cedil:"字母 C 下面的尾型符號 ",sup1:"上標",ordm:"雄性符號",raquo:"右雙角括號",frac14:"四分之一符號",frac12:"二分之一符號",frac34:"四分之三符號", +iquest:"倒置的問號",Agrave:"拉丁大寫字母 A 帶抑音符號",Aacute:"拉丁大寫字母 A 帶尖音符號",Acirc:"拉丁大寫字母 A 帶揚抑符",Atilde:"拉丁大寫字母 A 帶波浪號",Auml:"拉丁大寫字母 A 帶分音符號",Aring:"拉丁大寫字母 A 帶上圓圈",AElig:"拉丁大寫字母 Æ",Ccedil:"拉丁大寫字母 C 帶下尾符號",Egrave:"拉丁大寫字母 E 帶抑音符號",Eacute:"拉丁大寫字母 E 帶尖音符號",Ecirc:"拉丁大寫字母 E 帶揚抑符",Euml:"拉丁大寫字母 E 帶分音符號",Igrave:"拉丁大寫字母 I 帶抑音符號",Iacute:"拉丁大寫字母 I 帶尖音符號",Icirc:"拉丁大寫字母 I 帶揚抑符",Iuml:"拉丁大寫字母 I 帶分音符號",ETH:"拉丁大寫字母 Eth",Ntilde:"拉丁大寫字母 N 帶波浪號",Ograve:"拉丁大寫字母 O 帶抑音符號",Oacute:"拉丁大寫字母 O 帶尖音符號",Ocirc:"拉丁大寫字母 O 帶揚抑符",Otilde:"拉丁大寫字母 O 帶波浪號", +Ouml:"拉丁大寫字母 O 帶分音符號",times:"乘號",Oslash:"拉丁大寫字母 O 帶粗線符號",Ugrave:"拉丁大寫字母 U 帶抑音符號",Uacute:"拉丁大寫字母 U 帶尖音符號",Ucirc:"拉丁大寫字母 U 帶揚抑符",Uuml:"拉丁大寫字母 U 帶分音符號",Yacute:"拉丁大寫字母 Y 帶尖音符號",THORN:"拉丁大寫字母 Thorn",szlig:"拉丁小寫字母 s",agrave:"拉丁小寫字母 a 帶抑音符號",aacute:"拉丁小寫字母 a 帶尖音符號",acirc:"拉丁小寫字母 a 帶揚抑符",atilde:"拉丁小寫字母 a 帶波浪號",auml:"拉丁小寫字母 a 帶分音符號",aring:"拉丁小寫字母 a 帶上圓圈",aelig:"拉丁小寫字母 æ",ccedil:"拉丁小寫字母 c 帶下尾符號",egrave:"拉丁小寫字母 e 帶抑音符號",eacute:"拉丁小寫字母 e 帶尖音符號",ecirc:"拉丁小寫字母 e 帶揚抑符",euml:"拉丁小寫字母 e 帶分音符號",igrave:"拉丁小寫字母 i 帶抑音符號", +iacute:"拉丁小寫字母 i 帶尖音符號",icirc:"拉丁小寫字母 i 帶揚抑符",iuml:"拉丁小寫字母 i 帶分音符號",eth:"拉丁小寫字母 eth",ntilde:"拉丁小寫字母 n 帶波浪號",ograve:"拉丁小寫字母 o 帶抑音符號",oacute:"拉丁小寫字母 o 帶尖音符號",ocirc:"拉丁小寫字母 o 帶揚抑符",otilde:"拉丁小寫字母 o 帶波浪號",ouml:"拉丁小寫字母 o 帶分音符號",divide:"除號",oslash:"拉丁小寫字母 o 帶粗線符號",ugrave:"拉丁小寫字母 u 帶抑音符號",uacute:"拉丁小寫字母 u 帶尖音符號",ucirc:"拉丁小寫字母 u 帶揚抑符",uuml:"拉丁小寫字母 u 帶分音符號",yacute:"拉丁小寫字母 y 帶尖音符號",thorn:"拉丁小寫字母 thorn",yuml:"拉丁小寫字母 y 帶分音符號",OElig:"拉丁大寫字母 OE",oelig:"拉丁小寫字母 oe",372:"拉丁大寫字母 W 帶揚抑符",374:"拉丁大寫字母 Y 帶揚抑符",373:"拉丁小寫字母 w 帶揚抑符", +375:"拉丁小寫字母 y 帶揚抑符",sbquo:"低 9 單引號",8219:"高 9 反轉單引號",bdquo:"低 9 雙引號",hellip:"水平刪節號",trade:"商標符號",9658:"黑色向右指箭號",bull:"項目符號",rarr:"向右箭號",rArr:"向右雙箭號",hArr:"左右雙箭號",diams:"黑鑽套裝",asymp:"約等於"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/specialchar/dialogs/specialchar.js b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/specialchar.js new file mode 100644 index 0000000000..1c35e835f8 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/specialchar/dialogs/specialchar.js @@ -0,0 +1,14 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.dialog.add("specialchar",function(h){var f,n=h.lang.specialchar,k,l,p,d,e,q;l=function(c){var b;c=c.data?c.data.getTarget():new CKEDITOR.dom.element(c);"a"==c.getName()&&(b=c.getChild(0).getHtml())&&(c.removeClass("cke_light_background"),f.hide(),c=h.document.createElement("span"),c.setHtml(b),h.insertText(c.getText()))};p=CKEDITOR.tools.addFunction(l);e=function(c,b){var a;b=b||c.data.getTarget();"span"==b.getName()&&(b=b.getParent());if("a"==b.getName()&&(a=b.getChild(0).getHtml())){k&& +d(null,k);var e=f.getContentElement("info","htmlPreview").getElement();f.getContentElement("info","charPreview").getElement().setHtml(a);e.setHtml(CKEDITOR.tools.htmlEncode(a));b.getParent().addClass("cke_light_background");k=b}};d=function(c,b){b=b||c.data.getTarget();"span"==b.getName()&&(b=b.getParent());"a"==b.getName()&&(f.getContentElement("info","charPreview").getElement().setHtml("\x26nbsp;"),f.getContentElement("info","htmlPreview").getElement().setHtml("\x26nbsp;"),b.getParent().removeClass("cke_light_background"), +k=void 0)};q=CKEDITOR.tools.addFunction(function(c){c=new CKEDITOR.dom.event(c);var b=c.getTarget(),a;a=c.getKeystroke();var r="rtl"==h.lang.dir;switch(a){case 38:if(a=b.getParent().getParent().getPrevious())a=a.getChild([b.getParent().getIndex(),0]),a.focus(),d(null,b),e(null,a);c.preventDefault();break;case 40:(a=b.getParent().getParent().getNext())&&(a=a.getChild([b.getParent().getIndex(),0]))&&1==a.type&&(a.focus(),d(null,b),e(null,a));c.preventDefault();break;case 32:l({data:c});c.preventDefault(); +break;case r?37:39:if(a=b.getParent().getNext())a=a.getChild(0),1==a.type?(a.focus(),d(null,b),e(null,a),c.preventDefault(!0)):d(null,b);else if(a=b.getParent().getParent().getNext())(a=a.getChild([0,0]))&&1==a.type?(a.focus(),d(null,b),e(null,a),c.preventDefault(!0)):d(null,b);break;case r?39:37:(a=b.getParent().getPrevious())?(a=a.getChild(0),a.focus(),d(null,b),e(null,a),c.preventDefault(!0)):(a=b.getParent().getParent().getPrevious())?(a=a.getLast().getChild(0),a.focus(),d(null,b),e(null,a),c.preventDefault(!0)): +d(null,b)}});return{title:n.title,minWidth:430,minHeight:280,buttons:[CKEDITOR.dialog.cancelButton],charColumns:17,onLoad:function(){for(var c=this.definition.charColumns,b=h.config.specialChars,a=CKEDITOR.tools.getNextId()+"_specialchar_table_label",d=['\x3ctable role\x3d"listbox" aria-labelledby\x3d"'+a+'" style\x3d"width: 320px; height: 100%; border-collapse: separate;" align\x3d"center" cellspacing\x3d"2" cellpadding\x3d"2" border\x3d"0"\x3e'],e=0,f=b.length,g,m;e<f;){d.push('\x3ctr role\x3d"presentation"\x3e'); +for(var k=0;k<c;k++,e++)if(g=b[e]){g instanceof Array?(m=g[1],g=g[0]):(m=g.replace("\x26","").replace(";","").replace("#",""),m=n[m]||g);var l="cke_specialchar_label_"+e+"_"+CKEDITOR.tools.getNextNumber();d.push('\x3ctd class\x3d"cke_dark_background" style\x3d"cursor: default" role\x3d"presentation"\x3e\x3ca href\x3d"javascript: void(0);" role\x3d"option" aria-posinset\x3d"'+(e+1)+'"',' aria-setsize\x3d"'+f+'"',' aria-labelledby\x3d"'+l+'"',' class\x3d"cke_specialchar" title\x3d"',CKEDITOR.tools.htmlEncode(m), +'" onkeydown\x3d"CKEDITOR.tools.callFunction( '+q+', event, this )" onclick\x3d"CKEDITOR.tools.callFunction('+p+', this); return false;" tabindex\x3d"-1"\x3e\x3cspan style\x3d"margin: 0 auto;cursor: inherit"\x3e'+g+'\x3c/span\x3e\x3cspan class\x3d"cke_voice_label" id\x3d"'+l+'"\x3e'+m+"\x3c/span\x3e\x3c/a\x3e\x3c/td\x3e")}d.push("\x3c/tr\x3e")}d.push("\x3c/tbody\x3e\x3c/table\x3e",'\x3cspan id\x3d"'+a+'" class\x3d"cke_voice_label"\x3e'+n.options+"\x3c/span\x3e");this.getContentElement("info","charContainer").getElement().setHtml(d.join(""))}, +contents:[{id:"info",label:h.lang.common.generalTab,title:h.lang.common.generalTab,padding:0,align:"top",elements:[{type:"hbox",align:"top",widths:["320px","90px"],children:[{type:"html",id:"charContainer",html:"",onMouseover:e,onMouseout:d,focus:function(){var c=this.getElement().getElementsByTag("a").getItem(0);setTimeout(function(){c.focus();e(null,c)},0)},onShow:function(){var c=this.getElement().getChild([0,0,0,0,0]);setTimeout(function(){c.focus();e(null,c)},0)},onLoad:function(c){f=c.sender}}, +{type:"hbox",align:"top",widths:["100%"],children:[{type:"vbox",align:"top",children:[{type:"html",html:"\x3cdiv\x3e\x3c/div\x3e"},{type:"html",id:"charPreview",className:"cke_dark_background",style:"border:1px solid #eeeeee;font-size:28px;height:40px;width:70px;padding-top:9px;font-family:'Microsoft Sans Serif',Arial,Helvetica,Verdana;text-align:center;",html:"\x3cdiv\x3e\x26nbsp;\x3c/div\x3e"},{type:"html",id:"htmlPreview",className:"cke_dark_background",style:"border:1px solid #eeeeee;font-size:14px;height:20px;width:70px;padding-top:2px;font-family:'Microsoft Sans Serif',Arial,Helvetica,Verdana;text-align:center;", +html:"\x3cdiv\x3e\x26nbsp;\x3c/div\x3e"}]}]}]}]}]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/stylesheetparser/plugin.js b/static/ckeditor/ckeditor/plugins/stylesheetparser/plugin.js new file mode 100644 index 0000000000..64c5e1260f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/stylesheetparser/plugin.js @@ -0,0 +1,7 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){function h(b,e,c){c=new RegExp(c);e=new RegExp(e);var i=[],g=[],a;for(a=0;a<b.styleSheets.length;a++){var d=b.styleSheets[a];if(!(d.ownerNode||d.owningElement).getAttribute("data-cke-temp")&&!(d.href&&"chrome://"==d.href.substr(0,9)))try{for(var f=d.cssRules||d.rules,d=0;d<f.length;d++)g.push(f[d].selectorText)}catch(h){}}a=g.join(" ");a=a.replace(/(,|>|\+|~)/g," ");a=a.replace(/\[[^\]]*/g,"");a=a.replace(/#[^\s]*/g,"");a=a.replace(/\:{1,2}[^\s]*/g,"");a=a.replace(/\s+/g," ");a=a.split(" ");b=[];for(g=0;g<a.length;g++)f= +a[g],c.test(f)&&!e.test(f)&&-1==CKEDITOR.tools.indexOf(b,f)&&b.push(f);for(a=0;a<b.length;a++)c=b[a].split("."),e=c[0].toLowerCase(),c=c[1],i.push({name:e+"."+c,element:e,attributes:{"class":c}});return i}CKEDITOR.plugins.add("stylesheetparser",{init:function(b){b.filter.disable();var e;b.once("stylesSet",function(c){c.cancel();b.once("contentDom",function(){b.getStylesSet(function(c){e=c.concat(h(b.document.$,b.config.stylesheetParser_skipSelectors||/(^body\.|^\.)/i,b.config.stylesheetParser_validSelectors|| +/\w+\.\w+/));b.getStylesSet=function(b){if(e)return b(e)};b.fire("stylesSet",{styles:e})})})},null,null,1)}})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/table/dialogs/table.js b/static/ckeditor/ckeditor/plugins/table/dialogs/table.js new file mode 100644 index 0000000000..5d627c1219 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/table/dialogs/table.js @@ -0,0 +1,22 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +(function(){function w(a){for(var f=0,p=0,n=0,q,d=a.$.rows.length;n<d;n++){q=a.$.rows[n];for(var e=f=0,b,c=q.cells.length;e<c;e++)b=q.cells[e],f+=b.colSpan;f>p&&(p=f)}return p}function t(a){return function(){var f=this.getValue(),f=!!(CKEDITOR.dialog.validate.integer().call(this,f)&&0<f);f||(alert(a),this.select());return f}}function r(a,f){var p=function(d){return new CKEDITOR.dom.element(d,a.document)},r=a.editable(),q=a.plugins.dialogadvtab;return{title:a.lang.table.title,minWidth:310,minHeight:CKEDITOR.env.ie? +310:280,getModel:function(d){return"tableProperties"!==this.dialog.getName()?null:(d=(d=d.getSelection())&&d.getRanges()[0])?d._getTableElement({table:1}):null},onLoad:function(){var d=this,a=d.getContentElement("advanced","advStyles");if(a)a.on("change",function(){var a=this.getStyle("width",""),c=d.getContentElement("info","txtWidth");c&&c.setValue(a,!0);a=this.getStyle("height","");(c=d.getContentElement("info","txtHeight"))&&c.setValue(a,!0)})},onShow:function(){var d=a.getSelection(),e=d.getRanges(), +b,c=this.getContentElement("info","txtRows"),h=this.getContentElement("info","txtCols"),u=this.getContentElement("info","txtWidth"),l=this.getContentElement("info","txtHeight");"tableProperties"==f&&((d=d.getSelectedElement())&&d.is("table")?b=d:0<e.length&&(CKEDITOR.env.webkit&&e[0].shrink(CKEDITOR.NODE_ELEMENT),b=a.elementPath(e[0].getCommonAncestor(!0)).contains("table",1)),this._.selectedElement=b);b?(this.setupContent(b),c&&c.disable(),h&&h.disable()):(c&&c.enable(),h&&h.enable());u&&u.onChange(); +l&&l.onChange()},onOk:function(){var d=a.getSelection(),e=this._.selectedElement&&d.createBookmarks(),b=this._.selectedElement||p("table"),c={};this.commitContent(c,b);if(c.info){c=c.info;if(!this._.selectedElement)for(var h=b.append(p("tbody")),f=parseInt(c.txtRows,10)||0,l=parseInt(c.txtCols,10)||0,k=0;k<f;k++)for(var g=h.append(p("tr")),m=0;m<l;m++)g.append(p("td")).appendBogus();f=c.selHeaders;if(!b.$.tHead&&("row"==f||"both"==f)){g=b.getElementsByTag("thead").getItem(0);h=b.getElementsByTag("tbody").getItem(0); +l=h.getElementsByTag("tr").getItem(0);g||(g=new CKEDITOR.dom.element("thead"),g.insertBefore(h));for(k=0;k<l.getChildCount();k++)h=l.getChild(k),h.type!=CKEDITOR.NODE_ELEMENT||h.data("cke-bookmark")||(h.renameNode("th"),h.setAttribute("scope","col"));g.append(l.remove())}if(null!==b.$.tHead&&"row"!=f&&"both"!=f){g=new CKEDITOR.dom.element(b.$.tHead);for(h=b.getElementsByTag("tbody").getItem(0);0<g.getChildCount();){l=g.getFirst();for(k=0;k<l.getChildCount();k++)m=l.getChild(k),m.type==CKEDITOR.NODE_ELEMENT&& +(m.renameNode("td"),m.removeAttribute("scope"));h.append(l,!0)}g.remove()}if(!this.hasColumnHeaders&&("col"==f||"both"==f))for(g=0;g<b.$.rows.length;g++)m=new CKEDITOR.dom.element(b.$.rows[g].cells[0]),m.renameNode("th"),m.setAttribute("scope","row");if(this.hasColumnHeaders&&"col"!=f&&"both"!=f)for(k=0;k<b.$.rows.length;k++)g=new CKEDITOR.dom.element(b.$.rows[k]),"tbody"==g.getParent().getName()&&(m=new CKEDITOR.dom.element(g.$.cells[0]),m.renameNode("td"),m.removeAttribute("scope"));c.txtHeight? +b.setStyle("height",c.txtHeight):b.removeStyle("height");c.txtWidth?b.setStyle("width",c.txtWidth):b.removeStyle("width");b.getAttribute("style")||b.removeAttribute("style")}if(this._.selectedElement)try{d.selectBookmarks(e)}catch(n){}else a.insertElement(b),setTimeout(function(){var d=new CKEDITOR.dom.element(b.$.rows[0].cells[0]),c=a.createRange();c.moveToPosition(d,CKEDITOR.POSITION_AFTER_START);c.select()},0)},contents:[{id:"info",label:a.lang.table.title,elements:[{type:"hbox",widths:[null,null], +styles:["vertical-align:top"],children:[{type:"vbox",padding:0,children:[{type:"text",id:"txtRows","default":3,label:a.lang.table.rows,required:!0,controlStyle:"width:5em",validate:t(a.lang.table.invalidRows),setup:function(d){this.setValue(d.$.rows.length)},commit:n},{type:"text",id:"txtCols","default":2,label:a.lang.table.columns,required:!0,controlStyle:"width:5em",validate:t(a.lang.table.invalidCols),setup:function(d){this.setValue(w(d))},commit:n},{type:"html",html:"\x26nbsp;"},{type:"select", +id:"selHeaders",requiredContent:"th","default":"",label:a.lang.table.headers,items:[[a.lang.table.headersNone,""],[a.lang.table.headersRow,"row"],[a.lang.table.headersColumn,"col"],[a.lang.table.headersBoth,"both"]],setup:function(d){var a=this.getDialog();a.hasColumnHeaders=!0;for(var b=0;b<d.$.rows.length;b++){var c=d.$.rows[b].cells[0];if(c&&"th"!=c.nodeName.toLowerCase()){a.hasColumnHeaders=!1;break}}null!==d.$.tHead?this.setValue(a.hasColumnHeaders?"both":"row"):this.setValue(a.hasColumnHeaders? +"col":"")},commit:n},{type:"text",id:"txtBorder",requiredContent:"table[border]","default":a.filter.check("table[border]")?1:0,label:a.lang.table.border,controlStyle:"width:3em",validate:CKEDITOR.dialog.validate.number(a.lang.table.invalidBorder),setup:function(d){this.setValue(d.getAttribute("border")||"")},commit:function(d,a){this.getValue()?a.setAttribute("border",this.getValue()):a.removeAttribute("border")}},{id:"cmbAlign",type:"select",requiredContent:"table[align]","default":"",label:a.lang.common.align, +items:[[a.lang.common.notSet,""],[a.lang.common.left,"left"],[a.lang.common.center,"center"],[a.lang.common.right,"right"]],setup:function(a){this.setValue(a.getAttribute("align")||"")},commit:function(a,e){this.getValue()?e.setAttribute("align",this.getValue()):e.removeAttribute("align")}}]},{type:"vbox",padding:0,children:[{type:"hbox",widths:["5em"],children:[{type:"text",id:"txtWidth",requiredContent:"table{width}",controlStyle:"width:5em",label:a.lang.common.width,title:a.lang.common.cssLengthTooltip, +"default":a.filter.check("table{width}")?500>r.getSize("width")?"100%":500:0,getValue:v,validate:CKEDITOR.dialog.validate.cssLength(a.lang.common.invalidCssLength.replace("%1",a.lang.common.width)),onChange:function(){var a=this.getDialog().getContentElement("advanced","advStyles");a&&a.updateStyle("width",this.getValue())},setup:function(a){a=a.getStyle("width");this.setValue(a)},commit:n}]},{type:"hbox",widths:["5em"],children:[{type:"text",id:"txtHeight",requiredContent:"table{height}",controlStyle:"width:5em", +label:a.lang.common.height,title:a.lang.common.cssLengthTooltip,"default":"",getValue:v,validate:CKEDITOR.dialog.validate.cssLength(a.lang.common.invalidCssLength.replace("%1",a.lang.common.height)),onChange:function(){var a=this.getDialog().getContentElement("advanced","advStyles");a&&a.updateStyle("height",this.getValue())},setup:function(a){(a=a.getStyle("height"))&&this.setValue(a)},commit:n}]},{type:"html",html:"\x26nbsp;"},{type:"text",id:"txtCellSpace",requiredContent:"table[cellspacing]", +controlStyle:"width:3em",label:a.lang.table.cellSpace,"default":a.filter.check("table[cellspacing]")?1:0,validate:CKEDITOR.dialog.validate.number(a.lang.table.invalidCellSpacing),setup:function(a){this.setValue(a.getAttribute("cellSpacing")||"")},commit:function(a,e){this.getValue()?e.setAttribute("cellSpacing",this.getValue()):e.removeAttribute("cellSpacing")}},{type:"text",id:"txtCellPad",requiredContent:"table[cellpadding]",controlStyle:"width:3em",label:a.lang.table.cellPad,"default":a.filter.check("table[cellpadding]")? +1:0,validate:CKEDITOR.dialog.validate.number(a.lang.table.invalidCellPadding),setup:function(a){this.setValue(a.getAttribute("cellPadding")||"")},commit:function(a,e){this.getValue()?e.setAttribute("cellPadding",this.getValue()):e.removeAttribute("cellPadding")}}]}]},{type:"html",align:"right",html:""},{type:"vbox",padding:0,children:[{type:"text",id:"txtCaption",requiredContent:"caption",label:a.lang.table.caption,setup:function(a){this.enable();a=a.getElementsByTag("caption");if(0<a.count()){a= +a.getItem(0);var e=a.getFirst(CKEDITOR.dom.walker.nodeType(CKEDITOR.NODE_ELEMENT));e&&!e.equals(a.getBogus())?(this.disable(),this.setValue(a.getText())):(a=CKEDITOR.tools.trim(a.getText()),this.setValue(a))}},commit:function(d,e){if(this.isEnabled()){var b=this.getValue(),c=e.getElementsByTag("caption");if(b)0<c.count()?(c=c.getItem(0),c.setHtml("")):(c=new CKEDITOR.dom.element("caption",a.document),e.append(c,!0)),c.append(new CKEDITOR.dom.text(b,a.document));else if(0<c.count())for(b=c.count()- +1;0<=b;b--)c.getItem(b).remove()}}},{type:"text",id:"txtSummary",bidi:!0,requiredContent:"table[summary]",label:a.lang.table.summary,setup:function(a){this.setValue(a.getAttribute("summary")||"")},commit:function(a,e){this.getValue()?e.setAttribute("summary",this.getValue()):e.removeAttribute("summary")}}]}]},q&&q.createAdvancedTab(a,null,"table")]}}var v=CKEDITOR.tools.cssLength,n=function(a){var f=this.id;a.info||(a.info={});a.info[f]=this.getValue()};CKEDITOR.dialog.add("table",function(a){return r(a, +"table")});CKEDITOR.dialog.add("tableProperties",function(a){return r(a,"tableProperties")})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/tableresize/plugin.js b/static/ckeditor/ckeditor/plugins/tableresize/plugin.js new file mode 100644 index 0000000000..014108020e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/tableresize/plugin.js @@ -0,0 +1,13 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){function u(a){return CKEDITOR.env.ie?a.$.clientWidth:parseInt(a.getComputedStyle("width"),10)}function o(a,h){var b=a.getComputedStyle("border-"+h+"-width"),d={thin:"0px",medium:"1px",thick:"2px"};0>b.indexOf("px")&&(b=b in d&&"none"!=a.getComputedStyle("border-style")?d[b]:0);return parseInt(b,10)}function w(a){var h=[],b=-1,d="rtl"==a.getComputedStyle("direction"),f;f=a.$.rows;for(var k=0,g,c,e,i=0,p=f.length;i<p;i++)e=f[i],g=e.cells.length,g>k&&(k=g,c=e);f=c;k=new CKEDITOR.dom.element(a.$.tBodies[0]); +g=k.getDocumentPosition();c=0;for(e=f.cells.length;c<e;c++){var i=new CKEDITOR.dom.element(f.cells[c]),p=f.cells[c+1]&&new CKEDITOR.dom.element(f.cells[c+1]),b=b+(i.$.colSpan||1),l,j,m=i.getDocumentPosition().x;d?j=m+o(i,"left"):l=m+i.$.offsetWidth-o(i,"right");p?(m=p.getDocumentPosition().x,d?l=m+p.$.offsetWidth-o(p,"right"):j=m+o(p,"left")):(m=a.getDocumentPosition().x,d?l=m:j=m+a.$.offsetWidth);i=Math.max(j-l,3);h.push({table:a,index:b,x:l,y:g.y,width:i,height:k.$.offsetHeight,rtl:d})}return h} +function v(a){(a.data||a).preventDefault()}function A(a){function h(){i=0;e.setOpacity(0);l&&b();var a=g.table;setTimeout(function(){a.removeCustomData("_cke_table_pillars")},0);c.removeListener("dragstart",v)}function b(){for(var s=g.rtl,f=s?m.length:x.length,b=0,c=0;c<f;c++){var e=x[c],d=m[c],i=g.table;CKEDITOR.tools.setTimeout(function(c,e,d,g,h,k){c&&c.setStyle("width",j(Math.max(e+k,1)));d&&d.setStyle("width",j(Math.max(g-k,1)));h&&i.setStyle("width",j(h+k*(s?-1:1)));++b==f&&a.fire("saveSnapshot")}, +0,this,[e,e&&u(e),d,d&&u(d),(!e||!d)&&u(i)+o(i,"left")+o(i,"right"),l])}}function d(s){v(s);a.fire("saveSnapshot");for(var s=g.index,d=CKEDITOR.tools.buildTableMap(g.table),b=[],h=[],j=Number.MAX_VALUE,o=j,t=g.rtl,r=0,w=d.length;r<w;r++){var n=d[r],q=n[s+(t?1:0)],n=n[s+(t?0:1)],q=q&&new CKEDITOR.dom.element(q),n=n&&new CKEDITOR.dom.element(n);if(!q||!n||!q.equals(n))q&&(j=Math.min(j,u(q))),n&&(o=Math.min(o,u(n))),b.push(q),h.push(n)}x=b;m=h;y=g.x-j;z=g.x+o;e.setOpacity(0.5);p=parseInt(e.getStyle("left"), +10);l=0;i=1;e.on("mousemove",k);c.on("dragstart",v);c.on("mouseup",f,this)}function f(a){a.removeListener();h()}function k(a){r(a.data.getPageOffset().x)}var g,c,e,i,p,l,x,m,y,z;c=a.document;e=CKEDITOR.dom.element.createFromHtml('<div data-cke-temp=1 contenteditable=false unselectable=on style="position:absolute;cursor:col-resize;filter:alpha(opacity=0);opacity:0;padding:0;background-color:#004;background-image:none;border:0px none;z-index:10"></div>',c);a.on("destroy",function(){e.remove()});t|| +c.getDocumentElement().append(e);this.attachTo=function(a){i||(t&&(c.getBody().append(e),l=0),g=a,e.setStyles({width:j(a.width),height:j(a.height),left:j(a.x),top:j(a.y)}),t&&e.setOpacity(0.25),e.on("mousedown",d,this),c.getBody().setStyle("cursor","col-resize"),e.show())};var r=this.move=function(a){if(!g)return 0;if(!i&&(a<g.x||a>g.x+g.width))return g=null,i=l=0,c.removeListener("mouseup",f),e.removeListener("mousedown",d),e.removeListener("mousemove",k),c.getBody().setStyle("cursor","auto"),t? +e.remove():e.hide(),0;a-=Math.round(e.$.offsetWidth/2);if(i){if(a==y||a==z)return 1;a=Math.max(a,y);a=Math.min(a,z);l=a-p}e.setStyle("left",j(a));return 1}}function r(a){var h=a.data.getTarget();if("mouseout"==a.name){if(!h.is("table"))return;for(var b=new CKEDITOR.dom.element(a.data.$.relatedTarget||a.data.$.toElement);b&&b.$&&!b.equals(h)&&!b.is("body");)b=b.getParent();if(!b||b.equals(h))return}h.getAscendant("table",1).removeCustomData("_cke_table_pillars");a.removeListener()}var j=CKEDITOR.tools.cssLength, +t=CKEDITOR.env.ie&&(CKEDITOR.env.ie7Compat||CKEDITOR.env.quirks);CKEDITOR.plugins.add("tableresize",{requires:"tabletools",init:function(a){a.on("contentDom",function(){var h,b=a.editable();b.attachListener(b.isInline()?b:a.document,"mousemove",function(d){var d=d.data,f=d.getTarget();if(f.type==CKEDITOR.NODE_ELEMENT){var b=d.getPageOffset().x;if(h&&h.move(b))v(d);else if(f.is("table")||f.getAscendant("tbody",1))if(f=f.getAscendant("table",1),a.editable().contains(f)){if(!(d=f.getCustomData("_cke_table_pillars")))f.setCustomData("_cke_table_pillars", +d=w(f)),f.on("mouseout",r),f.on("mousedown",r);a:{for(var f=0,g=d.length;f<g;f++){var c=d[f];if(b>=c.x&&b<=c.x+c.width){b=c;break a}}b=null}b&&(!h&&(h=new A(a)),h.attachTo(b))}}})})}})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/tableselection/styles/tableselection.css b/static/ckeditor/ckeditor/plugins/tableselection/styles/tableselection.css new file mode 100644 index 0000000000..1f5481aa55 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/tableselection/styles/tableselection.css @@ -0,0 +1,36 @@ +.cke_table-faked-selection-editor *::selection, table[data-cke-table-faked-selection-table] *::selection { + background: transparent; +} + +.cke_table-faked-selection { + background: darkgray !important; + color: black; +} +.cke_table-faked-selection a { + color: black; +} +.cke_editable:focus .cke_table-faked-selection { + /* We have to use !important here, as td might specify it's own background, thus table selection + would not be visible. */ + background: #0076cb !important; + color: white; +} +.cke_editable:focus .cke_table-faked-selection a { + color: white; +} +.cke_table-faked-selection::-moz-selection, .cke_table-faked-selection ::-moz-selection { + background: transparent; +} +.cke_table-faked-selection::selection, .cke_table-faked-selection ::selection { + background: transparent; +} + +/* Change the cursor when selecting cells (#706). + * + * This solution does not work in IE, Edge and Safari due to upstream isues: + * https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/3419602/ + * https://bugs.webkit.org/show_bug.cgi?id=53341 + */ +table[data-cke-table-faked-selection-table] { + cursor: cell; +} diff --git a/static/ckeditor/ckeditor/plugins/tabletools/dialogs/tableCell.js b/static/ckeditor/ckeditor/plugins/tabletools/dialogs/tableCell.js new file mode 100644 index 0000000000..c7c2f7d1c4 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/tabletools/dialogs/tableCell.js @@ -0,0 +1,18 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.dialog.add("cellProperties",function(h){function k(a){return{isSpacer:!0,type:"html",html:"\x26nbsp;",requiredContent:a?a:void 0}}function r(){return{type:"vbox",padding:0,children:[]}}function t(a){return{requiredContent:"td{"+a+"}",type:"hbox",widths:["70%","30%"],children:[{type:"text",id:a,width:"100px",label:e[a],validate:n.number(d["invalid"+CKEDITOR.tools.capitalize(a)]),onLoad:function(){var b=this.getDialog().getContentElement("info",a+"Type").getElement(),c=this.getInputElement(), +d=c.getAttribute("aria-labelledby");c.setAttribute("aria-labelledby",[d,b.$.id].join(" "))},setup:f(function(b){var c=parseFloat(b.getAttribute(a),10);b=parseFloat(b.getStyle(a),10);if(!isNaN(b))return b;if(!isNaN(c))return c}),commit:function(b){var c=parseFloat(this.getValue(),10),d=this.getDialog().getValueOf("info",a+"Type")||u(b,a);isNaN(c)?b.removeStyle(a):b.setStyle(a,c+d);b.removeAttribute(a)},"default":""},{type:"select",id:a+"Type",label:h.lang.table[a+"Unit"],labelStyle:"visibility:hidden;display:block;width:0;overflow:hidden", +"default":"px",items:[[p.widthPx,"px"],[p.widthPc,"%"]],setup:f(function(b){return u(b,a)})}]}}function f(a){return function(b){for(var c=a(b[0]),d=1;d<b.length;d++)if(a(b[d])!==c){c=null;break}"undefined"!=typeof c&&(this.setValue(c),CKEDITOR.env.gecko&&"select"==this.type&&!c&&(this.getInputElement().$.selectedIndex=-1))}}function u(a,b){var c=/^(\d+(?:\.\d+)?)(px|%)$/.exec(a.getStyle(b)||a.getAttribute(b));if(c)return c[2]}function v(a,b){h.getColorFromDialog(function(c){c&&a.getDialog().getContentElement("info", +b).setValue(c);a.focus()},a)}function w(a,b,c){(a=a.getValue())?b.setStyle(c,a):b.removeStyle(c);"background-color"==c?b.removeAttribute("bgColor"):"border-color"==c&&b.removeAttribute("borderColor")}var p=h.lang.table,d=p.cell,e=h.lang.common,n=CKEDITOR.dialog.validate,y="rtl"==h.lang.dir,l=h.plugins.colordialog,q=[t("width"),t("height"),k(["td{width}","td{height}"]),{type:"select",id:"wordWrap",requiredContent:"td{white-space}",label:d.wordWrap,"default":"yes",items:[[d.yes,"yes"],[d.no,"no"]], +setup:f(function(a){var b=a.getAttribute("noWrap");if("nowrap"==a.getStyle("white-space")||b)return"no"}),commit:function(a){"no"==this.getValue()?a.setStyle("white-space","nowrap"):a.removeStyle("white-space");a.removeAttribute("noWrap")}},k("td{white-space}"),{type:"select",id:"hAlign",requiredContent:"td{text-align}",label:d.hAlign,"default":"",items:[[e.notSet,""],[e.left,"left"],[e.center,"center"],[e.right,"right"],[e.justify,"justify"]],setup:f(function(a){var b=a.getAttribute("align");return a.getStyle("text-align")|| +b||""}),commit:function(a){var b=this.getValue();b?a.setStyle("text-align",b):a.removeStyle("text-align");a.removeAttribute("align")}},{type:"select",id:"vAlign",requiredContent:"td{vertical-align}",label:d.vAlign,"default":"",items:[[e.notSet,""],[e.alignTop,"top"],[e.alignMiddle,"middle"],[e.alignBottom,"bottom"],[d.alignBaseline,"baseline"]],setup:f(function(a){var b=a.getAttribute("vAlign");a=a.getStyle("vertical-align");switch(a){case "top":case "middle":case "bottom":case "baseline":break;default:a= +""}return a||b||""}),commit:function(a){var b=this.getValue();b?a.setStyle("vertical-align",b):a.removeStyle("vertical-align");a.removeAttribute("vAlign")}},k(["td{text-align}","td{vertical-align}"]),{type:"select",id:"cellType",requiredContent:"th",label:d.cellType,"default":"td",items:[[d.data,"td"],[d.header,"th"]],setup:f(function(a){return a.getName()}),commit:function(a){a.renameNode(this.getValue())}},k("th"),{type:"text",id:"rowSpan",requiredContent:"td[rowspan]",label:d.rowSpan,"default":"", +validate:n.integer(d.invalidRowSpan),setup:f(function(a){if((a=parseInt(a.getAttribute("rowSpan"),10))&&1!=a)return a}),commit:function(a){var b=parseInt(this.getValue(),10);b&&1!=b?a.setAttribute("rowSpan",this.getValue()):a.removeAttribute("rowSpan")}},{type:"text",id:"colSpan",requiredContent:"td[colspan]",label:d.colSpan,"default":"",validate:n.integer(d.invalidColSpan),setup:f(function(a){if((a=parseInt(a.getAttribute("colSpan"),10))&&1!=a)return a}),commit:function(a){var b=parseInt(this.getValue(), +10);b&&1!=b?a.setAttribute("colSpan",this.getValue()):a.removeAttribute("colSpan")}},k(["td[colspan]","td[rowspan]"]),{type:"hbox",padding:0,widths:l?["60%","40%"]:["100%"],requiredContent:"td{background-color}",children:function(){var a=[{type:"text",id:"bgColor",label:d.bgColor,"default":"",setup:f(function(a){var c=a.getAttribute("bgColor");return a.getStyle("background-color")||c}),commit:function(a){w(this,a,"background-color")}}];l&&a.push({type:"button",id:"bgColorChoose","class":"colorChooser", +label:d.chooseColor,onLoad:function(){this.getElement().getParent().setStyle("vertical-align","bottom")},onClick:function(){v(this,"bgColor")}});return a}()},{type:"hbox",padding:0,widths:l?["60%","40%"]:["100%"],requiredContent:"td{border-color}",children:function(){var a=[{type:"text",id:"borderColor",label:d.borderColor,"default":"",setup:f(function(a){var c=a.getAttribute("borderColor");return a.getStyle("border-color")||c}),commit:function(a){w(this,a,"border-color")}}];l&&a.push({type:"button", +id:"borderColorChoose","class":"colorChooser",label:d.chooseColor,style:(y?"margin-right":"margin-left")+": 10px",onLoad:function(){this.getElement().getParent().setStyle("vertical-align","bottom")},onClick:function(){v(this,"borderColor")}});return a}()}],m=0,x=-1,g=[r()],q=CKEDITOR.tools.array.filter(q,function(a){var b=a.requiredContent;delete a.requiredContent;(b=h.filter.check(b))&&!a.isSpacer&&m++;return b});5<m&&(g=g.concat([k(),r()]));CKEDITOR.tools.array.forEach(q,function(a){a.isSpacer|| +x++;5<m&&x>=m/2?g[2].children.push(a):g[0].children.push(a)});CKEDITOR.tools.array.forEach(g,function(a){a.isSpacer||(a=a.children,a[a.length-1].isSpacer&&a.pop())});return{title:d.title,minWidth:1===g.length?205:410,minHeight:50,contents:[{id:"info",label:d.title,accessKey:"I",elements:[{type:"hbox",widths:1===g.length?["100%"]:["40%","5%","40%"],children:g}]}],getModel:function(a){return CKEDITOR.plugins.tabletools.getSelectedCells(a.getSelection())},onShow:function(){var a=this.getModel(this.getParentEditor()); +this.setupContent(a)},onOk:function(){for(var a=this._.editor.getSelection(),b=a.createBookmarks(),c=this.getParentEditor(),d=this.getModel(c),e=0;e<d.length;e++)this.commitContent(d[e]);c.forceNextSelectionCheck();a.selectBookmarks(b);c.selectionChange()},onLoad:function(){var a={};this.foreach(function(b){b.setup&&b.commit&&(b.setup=CKEDITOR.tools.override(b.setup,function(c){return function(){c.apply(this,arguments);a[b.id]=b.getValue()}}),b.commit=CKEDITOR.tools.override(b.commit,function(c){return function(){a[b.id]!== +b.getValue()&&c.apply(this,arguments)}}))})}}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/templates/dialogs/templates.css b/static/ckeditor/ckeditor/plugins/templates/dialogs/templates.css new file mode 100644 index 0000000000..bd59cbeb9c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/templates/dialogs/templates.css @@ -0,0 +1,84 @@ +/* +Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ + +.cke_tpl_list +{ + border: #dcdcdc 2px solid; + background-color: #ffffff; + overflow-y: auto; + overflow-x: hidden; + width: 100%; + height: 220px; +} + +.cke_tpl_item +{ + margin: 5px; + padding: 7px; + border: #eeeeee 1px solid; + *width: 88%; +} + +.cke_tpl_preview +{ + border-collapse: separate; + text-indent:0; + width: 100%; +} +.cke_tpl_preview td +{ + padding: 2px; + vertical-align: middle; +} +.cke_tpl_preview .cke_tpl_preview_img +{ + width: 100px; +} +.cke_tpl_preview span +{ + white-space: normal; +} + +.cke_tpl_title +{ + font-weight: bold; +} + +.cke_tpl_list a:hover .cke_tpl_item, +.cke_tpl_list a:focus .cke_tpl_item, +.cke_tpl_list a:active .cke_tpl_item +{ + border: #ff9933 1px solid; + background-color: #fffacd; +} + +.cke_tpl_list a:hover *, +.cke_tpl_list a:focus *, +.cke_tpl_list a:active * +{ + cursor: pointer; +} + +/* IE Quirks contextual selectors children will not get :hover transition until + the hover style of the link itself contains certain CSS declarations. */ +.cke_browser_quirks .cke_tpl_list a:active, +.cke_browser_quirks .cke_tpl_list a:hover, +.cke_browser_quirks .cke_tpl_list a:focus +{ + background-position: 0 0; +} + +.cke_hc .cke_tpl_list a:hover .cke_tpl_item, +.cke_hc .cke_tpl_list a:focus .cke_tpl_item, +.cke_hc .cke_tpl_list a:active .cke_tpl_item +{ + border-width: 3px; +} + +.cke_tpl_empty, .cke_tpl_loading +{ + text-align: center; + padding: 5px; +} diff --git a/static/ckeditor/ckeditor/plugins/templates/dialogs/templates.js b/static/ckeditor/ckeditor/plugins/templates/dialogs/templates.js new file mode 100644 index 0000000000..428a2b403f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/templates/dialogs/templates.js @@ -0,0 +1,11 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +(function(){CKEDITOR.dialog.add("templates",function(c){function r(a,b){var n=CKEDITOR.dom.element.createFromHtml('\x3ca href\x3d"javascript:void(0)" tabIndex\x3d"-1" role\x3d"option" \x3e\x3cdiv class\x3d"cke_tpl_item"\x3e\x3c/div\x3e\x3c/a\x3e'),d='\x3ctable style\x3d"width:350px;" class\x3d"cke_tpl_preview" role\x3d"presentation"\x3e\x3ctr\x3e';a.image&&b&&(d+='\x3ctd class\x3d"cke_tpl_preview_img"\x3e\x3cimg src\x3d"'+CKEDITOR.getUrl(b+a.image)+'"'+(CKEDITOR.env.ie6Compat?' onload\x3d"this.width\x3dthis.width"': +"")+' alt\x3d"" title\x3d""\x3e\x3c/td\x3e');d+='\x3ctd style\x3d"white-space:normal;"\x3e\x3cspan class\x3d"cke_tpl_title"\x3e'+a.title+"\x3c/span\x3e\x3cbr/\x3e";a.description&&(d+="\x3cspan\x3e"+a.description+"\x3c/span\x3e");d+="\x3c/td\x3e\x3c/tr\x3e\x3c/table\x3e";n.getFirst().setHtml(d);n.on("click",function(){if(a.htmlFile){var b=CKEDITOR.dialog.getCurrent();b.setState(CKEDITOR.DIALOG_STATE_BUSY);CKEDITOR.ajax.loadText(a.htmlFile,function(a){l(a);b.setState(CKEDITOR.DIALOG_STATE_IDLE)})}else l(a.html)}); +return n}function l(a){var b=CKEDITOR.dialog.getCurrent();b.getValueOf("selectTpl","chkInsertOpt")?(c.fire("saveSnapshot"),c.setData(a,function(){b.hide();var a=c.createRange();a.moveToElementEditStart(c.editable());a.select();setTimeout(function(){c.fire("saveSnapshot")},0)})):(c.insertHtml(a),b.hide())}function k(a){var b=a.data.getTarget(),c=g.equals(b);if(c||g.contains(b)){var d=a.data.getKeystroke(),f=g.getElementsByTag("a"),e;if(f){if(c)e=f.getItem(0);else switch(d){case 40:e=b.getNext();break; +case 38:e=b.getPrevious();break;case 13:case 32:b.fire("click")}e&&(e.focus(),a.data.preventDefault())}}}var h=CKEDITOR.plugins.get("templates");CKEDITOR.document.appendStyleSheet(CKEDITOR.getUrl(h.path+"dialogs/templates.css"));var g,h="cke_tpl_list_label_"+CKEDITOR.tools.getNextNumber(),f=c.lang.templates,p=c.config;return{title:c.lang.templates.title,minWidth:CKEDITOR.env.ie?440:400,minHeight:340,contents:[{id:"selectTpl",label:f.title,elements:[{type:"vbox",padding:5,children:[{id:"chkInsertOpt", +type:"checkbox",label:f.insertOption,"default":p.templates_replaceContent},{id:"selectTplText",type:"html",html:"\x3cspan\x3e"+f.selectPromptMsg+"\x3c/span\x3e"},{id:"templatesList",type:"html",focus:!0,html:'\x3cdiv class\x3d"cke_tpl_list" tabIndex\x3d"-1" role\x3d"listbox" aria-labelledby\x3d"'+h+'"\x3e\x3cdiv class\x3d"cke_tpl_loading"\x3e\x3cspan\x3e\x3c/span\x3e\x3c/div\x3e\x3c/div\x3e\x3cspan class\x3d"cke_voice_label" id\x3d"'+h+'"\x3e'+f.options+"\x3c/span\x3e"}]}]}],buttons:[CKEDITOR.dialog.cancelButton], +onShow:function(){var a=this.getContentElement("selectTpl","templatesList");g=a.getElement();CKEDITOR.loadTemplates(p.templates_files,function(){var b=(p.templates||"default").split(",");if(b.length){var c=g;c.setHtml("");for(var d=0,h=b.length;d<h;d++)for(var e=CKEDITOR.getTemplates(b[d]),l=e.imagesPath,e=e.templates,k=e.length,m=0;m<k;m++){var q=r(e[m],l);q.setAttribute("aria-posinset",m+1);q.setAttribute("aria-setsize",k);c.append(q)}a.focus()}else g.setHtml('\x3cdiv class\x3d"cke_tpl_empty"\x3e\x3cspan\x3e'+ +f.emptyListMsg+"\x3c/span\x3e\x3c/div\x3e")});this._.element.on("keydown",k)},onHide:function(){this._.element.removeListener("keydown",k)}}})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/templates/templatedefinition.js b/static/ckeditor/ckeditor/plugins/templates/templatedefinition.js new file mode 100644 index 0000000000..0239ad155b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/templates/templatedefinition.js @@ -0,0 +1,4 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ diff --git a/static/ckeditor/ckeditor/plugins/templates/templates/default.js b/static/ckeditor/ckeditor/plugins/templates/templates/default.js new file mode 100644 index 0000000000..edbb251b98 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/templates/templates/default.js @@ -0,0 +1,7 @@ +/* + Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +CKEDITOR.addTemplates("default",{imagesPath:CKEDITOR.getUrl(CKEDITOR.plugins.getPath("templates")+"templates/images/"),templates:[{title:"Image and Title",image:"template1.gif",description:"One main image with a title and text that surround the image.",html:'\x3ch3\x3e\x3cimg src\x3d" " alt\x3d"" style\x3d"margin-right: 10px" height\x3d"100" width\x3d"100" align\x3d"left" /\x3eType the title here\x3c/h3\x3e\x3cp\x3eType the text here\x3c/p\x3e'},{title:"Strange Template",image:"template2.gif",description:"A template that defines two columns, each one with a title, and some text.", +html:'\x3ctable cellspacing\x3d"0" cellpadding\x3d"0" style\x3d"width:100%" border\x3d"0"\x3e\x3ctr\x3e\x3ctd style\x3d"width:50%"\x3e\x3ch3\x3eTitle 1\x3c/h3\x3e\x3c/td\x3e\x3ctd\x3e\x3c/td\x3e\x3ctd style\x3d"width:50%"\x3e\x3ch3\x3eTitle 2\x3c/h3\x3e\x3c/td\x3e\x3c/tr\x3e\x3ctr\x3e\x3ctd\x3eText 1\x3c/td\x3e\x3ctd\x3e\x3c/td\x3e\x3ctd\x3eText 2\x3c/td\x3e\x3c/tr\x3e\x3c/table\x3e\x3cp\x3eMore text goes here.\x3c/p\x3e'},{title:"Text and Table",image:"template3.gif",description:"A title with some text and a table.", +html:'\x3cdiv style\x3d"width: 80%"\x3e\x3ch3\x3eTitle goes here\x3c/h3\x3e\x3ctable style\x3d"width:150px;float: right" cellspacing\x3d"0" cellpadding\x3d"0" border\x3d"1"\x3e\x3ccaption style\x3d"border:solid 1px black"\x3e\x3cstrong\x3eTable title\x3c/strong\x3e\x3c/caption\x3e\x3ctr\x3e\x3ctd\x3e\x26nbsp;\x3c/td\x3e\x3ctd\x3e\x26nbsp;\x3c/td\x3e\x3ctd\x3e\x26nbsp;\x3c/td\x3e\x3c/tr\x3e\x3ctr\x3e\x3ctd\x3e\x26nbsp;\x3c/td\x3e\x3ctd\x3e\x26nbsp;\x3c/td\x3e\x3ctd\x3e\x26nbsp;\x3c/td\x3e\x3c/tr\x3e\x3ctr\x3e\x3ctd\x3e\x26nbsp;\x3c/td\x3e\x3ctd\x3e\x26nbsp;\x3c/td\x3e\x3ctd\x3e\x26nbsp;\x3c/td\x3e\x3c/tr\x3e\x3c/table\x3e\x3cp\x3eType the text here\x3c/p\x3e\x3c/div\x3e'}]}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/templates/templates/images/template1.gif b/static/ckeditor/ckeditor/plugins/templates/templates/images/template1.gif new file mode 100644 index 0000000000..428c5a6a88 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/templates/templates/images/template1.gif differ diff --git a/static/ckeditor/ckeditor/plugins/templates/templates/images/template2.gif b/static/ckeditor/ckeditor/plugins/templates/templates/images/template2.gif new file mode 100644 index 0000000000..c494efe260 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/templates/templates/images/template2.gif differ diff --git a/static/ckeditor/ckeditor/plugins/templates/templates/images/template3.gif b/static/ckeditor/ckeditor/plugins/templates/templates/images/template3.gif new file mode 100644 index 0000000000..d5a40cefad Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/templates/templates/images/template3.gif differ diff --git a/static/ckeditor/ckeditor/plugins/uicolor/dialogs/uicolor.js b/static/ckeditor/ckeditor/plugins/uicolor/dialogs/uicolor.js new file mode 100644 index 0000000000..04769693fb --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/dialogs/uicolor.js @@ -0,0 +1,9 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.dialog.add("uicolor",function(b){function f(a){/^#/.test(a)&&(a=window.YAHOO.util.Color.hex2rgb(a.substr(1)));c.setValue(a,!0);c.refresh(e)}function g(a){b.setUiColor(a);d._.contents.tab1.configBox.setValue('config.uiColor = "#'+c.get("hex")+'"')}var d,c,h=b.getUiColor(),e="cke_uicolor_picker"+CKEDITOR.tools.getNextNumber();return{title:b.lang.uicolor.title,minWidth:360,minHeight:320,onLoad:function(){d=this;this.setupContent();CKEDITOR.env.ie7Compat&&d.parts.contents.setStyle("overflow", +"hidden")},contents:[{id:"tab1",label:"",title:"",expand:!0,padding:0,elements:[{id:"yuiColorPicker",type:"html",html:"<div id='"+e+"' class='cke_uicolor_picker' style='width: 360px; height: 200px; position: relative;'></div>",onLoad:function(){var a=CKEDITOR.getUrl("plugins/uicolor/yui/");this.picker=c=new window.YAHOO.widget.ColorPicker(e,{showhsvcontrols:!0,showhexcontrols:!0,images:{PICKER_THUMB:a+"assets/picker_thumb.png",HUE_THUMB:a+"assets/hue_thumb.png"}});h&&f(h);c.on("rgbChange",function(){d._.contents.tab1.predefined.setValue(""); +g("#"+c.get("hex"))});for(var a=new CKEDITOR.dom.nodeList(c.getElementsByTagName("input")),b=0;b<a.count();b++)a.getItem(b).addClass("cke_dialog_ui_input_text")}},{id:"tab1",type:"vbox",children:[{type:"hbox",children:[{id:"predefined",type:"select","default":"",label:b.lang.uicolor.predefined,items:[[""],["Light blue","#9AB8F3"],["Sand","#D2B48C"],["Metallic","#949AAA"],["Purple","#C2A3C7"],["Olive","#A2C980"],["Happy green","#9BD446"],["Jezebel Blue","#14B8C4"],["Burn","#FF893A"],["Easy red","#FF6969"], +["Pisces 3","#48B4F2"],["Aquarius 5","#487ED4"],["Absinthe","#A8CF76"],["Scrambled Egg","#C7A622"],["Hello monday","#8E8D80"],["Lovely sunshine","#F1E8B1"],["Recycled air","#B3C593"],["Down","#BCBCA4"],["Mark Twain","#CFE91D"],["Specks of dust","#D1B596"],["Lollipop","#F6CE23"]],onChange:function(){var a=this.getValue();a?(f(a),g(a),CKEDITOR.document.getById("predefinedPreview").setStyle("background",a)):CKEDITOR.document.getById("predefinedPreview").setStyle("background","")},onShow:function(){var a= +b.getUiColor();a&&this.setValue(a)}},{id:"predefinedPreview",type:"html",html:'<div id="cke_uicolor_preview" style="border: 1px solid black; padding: 3px; width: 30px;"><div id="predefinedPreview" style="width: 30px; height: 30px;"> </div></div>'}]},{id:"configBox",type:"text",label:b.lang.uicolor.config,onShow:function(){var a=b.getUiColor();a&&this.setValue('config.uiColor = "'+a+'"')}}]}]}],buttons:[CKEDITOR.dialog.okButton]}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/icons/hidpi/uicolor.png b/static/ckeditor/ckeditor/plugins/uicolor/icons/hidpi/uicolor.png new file mode 100644 index 0000000000..e6efa4a30f Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/uicolor/icons/hidpi/uicolor.png differ diff --git a/static/ckeditor/ckeditor/plugins/uicolor/icons/uicolor.png b/static/ckeditor/ckeditor/plugins/uicolor/icons/uicolor.png new file mode 100644 index 0000000000..d5739dffea Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/uicolor/icons/uicolor.png differ diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/_translationstatus.txt b/static/ckeditor/ckeditor/plugins/uicolor/lang/_translationstatus.txt new file mode 100644 index 0000000000..969fe27af6 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/_translationstatus.txt @@ -0,0 +1,27 @@ +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license + +bg.js Found: 4 Missing: 0 +cs.js Found: 4 Missing: 0 +cy.js Found: 4 Missing: 0 +da.js Found: 4 Missing: 0 +de.js Found: 4 Missing: 0 +el.js Found: 4 Missing: 0 +eo.js Found: 4 Missing: 0 +et.js Found: 4 Missing: 0 +fa.js Found: 4 Missing: 0 +fi.js Found: 4 Missing: 0 +fr.js Found: 4 Missing: 0 +he.js Found: 4 Missing: 0 +hr.js Found: 4 Missing: 0 +it.js Found: 4 Missing: 0 +mk.js Found: 4 Missing: 0 +nb.js Found: 4 Missing: 0 +nl.js Found: 4 Missing: 0 +no.js Found: 4 Missing: 0 +pl.js Found: 4 Missing: 0 +tr.js Found: 4 Missing: 0 +ug.js Found: 4 Missing: 0 +uk.js Found: 4 Missing: 0 +vi.js Found: 4 Missing: 0 +zh-cn.js Found: 4 Missing: 0 diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/af.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/af.js new file mode 100644 index 0000000000..6b67d5059c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/af.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","af",{title:"UI kleur keuse",preview:"Voorskou",config:"Voeg hierdie in jou config.js lêr in",predefined:"Voordefinieerte kleur keuses"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/ar.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/ar.js new file mode 100644 index 0000000000..56143cef78 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/ar.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","ar",{title:"منتقي الألوان",preview:"معاينة مباشرة",config:"قص السطر إلى الملف config.js",predefined:"مجموعات ألوان معرفة مسبقا"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/bg.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/bg.js new file mode 100644 index 0000000000..d4b991ea9c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/bg.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","bg",{title:"ПИ избор на цвят",preview:"Преглед",config:"Вмъкнете този низ във Вашия config.js fajl",predefined:"Предефинирани цветови палитри"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/ca.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/ca.js new file mode 100644 index 0000000000..d1a03f4fc4 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/ca.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","ca",{title:"UI Color Picker",preview:"Vista prèvia",config:"Enganxa aquest text dins el fitxer config.js",predefined:"Conjunts de colors predefinits"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/cs.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/cs.js new file mode 100644 index 0000000000..6a97d7869c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/cs.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","cs",{title:"Výběr barvy rozhraní",preview:"Živý náhled",config:"Vložte tento řetězec do vašeho souboru config.js",predefined:"Přednastavené sady barev"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/cy.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/cy.js new file mode 100644 index 0000000000..774335c8ea --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/cy.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","cy",{title:"Dewisydd Lliwiau'r UI",preview:"Rhagolwg Byw",config:"Gludwch y llinyn hwn i'ch ffeil config.js",predefined:"Setiau lliw wedi'u cyn-ddiffinio"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/da.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/da.js new file mode 100644 index 0000000000..e3ce47ea1c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/da.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","da",{title:"Brugerflade på farvevælger",preview:"Vis liveeksempel",config:"Indsæt denne streng i din config.js fil",predefined:"Prædefinerede farveskemaer"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/de.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/de.js new file mode 100644 index 0000000000..7a6c2ed55e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/de.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","de",{title:"UI-Farbpipette",preview:"Live-Vorschau",config:"Fügen Sie diese Zeichenfolge in die Datei config.js ein.",predefined:"Vordefinierte Farbsätze"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/el.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/el.js new file mode 100644 index 0000000000..7857a9b901 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/el.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","el",{title:"Διεπαφή Επιλογής Χρωμάτων",preview:"Ζωντανή Προεπισκόπηση",config:"Επικολλήστε αυτό το κείμενο στο αρχείο config.js",predefined:"Προκαθορισμένα σύνολα χρωμάτων"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/en-gb.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/en-gb.js new file mode 100644 index 0000000000..b486d3c820 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/en-gb.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","en-gb",{title:"UI Colour Picker",preview:"Live preview",config:"Paste this string into your config.js file",predefined:"Predefined colour sets"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/en.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/en.js new file mode 100644 index 0000000000..ce67f53d26 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/en.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","en",{title:"UI Color Picker",preview:"Live preview",config:"Paste this string into your config.js file",predefined:"Predefined color sets"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/eo.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/eo.js new file mode 100644 index 0000000000..68398e57c8 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/eo.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","eo",{title:"UI Kolorselektilo",preview:"Vidigi la aspekton",config:"Gluu tiun signoĉenon en vian dosieron config.js",predefined:"Antaŭdifinita koloraro"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/es.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/es.js new file mode 100644 index 0000000000..cc653637d0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/es.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","es",{title:"Recolector de Color de Interfaz de Usuario",preview:"Vista previa en vivo",config:"Pega esta cadena en tu archivo config.js",predefined:"Conjuntos predefinidos de colores"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/et.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/et.js new file mode 100644 index 0000000000..52c608f890 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/et.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","et",{title:"Värvivalija kasutajaliides",preview:"Automaatne eelvaade",config:"Aseta see sõne oma config.js faili.",predefined:"Eelmääratud värvikomplektid"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/eu.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/eu.js new file mode 100644 index 0000000000..87c412f9c9 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/eu.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","eu",{title:"EI Kolore Hautatzailea",preview:"Zuzeneko aurreikuspena",config:"Itsatsi karaktere kate hau zure config.js fitxategian.",predefined:"Aurredefinitutako kolore multzoak"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/fa.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/fa.js new file mode 100644 index 0000000000..f853ef91da --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/fa.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","fa",{title:"انتخاب رنگ رابط کاربری",preview:"پیش‌نمایش زنده",config:"این رشته را در پروندهٔ config.js خود رونوشت کنید.",predefined:"مجموعه رنگ از پیش تعریف شده"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/fi.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/fi.js new file mode 100644 index 0000000000..c58d54c6a3 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/fi.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","fi",{title:"Käyttöliittymän väripaletti",preview:"Esikatsele heti",config:"Liitä tämä merkkijono config.js tiedostoosi",predefined:"Esimääritellyt värijoukot"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/fr-ca.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/fr-ca.js new file mode 100644 index 0000000000..bd49fa4dbc --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/fr-ca.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","fr-ca",{title:"Sélecteur de couleur",preview:"Aperçu",config:"Insérez cette ligne dans votre fichier config.js",predefined:"Ensemble de couleur prédéfinies"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/fr.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/fr.js new file mode 100644 index 0000000000..3bd42d05e4 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/fr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","fr",{title:"UI Sélecteur de couleur",preview:"Aperçu",config:"Collez cette chaîne de caractères dans votre fichier config.js",predefined:"Palettes de couleurs prédéfinies"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/gl.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/gl.js new file mode 100644 index 0000000000..97e33ccd8a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/gl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","gl",{title:"Recolledor de cor da interface de usuario",preview:"Vista previa en vivo",config:"Pegue esta cadea no seu ficheiro config.js",predefined:"Conxuntos predefinidos de cores"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/he.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/he.js new file mode 100644 index 0000000000..0f2325e4d6 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/he.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","he",{title:"בחירת צבע ממשק משתמש",preview:"תצוגה מקדימה",config:"הדבק את הטקסט הבא לתוך הקובץ config.js",predefined:"קבוצות צבעים מוגדרות מראש"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/hr.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/hr.js new file mode 100644 index 0000000000..7bf04707ff --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/hr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","hr",{title:"UI odabir boja",preview:"Pregled uživo",config:"Zalijepite ovaj tekst u Vašu config.js datoteku.",predefined:"Već postavljeni setovi boja"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/hu.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/hu.js new file mode 100644 index 0000000000..a58bb431b7 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/hu.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","hu",{title:"UI Színválasztó",preview:"Élő előnézet",config:"Illessze be ezt a szöveget a config.js fájlba",predefined:"Előre definiált színbeállítások"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/id.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/id.js new file mode 100644 index 0000000000..d64862dc90 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/id.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","id",{title:"Pengambil Warna UI",preview:"Pratinjau",config:"Tempel string ini ke arsip config.js anda.",predefined:"Set warna belum terdefinisi."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/it.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/it.js new file mode 100644 index 0000000000..37752d4e0f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/it.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","it",{title:"Selettore Colore UI",preview:"Anteprima Live",config:"Incolla questa stringa nel tuo file config.js",predefined:"Set di colori predefiniti"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/ja.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/ja.js new file mode 100644 index 0000000000..e745cb066a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/ja.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","ja",{title:"UIカラーピッカー",preview:"ライブプレビュー",config:"この文字列を config.js ファイルへ貼り付け",predefined:"既定カラーセット"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/km.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/km.js new file mode 100644 index 0000000000..379804d5d8 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/km.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","km",{title:"ប្រដាប់​រើស​ពណ៌",preview:"មើល​ជាមុន​ផ្ទាល់",config:"បិទ​ភ្ជាប់​ខ្សែ​អក្សរ​នេះ​ទៅ​ក្នុង​ឯកសារ config.js របស់​អ្នក",predefined:"ឈុត​ពណ៌​កំណត់​រួច​ស្រេច"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/ko.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/ko.js new file mode 100644 index 0000000000..b2ed40865e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/ko.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","ko",{title:"UI 색상 선택기",preview:"미리보기",config:"이 문자열을 config.js 에 붙여넣으세요",predefined:"미리 정의된 색상"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/ku.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/ku.js new file mode 100644 index 0000000000..fd9fa9287c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/ku.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","ku",{title:"هەڵگری ڕەنگ بۆ ڕووکاری بەکارهێنەر",preview:"پێشبینین بە زیندوویی",config:"ئەم دەقانە بلکێنە بە پەڕگەی config.js-fil",predefined:"کۆمەڵە ڕەنگە دیاریکراوەکانی پێشوو"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/lv.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/lv.js new file mode 100644 index 0000000000..3984314403 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/lv.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","lv",{title:"UI krāsas izvēle",preview:"Priekšskatījums",config:"Ielīmējiet šo rindu jūsu config.js failā",predefined:"Predefinēti krāsu komplekti"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/mk.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/mk.js new file mode 100644 index 0000000000..e7bdee4d5a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/mk.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","mk",{title:"Палета со бои",preview:"Преглед",config:"Залепи го овој текст во config.js датотеката",predefined:"Предефинирани множества на бои"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/nb.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/nb.js new file mode 100644 index 0000000000..5b82456e81 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/nb.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","nb",{title:"Fargevelger for brukergrensesnitt",preview:"Forhåndsvisning i sanntid",config:"Lim inn følgende tekst i din config.js-fil",predefined:"Forhåndsdefinerte fargesett"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/nl.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/nl.js new file mode 100644 index 0000000000..2e7280af5f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/nl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","nl",{title:"UI Kleurenkiezer",preview:"Live voorbeeld",config:"Plak deze tekst in jouw config.js bestand",predefined:"Voorgedefinieerde kleurensets"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/no.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/no.js new file mode 100644 index 0000000000..7f91bd1c58 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/no.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","no",{title:"Fargevelger for brukergrensesnitt",preview:"Forhåndsvisning i sanntid",config:"Lim inn følgende tekst i din config.js-fil",predefined:"Forhåndsdefinerte fargesett"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/pl.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/pl.js new file mode 100644 index 0000000000..8ba0df5206 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/pl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","pl",{title:"Wybór koloru interfejsu",preview:"Podgląd na żywo",config:"Wklej poniższy łańcuch znaków do pliku config.js:",predefined:"Predefiniowane zestawy kolorów"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/pt-br.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/pt-br.js new file mode 100644 index 0000000000..594f7f9612 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/pt-br.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","pt-br",{title:"Paleta de Cores",preview:"Visualização ao vivo",config:"Cole o texto no seu arquivo config.js",predefined:"Conjuntos de cores predefinidos"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/pt.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/pt.js new file mode 100644 index 0000000000..a5c3752208 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/pt.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","pt",{title:"Seleção de Cor da IU",preview:"Pré-visualização ao vivo ",config:"Colar este item no seu ficheiro config.js",predefined:"Conjuntos de cor predefinidos"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/ru.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/ru.js new file mode 100644 index 0000000000..a3a9248f5e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/ru.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","ru",{title:"Выбор цвета интерфейса",preview:"Предпросмотр в реальном времени",config:"Вставьте эту строку в файл config.js",predefined:"Предопределенные цветовые схемы"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/si.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/si.js new file mode 100644 index 0000000000..aefbe8cb07 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/si.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","si",{title:"වර්ණ ",preview:"සජීව නැවත නරභීම",config:"මෙම අක්ෂර පේලිය ගෙන config.js ලිපිගොනුව මතින් තබන්න",predefined:"කලින් වෙන්කරගත් පරිදි ඇති වර්ණ"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/sk.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/sk.js new file mode 100644 index 0000000000..033b07536d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/sk.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","sk",{title:"UI výber farby",preview:"Živý náhľad",config:"Vložte tento reťazec do vášho config.js súboru",predefined:"Preddefinované sady farieb"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/sl.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/sl.js new file mode 100644 index 0000000000..d46f6d3b89 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/sl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","sl",{title:"UI Izbiralec Barve",preview:"Živi predogled",config:"Prilepite ta niz v vašo config.js datoteko",predefined:"Vnaprej določeni barvni kompleti"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/sq.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/sq.js new file mode 100644 index 0000000000..8b525d5af2 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/sq.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","sq",{title:"UI Mbledhës i Ngjyrave",preview:"Parapamje direkte",config:"Hidhni këtë varg në skedën tuaj config.js",predefined:"Setet e paradefinuara të ngjyrave"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/sv.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/sv.js new file mode 100644 index 0000000000..b3ad9d4c8c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/sv.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","sv",{title:"UI Färgväljare",preview:"Live förhandsgranskning",config:"Klistra in den här strängen i din config.js-fil",predefined:"Fördefinierade färguppsättningar"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/tr.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/tr.js new file mode 100644 index 0000000000..9b529be992 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/tr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","tr",{title:"UI Renk Seçici",preview:"Canlı ön izleme",config:"Bu yazıyı config.js dosyasının içine yapıştırın",predefined:"Önceden tanımlı renk seti"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/tt.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/tt.js new file mode 100644 index 0000000000..acca2c58f5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/tt.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","tt",{title:"Интерфейс төсләрен сайлау",preview:"Тере карап алу",config:"Бу юлны config.js файлына языгыз",predefined:"Баштан билгеләнгән төсләр җыелмасы"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/ug.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/ug.js new file mode 100644 index 0000000000..12eaba3a24 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/ug.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","ug",{title:"ئىشلەتكۈچى ئارايۈزى رەڭ تاللىغۇچ",preview:"شۇئان ئالدىن كۆزىتىش",config:"بۇ ھەرپ تىزىقىنى config.js ھۆججەتكە چاپلايدۇ",predefined:"ئالدىن بەلگىلەنگەن رەڭلەر"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/uk.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/uk.js new file mode 100644 index 0000000000..f3f7d5844a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/uk.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","uk",{title:"Color Picker Інтерфейс",preview:"Перегляд наживо",config:"Вставте цей рядок у файл config.js",predefined:"Стандартний набір кольорів"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/vi.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/vi.js new file mode 100644 index 0000000000..aa961cde14 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/vi.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","vi",{title:"Giao diện người dùng Color Picker",preview:"Xem trước trực tiếp",config:"Dán chuỗi này vào tập tin config.js của bạn",predefined:"Tập màu định nghĩa sẵn"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/zh-cn.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/zh-cn.js new file mode 100644 index 0000000000..5e9c98b5ba --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/zh-cn.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","zh-cn",{title:"用户界面颜色选择器",preview:"即时预览",config:"粘贴此字符串到您的 config.js 文件",predefined:"预定义颜色集"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/lang/zh.js b/static/ckeditor/ckeditor/plugins/uicolor/lang/zh.js new file mode 100644 index 0000000000..64e6774a66 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/lang/zh.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uicolor","zh",{title:"UI 色彩選擇器",preview:"即時預覽",config:"請將此段字串複製到您的 config.js 檔案中。",predefined:"設定預先定義的色彩"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/plugin.js b/static/ckeditor/ckeditor/plugins/uicolor/plugin.js new file mode 100644 index 0000000000..0eb3920ca7 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/plugin.js @@ -0,0 +1,6 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.add("uicolor",{requires:"dialog",lang:"af,ar,bg,ca,cs,cy,da,de,el,en,en-gb,eo,es,et,eu,fa,fi,fr,fr-ca,gl,he,hr,hu,id,it,ja,km,ko,ku,lv,mk,nb,nl,no,pl,pt,pt-br,ru,si,sk,sl,sq,sv,tr,tt,ug,uk,vi,zh,zh-cn",icons:"uicolor",hidpi:!0,init:function(a){CKEDITOR.env.ie6Compat||(a.addCommand("uicolor",new CKEDITOR.dialogCommand("uicolor")),a.ui.addButton&&a.ui.addButton("UIColor",{label:a.lang.uicolor.title,command:"uicolor",toolbar:"tools,1"}),CKEDITOR.dialog.add("uicolor",this.path+"dialogs/uicolor.js"), +CKEDITOR.scriptLoader.load(CKEDITOR.getUrl("plugins/uicolor/yui/yui.js")),CKEDITOR.document.appendStyleSheet(CKEDITOR.getUrl("plugins/uicolor/yui/assets/yui.css")))}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png b/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png new file mode 100644 index 0000000000..d9bcdeb5c4 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png differ diff --git a/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png b/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png new file mode 100644 index 0000000000..14d5db4862 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png differ diff --git a/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png b/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png new file mode 100644 index 0000000000..f8d91932b3 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png differ diff --git a/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png b/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png new file mode 100644 index 0000000000..78445a2fe0 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png differ diff --git a/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/yui.css b/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/yui.css new file mode 100644 index 0000000000..2e10cb6939 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/yui.css @@ -0,0 +1,7 @@ +/* +Copyright (c) 2009, Yahoo! Inc. All rights reserved. +Code licensed under the BSD License: +http://developer.yahoo.net/yui/license.txt +version: 2.7.0 +*/ +.cke_uicolor_picker .yui-picker-panel{background:#e3e3e3;border-color:#888;}.cke_uicolor_picker .yui-picker-panel .hd{background-color:#ccc;font-size:100%;line-height:100%;border:1px solid #e3e3e3;font-weight:bold;overflow:hidden;padding:6px;color:#000;}.cke_uicolor_picker .yui-picker-panel .bd{background:#e8e8e8;margin:1px;height:200px;}.cke_uicolor_picker .yui-picker-panel .ft{background:#e8e8e8;margin:1px;padding:1px;}.cke_uicolor_picker .yui-picker{position:relative;}.cke_uicolor_picker .yui-picker-hue-thumb{cursor:default;width:18px;height:18px;top:-8px;left:-2px;z-index:9;position:absolute;}.cke_uicolor_picker .yui-picker-hue-bg{-moz-outline:none;outline:0 none;position:absolute;left:200px;height:183px;width:14px;background:url(hue_bg.png) no-repeat;top:4px;}.cke_uicolor_picker .yui-picker-bg{-moz-outline:none;outline:0 none;position:absolute;top:4px;left:4px;height:182px;width:182px;background-color:#F00;background-image:url(picker_mask.png);}*html .cke_uicolor_picker .yui-picker-bg{background-image:none;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='picker_mask.png',sizingMethod='scale');}.cke_uicolor_picker .yui-picker-mask{position:absolute;z-index:1;top:0;left:0;}.cke_uicolor_picker .yui-picker-thumb{cursor:default;width:11px;height:11px;z-index:9;position:absolute;top:-4px;left:-4px;}.cke_uicolor_picker .yui-picker-swatch{position:absolute;left:240px;top:4px;height:60px;width:55px;border:1px solid #888;}.cke_uicolor_picker .yui-picker-websafe-swatch{position:absolute;left:304px;top:4px;height:24px;width:24px;border:1px solid #888;}.cke_uicolor_picker .yui-picker-controls{position:absolute;top:72px;left:226px;font:1em monospace;}.cke_uicolor_picker .yui-picker-controls .hd{background:transparent;border-width:0!important;}.cke_uicolor_picker .yui-picker-controls .bd{height:100px;border-width:0!important;}.cke_uicolor_picker .yui-picker-controls ul{float:left;padding:0 2px 0 0;margin:0;}.cke_uicolor_picker .yui-picker-controls li{padding:2px;list-style:none;margin:0;}.cke_uicolor_picker .yui-picker-controls input{font-size:.85em;width:2.4em;}.cke_uicolor_picker .yui-picker-hex-controls{clear:both;padding:2px;}.cke_uicolor_picker .yui-picker-hex-controls input{width:4.6em;}.cke_uicolor_picker .yui-picker-controls a{font:1em arial,helvetica,clean,sans-serif;display:block;*display:inline-block;padding:0;color:#000;} diff --git a/static/ckeditor/ckeditor/plugins/uicolor/yui/yui.js b/static/ckeditor/ckeditor/plugins/uicolor/yui/yui.js new file mode 100644 index 0000000000..cb187ddc2b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uicolor/yui/yui.js @@ -0,0 +1,225 @@ +if("undefined"==typeof YAHOO||!YAHOO)var YAHOO={};YAHOO.namespace=function(){var c=arguments,e=null,b,d,a;for(b=0;b<c.length;b+=1){a=(""+c[b]).split(".");e=YAHOO;for(d="YAHOO"==a[0]?1:0;d<a.length;d+=1)e[a[d]]=e[a[d]]||{},e=e[a[d]]}return e};YAHOO.log=function(c,e,b){var d=YAHOO.widget.Logger;return d&&d.log?d.log(c,e,b):!1}; +YAHOO.register=function(c,e,b){var d=YAHOO.env.modules,a,f,g;d[c]||(d[c]={versions:[],builds:[]});d=d[c];a=b.version;b=b.build;f=YAHOO.env.listeners;d.name=c;d.version=a;d.build=b;d.versions.push(a);d.builds.push(b);d.mainClass=e;for(g=0;g<f.length;g+=1)f[g](d);e?(e.VERSION=a,e.BUILD=b):YAHOO.log("mainClass is undefined for module "+c,"warn")};YAHOO.env=YAHOO.env||{modules:[],listeners:[]};YAHOO.env.getVersion=function(c){return YAHOO.env.modules[c]||null}; +YAHOO.env.ua=function(){var c={ie:0,opera:0,gecko:0,webkit:0,mobile:null,air:0,caja:0},e=navigator.userAgent,b;/KHTML/.test(e)&&(c.webkit=1);if((b=e.match(/AppleWebKit\/([^\s]*)/))&&b[1]){c.webkit=parseFloat(b[1]);if(/ Mobile\//.test(e))c.mobile="Apple";else if(b=e.match(/NokiaN[^\/]*/))c.mobile=b[0];if(b=e.match(/AdobeAIR\/([^\s]*)/))c.air=b[0]}if(!c.webkit)if((b=e.match(/Opera[\s\/]([^\s]*)/))&&b[1]){if(c.opera=parseFloat(b[1]),b=e.match(/Opera Mini[^;]*/))c.mobile=b[0]}else if((b=e.match(/MSIE\s([^;]*)/))&& +b[1])c.ie=parseFloat(b[1]);else if(b=e.match(/Gecko\/([^\s]*)/))if(c.gecko=1,(b=e.match(/rv:([^\s\)]*)/))&&b[1])c.gecko=parseFloat(b[1]);if((b=e.match(/Caja\/([^\s]*)/))&&b[1])c.caja=parseFloat(b[1]);return c}();(function(){YAHOO.namespace("util","widget","example");if("undefined"!==typeof YAHOO_config){var c=YAHOO_config.listener,e=YAHOO.env.listeners,b=!0,d;if(c){for(d=0;d<e.length;d+=1)if(e[d]==c){b=!1;break}b&&e.push(c)}}})();YAHOO.lang=YAHOO.lang||{}; +(function(){var c=YAHOO.lang,e=Object.prototype,b=["toString","valueOf"],d={isArray:function(a){return"[object Array]"===e.toString.apply(a)},isBoolean:function(a){return"boolean"===typeof a},isFunction:function(a){return"[object Function]"===e.toString.apply(a)},isNull:function(a){return null===a},isNumber:function(a){return"number"===typeof a&&isFinite(a)},isObject:function(a){return a&&("object"===typeof a||c.isFunction(a))||!1},isString:function(a){return"string"===typeof a},isUndefined:function(a){return"undefined"=== +typeof a},_IEEnumFix:YAHOO.env.ua.ie?function(a,d){var g,h,i;for(g=0;g<b.length;g+=1)h=b[g],i=d[h],c.isFunction(i)&&i!=e[h]&&(a[h]=i)}:function(){},extend:function(a,b,d){if(!b||!a)throw Error("extend failed, please check that all dependencies are included.");var h=function(){},i;h.prototype=b.prototype;a.prototype=new h;a.prototype.constructor=a;a.superclass=b.prototype;b.prototype.constructor==e.constructor&&(b.prototype.constructor=b);if(d){for(i in d)c.hasOwnProperty(d,i)&&(a.prototype[i]=d[i]); +c._IEEnumFix(a.prototype,d)}},augmentObject:function(a,b){if(!b||!a)throw Error("Absorb failed, verify dependencies.");var d=arguments,e,i=d[2];if(i&&!0!==i)for(e=2;e<d.length;e+=1)a[d[e]]=b[d[e]];else{for(e in b)if(i||!(e in a))a[e]=b[e];c._IEEnumFix(a,b)}},augmentProto:function(a,b){if(!b||!a)throw Error("Augment failed, verify dependencies.");var d=[a.prototype,b.prototype],e;for(e=2;e<arguments.length;e+=1)d.push(arguments[e]);c.augmentObject.apply(this,d)},dump:function(a,b){var d,e,i=[];if(c.isObject(a)){if(a instanceof +Date||"nodeType"in a&&"tagName"in a)return a;if(c.isFunction(a))return"f(){...}"}else return a+"";b=c.isNumber(b)?b:3;if(c.isArray(a)){i.push("[");d=0;for(e=a.length;d<e;d+=1)c.isObject(a[d])?i.push(0<b?c.dump(a[d],b-1):"{...}"):i.push(a[d]),i.push(", ");1<i.length&&i.pop();i.push("]")}else{i.push("{");for(d in a)c.hasOwnProperty(a,d)&&(i.push(d+" => "),c.isObject(a[d])?i.push(0<b?c.dump(a[d],b-1):"{...}"):i.push(a[d]),i.push(", "));1<i.length&&i.pop();i.push("}")}return i.join("")},substitute:function(a, +b,d){for(var h,i,j,k,l,m=[],n;;){h=a.lastIndexOf("{");if(0>h)break;i=a.indexOf("}",h);if(h+1>=i)break;k=n=a.substring(h+1,i);l=null;j=k.indexOf(" ");-1<j&&(l=k.substring(j+1),k=k.substring(0,j));j=b[k];d&&(j=d(k,j,l));c.isObject(j)?c.isArray(j)?j=c.dump(j,parseInt(l,10)):(l=l||"",k=l.indexOf("dump"),-1<k&&(l=l.substring(4)),j=j.toString===e.toString||-1<k?c.dump(j,parseInt(l,10)):j.toString()):!c.isString(j)&&!c.isNumber(j)&&(j="~-"+m.length+"-~",m[m.length]=n);a=a.substring(0,h)+j+a.substring(i+ +1)}for(h=m.length-1;0<=h;h-=1)a=a.replace(RegExp("~-"+h+"-~"),"{"+m[h]+"}","g");return a},trim:function(a){try{return a.replace(/^\s+|\s+$/g,"")}catch(b){return a}},merge:function(){var a={},b=arguments,d=b.length,e;for(e=0;e<d;e+=1)c.augmentObject(a,b[e],!0);return a},later:function(a,b,d,e,i){var a=a||0,b=b||{},j=d,k=e,l;c.isString(d)&&(j=b[d]);if(!j)throw new TypeError("method undefined");c.isArray(k)||(k=[e]);d=function(){j.apply(b,k)};l=i?setInterval(d,a):setTimeout(d,a);return{interval:i,cancel:function(){this.interval? +clearInterval(l):clearTimeout(l)}}},isValue:function(a){return c.isObject(a)||c.isString(a)||c.isNumber(a)||c.isBoolean(a)}};c.hasOwnProperty=e.hasOwnProperty?function(a,b){return a&&a.hasOwnProperty(b)}:function(a,b){return!c.isUndefined(a[b])&&a.constructor.prototype[b]!==a[b]};d.augmentObject(c,d,!0);YAHOO.util.Lang=c;c.augment=c.augmentProto;YAHOO.augment=c.augmentProto;YAHOO.extend=c.extend})();YAHOO.register("yahoo",YAHOO,{version:"2.7.0",build:"1796"}); +(function(){YAHOO.env._id_counter=YAHOO.env._id_counter||0;var c=YAHOO.util,e=YAHOO.lang,b=YAHOO.env.ua,d=YAHOO.lang.trim,a={},f={},g=/^t(?:able|d|h)$/i,h=/color$/i,i=window.document,j=i.documentElement,k=b.opera,l=b.webkit,m=b.gecko,n=b.ie;c.Dom={CUSTOM_ATTRIBUTES:!j.hasAttribute?{"for":"htmlFor","class":"className"}:{htmlFor:"for",className:"class"},get:function(a){var b,d,f,e;if(a){if(a.nodeType||a.item)return a;if("string"===typeof a){b=a;a=i.getElementById(a);if(!(a&&a.id===b)&&a&&i.all){a=null; +d=i.all[b];f=0;for(e=d.length;f<e;++f)if(d[f].id===b)return d[f]}return a}a.DOM_EVENTS&&(a=a.get("element"));if("length"in a){b=[];f=0;for(e=a.length;f<e;++f)b[b.length]=c.Dom.get(a[f]);return b}return a}return null},getComputedStyle:function(a,b){if(window.getComputedStyle)return a.ownerDocument.defaultView.getComputedStyle(a,null)[b];if(a.currentStyle)return c.Dom.IE_ComputedStyle.get(a,b)},getStyle:function(a,b){return c.Dom.batch(a,c.Dom._getStyle,b)},_getStyle:function(){if(window.getComputedStyle)return function(a, +b){var b="float"===b?b="cssFloat":c.Dom._toCamel(b),d=a.style[b],f;d||(f=a.ownerDocument.defaultView.getComputedStyle(a,null))&&(d=f[b]);return d};if(j.currentStyle)return function(a,b){var d;switch(b){case "opacity":d=100;try{d=a.filters["DXImageTransform.Microsoft.Alpha"].opacity}catch(f){try{d=a.filters("alpha").opacity}catch(e){}}return d/100;case "float":b="styleFloat";default:return b=c.Dom._toCamel(b),d=a.currentStyle?a.currentStyle[b]:null,a.style[b]||d}}}(),setStyle:function(a,b,d){c.Dom.batch(a, +c.Dom._setStyle,{prop:b,val:d})},_setStyle:function(){return n?function(a,b){var d=c.Dom._toCamel(b.prop),f=b.val;if(a)switch(d){case "opacity":if(e.isString(a.style.filter)&&(a.style.filter="alpha(opacity="+100*f+")",!a.currentStyle||!a.currentStyle.hasLayout))a.style.zoom=1;break;case "float":d="styleFloat";default:a.style[d]=f}}:function(a,b){var d=c.Dom._toCamel(b.prop),f=b.val;a&&("float"==d&&(d="cssFloat"),a.style[d]=f)}}(),getXY:function(a){return c.Dom.batch(a,c.Dom._getXY)},_canPosition:function(a){return"none"!== +c.Dom._getStyle(a,"display")&&c.Dom._inDoc(a)},_getXY:function(){return i.documentElement.getBoundingClientRect?function(a){var d,f,e,g,j,h,m,k=Math.floor;f=!1;if(c.Dom._canPosition(a)){f=a.getBoundingClientRect();e=a.ownerDocument;a=c.Dom.getDocumentScrollLeft(e);d=c.Dom.getDocumentScrollTop(e);f=[k(f.left),k(f.top)];n&&8>b.ie&&(j=g=2,h=e.compatMode,m=o(e.documentElement,"borderLeftWidth"),e=o(e.documentElement,"borderTopWidth"),6===b.ie&&"BackCompat"!==h&&(j=g=0),"BackCompat"==h&&("medium"!==m&& +(g=parseInt(m,10)),"medium"!==e&&(j=parseInt(e,10))),f[0]-=g,f[1]-=j);if(d||a)f[0]+=a,f[1]+=d;f[0]=k(f[0]);f[1]=k(f[1])}return f}:function(a){var d,f,e,g=!1,j=a;if(c.Dom._canPosition(a)){g=[a.offsetLeft,a.offsetTop];d=c.Dom.getDocumentScrollLeft(a.ownerDocument);f=c.Dom.getDocumentScrollTop(a.ownerDocument);for(e=m||519<b.webkit?!0:!1;j=j.offsetParent;)g[0]+=j.offsetLeft,g[1]+=j.offsetTop,e&&(g=c.Dom._calcBorders(j,g));if("fixed"!==c.Dom._getStyle(a,"position")){for(j=a;(j=j.parentNode)&&j.tagName;)if(a= +j.scrollTop,e=j.scrollLeft,m&&"visible"!==c.Dom._getStyle(j,"overflow")&&(g=c.Dom._calcBorders(j,g)),a||e)g[0]-=e,g[1]-=a;g[0]+=d;g[1]+=f}else if(k)g[0]-=d,g[1]-=f;else if(l||m)g[0]+=d,g[1]+=f;g[0]=Math.floor(g[0]);g[1]=Math.floor(g[1])}return g}}(),getX:function(a){return c.Dom.batch(a,function(a){return c.Dom.getXY(a)[0]},c.Dom,!0)},getY:function(a){return c.Dom.batch(a,function(a){return c.Dom.getXY(a)[1]},c.Dom,!0)},setXY:function(a,b,d){c.Dom.batch(a,c.Dom._setXY,{pos:b,noRetry:d})},_setXY:function(a, +b){var d=c.Dom._getStyle(a,"position"),f=c.Dom.setStyle,e=b.pos,g=b.noRetry,j=[parseInt(c.Dom.getComputedStyle(a,"left"),10),parseInt(c.Dom.getComputedStyle(a,"top"),10)],h;"static"==d&&(d="relative",f(a,"position",d));h=c.Dom._getXY(a);if(!e||!1===h)return!1;isNaN(j[0])&&(j[0]="relative"==d?0:a.offsetLeft);isNaN(j[1])&&(j[1]="relative"==d?0:a.offsetTop);null!==e[0]&&f(a,"left",e[0]-h[0]+j[0]+"px");null!==e[1]&&f(a,"top",e[1]-h[1]+j[1]+"px");g||(d=c.Dom._getXY(a),(null!==e[0]&&d[0]!=e[0]||null!== +e[1]&&d[1]!=e[1])&&c.Dom._setXY(a,{pos:e,noRetry:!0}))},setX:function(a,b){c.Dom.setXY(a,[b,null])},setY:function(a,b){c.Dom.setXY(a,[null,b])},getRegion:function(a){return c.Dom.batch(a,function(a){var b=!1;c.Dom._canPosition(a)&&(b=c.Region.getRegion(a));return b},c.Dom,!0)},getClientWidth:function(){return c.Dom.getViewportWidth()},getClientHeight:function(){return c.Dom.getViewportHeight()},getElementsByClassName:function(a,b,d,f,g,j){a=e.trim(a);b=b||"*";d=d?c.Dom.get(d):i;if(!d)return[];for(var h= +[],b=d.getElementsByTagName(b),d=c.Dom.hasClass,m=0,k=b.length;m<k;++m)d(b[m],a)&&(h[h.length]=b[m]);f&&c.Dom.batch(h,f,g,j);return h},hasClass:function(a,b){return c.Dom.batch(a,c.Dom._hasClass,b)},_hasClass:function(a,b){var d=!1;a&&b&&(d=c.Dom.getAttribute(a,"className")||"",d=b.exec?b.test(d):b&&-1<(" "+d+" ").indexOf(" "+b+" "));return d},addClass:function(a,b){return c.Dom.batch(a,c.Dom._addClass,b)},_addClass:function(a,b){var f=!1,e;a&&b&&(e=c.Dom.getAttribute(a,"className")||"",c.Dom._hasClass(a, +b)||(c.Dom.setAttribute(a,"className",d(e+" "+b)),f=!0));return f},removeClass:function(a,b){return c.Dom.batch(a,c.Dom._removeClass,b)},_removeClass:function(a,b){var f=!1,e,g;a&&b&&(e=c.Dom.getAttribute(a,"className")||"",c.Dom.setAttribute(a,"className",e.replace(c.Dom._getClassRegex(b),"")),g=c.Dom.getAttribute(a,"className"),e!==g&&(c.Dom.setAttribute(a,"className",d(g)),f=!0,""===c.Dom.getAttribute(a,"className")&&(e=a.hasAttribute&&a.hasAttribute("class")?"class":"className",a.removeAttribute(e)))); +return f},replaceClass:function(a,b,d){return c.Dom.batch(a,c.Dom._replaceClass,{from:b,to:d})},_replaceClass:function(a,b){var f,e,g=!1;a&&b&&(f=b.from,(e=b.to)?f?f!==e&&(g=c.Dom.getAttribute(a,"className")||"",f=(" "+g.replace(c.Dom._getClassRegex(f)," "+e)).split(c.Dom._getClassRegex(e)),f.splice(1,0," "+e),c.Dom.setAttribute(a,"className",d(f.join(""))),g=!0):g=c.Dom._addClass(a,b.to):g=!1);return g},generateId:function(a,b){var b=b||"yui-gen",d=function(a){if(a&&a.id)return a.id;var d=b+YAHOO.env._id_counter++; +if(a){if(a.ownerDocument.getElementById(d))return c.Dom.generateId(a,d+b);a.id=d}return d};return c.Dom.batch(a,d,c.Dom,!0)||d.apply(c.Dom,arguments)},isAncestor:function(a,b){var a=c.Dom.get(a),b=c.Dom.get(b),d=!1;a&&b&&(a.nodeType&&b.nodeType)&&(a.contains&&a!==b?d=a.contains(b):a.compareDocumentPosition&&(d=!!(a.compareDocumentPosition(b)&16)));return d},inDocument:function(a,b){return c.Dom._inDoc(c.Dom.get(a),b)},_inDoc:function(a,b){var d=!1;a&&a.tagName&&(b=b||a.ownerDocument,d=c.Dom.isAncestor(b.documentElement, +a));return d},getElementsBy:function(a,b,d,f,e,g,j){b=b||"*";d=d?c.Dom.get(d):i;if(!d)return[];for(var h=[],b=d.getElementsByTagName(b),d=0,m=b.length;d<m;++d)if(a(b[d]))if(j){h=b[d];break}else h[h.length]=b[d];f&&c.Dom.batch(h,f,e,g);return h},getElementBy:function(a,b,d){return c.Dom.getElementsBy(a,b,d,null,null,null,!0)},batch:function(a,b,d,f){var e=[],f=f?d:window;if((a=a&&(a.tagName||a.item)?a:c.Dom.get(a))&&b){if(a.tagName||void 0===a.length)return b.call(f,a,d);for(var g=0;g<a.length;++g)e[e.length]= +b.call(f,a[g],d)}else return!1;return e},getDocumentHeight:function(){return Math.max("CSS1Compat"!=i.compatMode||l?i.body.scrollHeight:j.scrollHeight,c.Dom.getViewportHeight())},getDocumentWidth:function(){return Math.max("CSS1Compat"!=i.compatMode||l?i.body.scrollWidth:j.scrollWidth,c.Dom.getViewportWidth())},getViewportHeight:function(){var a=self.innerHeight,b=i.compatMode;if((b||n)&&!k)a="CSS1Compat"==b?j.clientHeight:i.body.clientHeight;return a},getViewportWidth:function(){var a=self.innerWidth, +b=i.compatMode;if(b||n)a="CSS1Compat"==b?j.clientWidth:i.body.clientWidth;return a},getAncestorBy:function(a,b){for(;a=a.parentNode;)if(c.Dom._testElement(a,b))return a;return null},getAncestorByClassName:function(a,b){a=c.Dom.get(a);return!a?null:c.Dom.getAncestorBy(a,function(a){return c.Dom.hasClass(a,b)})},getAncestorByTagName:function(a,b){a=c.Dom.get(a);return!a?null:c.Dom.getAncestorBy(a,function(a){return a.tagName&&a.tagName.toUpperCase()==b.toUpperCase()})},getPreviousSiblingBy:function(a, +b){for(;a;)if(a=a.previousSibling,c.Dom._testElement(a,b))return a;return null},getPreviousSibling:function(a){a=c.Dom.get(a);return!a?null:c.Dom.getPreviousSiblingBy(a)},getNextSiblingBy:function(a,b){for(;a;)if(a=a.nextSibling,c.Dom._testElement(a,b))return a;return null},getNextSibling:function(a){a=c.Dom.get(a);return!a?null:c.Dom.getNextSiblingBy(a)},getFirstChildBy:function(a,b){return(c.Dom._testElement(a.firstChild,b)?a.firstChild:null)||c.Dom.getNextSiblingBy(a.firstChild,b)},getFirstChild:function(a){a= +c.Dom.get(a);return!a?null:c.Dom.getFirstChildBy(a)},getLastChildBy:function(a,b){return!a?null:(c.Dom._testElement(a.lastChild,b)?a.lastChild:null)||c.Dom.getPreviousSiblingBy(a.lastChild,b)},getLastChild:function(a){a=c.Dom.get(a);return c.Dom.getLastChildBy(a)},getChildrenBy:function(a,b){var d=c.Dom.getFirstChildBy(a,b),f=d?[d]:[];c.Dom.getNextSiblingBy(d,function(a){if(!b||b(a))f[f.length]=a;return!1});return f},getChildren:function(a){a=c.Dom.get(a);return c.Dom.getChildrenBy(a)},getDocumentScrollLeft:function(a){a= +a||i;return Math.max(a.documentElement.scrollLeft,a.body.scrollLeft)},getDocumentScrollTop:function(a){a=a||i;return Math.max(a.documentElement.scrollTop,a.body.scrollTop)},insertBefore:function(a,b){a=c.Dom.get(a);b=c.Dom.get(b);return!a||!b||!b.parentNode?null:b.parentNode.insertBefore(a,b)},insertAfter:function(a,b){a=c.Dom.get(a);b=c.Dom.get(b);return!a||!b||!b.parentNode?null:b.nextSibling?b.parentNode.insertBefore(a,b.nextSibling):b.parentNode.appendChild(a)},getClientRegion:function(){var a= +c.Dom.getDocumentScrollTop(),b=c.Dom.getDocumentScrollLeft(),d=c.Dom.getViewportWidth()+b,f=c.Dom.getViewportHeight()+a;return new c.Region(a,d,f,b)},setAttribute:function(a,b,d){b=c.Dom.CUSTOM_ATTRIBUTES[b]||b;a.setAttribute(b,d)},getAttribute:function(a,b){b=c.Dom.CUSTOM_ATTRIBUTES[b]||b;return a.getAttribute(b)},_toCamel:function(b){function d(a,b){return b.toUpperCase()}return a[b]||(a[b]=-1===b.indexOf("-")?b:b.replace(/-([a-z])/gi,d))},_getClassRegex:function(a){var b;void 0!==a&&(a.exec?b= +a:(b=f[a],b||(a=a.replace(c.Dom._patterns.CLASS_RE_TOKENS,"\\$1"),b=f[a]=RegExp("(?:^|\\s)"+a+"(?= |$)","g"))));return b},_patterns:{ROOT_TAG:/^body|html$/i,CLASS_RE_TOKENS:/([\.\(\)\^\$\*\+\?\|\[\]\{\}])/g},_testElement:function(a,b){return a&&1==a.nodeType&&(!b||b(a))},_calcBorders:function(a,b){var d=parseInt(c.Dom.getComputedStyle(a,"borderTopWidth"),10)||0,f=parseInt(c.Dom.getComputedStyle(a,"borderLeftWidth"),10)||0;m&&g.test(a.tagName)&&(f=d=0);b[0]+=f;b[1]+=d;return b}};var o=c.Dom.getComputedStyle; +b.opera&&(c.Dom.getComputedStyle=function(a,b){var d=o(a,b);h.test(b)&&(d=c.Dom.Color.toRGB(d));return d});b.webkit&&(c.Dom.getComputedStyle=function(a,b){var d=o(a,b);"rgba(0, 0, 0, 0)"===d&&(d="transparent");return d})})();YAHOO.util.Region=function(c,e,b,d){this.y=this.top=c;this[1]=c;this.right=e;this.bottom=b;this.x=this.left=d;this[0]=d;this.width=this.right-this.left;this.height=this.bottom-this.top}; +YAHOO.util.Region.prototype.contains=function(c){return c.left>=this.left&&c.right<=this.right&&c.top>=this.top&&c.bottom<=this.bottom};YAHOO.util.Region.prototype.getArea=function(){return(this.bottom-this.top)*(this.right-this.left)};YAHOO.util.Region.prototype.intersect=function(c){var e=Math.max(this.top,c.top),b=Math.min(this.right,c.right),d=Math.min(this.bottom,c.bottom),c=Math.max(this.left,c.left);return d>=e&&b>=c?new YAHOO.util.Region(e,b,d,c):null}; +YAHOO.util.Region.prototype.union=function(c){var e=Math.min(this.top,c.top),b=Math.max(this.right,c.right),d=Math.max(this.bottom,c.bottom),c=Math.min(this.left,c.left);return new YAHOO.util.Region(e,b,d,c)};YAHOO.util.Region.prototype.toString=function(){return"Region {top: "+this.top+", right: "+this.right+", bottom: "+this.bottom+", left: "+this.left+", height: "+this.height+", width: "+this.width+"}"}; +YAHOO.util.Region.getRegion=function(c){var e=YAHOO.util.Dom.getXY(c);return new YAHOO.util.Region(e[1],e[0]+c.offsetWidth,e[1]+c.offsetHeight,e[0])};YAHOO.util.Point=function(c,e){YAHOO.lang.isArray(c)&&(e=c[1],c=c[0]);YAHOO.util.Point.superclass.constructor.call(this,e,c,e,c)};YAHOO.extend(YAHOO.util.Point,YAHOO.util.Region); +(function(){var c=YAHOO.util,e=/^width|height$/,b=/^(\d[.\d]*)+(em|ex|px|gd|rem|vw|vh|vm|ch|mm|cm|in|pt|pc|deg|rad|ms|s|hz|khz|%){1}?/i,d={get:function(a,d){var e="",e=a.currentStyle[d];return e="opacity"===d?c.Dom.getStyle(a,"opacity"):!e||e.indexOf&&-1<e.indexOf("px")?e:c.Dom.IE_COMPUTED[d]?c.Dom.IE_COMPUTED[d](a,d):b.test(e)?c.Dom.IE.ComputedStyle.getPixel(a,d):e},getOffset:function(a,b){var d=a.currentStyle[b],c=b.charAt(0).toUpperCase()+b.substr(1),j="offset"+c,k="pixel"+c,c="";"auto"==d?(c= +d=a[j],e.test(b)&&(a.style[b]=d,a[j]>d&&(c=d-(a[j]-d)),a.style[b]="auto")):(!a.style[k]&&!a.style[b]&&(a.style[b]=d),c=a.style[k]);return c+"px"},getBorderWidth:function(a,b){var d=null;a.currentStyle.hasLayout||(a.style.zoom=1);switch(b){case "borderTopWidth":d=a.clientTop;break;case "borderBottomWidth":d=a.offsetHeight-a.clientHeight-a.clientTop;break;case "borderLeftWidth":d=a.clientLeft;break;case "borderRightWidth":d=a.offsetWidth-a.clientWidth-a.clientLeft}return d+"px"},getPixel:function(a, +b){var d=null,c=a.currentStyle.right;a.style.right=a.currentStyle[b];d=a.style.pixelRight;a.style.right=c;return d+"px"},getMargin:function(a,b){return"auto"==a.currentStyle[b]?"0px":c.Dom.IE.ComputedStyle.getPixel(a,b)},getVisibility:function(a,b){for(var d;(d=a.currentStyle)&&"inherit"==d[b];)a=a.parentNode;return d?d[b]:"visible"},getColor:function(a,b){return c.Dom.Color.toRGB(a.currentStyle[b])||"transparent"},getBorderColor:function(a,b){var d=a.currentStyle;return c.Dom.Color.toRGB(c.Dom.Color.toHex(d[b]|| +d.color))}},a={};a.top=a.right=a.bottom=a.left=a.width=a.height=d.getOffset;a.color=d.getColor;a.borderTopWidth=a.borderRightWidth=a.borderBottomWidth=a.borderLeftWidth=d.getBorderWidth;a.marginTop=a.marginRight=a.marginBottom=a.marginLeft=d.getMargin;a.visibility=d.getVisibility;a.borderColor=a.borderTopColor=a.borderRightColor=a.borderBottomColor=a.borderLeftColor=d.getBorderColor;c.Dom.IE_COMPUTED=a;c.Dom.IE_ComputedStyle=d})(); +(function(){var c=parseInt,e=RegExp,b=YAHOO.util;b.Dom.Color={KEYWORDS:{black:"000",silver:"c0c0c0",gray:"808080",white:"fff",maroon:"800000",red:"f00",purple:"800080",fuchsia:"f0f",green:"008000",lime:"0f0",olive:"808000",yellow:"ff0",navy:"000080",blue:"00f",teal:"008080",aqua:"0ff"},re_RGB:/^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i,re_hex:/^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i,re_hex3:/([0-9A-F])/gi,toRGB:function(d){b.Dom.Color.re_RGB.test(d)||(d=b.Dom.Color.toHex(d));b.Dom.Color.re_hex.exec(d)&& +(d="rgb("+[c(e.$1,16),c(e.$2,16),c(e.$3,16)].join(", ")+")");return d},toHex:function(d){d=b.Dom.Color.KEYWORDS[d]||d;if(b.Dom.Color.re_RGB.exec(d))var d=1===e.$2.length?"0"+e.$2:Number(e.$2),a=1===e.$3.length?"0"+e.$3:Number(e.$3),d=[(1===e.$1.length?"0"+e.$1:Number(e.$1)).toString(16),d.toString(16),a.toString(16)].join("");6>d.length&&(d=d.replace(b.Dom.Color.re_hex3,"$1$1"));"transparent"!==d&&0>d.indexOf("#")&&(d="#"+d);return d.toLowerCase()}}})(); +YAHOO.register("dom",YAHOO.util.Dom,{version:"2.7.0",build:"1796"});YAHOO.util.CustomEvent=function(c,e,b,d){this.type=c;this.scope=e||window;this.silent=b;this.signature=d||YAHOO.util.CustomEvent.LIST;this.subscribers=[];"_YUICEOnSubscribe"!==c&&(this.subscribeEvent=new YAHOO.util.CustomEvent("_YUICEOnSubscribe",this,!0));this.lastError=null};YAHOO.util.CustomEvent.LIST=0;YAHOO.util.CustomEvent.FLAT=1; +YAHOO.util.CustomEvent.prototype={subscribe:function(c,e,b){if(!c)throw Error("Invalid callback for subscriber to '"+this.type+"'");this.subscribeEvent&&this.subscribeEvent.fire(c,e,b);this.subscribers.push(new YAHOO.util.Subscriber(c,e,b))},unsubscribe:function(c,e){if(!c)return this.unsubscribeAll();for(var b=!1,d=0,a=this.subscribers.length;d<a;++d){var f=this.subscribers[d];f&&f.contains(c,e)&&(this._delete(d),b=!0)}return b},fire:function(){this.lastError=null;var c=this.subscribers.length;if(!c&& +this.silent)return!0;var e=[].slice.call(arguments,0),b=!0,d,a=this.subscribers.slice(),f=YAHOO.util.Event.throwErrors;for(d=0;d<c;++d){var g=a[d];if(g){var h=g.getScope(this.scope);if(this.signature==YAHOO.util.CustomEvent.FLAT){var i=null;0<e.length&&(i=e[0]);try{b=g.fn.call(h,i,g.obj)}catch(j){if(this.lastError=j,f)throw j;}}else try{b=g.fn.call(h,this.type,e,g.obj)}catch(k){if(this.lastError=k,f)throw k;}if(!1===b)break}}return!1!==b},unsubscribeAll:function(){var c=this.subscribers.length,e; +for(e=c-1;-1<e;e--)this._delete(e);this.subscribers=[];return c},_delete:function(c){var e=this.subscribers[c];e&&(delete e.fn,delete e.obj);this.subscribers.splice(c,1)},toString:function(){return"CustomEvent: '"+this.type+"', context: "+this.scope}};YAHOO.util.Subscriber=function(c,e,b){this.fn=c;this.obj=YAHOO.lang.isUndefined(e)?null:e;this.overrideContext=b}; +YAHOO.util.Subscriber.prototype.getScope=function(c){return this.overrideContext?!0===this.overrideContext?this.obj:this.overrideContext:c};YAHOO.util.Subscriber.prototype.contains=function(c,e){return e?this.fn==c&&this.obj==e:this.fn==c};YAHOO.util.Subscriber.prototype.toString=function(){return"Subscriber { obj: "+this.obj+", overrideContext: "+(this.overrideContext||"no")+" }"}; +YAHOO.util.Event||(YAHOO.util.Event=function(){var c=!1,e=[],b=[],d=[],a=[],f=0,g=[],h=[],i=0,j={63232:38,63233:40,63234:37,63235:39,63276:33,63277:34,25:9},k=YAHOO.env.ua.ie?"focusin":"focus",l=YAHOO.env.ua.ie?"focusout":"blur";return{POLL_RETRYS:2E3,POLL_INTERVAL:20,EL:0,TYPE:1,FN:2,WFN:3,UNLOAD_OBJ:3,ADJ_SCOPE:4,OBJ:5,OVERRIDE:6,lastError:null,isSafari:YAHOO.env.ua.webkit,webkit:YAHOO.env.ua.webkit,isIE:YAHOO.env.ua.ie,_interval:null,_dri:null,DOMReady:!1,throwErrors:!1,startInterval:function(){if(!this._interval){var a= +this;this._interval=setInterval(function(){a._tryPreloadAttach()},this.POLL_INTERVAL)}},onAvailable:function(a,b,d,c,e){for(var a=YAHOO.lang.isString(a)?[a]:a,j=0;j<a.length;j+=1)g.push({id:a[j],fn:b,obj:d,overrideContext:c,checkReady:e});f=this.POLL_RETRYS;this.startInterval()},onContentReady:function(a,b,d,c){this.onAvailable(a,b,d,c,!0)},onDOMReady:function(a,b,d){this.DOMReady?setTimeout(function(){var c=window;d&&(c=!0===d?b:d);a.call(c,"DOMReady",[],b)},0):this.DOMReadyEvent.subscribe(a,b,d)}, +_addListener:function(c,f,g,j,k,i){if(!g||!g.call)return!1;if(this._isValidCollection(c)){for(var i=!0,l=0,s=c.length;l<s;++l)i=this.on(c[l],f,g,j,k)&&i;return i}if(YAHOO.lang.isString(c))if(l=this.getEl(c))c=l;else return this.onAvailable(c,function(){YAHOO.util.Event.on(c,f,g,j,k)}),!0;if(!c)return!1;if("unload"==f&&j!==this)return b[b.length]=[c,f,g,j,k],!0;var t=c;k&&(t=!0===k?j:k);l=function(a){return g.call(t,YAHOO.util.Event.getEvent(a,c),j)};s=[c,f,g,l,t,j,k];e[e.length]=s;if(this.useLegacyEvent(c, +f)){var p=this.getLegacyIndex(c,f);if(-1==p||c!=d[p][0])p=d.length,h[c.id+f]=p,d[p]=[c,f,c["on"+f]],a[p]=[],c["on"+f]=function(a){YAHOO.util.Event.fireLegacyEvent(YAHOO.util.Event.getEvent(a),p)};a[p].push(s)}else try{this._simpleAdd(c,f,l,i)}catch(u){return this.lastError=u,this.removeListener(c,f,g),!1}return!0},addListener:function(a,b,d,c,f){return this._addListener(a,b,d,c,f,!1)},addFocusListener:function(a,b,d,c){return this._addListener(a,k,b,d,c,!0)},removeFocusListener:function(a,b){return this.removeListener(a, +k,b)},addBlurListener:function(a,b,d,c){return this._addListener(a,l,b,d,c,!0)},removeBlurListener:function(a,b){return this.removeListener(a,l,b)},fireLegacyEvent:function(b,c){var f=!0,e,g,j;e=a[c].slice();for(var h=0,k=e.length;h<k;++h)if((g=e[h])&&g[this.WFN])j=g[this.ADJ_SCOPE],g=g[this.WFN].call(j,b),f=f&&g;if((e=d[c])&&e[2])e[2](b);return f},getLegacyIndex:function(a,b){var d=this.generateId(a)+b;return"undefined"==typeof h[d]?-1:h[d]},useLegacyEvent:function(a,b){return this.webkit&&419>this.webkit&& +("click"==b||"dblclick"==b)},removeListener:function(d,c,f,g){var j,h,k;if("string"==typeof d)d=this.getEl(d);else if(this._isValidCollection(d)){g=!0;for(j=d.length-1;-1<j;j--)g=this.removeListener(d[j],c,f)&&g;return g}if(!f||!f.call)return this.purgeElement(d,!1,c);if("unload"==c){for(j=b.length-1;-1<j;j--)if((k=b[j])&&k[0]==d&&k[1]==c&&k[2]==f)return b.splice(j,1),!0;return!1}j=null;"undefined"===typeof g&&(g=this._getCacheIndex(d,c,f));0<=g&&(j=e[g]);if(!d||!j)return!1;if(this.useLegacyEvent(d, +c)){j=this.getLegacyIndex(d,c);var i=a[j];if(i){j=0;for(h=i.length;j<h;++j)if((k=i[j])&&k[this.EL]==d&&k[this.TYPE]==c&&k[this.FN]==f){i.splice(j,1);break}}}else try{this._simpleRemove(d,c,j[this.WFN],!1)}catch(l){return this.lastError=l,!1}delete e[g][this.WFN];delete e[g][this.FN];e.splice(g,1);return!0},getTarget:function(a){return this.resolveTextNode(a.target||a.srcElement)},resolveTextNode:function(a){try{if(a&&3==a.nodeType)return a.parentNode}catch(b){}return a},getPageX:function(a){var b= +a.pageX;!b&&0!==b&&(b=a.clientX||0,this.isIE&&(b+=this._getScrollLeft()));return b},getPageY:function(a){var b=a.pageY;!b&&0!==b&&(b=a.clientY||0,this.isIE&&(b+=this._getScrollTop()));return b},getXY:function(a){return[this.getPageX(a),this.getPageY(a)]},getRelatedTarget:function(a){var b=a.relatedTarget;b||("mouseout"==a.type?b=a.toElement:"mouseover"==a.type&&(b=a.fromElement));return this.resolveTextNode(b)},getTime:function(a){if(!a.time){var b=(new Date).getTime();try{a.time=b}catch(d){return this.lastError= +d,b}}return a.time},stopEvent:function(a){this.stopPropagation(a);this.preventDefault(a)},stopPropagation:function(a){a.stopPropagation?a.stopPropagation():a.cancelBubble=!0},preventDefault:function(a){a.preventDefault?a.preventDefault():a.returnValue=!1},getEvent:function(a){a=a||window.event;if(!a)for(var b=this.getEvent.caller;b&&!((a=b.arguments[0])&&Event==a.constructor);)b=b.caller;return a},getCharCode:function(a){a=a.keyCode||a.charCode||0;YAHOO.env.ua.webkit&&a in j&&(a=j[a]);return a},_getCacheIndex:function(a, +b,d){for(var c=0,f=e.length;c<f;c+=1){var g=e[c];if(g&&g[this.FN]==d&&g[this.EL]==a&&g[this.TYPE]==b)return c}return-1},generateId:function(a){var b=a.id;b||(b="yuievtautoid-"+i,++i,a.id=b);return b},_isValidCollection:function(a){try{return a&&"string"!==typeof a&&a.length&&!a.tagName&&!a.alert&&"undefined"!==typeof a[0]}catch(b){return!1}},elCache:{},getEl:function(a){return"string"===typeof a?document.getElementById(a):a},clearCache:function(){},DOMReadyEvent:new YAHOO.util.CustomEvent("DOMReady", +this),_load:function(){if(!c){c=!0;var a=YAHOO.util.Event;a._ready();a._tryPreloadAttach()}},_ready:function(){var a=YAHOO.util.Event;a.DOMReady||(a.DOMReady=!0,a.DOMReadyEvent.fire(),a._simpleRemove(document,"DOMContentLoaded",a._ready))},_tryPreloadAttach:function(){if(0===g.length)f=0,this._interval&&(clearInterval(this._interval),this._interval=null);else if(!this.locked)if(this.isIE&&!this.DOMReady)this.startInterval();else{this.locked=!0;var a=!c;a||(a=0<f&&0<g.length);var b=[],d=function(a, +b){var d=a;b.overrideContext&&(d=!0===b.overrideContext?b.obj:b.overrideContext);b.fn.call(d,b.obj)},e,j,h,k,i=[];e=0;for(j=g.length;e<j;e+=1)if(h=g[e])if(k=this.getEl(h.id))if(h.checkReady){if(c||k.nextSibling||!a)i.push(h),g[e]=null}else d(k,h),g[e]=null;else b.push(h);e=0;for(j=i.length;e<j;e+=1)h=i[e],d(this.getEl(h.id),h);f--;if(a){for(e=g.length-1;-1<e;e--)h=g[e],(!h||!h.id)&&g.splice(e,1);this.startInterval()}else this._interval&&(clearInterval(this._interval),this._interval=null);this.locked= +!1}},purgeElement:function(a,b,d){var a=YAHOO.lang.isString(a)?this.getEl(a):a,c=this.getListeners(a,d),f;if(c)for(f=c.length-1;-1<f;f--){var e=c[f];this.removeListener(a,e.type,e.fn)}if(b&&a&&a.childNodes){f=0;for(c=a.childNodes.length;f<c;++f)this.purgeElement(a.childNodes[f],b,d)}},getListeners:function(a,d){var c=[],f;f=d?"unload"===d?[b]:[e]:[e,b];for(var g=YAHOO.lang.isString(a)?this.getEl(a):a,j=0;j<f.length;j+=1){var h=f[j];if(h)for(var k=0,i=h.length;k<i;++k){var l=h[k];l&&(l[this.EL]=== +g&&(!d||d===l[this.TYPE]))&&c.push({type:l[this.TYPE],fn:l[this.FN],obj:l[this.OBJ],adjust:l[this.OVERRIDE],scope:l[this.ADJ_SCOPE],index:k})}}return c.length?c:null},_unload:function(a){var c=YAHOO.util.Event,f,g,j,h=b.slice(),k;f=0;for(j=b.length;f<j;++f)if(g=h[f])k=window,g[c.ADJ_SCOPE]&&(k=!0===g[c.ADJ_SCOPE]?g[c.UNLOAD_OBJ]:g[c.ADJ_SCOPE]),g[c.FN].call(k,c.getEvent(a,g[c.EL]),g[c.UNLOAD_OBJ]),h[f]=null;b=null;if(e)for(a=e.length-1;-1<a;a--)(g=e[a])&&c.removeListener(g[c.EL],g[c.TYPE],g[c.FN], +a);d=null;c._simpleRemove(window,"unload",c._unload)},_getScrollLeft:function(){return this._getScroll()[1]},_getScrollTop:function(){return this._getScroll()[0]},_getScroll:function(){var a=document.documentElement,b=document.body;return a&&(a.scrollTop||a.scrollLeft)?[a.scrollTop,a.scrollLeft]:b?[b.scrollTop,b.scrollLeft]:[0,0]},regCE:function(){},_simpleAdd:function(){return window.addEventListener?function(a,b,d,c){a.addEventListener(b,d,c)}:window.attachEvent?function(a,b,d){a.attachEvent("on"+ +b,d)}:function(){}}(),_simpleRemove:function(){return window.removeEventListener?function(a,b,d,c){a.removeEventListener(b,d,c)}:window.detachEvent?function(a,b,d){a.detachEvent("on"+b,d)}:function(){}}()}}(),function(){var c=YAHOO.util.Event;c.on=c.addListener;c.onFocus=c.addFocusListener;c.onBlur=c.addBlurListener;if(c.isIE){YAHOO.util.Event.onDOMReady(YAHOO.util.Event._tryPreloadAttach,YAHOO.util.Event,!0);var e=document.createElement("p");c._dri=setInterval(function(){try{e.doScroll("left"),clearInterval(c._dri), +c._dri=null,c._ready(),e=null}catch(b){}},c.POLL_INTERVAL)}else c.webkit&&525>c.webkit?c._dri=setInterval(function(){var b=document.readyState;if("loaded"==b||"complete"==b)clearInterval(c._dri),c._dri=null,c._ready()},c.POLL_INTERVAL):c._simpleAdd(document,"DOMContentLoaded",c._ready);c._simpleAdd(window,"load",c._load);c._simpleAdd(window,"unload",c._unload);c._tryPreloadAttach()}());YAHOO.util.EventProvider=function(){}; +YAHOO.util.EventProvider.prototype={__yui_events:null,__yui_subscribers:null,subscribe:function(c,e,b,d){this.__yui_events=this.__yui_events||{};var a=this.__yui_events[c];if(a)a.subscribe(e,b,d);else{a=this.__yui_subscribers=this.__yui_subscribers||{};a[c]||(a[c]=[]);a[c].push({fn:e,obj:b,overrideContext:d})}},unsubscribe:function(c,e,b){var d=this.__yui_events=this.__yui_events||{};if(c){if(d=d[c])return d.unsubscribe(e,b)}else{var c=true,a;for(a in d)YAHOO.lang.hasOwnProperty(d,a)&&(c=c&&d[a].unsubscribe(e, +b));return c}return false},unsubscribeAll:function(c){return this.unsubscribe(c)},createEvent:function(c,e){this.__yui_events=this.__yui_events||{};var b=e||{},d=this.__yui_events;if(!d[c]){var a=new YAHOO.util.CustomEvent(c,b.scope||this,b.silent,YAHOO.util.CustomEvent.FLAT);d[c]=a;b.onSubscribeCallback&&a.subscribeEvent.subscribe(b.onSubscribeCallback);this.__yui_subscribers=this.__yui_subscribers||{};if(b=this.__yui_subscribers[c])for(var f=0;f<b.length;++f)a.subscribe(b[f].fn,b[f].obj,b[f].overrideContext)}return d[c]}, +fireEvent:function(c,e,b,d){this.__yui_events=this.__yui_events||{};var a=this.__yui_events[c];if(!a)return null;for(var f=[],g=1;g<arguments.length;++g)f.push(arguments[g]);return a.fire.apply(a,f)},hasEvent:function(c){return this.__yui_events&&this.__yui_events[c]?true:false}}; +(function(){var c=YAHOO.util.Event,e=YAHOO.lang;YAHOO.util.KeyListener=function(b,a,f,g){function h(b){if(!a.shift)a.shift=false;if(!a.alt)a.alt=false;if(!a.ctrl)a.ctrl=false;if(b.shiftKey==a.shift&&b.altKey==a.alt&&b.ctrlKey==a.ctrl){var d,f=a.keys,e;if(YAHOO.lang.isArray(f))for(var g=0;g<f.length;g++){d=f[g];e=c.getCharCode(b);if(d==e){i.fire(e,b);break}}else{e=c.getCharCode(b);f==e&&i.fire(e,b)}}}if(!g)g=YAHOO.util.KeyListener.KEYDOWN;var i=new YAHOO.util.CustomEvent("keyPressed");this.enabledEvent= +new YAHOO.util.CustomEvent("enabled");this.disabledEvent=new YAHOO.util.CustomEvent("disabled");e.isString(b)&&(b=document.getElementById(b));e.isFunction(f)?i.subscribe(f):i.subscribe(f.fn,f.scope,f.correctScope);this.enable=function(){if(!this.enabled){c.on(b,g,h);this.enabledEvent.fire(a)}this.enabled=true};this.disable=function(){if(this.enabled){c.removeListener(b,g,h);this.disabledEvent.fire(a)}this.enabled=false};this.toString=function(){return"KeyListener ["+a.keys+"] "+b.tagName+(b.id?"["+ +b.id+"]":"")}};var b=YAHOO.util.KeyListener;b.KEYDOWN="keydown";b.KEYUP="keyup";b.KEY={ALT:18,BACK_SPACE:8,CAPS_LOCK:20,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,META:224,NUM_LOCK:144,PAGE_DOWN:34,PAGE_UP:33,PAUSE:19,PRINTSCREEN:44,RIGHT:39,SCROLL_LOCK:145,SHIFT:16,SPACE:32,TAB:9,UP:38}})();YAHOO.register("event",YAHOO.util.Event,{version:"2.7.0",build:"1796"});YAHOO.register("yahoo-dom-event",YAHOO,{version:"2.7.0",build:"1796"}); +YAHOO.util.DragDropMgr||(YAHOO.util.DragDropMgr=function(){var c=YAHOO.util.Event,e=YAHOO.util.Dom;return{useShim:false,_shimActive:false,_shimState:false,_debugShim:false,_createShim:function(){var b=document.createElement("div");b.id="yui-ddm-shim";document.body.firstChild?document.body.insertBefore(b,document.body.firstChild):document.body.appendChild(b);b.style.display="none";b.style.backgroundColor="red";b.style.position="absolute";b.style.zIndex="99999";e.setStyle(b,"opacity","0");this._shim= +b;c.on(b,"mouseup",this.handleMouseUp,this,true);c.on(b,"mousemove",this.handleMouseMove,this,true);c.on(window,"scroll",this._sizeShim,this,true)},_sizeShim:function(){if(this._shimActive){var b=this._shim;b.style.height=e.getDocumentHeight()+"px";b.style.width=e.getDocumentWidth()+"px";b.style.top="0";b.style.left="0"}},_activateShim:function(){if(this.useShim){this._shim||this._createShim();this._shimActive=true;var b=this._shim,d="0";this._debugShim&&(d=".5");e.setStyle(b,"opacity",d);this._sizeShim(); +b.style.display="block"}},_deactivateShim:function(){this._shim.style.display="none";this._shimActive=false},_shim:null,ids:{},handleIds:{},dragCurrent:null,dragOvers:{},deltaX:0,deltaY:0,preventDefault:true,stopPropagation:true,initialized:false,locked:false,interactionInfo:null,init:function(){this.initialized=true},POINT:0,INTERSECT:1,STRICT_INTERSECT:2,mode:0,_execOnAll:function(b,d){for(var a in this.ids)for(var c in this.ids[a]){var e=this.ids[a][c];this.isTypeOfDD(e)&&e[b].apply(e,d)}},_onLoad:function(){this.init(); +c.on(document,"mouseup",this.handleMouseUp,this,true);c.on(document,"mousemove",this.handleMouseMove,this,true);c.on(window,"unload",this._onUnload,this,true);c.on(window,"resize",this._onResize,this,true)},_onResize:function(){this._execOnAll("resetConstraints",[])},lock:function(){this.locked=true},unlock:function(){this.locked=false},isLocked:function(){return this.locked},locationCache:{},useCache:true,clickPixelThresh:3,clickTimeThresh:1E3,dragThreshMet:false,clickTimeout:null,startX:0,startY:0, +fromTimeout:false,regDragDrop:function(b,d){this.initialized||this.init();this.ids[d]||(this.ids[d]={});this.ids[d][b.id]=b},removeDDFromGroup:function(b,d){this.ids[d]||(this.ids[d]={});var a=this.ids[d];a&&a[b.id]&&delete a[b.id]},_remove:function(b){for(var d in b.groups)if(d){var a=this.ids[d];a&&a[b.id]&&delete a[b.id]}delete this.handleIds[b.id]},regHandle:function(b,d){this.handleIds[b]||(this.handleIds[b]={});this.handleIds[b][d]=d},isDragDrop:function(b){return this.getDDById(b)?true:false}, +getRelated:function(b,d){var a=[],c;for(c in b.groups)for(var e in this.ids[c]){var h=this.ids[c][e];if(this.isTypeOfDD(h)&&(!d||h.isTarget))a[a.length]=h}return a},isLegalTarget:function(b,d){for(var a=this.getRelated(b,true),c=0,e=a.length;c<e;++c)if(a[c].id==d.id)return true;return false},isTypeOfDD:function(b){return b&&b.__ygDragDrop},isHandle:function(b,d){return this.handleIds[b]&&this.handleIds[b][d]},getDDById:function(b){for(var d in this.ids)if(this.ids[d][b])return this.ids[d][b];return null}, +handleMouseDown:function(b,d){this.currentTarget=YAHOO.util.Event.getTarget(b);this.dragCurrent=d;var a=d.getEl();this.startX=YAHOO.util.Event.getPageX(b);this.startY=YAHOO.util.Event.getPageY(b);this.deltaX=this.startX-a.offsetLeft;this.deltaY=this.startY-a.offsetTop;this.dragThreshMet=false;this.clickTimeout=setTimeout(function(){var a=YAHOO.util.DDM;a.startDrag(a.startX,a.startY);a.fromTimeout=true},this.clickTimeThresh)},startDrag:function(b,d){if(this.dragCurrent&&this.dragCurrent.useShim){this._shimState= +this.useShim;this.useShim=true}this._activateShim();clearTimeout(this.clickTimeout);var a=this.dragCurrent;if(a&&a.events.b4StartDrag){a.b4StartDrag(b,d);a.fireEvent("b4StartDragEvent",{x:b,y:d})}if(a&&a.events.startDrag){a.startDrag(b,d);a.fireEvent("startDragEvent",{x:b,y:d})}this.dragThreshMet=true},handleMouseUp:function(b){if(this.dragCurrent){clearTimeout(this.clickTimeout);if(this.dragThreshMet){if(this.fromTimeout){this.fromTimeout=false;this.handleMouseMove(b)}this.fromTimeout=false;this.fireEvents(b, +true)}this.stopDrag(b);this.stopEvent(b)}},stopEvent:function(b){this.stopPropagation&&YAHOO.util.Event.stopPropagation(b);this.preventDefault&&YAHOO.util.Event.preventDefault(b)},stopDrag:function(b,d){var a=this.dragCurrent;if(a&&!d){if(this.dragThreshMet){if(a.events.b4EndDrag){a.b4EndDrag(b);a.fireEvent("b4EndDragEvent",{e:b})}if(a.events.endDrag){a.endDrag(b);a.fireEvent("endDragEvent",{e:b})}}if(a.events.mouseUp){a.onMouseUp(b);a.fireEvent("mouseUpEvent",{e:b})}}if(this._shimActive){this._deactivateShim(); +if(this.dragCurrent&&this.dragCurrent.useShim){this.useShim=this._shimState;this._shimState=false}}this.dragCurrent=null;this.dragOvers={}},handleMouseMove:function(b){var d=this.dragCurrent;if(d){if(YAHOO.util.Event.isIE&&!b.button){this.stopEvent(b);return this.handleMouseUp(b)}if(!this.dragThreshMet){var a=Math.abs(this.startX-YAHOO.util.Event.getPageX(b)),c=Math.abs(this.startY-YAHOO.util.Event.getPageY(b));(a>this.clickPixelThresh||c>this.clickPixelThresh)&&this.startDrag(this.startX,this.startY)}if(this.dragThreshMet){if(d&& +d.events.b4Drag){d.b4Drag(b);d.fireEvent("b4DragEvent",{e:b})}if(d&&d.events.drag){d.onDrag(b);d.fireEvent("dragEvent",{e:b})}d&&this.fireEvents(b,false)}this.stopEvent(b)}},fireEvents:function(b,d){var a=this.dragCurrent;if(a&&!a.isLocked()&&!a.dragOnly){var c=YAHOO.util.Event.getPageX(b),e=YAHOO.util.Event.getPageY(b),h=new YAHOO.util.Point(c,e),e=a.getTargetCoord(h.x,h.y),i=a.getDragEl(),c=["out","over","drop","enter"],j=new YAHOO.util.Region(e.y,e.x+i.offsetWidth,e.y+i.offsetHeight,e.x),k=[], +l={},e=[],i={outEvts:[],overEvts:[],dropEvts:[],enterEvts:[]},m;for(m in this.dragOvers){var n=this.dragOvers[m];if(this.isTypeOfDD(n)){this.isOverTarget(h,n,this.mode,j)||i.outEvts.push(n);k[m]=true;delete this.dragOvers[m]}}for(var o in a.groups)if("string"==typeof o)for(m in this.ids[o]){n=this.ids[o][m];if(this.isTypeOfDD(n)&&n.isTarget&&(!n.isLocked()&&n!=a)&&this.isOverTarget(h,n,this.mode,j)){l[o]=true;if(d)i.dropEvts.push(n);else{k[n.id]?i.overEvts.push(n):i.enterEvts.push(n);this.dragOvers[n.id]= +n}}}this.interactionInfo={out:i.outEvts,enter:i.enterEvts,over:i.overEvts,drop:i.dropEvts,point:h,draggedRegion:j,sourceRegion:this.locationCache[a.id],validDrop:d};for(var r in l)e.push(r);if(d&&!i.dropEvts.length){this.interactionInfo.validDrop=false;if(a.events.invalidDrop){a.onInvalidDrop(b);a.fireEvent("invalidDropEvent",{e:b})}}for(m=0;m<c.length;m++){o=null;i[c[m]+"Evts"]&&(o=i[c[m]+"Evts"]);if(o&&o.length){k=c[m].charAt(0).toUpperCase()+c[m].substr(1);r="onDrag"+k;h="b4Drag"+k;j="drag"+k+ +"Event";k="drag"+k;if(this.mode){if(a.events[h]){a[h](b,o,e);a.fireEvent(h+"Event",{event:b,info:o,group:e})}if(a.events[k]){a[r](b,o,e);a.fireEvent(j,{event:b,info:o,group:e})}}else{l=0;for(n=o.length;l<n;++l){if(a.events[h]){a[h](b,o[l].id,e[0]);a.fireEvent(h+"Event",{event:b,info:o[l].id,group:e[0]})}if(a.events[k]){a[r](b,o[l].id,e[0]);a.fireEvent(j,{event:b,info:o[l].id,group:e[0]})}}}}}}},getBestMatch:function(b){var d=null,a=b.length;if(a==1)d=b[0];else for(var c=0;c<a;++c){var e=b[c];if(this.mode== +this.INTERSECT&&e.cursorIsOver){d=e;break}else if(!d||!d.overlap||e.overlap&&d.overlap.getArea()<e.overlap.getArea())d=e}return d},refreshCache:function(b){var b=b||this.ids,d;for(d in b)if("string"==typeof d)for(var a in this.ids[d]){var c=this.ids[d][a];if(this.isTypeOfDD(c)){var e=this.getLocation(c);e?this.locationCache[c.id]=e:delete this.locationCache[c.id]}}},verifyEl:function(b){try{if(b&&b.offsetParent)return true}catch(d){}return false},getLocation:function(b){if(!this.isTypeOfDD(b))return null; +var d=b.getEl(),a,c,e;try{a=YAHOO.util.Dom.getXY(d)}catch(h){}if(!a)return null;c=a[0];e=c+d.offsetWidth;a=a[1];return new YAHOO.util.Region(a-b.padding[0],e+b.padding[1],a+d.offsetHeight+b.padding[2],c-b.padding[3])},isOverTarget:function(b,d,a,c){var e=this.locationCache[d.id];if(!e||!this.useCache){e=this.getLocation(d);this.locationCache[d.id]=e}if(!e)return false;d.cursorIsOver=e.contains(b);var h=this.dragCurrent;if(!h||!a&&!h.constrainX&&!h.constrainY)return d.cursorIsOver;d.overlap=null;if(!c){b= +h.getTargetCoord(b.x,b.y);h=h.getDragEl();c=new YAHOO.util.Region(b.y,b.x+h.offsetWidth,b.y+h.offsetHeight,b.x)}if(e=c.intersect(e)){d.overlap=e;return a?true:d.cursorIsOver}return false},_onUnload:function(){this.unregAll()},unregAll:function(){if(this.dragCurrent){this.stopDrag();this.dragCurrent=null}this._execOnAll("unreg",[]);this.ids={}},elementCache:{},getElWrapper:function(b){var d=this.elementCache[b];if(!d||!d.el)d=this.elementCache[b]=new this.ElementWrapper(YAHOO.util.Dom.get(b));return d}, +getElement:function(b){return YAHOO.util.Dom.get(b)},getCss:function(b){return(b=YAHOO.util.Dom.get(b))?b.style:null},ElementWrapper:function(b){this.id=(this.el=b||null)&&b.id;this.css=this.el&&b.style},getPosX:function(b){return YAHOO.util.Dom.getX(b)},getPosY:function(b){return YAHOO.util.Dom.getY(b)},swapNode:function(b,d){if(b.swapNode)b.swapNode(d);else{var a=d.parentNode,c=d.nextSibling;if(c==b)a.insertBefore(b,d);else if(d==b.nextSibling)a.insertBefore(d,b);else{b.parentNode.replaceChild(d, +b);a.insertBefore(b,c)}}},getScroll:function(){var b,d,a=document.documentElement,c=document.body;if(a&&(a.scrollTop||a.scrollLeft)){b=a.scrollTop;d=a.scrollLeft}else if(c){b=c.scrollTop;d=c.scrollLeft}return{top:b,left:d}},getStyle:function(b,d){return YAHOO.util.Dom.getStyle(b,d)},getScrollTop:function(){return this.getScroll().top},getScrollLeft:function(){return this.getScroll().left},moveToEl:function(b,d){var a=YAHOO.util.Dom.getXY(d);YAHOO.util.Dom.setXY(b,a)},getClientHeight:function(){return YAHOO.util.Dom.getViewportHeight()}, +getClientWidth:function(){return YAHOO.util.Dom.getViewportWidth()},numericSort:function(b,d){return b-d},_timeoutCount:0,_addListeners:function(){var b=YAHOO.util.DDM;if(YAHOO.util.Event&&document)b._onLoad();else if(!(b._timeoutCount>2E3)){setTimeout(b._addListeners,10);if(document&&document.body)b._timeoutCount=b._timeoutCount+1}},handleWasClicked:function(b,d){if(this.isHandle(d,b.id))return true;for(var a=b.parentNode;a;){if(this.isHandle(d,a.id))return true;a=a.parentNode}return false}}}(), +YAHOO.util.DDM=YAHOO.util.DragDropMgr,YAHOO.util.DDM._addListeners()); +(function(){var c=YAHOO.util.Event,e=YAHOO.util.Dom;YAHOO.util.DragDrop=function(b,d,a){b&&this.init(b,d,a)};YAHOO.util.DragDrop.prototype={events:null,on:function(){this.subscribe.apply(this,arguments)},id:null,config:null,dragElId:null,handleElId:null,invalidHandleTypes:null,invalidHandleIds:null,invalidHandleClasses:null,startPageX:0,startPageY:0,groups:null,locked:false,lock:function(){this.locked=true},unlock:function(){this.locked=false},isTarget:true,padding:null,dragOnly:false,useShim:false, +_domRef:null,__ygDragDrop:true,constrainX:false,constrainY:false,minX:0,maxX:0,minY:0,maxY:0,deltaX:0,deltaY:0,maintainOffset:false,xTicks:null,yTicks:null,primaryButtonOnly:true,available:false,hasOuterHandles:false,cursorIsOver:false,overlap:null,b4StartDrag:function(){},startDrag:function(){},b4Drag:function(){},onDrag:function(){},onDragEnter:function(){},b4DragOver:function(){},onDragOver:function(){},b4DragOut:function(){},onDragOut:function(){},b4DragDrop:function(){},onDragDrop:function(){}, +onInvalidDrop:function(){},b4EndDrag:function(){},endDrag:function(){},b4MouseDown:function(){},onMouseDown:function(){},onMouseUp:function(){},onAvailable:function(){},getEl:function(){if(!this._domRef)this._domRef=e.get(this.id);return this._domRef},getDragEl:function(){return e.get(this.dragElId)},init:function(b,d,a){this.initTarget(b,d,a);c.on(this._domRef||this.id,"mousedown",this.handleMouseDown,this,true);for(var e in this.events)this.createEvent(e+"Event")},initTarget:function(b,d,a){this.config= +a||{};this.events={};this.DDM=YAHOO.util.DDM;this.groups={};if(typeof b!=="string"){this._domRef=b;b=e.generateId(b)}this.id=b;this.addToGroup(d?d:"default");this.handleElId=b;c.onAvailable(b,this.handleOnAvailable,this,true);this.setDragElId(b);this.invalidHandleTypes={A:"A"};this.invalidHandleIds={};this.invalidHandleClasses=[];this.applyConfig()},applyConfig:function(){this.events={mouseDown:true,b4MouseDown:true,mouseUp:true,b4StartDrag:true,startDrag:true,b4EndDrag:true,endDrag:true,drag:true, +b4Drag:true,invalidDrop:true,b4DragOut:true,dragOut:true,dragEnter:true,b4DragOver:true,dragOver:true,b4DragDrop:true,dragDrop:true};if(this.config.events)for(var b in this.config.events)this.config.events[b]===false&&(this.events[b]=false);this.padding=this.config.padding||[0,0,0,0];this.isTarget=this.config.isTarget!==false;this.maintainOffset=this.config.maintainOffset;this.primaryButtonOnly=this.config.primaryButtonOnly!==false;this.dragOnly=this.config.dragOnly===true?true:false;this.useShim= +this.config.useShim===true?true:false},handleOnAvailable:function(){this.available=true;this.resetConstraints();this.onAvailable()},setPadding:function(b,d,a,c){this.padding=!d&&0!==d?[b,b,b,b]:!a&&0!==a?[b,d,b,d]:[b,d,a,c]},setInitPosition:function(b,d){var a=this.getEl();if(this.DDM.verifyEl(a)){var c=b||0,g=d||0,a=e.getXY(a);this.initPageX=a[0]-c;this.initPageY=a[1]-g;this.lastPageX=a[0];this.lastPageY=a[1];this.setStartPosition(a)}},setStartPosition:function(b){b=b||e.getXY(this.getEl());this.deltaSetXY= +null;this.startPageX=b[0];this.startPageY=b[1]},addToGroup:function(b){this.groups[b]=true;this.DDM.regDragDrop(this,b)},removeFromGroup:function(b){this.groups[b]&&delete this.groups[b];this.DDM.removeDDFromGroup(this,b)},setDragElId:function(b){this.dragElId=b},setHandleElId:function(b){typeof b!=="string"&&(b=e.generateId(b));this.handleElId=b;this.DDM.regHandle(this.id,b)},setOuterHandleElId:function(b){typeof b!=="string"&&(b=e.generateId(b));c.on(b,"mousedown",this.handleMouseDown,this,true); +this.setHandleElId(b);this.hasOuterHandles=true},unreg:function(){c.removeListener(this.id,"mousedown",this.handleMouseDown);this._domRef=null;this.DDM._remove(this)},isLocked:function(){return this.DDM.isLocked()||this.locked},handleMouseDown:function(b){var d=b.which||b.button;if(!(this.primaryButtonOnly&&d>1)&&!this.isLocked()){var d=this.b4MouseDown(b),a=true;this.events.b4MouseDown&&(a=this.fireEvent("b4MouseDownEvent",b));var e=this.onMouseDown(b),g=true;this.events.mouseDown&&(g=this.fireEvent("mouseDownEvent", +b));if(!(d===false||e===false||a===false||g===false)){this.DDM.refreshCache(this.groups);d=new YAHOO.util.Point(c.getPageX(b),c.getPageY(b));if((this.hasOuterHandles||this.DDM.isOverTarget(d,this))&&this.clickValidator(b)){this.setStartPosition();this.DDM.handleMouseDown(b,this);this.DDM.stopEvent(b)}}}},clickValidator:function(b){b=YAHOO.util.Event.getTarget(b);return this.isValidHandleChild(b)&&(this.id==this.handleElId||this.DDM.handleWasClicked(b,this.id))},getTargetCoord:function(b,d){var a= +b-this.deltaX,c=d-this.deltaY;if(this.constrainX){if(a<this.minX)a=this.minX;if(a>this.maxX)a=this.maxX}if(this.constrainY){if(c<this.minY)c=this.minY;if(c>this.maxY)c=this.maxY}a=this.getTick(a,this.xTicks);c=this.getTick(c,this.yTicks);return{x:a,y:c}},addInvalidHandleType:function(b){b=b.toUpperCase();this.invalidHandleTypes[b]=b},addInvalidHandleId:function(b){typeof b!=="string"&&(b=e.generateId(b));this.invalidHandleIds[b]=b},addInvalidHandleClass:function(b){this.invalidHandleClasses.push(b)}, +removeInvalidHandleType:function(b){delete this.invalidHandleTypes[b.toUpperCase()]},removeInvalidHandleId:function(b){typeof b!=="string"&&(b=e.generateId(b));delete this.invalidHandleIds[b]},removeInvalidHandleClass:function(b){for(var d=0,a=this.invalidHandleClasses.length;d<a;++d)this.invalidHandleClasses[d]==b&&delete this.invalidHandleClasses[d]},isValidHandleChild:function(b){var d=true,a;try{a=b.nodeName.toUpperCase()}catch(c){a=b.nodeName}d=(d=d&&!this.invalidHandleTypes[a])&&!this.invalidHandleIds[b.id]; +a=0;for(var g=this.invalidHandleClasses.length;d&&a<g;++a)d=!e.hasClass(b,this.invalidHandleClasses[a]);return d},setXTicks:function(b,d){this.xTicks=[];this.xTickSize=d;for(var a={},c=this.initPageX;c>=this.minX;c=c-d)if(!a[c]){this.xTicks[this.xTicks.length]=c;a[c]=true}for(c=this.initPageX;c<=this.maxX;c=c+d)if(!a[c]){this.xTicks[this.xTicks.length]=c;a[c]=true}this.xTicks.sort(this.DDM.numericSort)},setYTicks:function(b,d){this.yTicks=[];this.yTickSize=d;for(var a={},c=this.initPageY;c>=this.minY;c= +c-d)if(!a[c]){this.yTicks[this.yTicks.length]=c;a[c]=true}for(c=this.initPageY;c<=this.maxY;c=c+d)if(!a[c]){this.yTicks[this.yTicks.length]=c;a[c]=true}this.yTicks.sort(this.DDM.numericSort)},setXConstraint:function(b,d,a){this.leftConstraint=parseInt(b,10);this.rightConstraint=parseInt(d,10);this.minX=this.initPageX-this.leftConstraint;this.maxX=this.initPageX+this.rightConstraint;a&&this.setXTicks(this.initPageX,a);this.constrainX=true},clearConstraints:function(){this.constrainY=this.constrainX= +false;this.clearTicks()},clearTicks:function(){this.yTicks=this.xTicks=null;this.yTickSize=this.xTickSize=0},setYConstraint:function(b,d,a){this.topConstraint=parseInt(b,10);this.bottomConstraint=parseInt(d,10);this.minY=this.initPageY-this.topConstraint;this.maxY=this.initPageY+this.bottomConstraint;a&&this.setYTicks(this.initPageY,a);this.constrainY=true},resetConstraints:function(){this.initPageX||this.initPageX===0?this.setInitPosition(this.maintainOffset?this.lastPageX-this.initPageX:0,this.maintainOffset? +this.lastPageY-this.initPageY:0):this.setInitPosition();this.constrainX&&this.setXConstraint(this.leftConstraint,this.rightConstraint,this.xTickSize);this.constrainY&&this.setYConstraint(this.topConstraint,this.bottomConstraint,this.yTickSize)},getTick:function(b,d){if(d){if(d[0]>=b)return d[0];for(var a=0,c=d.length;a<c;++a){var e=a+1;if(d[e]&&d[e]>=b)return d[e]-b>b-d[a]?d[a]:d[e]}return d[d.length-1]}return b},toString:function(){return"DragDrop "+this.id}};YAHOO.augment(YAHOO.util.DragDrop,YAHOO.util.EventProvider)})(); +YAHOO.util.DD=function(c,e,b){c&&this.init(c,e,b)}; +YAHOO.extend(YAHOO.util.DD,YAHOO.util.DragDrop,{scroll:!0,autoOffset:function(c,e){this.setDelta(c-this.startPageX,e-this.startPageY)},setDelta:function(c,e){this.deltaX=c;this.deltaY=e},setDragElPos:function(c,e){this.alignElWithMouse(this.getDragEl(),c,e)},alignElWithMouse:function(c,e,b){var d=this.getTargetCoord(e,b);if(this.deltaSetXY){YAHOO.util.Dom.setStyle(c,"left",d.x+this.deltaSetXY[0]+"px");YAHOO.util.Dom.setStyle(c,"top",d.y+this.deltaSetXY[1]+"px")}else{YAHOO.util.Dom.setXY(c,[d.x,d.y]); +e=parseInt(YAHOO.util.Dom.getStyle(c,"left"),10);b=parseInt(YAHOO.util.Dom.getStyle(c,"top"),10);this.deltaSetXY=[e-d.x,b-d.y]}this.cachePosition(d.x,d.y);var a=this;setTimeout(function(){a.autoScroll.call(a,d.x,d.y,c.offsetHeight,c.offsetWidth)},0)},cachePosition:function(c,e){if(c){this.lastPageX=c;this.lastPageY=e}else{var b=YAHOO.util.Dom.getXY(this.getEl());this.lastPageX=b[0];this.lastPageY=b[1]}},autoScroll:function(c,e,b,d){if(this.scroll){var a=this.DDM.getClientHeight(),f=this.DDM.getClientWidth(), +g=this.DDM.getScrollTop(),h=this.DDM.getScrollLeft(),d=d+c,i=a+g-e-this.deltaY,j=f+h-c-this.deltaX,k=document.all?80:30;b+e>a&&i<40&&window.scrollTo(h,g+k);e<g&&(g>0&&e-g<40)&&window.scrollTo(h,g-k);d>f&&j<40&&window.scrollTo(h+k,g);c<h&&(h>0&&c-h<40)&&window.scrollTo(h-k,g)}},applyConfig:function(){YAHOO.util.DD.superclass.applyConfig.call(this);this.scroll=this.config.scroll!==false},b4MouseDown:function(c){this.setStartPosition();this.autoOffset(YAHOO.util.Event.getPageX(c),YAHOO.util.Event.getPageY(c))}, +b4Drag:function(c){this.setDragElPos(YAHOO.util.Event.getPageX(c),YAHOO.util.Event.getPageY(c))},toString:function(){return"DD "+this.id}});YAHOO.util.DDProxy=function(c,e,b){if(c){this.init(c,e,b);this.initFrame()}};YAHOO.util.DDProxy.dragElId="ygddfdiv"; +YAHOO.extend(YAHOO.util.DDProxy,YAHOO.util.DD,{resizeFrame:!0,centerFrame:!1,createFrame:function(){var c=this,e=document.body;if(!e||!e.firstChild)setTimeout(function(){c.createFrame()},50);else{var b=this.getDragEl(),d=YAHOO.util.Dom;if(!b){b=document.createElement("div");b.id=this.dragElId;var a=b.style;a.position="absolute";a.visibility="hidden";a.cursor="move";a.border="2px solid #aaa";a.zIndex=999;a.height="25px";a.width="25px";a=document.createElement("div");d.setStyle(a,"height","100%");d.setStyle(a, +"width","100%");d.setStyle(a,"background-color","#ccc");d.setStyle(a,"opacity","0");b.appendChild(a);e.insertBefore(b,e.firstChild)}}},initFrame:function(){this.createFrame()},applyConfig:function(){YAHOO.util.DDProxy.superclass.applyConfig.call(this);this.resizeFrame=this.config.resizeFrame!==false;this.centerFrame=this.config.centerFrame;this.setDragElId(this.config.dragElId||YAHOO.util.DDProxy.dragElId)},showFrame:function(c,e){this.getEl();var b=this.getDragEl(),d=b.style;this._resizeProxy(); +this.centerFrame&&this.setDelta(Math.round(parseInt(d.width,10)/2),Math.round(parseInt(d.height,10)/2));this.setDragElPos(c,e);YAHOO.util.Dom.setStyle(b,"visibility","visible")},_resizeProxy:function(){if(this.resizeFrame){var c=YAHOO.util.Dom,e=this.getEl(),b=this.getDragEl(),d=parseInt(c.getStyle(b,"borderTopWidth"),10),a=parseInt(c.getStyle(b,"borderRightWidth"),10),f=parseInt(c.getStyle(b,"borderBottomWidth"),10),g=parseInt(c.getStyle(b,"borderLeftWidth"),10);isNaN(d)&&(d=0);isNaN(a)&&(a=0);isNaN(f)&& +(f=0);isNaN(g)&&(g=0);a=Math.max(0,e.offsetWidth-a-g);e=Math.max(0,e.offsetHeight-d-f);c.setStyle(b,"width",a+"px");c.setStyle(b,"height",e+"px")}},b4MouseDown:function(c){this.setStartPosition();var e=YAHOO.util.Event.getPageX(c),c=YAHOO.util.Event.getPageY(c);this.autoOffset(e,c)},b4StartDrag:function(c,e){this.showFrame(c,e)},b4EndDrag:function(){YAHOO.util.Dom.setStyle(this.getDragEl(),"visibility","hidden")},endDrag:function(){var c=YAHOO.util.Dom,e=this.getEl(),b=this.getDragEl();c.setStyle(b, +"visibility","");c.setStyle(e,"visibility","hidden");YAHOO.util.DDM.moveToEl(e,b);c.setStyle(b,"visibility","hidden");c.setStyle(e,"visibility","")},toString:function(){return"DDProxy "+this.id}});YAHOO.util.DDTarget=function(c,e,b){c&&this.initTarget(c,e,b)};YAHOO.extend(YAHOO.util.DDTarget,YAHOO.util.DragDrop,{toString:function(){return"DDTarget "+this.id}});YAHOO.register("dragdrop",YAHOO.util.DragDropMgr,{version:"2.7.0",build:"1796"}); +(function(){function c(a,b,d,e){c.ANIM_AVAIL=!YAHOO.lang.isUndefined(YAHOO.util.Anim);if(a){this.init(a,b,true);this.initSlider(e);this.initThumb(d)}}var e=YAHOO.util.Dom.getXY,b=YAHOO.util.Event,d=Array.prototype.slice;YAHOO.lang.augmentObject(c,{getHorizSlider:function(a,b,d,e,i){return new c(a,a,new YAHOO.widget.SliderThumb(b,a,d,e,0,0,i),"horiz")},getVertSlider:function(a,b,d,e,i){return new c(a,a,new YAHOO.widget.SliderThumb(b,a,0,0,d,e,i),"vert")},getSliderRegion:function(a,b,d,e,i,j,k){return new c(a, +a,new YAHOO.widget.SliderThumb(b,a,d,e,i,j,k),"region")},SOURCE_UI_EVENT:1,SOURCE_SET_VALUE:2,SOURCE_KEY_EVENT:3,ANIM_AVAIL:false},true);YAHOO.extend(c,YAHOO.util.DragDrop,{_mouseDown:false,dragOnly:true,initSlider:function(a){this.type=a;this.createEvent("change",this);this.createEvent("slideStart",this);this.createEvent("slideEnd",this);this.isTarget=false;this.animate=c.ANIM_AVAIL;this.backgroundEnabled=true;this.tickPause=40;this.enableKeys=true;this.keyIncrement=20;this.moveComplete=true;this.animationDuration= +0.2;this.SOURCE_UI_EVENT=1;this.SOURCE_SET_VALUE=2;this.valueChangeSource=0;this._silent=false;this.lastOffset=[0,0]},initThumb:function(a){var b=this;this.thumb=a;a.cacheBetweenDrags=true;if(a._isHoriz&&a.xTicks&&a.xTicks.length)this.tickPause=Math.round(360/a.xTicks.length);else if(a.yTicks&&a.yTicks.length)this.tickPause=Math.round(360/a.yTicks.length);a.onAvailable=function(){return b.setStartSliderState()};a.onMouseDown=function(){b._mouseDown=true;return b.focus()};a.startDrag=function(){b._slideStart()}; +a.onDrag=function(){b.fireEvents(true)};a.onMouseUp=function(){b.thumbMouseUp()}},onAvailable:function(){this._bindKeyEvents()},_bindKeyEvents:function(){b.on(this.id,"keydown",this.handleKeyDown,this,true);b.on(this.id,"keypress",this.handleKeyPress,this,true)},handleKeyPress:function(a){if(this.enableKeys)switch(b.getCharCode(a)){case 37:case 38:case 39:case 40:case 36:case 35:b.preventDefault(a)}},handleKeyDown:function(a){if(this.enableKeys){var d=b.getCharCode(a),e=this.thumb,h=this.getXValue(), +i=this.getYValue(),j=true;switch(d){case 37:h=h-this.keyIncrement;break;case 38:i=i-this.keyIncrement;break;case 39:h=h+this.keyIncrement;break;case 40:i=i+this.keyIncrement;break;case 36:h=e.leftConstraint;i=e.topConstraint;break;case 35:h=e.rightConstraint;i=e.bottomConstraint;break;default:j=false}if(j){e._isRegion?this._setRegionValue(c.SOURCE_KEY_EVENT,h,i,true):this._setValue(c.SOURCE_KEY_EVENT,e._isHoriz?h:i,true);b.stopEvent(a)}}},setStartSliderState:function(){this.setThumbCenterPoint(); +this.baselinePos=e(this.getEl());this.thumb.startOffset=this.thumb.getOffsetFromParent(this.baselinePos);if(this.thumb._isRegion)if(this.deferredSetRegionValue){this._setRegionValue.apply(this,this.deferredSetRegionValue);this.deferredSetRegionValue=null}else this.setRegionValue(0,0,true,true,true);else if(this.deferredSetValue){this._setValue.apply(this,this.deferredSetValue);this.deferredSetValue=null}else this.setValue(0,true,true,true)},setThumbCenterPoint:function(){var a=this.thumb.getEl(); +if(a)this.thumbCenterPoint={x:parseInt(a.offsetWidth/2,10),y:parseInt(a.offsetHeight/2,10)}},lock:function(){this.thumb.lock();this.locked=true},unlock:function(){this.thumb.unlock();this.locked=false},thumbMouseUp:function(){this._mouseDown=false;!this.isLocked()&&!this.moveComplete&&this.endMove()},onMouseUp:function(){this._mouseDown=false;this.backgroundEnabled&&(!this.isLocked()&&!this.moveComplete)&&this.endMove()},getThumb:function(){return this.thumb},focus:function(){this.valueChangeSource= +c.SOURCE_UI_EVENT;var a=this.getEl();if(a.focus)try{a.focus()}catch(b){}this.verifyOffset();return!this.isLocked()},onChange:function(){},onSlideStart:function(){},onSlideEnd:function(){},getValue:function(){return this.thumb.getValue()},getXValue:function(){return this.thumb.getXValue()},getYValue:function(){return this.thumb.getYValue()},setValue:function(){var a=d.call(arguments);a.unshift(c.SOURCE_SET_VALUE);return this._setValue.apply(this,a)},_setValue:function(a,b,d,e,i){var j=this.thumb,k; +if(!j.available){this.deferredSetValue=arguments;return false}if(this.isLocked()&&!e||isNaN(b)||j._isRegion)return false;this._silent=i;this.valueChangeSource=a||c.SOURCE_SET_VALUE;j.lastOffset=[b,b];this.verifyOffset(true);this._slideStart();if(j._isHoriz){k=j.initPageX+b+this.thumbCenterPoint.x;this.moveThumb(k,j.initPageY,d)}else{k=j.initPageY+b+this.thumbCenterPoint.y;this.moveThumb(j.initPageX,k,d)}return true},setRegionValue:function(){var a=d.call(arguments);a.unshift(c.SOURCE_SET_VALUE);return this._setRegionValue.apply(this, +a)},_setRegionValue:function(a,b,d,e,i,j){var k=this.thumb;if(!k.available){this.deferredSetRegionValue=arguments;return false}if(this.isLocked()&&!i||isNaN(b)||!k._isRegion)return false;this._silent=j;this.valueChangeSource=a||c.SOURCE_SET_VALUE;k.lastOffset=[b,d];this.verifyOffset(true);this._slideStart();this.moveThumb(k.initPageX+b+this.thumbCenterPoint.x,k.initPageY+d+this.thumbCenterPoint.y,e);return true},verifyOffset:function(){var a=e(this.getEl()),b=this.thumb;(!this.thumbCenterPoint||!this.thumbCenterPoint.x)&& +this.setThumbCenterPoint();if(a&&(a[0]!=this.baselinePos[0]||a[1]!=this.baselinePos[1])){this.setInitPosition();this.baselinePos=a;b.initPageX=this.initPageX+b.startOffset[0];b.initPageY=this.initPageY+b.startOffset[1];b.deltaSetXY=null;this.resetThumbConstraints();return false}return true},moveThumb:function(a,b,d,h){var i=this.thumb,j=this,k,l;if(i.available){i.setDelta(this.thumbCenterPoint.x,this.thumbCenterPoint.y);l=i.getTargetCoord(a,b);k=[Math.round(l.x),Math.round(l.y)];if(this.animate&& +i._graduated&&!d){this.lock();this.curCoord=e(this.thumb.getEl());this.curCoord=[Math.round(this.curCoord[0]),Math.round(this.curCoord[1])];setTimeout(function(){j.moveOneTick(k)},this.tickPause)}else if(this.animate&&c.ANIM_AVAIL&&!d){this.lock();a=new YAHOO.util.Motion(i.id,{points:{to:k}},this.animationDuration,YAHOO.util.Easing.easeOut);a.onComplete.subscribe(function(){j.unlock();j._mouseDown||j.endMove()});a.animate()}else{i.setDragElPos(a,b);!h&&!this._mouseDown&&this.endMove()}}},_slideStart:function(){if(!this._sliding){if(!this._silent){this.onSlideStart(); +this.fireEvent("slideStart")}this._sliding=true}},_slideEnd:function(){if(this._sliding&&this.moveComplete){var a=this._silent;this.moveComplete=this._silent=this._sliding=false;if(!a){this.onSlideEnd();this.fireEvent("slideEnd")}}},moveOneTick:function(a){var b=this.thumb,d=this,c=null,e;if(b._isRegion){c=this._getNextX(this.curCoord,a);e=c!==null?c[0]:this.curCoord[0];c=this._getNextY(this.curCoord,a);c=c!==null?c[1]:this.curCoord[1];c=e!==this.curCoord[0]||c!==this.curCoord[1]?[e,c]:null}else c= +b._isHoriz?this._getNextX(this.curCoord,a):this._getNextY(this.curCoord,a);if(c){this.curCoord=c;this.thumb.alignElWithMouse(b.getEl(),c[0]+this.thumbCenterPoint.x,c[1]+this.thumbCenterPoint.y);if(c[0]==a[0]&&c[1]==a[1]){this.unlock();this._mouseDown||this.endMove()}else setTimeout(function(){d.moveOneTick(a)},this.tickPause)}else{this.unlock();this._mouseDown||this.endMove()}},_getNextX:function(a,b){var d=this.thumb,c;c=[];c=null;if(a[0]>b[0]){c=d.tickSize-this.thumbCenterPoint.x;c=d.getTargetCoord(a[0]- +c,a[1]);c=[c.x,c.y]}else if(a[0]<b[0]){c=d.tickSize+this.thumbCenterPoint.x;c=d.getTargetCoord(a[0]+c,a[1]);c=[c.x,c.y]}return c},_getNextY:function(a,b){var d=this.thumb,c;c=[];c=null;if(a[1]>b[1]){c=d.tickSize-this.thumbCenterPoint.y;c=d.getTargetCoord(a[0],a[1]-c);c=[c.x,c.y]}else if(a[1]<b[1]){c=d.tickSize+this.thumbCenterPoint.y;c=d.getTargetCoord(a[0],a[1]+c);c=[c.x,c.y]}return c},b4MouseDown:function(){if(!this.backgroundEnabled)return false;this.thumb.autoOffset();this.resetThumbConstraints()}, +onMouseDown:function(a){if(!this.backgroundEnabled||this.isLocked())return false;this._mouseDown=true;var d=b.getPageX(a),a=b.getPageY(a);this.focus();this._slideStart();this.moveThumb(d,a)},onDrag:function(a){if(this.backgroundEnabled&&!this.isLocked()){var d=b.getPageX(a),a=b.getPageY(a);this.moveThumb(d,a,true,true);this.fireEvents()}},endMove:function(){this.unlock();this.fireEvents();this.moveComplete=true;this._slideEnd()},resetThumbConstraints:function(){var a=this.thumb;a.setXConstraint(a.leftConstraint, +a.rightConstraint,a.xTickSize);a.setYConstraint(a.topConstraint,a.bottomConstraint,a.xTickSize)},fireEvents:function(a){var b=this.thumb;a||b.cachePosition();if(!this.isLocked())if(b._isRegion){a=b.getXValue();b=b.getYValue();if((a!=this.previousX||b!=this.previousY)&&!this._silent){this.onChange(a,b);this.fireEvent("change",{x:a,y:b})}this.previousX=a;this.previousY=b}else{b=b.getValue();if(b!=this.previousVal&&!this._silent){this.onChange(b);this.fireEvent("change",b)}this.previousVal=b}},toString:function(){return"Slider ("+ +this.type+") "+this.id}});YAHOO.lang.augmentProto(c,YAHOO.util.EventProvider);YAHOO.widget.Slider=c})();YAHOO.widget.SliderThumb=function(c,e,b,d,a,f,g){if(c){YAHOO.widget.SliderThumb.superclass.constructor.call(this,c,e);this.parentElId=e}this.isTarget=false;this.tickSize=g;this.maintainOffset=true;this.initSlider(b,d,a,f,g);this.scroll=false}; +YAHOO.extend(YAHOO.widget.SliderThumb,YAHOO.util.DD,{startOffset:null,dragOnly:!0,_isHoriz:!1,_prevVal:0,_graduated:!1,getOffsetFromParent0:function(c){var e=YAHOO.util.Dom.getXY(this.getEl()),c=c||YAHOO.util.Dom.getXY(this.parentElId);return[e[0]-c[0],e[1]-c[1]]},getOffsetFromParent:function(c){var e=this.getEl(),b;if(this.deltaOffset){b=parseInt(YAHOO.util.Dom.getStyle(e,"left"),10);e=parseInt(YAHOO.util.Dom.getStyle(e,"top"),10);b=[b+this.deltaOffset[0],e+this.deltaOffset[1]]}else{b=YAHOO.util.Dom.getXY(e); +c=c||YAHOO.util.Dom.getXY(this.parentElId);b=[b[0]-c[0],b[1]-c[1]];c=parseInt(YAHOO.util.Dom.getStyle(e,"left"),10);e=parseInt(YAHOO.util.Dom.getStyle(e,"top"),10);c=c-b[0];e=e-b[1];if(!isNaN(c)&&!isNaN(e))this.deltaOffset=[c,e]}return b},initSlider:function(c,e,b,d,a){this.initLeft=c;this.initRight=e;this.initUp=b;this.initDown=d;this.setXConstraint(c,e,a);this.setYConstraint(b,d,a);if(a&&a>1)this._graduated=true;this._isHoriz=c||e;this._isVert=b||d;this._isRegion=this._isHoriz&&this._isVert},clearTicks:function(){YAHOO.widget.SliderThumb.superclass.clearTicks.call(this); +this.tickSize=0;this._graduated=false},getValue:function(){return this._isHoriz?this.getXValue():this.getYValue()},getXValue:function(){if(!this.available)return 0;var c=this.getOffsetFromParent();if(YAHOO.lang.isNumber(c[0])){this.lastOffset=c;return c[0]-this.startOffset[0]}return this.lastOffset[0]-this.startOffset[0]},getYValue:function(){if(!this.available)return 0;var c=this.getOffsetFromParent();if(YAHOO.lang.isNumber(c[1])){this.lastOffset=c;return c[1]-this.startOffset[1]}return this.lastOffset[1]- +this.startOffset[1]},toString:function(){return"SliderThumb "+this.id},onChange:function(){}}); +(function(){function c(b,a,c,e){var h=this,i=false,j=false,k,l;this.minSlider=b;this.maxSlider=a;this.activeSlider=b;this.isHoriz=b.thumb._isHoriz;k=this.minSlider.thumb.onMouseDown;l=this.maxSlider.thumb.onMouseDown;this.minSlider.thumb.onMouseDown=function(){h.activeSlider=h.minSlider;k.apply(this,arguments)};this.maxSlider.thumb.onMouseDown=function(){h.activeSlider=h.maxSlider;l.apply(this,arguments)};this.minSlider.thumb.onAvailable=function(){b.setStartSliderState();i=true;j&&h.fireEvent("ready", +h)};this.maxSlider.thumb.onAvailable=function(){a.setStartSliderState();j=true;i&&h.fireEvent("ready",h)};b.onMouseDown=a.onMouseDown=function(a){return this.backgroundEnabled&&h._handleMouseDown(a)};b.onDrag=a.onDrag=function(a){h._handleDrag(a)};b.onMouseUp=a.onMouseUp=function(a){h._handleMouseUp(a)};b._bindKeyEvents=function(){h._bindKeyEvents(this)};a._bindKeyEvents=function(){};b.subscribe("change",this._handleMinChange,b,this);b.subscribe("slideStart",this._handleSlideStart,b,this);b.subscribe("slideEnd", +this._handleSlideEnd,b,this);a.subscribe("change",this._handleMaxChange,a,this);a.subscribe("slideStart",this._handleSlideStart,a,this);a.subscribe("slideEnd",this._handleSlideEnd,a,this);this.createEvent("ready",this);this.createEvent("change",this);this.createEvent("slideStart",this);this.createEvent("slideEnd",this);e=YAHOO.lang.isArray(e)?e:[0,c];e[0]=Math.min(Math.max(parseInt(e[0],10)|0,0),c);e[1]=Math.max(Math.min(parseInt(e[1],10)|0,c),0);e[0]>e[1]&&e.splice(0,2,e[1],e[0]);this.minVal=e[0]; +this.maxVal=e[1];this.minSlider.setValue(this.minVal,true,true,true);this.maxSlider.setValue(this.maxVal,true,true,true)}var e=YAHOO.util.Event,b=YAHOO.widget;c.prototype={minVal:-1,maxVal:-1,minRange:0,_handleSlideStart:function(b,a){this.fireEvent("slideStart",a)},_handleSlideEnd:function(b,a){this.fireEvent("slideEnd",a)},_handleDrag:function(d){b.Slider.prototype.onDrag.call(this.activeSlider,d)},_handleMinChange:function(){this.activeSlider=this.minSlider;this.updateValue()},_handleMaxChange:function(){this.activeSlider= +this.maxSlider;this.updateValue()},_bindKeyEvents:function(b){e.on(b.id,"keydown",this._handleKeyDown,this,true);e.on(b.id,"keypress",this._handleKeyPress,this,true)},_handleKeyDown:function(b){this.activeSlider.handleKeyDown.apply(this.activeSlider,arguments)},_handleKeyPress:function(b){this.activeSlider.handleKeyPress.apply(this.activeSlider,arguments)},setValues:function(b,a,c,e,h){var i=this.minSlider,j=this.maxSlider,k=i.thumb,l=j.thumb,m=this,n=false,o=false;if(k._isHoriz){k.setXConstraint(k.leftConstraint, +l.rightConstraint,k.tickSize);l.setXConstraint(k.leftConstraint,l.rightConstraint,l.tickSize)}else{k.setYConstraint(k.topConstraint,l.bottomConstraint,k.tickSize);l.setYConstraint(k.topConstraint,l.bottomConstraint,l.tickSize)}this._oneTimeCallback(i,"slideEnd",function(){n=true;if(o){m.updateValue(h);setTimeout(function(){m._cleanEvent(i,"slideEnd");m._cleanEvent(j,"slideEnd")},0)}});this._oneTimeCallback(j,"slideEnd",function(){o=true;if(n){m.updateValue(h);setTimeout(function(){m._cleanEvent(i, +"slideEnd");m._cleanEvent(j,"slideEnd")},0)}});i.setValue(b,c,e,false);j.setValue(a,c,e,false)},setMinValue:function(b,a,c,e){var h=this.minSlider,i=this;this.activeSlider=h;i=this;this._oneTimeCallback(h,"slideEnd",function(){i.updateValue(e);setTimeout(function(){i._cleanEvent(h,"slideEnd")},0)});h.setValue(b,a,c)},setMaxValue:function(b,a,c,e){var h=this.maxSlider,i=this;this.activeSlider=h;this._oneTimeCallback(h,"slideEnd",function(){i.updateValue(e);setTimeout(function(){i._cleanEvent(h,"slideEnd")}, +0)});h.setValue(b,a,c)},updateValue:function(b){var a=this.minSlider.getValue(),c=this.maxSlider.getValue(),e=false,h,i,j,k;if(a!=this.minVal||c!=this.maxVal){e=true;h=this.minSlider.thumb;i=this.maxSlider.thumb;j=this.isHoriz?"x":"y";k=this.minSlider.thumbCenterPoint[j]+this.maxSlider.thumbCenterPoint[j];j=Math.max(c-k-this.minRange,0);k=Math.min(-a-k-this.minRange,0);if(this.isHoriz){j=Math.min(j,i.rightConstraint);h.setXConstraint(h.leftConstraint,j,h.tickSize);i.setXConstraint(k,i.rightConstraint, +i.tickSize)}else{j=Math.min(j,i.bottomConstraint);h.setYConstraint(h.leftConstraint,j,h.tickSize);i.setYConstraint(k,i.bottomConstraint,i.tickSize)}}this.minVal=a;this.maxVal=c;e&&!b&&this.fireEvent("change",this)},selectActiveSlider:function(b){var a=this.minSlider,c=this.maxSlider,e=a.isLocked()||!a.backgroundEnabled,h=c.isLocked()||!a.backgroundEnabled,i=YAHOO.util.Event;if(e||h)this.activeSlider=e?c:a;else{b=this.isHoriz?i.getPageX(b)-a.thumb.initPageX-a.thumbCenterPoint.x:i.getPageY(b)-a.thumb.initPageY- +a.thumbCenterPoint.y;this.activeSlider=b*2>c.getValue()+a.getValue()?c:a}},_handleMouseDown:function(d){if(d._handled)return false;d._handled=true;this.selectActiveSlider(d);return b.Slider.prototype.onMouseDown.call(this.activeSlider,d)},_handleMouseUp:function(d){b.Slider.prototype.onMouseUp.apply(this.activeSlider,arguments)},_oneTimeCallback:function(b,a,c){b.subscribe(a,function(){b.unsubscribe(a,arguments.callee);c.apply({},[].slice.apply(arguments))})},_cleanEvent:function(b,a){var c,e,h,i, +j,k;if(b.__yui_events&&b.events[a]){for(e=b.__yui_events.length;e>=0;--e)if(b.__yui_events[e].type===a){c=b.__yui_events[e];break}if(c){j=c.subscribers;k=[];e=i=0;for(h=j.length;e<h;++e)j[e]&&(k[i++]=j[e]);c.subscribers=k}}}};YAHOO.lang.augmentProto(c,YAHOO.util.EventProvider);b.Slider.getHorizDualSlider=function(d,a,e,g,h,i){a=new b.SliderThumb(a,d,0,g,0,0,h);e=new b.SliderThumb(e,d,0,g,0,0,h);return new c(new b.Slider(d,d,a,"horiz"),new b.Slider(d,d,e,"horiz"),g,i)};b.Slider.getVertDualSlider=function(c, +a,e,g,h,i){a=new b.SliderThumb(a,c,0,0,0,g,h);e=new b.SliderThumb(e,c,0,0,0,g,h);return new b.DualSlider(new b.Slider(c,c,a,"vert"),new b.Slider(c,c,e,"vert"),g,i)};YAHOO.widget.DualSlider=c})();YAHOO.register("slider",YAHOO.widget.Slider,{version:"2.7.0",build:"1796"});YAHOO.util.Attribute=function(c,e){if(e){this.owner=e;this.configure(c,true)}}; +YAHOO.util.Attribute.prototype={name:void 0,value:null,owner:null,readOnly:!1,writeOnce:!1,_initialConfig:null,_written:!1,method:null,setter:null,getter:null,validator:null,getValue:function(){var c=this.value;this.getter&&(c=this.getter.call(this.owner,this.name));return c},setValue:function(c,e){var b,d=this.owner,a=this.name,f={type:a,prevValue:this.getValue(),newValue:c};if(this.readOnly||this.writeOnce&&this._written||this.validator&&!this.validator.call(d,c))return false;if(!e){b=d.fireBeforeChangeEvent(f); +if(b===false)return false}this.setter&&(c=this.setter.call(d,c,this.name));this.method&&this.method.call(d,c,this.name);this.value=c;this._written=true;f.type=a;e||this.owner.fireChangeEvent(f);return true},configure:function(c,e){c=c||{};if(e)this._written=false;this._initialConfig=this._initialConfig||{};for(var b in c)if(c.hasOwnProperty(b)){this[b]=c[b];e&&(this._initialConfig[b]=c[b])}},resetValue:function(){return this.setValue(this._initialConfig.value)},resetConfig:function(){this.configure(this._initialConfig, +true)},refresh:function(c){this.setValue(this.value,c)}}; +(function(){var c=YAHOO.util.Lang;YAHOO.util.AttributeProvider=function(){};YAHOO.util.AttributeProvider.prototype={_configs:null,get:function(c){this._configs=this._configs||{};var b=this._configs[c];return!b||!this._configs.hasOwnProperty(c)?null:b.getValue()},set:function(c,b,d){this._configs=this._configs||{};c=this._configs[c];return!c?false:c.setValue(b,d)},getAttributeKeys:function(){this._configs=this._configs;var e=[],b;for(b in this._configs)c.hasOwnProperty(this._configs,b)&&!c.isUndefined(this._configs[b])&& +(e[e.length]=b);return e},setAttributes:function(e,b){for(var d in e)c.hasOwnProperty(e,d)&&this.set(d,e[d],b)},resetValue:function(c,b){this._configs=this._configs||{};if(this._configs[c]){this.set(c,this._configs[c]._initialConfig.value,b);return true}return false},refresh:function(e,b){for(var d=this._configs=this._configs||{},e=(c.isString(e)?[e]:e)||this.getAttributeKeys(),a=0,f=e.length;a<f;++a)d.hasOwnProperty(e[a])&&this._configs[e[a]].refresh(b)},register:function(c,b){this.setAttributeConfig(c, +b)},getAttributeConfig:function(e){this._configs=this._configs||{};var b=this._configs[e]||{},d={};for(e in b)c.hasOwnProperty(b,e)&&(d[e]=b[e]);return d},setAttributeConfig:function(c,b,d){this._configs=this._configs||{};b=b||{};if(this._configs[c])this._configs[c].configure(b,d);else{b.name=c;this._configs[c]=this.createAttribute(b)}},configureAttribute:function(c,b,d){this.setAttributeConfig(c,b,d)},resetAttributeConfig:function(c){this._configs=this._configs||{};this._configs[c].resetConfig()}, +subscribe:function(c,b){this._events=this._events||{};c in this._events||(this._events[c]=this.createEvent(c));YAHOO.util.EventProvider.prototype.subscribe.apply(this,arguments)},on:function(){this.subscribe.apply(this,arguments)},addListener:function(){this.subscribe.apply(this,arguments)},fireBeforeChangeEvent:function(c){var b;b="before"+(c.type.charAt(0).toUpperCase()+c.type.substr(1)+"Change");c.type=b;return this.fireEvent(c.type,c)},fireChangeEvent:function(c){c.type=c.type+"Change";return this.fireEvent(c.type, +c)},createAttribute:function(c){return new YAHOO.util.Attribute(c,this)}};YAHOO.augment(YAHOO.util.AttributeProvider,YAHOO.util.EventProvider)})(); +(function(){var c=YAHOO.util.Dom,e=YAHOO.util.AttributeProvider,b=function(b,a){this.init.apply(this,arguments)};b.DOM_EVENTS={click:true,dblclick:true,keydown:true,keypress:true,keyup:true,mousedown:true,mousemove:true,mouseout:true,mouseover:true,mouseup:true,focus:true,blur:true,submit:true,change:true};b.prototype={DOM_EVENTS:null,DEFAULT_HTML_SETTER:function(b,a){var c=this.get("element");c&&(c[a]=b)},DEFAULT_HTML_GETTER:function(b){var a=this.get("element"),c;a&&(c=a[b]);return c},appendChild:function(b){b= +b.get?b.get("element"):b;return this.get("element").appendChild(b)},getElementsByTagName:function(b){return this.get("element").getElementsByTagName(b)},hasChildNodes:function(){return this.get("element").hasChildNodes()},insertBefore:function(b,a){b=b.get?b.get("element"):b;a=a&&a.get?a.get("element"):a;return this.get("element").insertBefore(b,a)},removeChild:function(b){b=b.get?b.get("element"):b;return this.get("element").removeChild(b)},replaceChild:function(b,a){b=b.get?b.get("element"):b;a= +a.get?a.get("element"):a;return this.get("element").replaceChild(b,a)},initAttributes:function(){},addListener:function(b,a,c,e){var h=this.get("element")||this.get("id"),e=e||this,i=this;if(!this._events[b]){h&&this.DOM_EVENTS[b]&&YAHOO.util.Event.addListener(h,b,function(a){if(a.srcElement&&!a.target)a.target=a.srcElement;i.fireEvent(b,a)},c,e);this.createEvent(b,this)}return YAHOO.util.EventProvider.prototype.subscribe.apply(this,arguments)},on:function(){return this.addListener.apply(this,arguments)}, +subscribe:function(){return this.addListener.apply(this,arguments)},removeListener:function(b,a){return this.unsubscribe.apply(this,arguments)},addClass:function(b){c.addClass(this.get("element"),b)},getElementsByClassName:function(b,a){return c.getElementsByClassName(b,a,this.get("element"))},hasClass:function(b){return c.hasClass(this.get("element"),b)},removeClass:function(b){return c.removeClass(this.get("element"),b)},replaceClass:function(b,a){return c.replaceClass(this.get("element"),b,a)}, +setStyle:function(b,a){return c.setStyle(this.get("element"),b,a)},getStyle:function(b){return c.getStyle(this.get("element"),b)},fireQueue:function(){for(var b=this._queue,a=0,c=b.length;a<c;++a)this[b[a][0]].apply(this,b[a][1])},appendTo:function(b,a){b=b.get?b.get("element"):c.get(b);this.fireEvent("beforeAppendTo",{type:"beforeAppendTo",target:b});var a=a&&a.get?a.get("element"):c.get(a),e=this.get("element");if(!e||!b)return false;e.parent!=b&&(a?b.insertBefore(e,a):b.appendChild(e));this.fireEvent("appendTo", +{type:"appendTo",target:b});return e},get:function(b){var a=this._configs||{},c=a.element;c&&(!a[b]&&!YAHOO.lang.isUndefined(c.value[b]))&&this._setHTMLAttrConfig(b);return e.prototype.get.call(this,b)},setAttributes:function(b,a){for(var c={},e=this._configOrder,h=0,i=e.length;h<i;++h)if(b[e[h]]!==void 0){c[e[h]]=true;this.set(e[h],b[e[h]],a)}for(var j in b)b.hasOwnProperty(j)&&!c[j]&&this.set(j,b[j],a)},set:function(b,a,c){var g=this.get("element");if(g){!this._configs[b]&&!YAHOO.lang.isUndefined(g[b])&& +this._setHTMLAttrConfig(b);return e.prototype.set.apply(this,arguments)}this._queue[this._queue.length]=["set",arguments];if(this._configs[b])this._configs[b].value=a},setAttributeConfig:function(b,a,c){this._configOrder.push(b);e.prototype.setAttributeConfig.apply(this,arguments)},createEvent:function(b,a){this._events[b]=true;return e.prototype.createEvent.apply(this,arguments)},init:function(b,a){this._initElement(b,a)},destroy:function(){var b=this.get("element");YAHOO.util.Event.purgeElement(b, +true);this.unsubscribeAll();b&&b.parentNode&&b.parentNode.removeChild(b);this._queue=[];this._events={};this._configs={};this._configOrder=[]},_initElement:function(d,a){this._queue=this._queue||[];this._events=this._events||{};this._configs=this._configs||{};this._configOrder=[];a=a||{};a.element=a.element||d||null;var e=false,g=b.DOM_EVENTS;this.DOM_EVENTS=this.DOM_EVENTS||{};for(var h in g)g.hasOwnProperty(h)&&(this.DOM_EVENTS[h]=g[h]);typeof a.element==="string"&&this._setHTMLAttrConfig("id", +{value:a.element});if(c.get(a.element)){e=true;this._initHTMLElement(a);this._initContent(a)}YAHOO.util.Event.onAvailable(a.element,function(){e||this._initHTMLElement(a);this.fireEvent("available",{type:"available",target:c.get(a.element)})},this,true);YAHOO.util.Event.onContentReady(a.element,function(){e||this._initContent(a);this.fireEvent("contentReady",{type:"contentReady",target:c.get(a.element)})},this,true)},_initHTMLElement:function(b){this.setAttributeConfig("element",{value:c.get(b.element), +readOnly:true})},_initContent:function(b){this.initAttributes(b);this.setAttributes(b,true);this.fireQueue()},_setHTMLAttrConfig:function(b,a){var c=this.get("element"),a=a||{};a.name=b;a.setter=a.setter||this.DEFAULT_HTML_SETTER;a.getter=a.getter||this.DEFAULT_HTML_GETTER;a.value=a.value||c[b];this._configs[b]=new YAHOO.util.Attribute(a,this)}};YAHOO.augment(b,e);YAHOO.util.Element=b})();YAHOO.register("element",YAHOO.util.Element,{version:"2.7.0",build:"1796"}); +YAHOO.util.Color=function(){var c=YAHOO.lang.isArray,e=YAHOO.lang.isNumber;return{real2dec:function(b){return Math.min(255,Math.round(b*256))},hsv2rgb:function(b,d,a){if(c(b))return this.hsv2rgb.call(this,b[0],b[1],b[2]);var e,g,h,i=Math.floor(b/60%6),j=b/60-i,b=a*(1-d),k=a*(1-j*d),d=a*(1-(1-j)*d);switch(i){case 0:e=a;g=d;h=b;break;case 1:e=k;g=a;h=b;break;case 2:e=b;g=a;h=d;break;case 3:e=b;g=k;h=a;break;case 4:e=d;g=b;h=a;break;case 5:e=a;g=b;h=k}a=this.real2dec;return[a(e),a(g),a(h)]},rgb2hsv:function(b, +d,a){if(c(b))return this.rgb2hsv.apply(this,b);var b=b/255,d=d/255,a=a/255,e,g=Math.min(Math.min(b,d),a),h=Math.max(Math.max(b,d),a),i=h-g;switch(h){case g:e=0;break;case b:e=60*(d-a)/i;d<a&&(e=e+360);break;case d:e=60*(a-b)/i+120;break;case a:e=60*(b-d)/i+240}return[Math.round(e),h===0?0:1-g/h,h]},rgb2hex:function(b,d,a){if(c(b))return this.rgb2hex.apply(this,b);var e=this.dec2hex;return e(b)+e(d)+e(a)},dec2hex:function(b){b=parseInt(b,10)|0;return("0"+(b>255||b<0?0:b).toString(16)).slice(-2).toUpperCase()}, +hex2dec:function(b){return parseInt(b,16)},hex2rgb:function(b){var c=this.hex2dec;return[c(b.slice(0,2)),c(b.slice(2,4)),c(b.slice(4,6))]},websafe:function(b,d,a){if(c(b))return this.websafe.apply(this,b);var f=function(a){if(e(a)){var a=Math.min(Math.max(0,a),255),b,c;for(b=0;b<256;b=b+51){c=b+51;if(a>=b&&a<=c)return a-b>25?c:b}}return a};return[f(b),f(d),f(a)]}}}(); +(function(){function c(a,b){e=e+1;b=b||{};if(arguments.length===1&&!YAHOO.lang.isString(a)&&!a.nodeName){b=a;a=b.element||null}!a&&!b.element&&(a=this._createHostElement(b));c.superclass.constructor.call(this,a,b);this.initPicker()}var e=0,b=YAHOO.util,d=YAHOO.lang,a=YAHOO.widget.Slider,f=b.Color,g=b.Dom,h=b.Event,i=d.substitute;YAHOO.extend(c,YAHOO.util.Element,{ID:{R:"yui-picker-r",R_HEX:"yui-picker-rhex",G:"yui-picker-g",G_HEX:"yui-picker-ghex",B:"yui-picker-b",B_HEX:"yui-picker-bhex",H:"yui-picker-h", +S:"yui-picker-s",V:"yui-picker-v",PICKER_BG:"yui-picker-bg",PICKER_THUMB:"yui-picker-thumb",HUE_BG:"yui-picker-hue-bg",HUE_THUMB:"yui-picker-hue-thumb",HEX:"yui-picker-hex",SWATCH:"yui-picker-swatch",WEBSAFE_SWATCH:"yui-picker-websafe-swatch",CONTROLS:"yui-picker-controls",RGB_CONTROLS:"yui-picker-rgb-controls",HSV_CONTROLS:"yui-picker-hsv-controls",HEX_CONTROLS:"yui-picker-hex-controls",HEX_SUMMARY:"yui-picker-hex-summary",CONTROLS_LABEL:"yui-picker-controls-label"},TXT:{ILLEGAL_HEX:"Illegal hex value entered", +SHOW_CONTROLS:"Show color details",HIDE_CONTROLS:"Hide color details",CURRENT_COLOR:"Currently selected color: {rgb}",CLOSEST_WEBSAFE:"Closest websafe color: {rgb}. Click to select.",R:"R",G:"G",B:"B",H:"H",S:"S",V:"V",HEX:"#",DEG:"°",PERCENT:"%"},IMAGE:{PICKER_THUMB:"../../build/colorpicker/assets/picker_thumb.png",HUE_THUMB:"../../build/colorpicker/assets/hue_thumb.png"},DEFAULT:{PICKER_SIZE:180},OPT:{HUE:"hue",SATURATION:"saturation",VALUE:"value",RED:"red",GREEN:"green",BLUE:"blue",HSV:"hsv", +RGB:"rgb",WEBSAFE:"websafe",HEX:"hex",PICKER_SIZE:"pickersize",SHOW_CONTROLS:"showcontrols",SHOW_RGB_CONTROLS:"showrgbcontrols",SHOW_HSV_CONTROLS:"showhsvcontrols",SHOW_HEX_CONTROLS:"showhexcontrols",SHOW_HEX_SUMMARY:"showhexsummary",SHOW_WEBSAFE:"showwebsafe",CONTAINER:"container",IDS:"ids",ELEMENTS:"elements",TXT:"txt",IMAGES:"images",ANIMATE:"animate"},skipAnim:true,_createHostElement:function(){var a=document.createElement("div");if(this.CSS.BASE)a.className=this.CSS.BASE;return a},_updateHueSlider:function(){var a= +this.get(this.OPT.PICKER_SIZE),b=this.get(this.OPT.HUE),b=a-Math.round(b/360*a);b===a&&(b=0);this.hueSlider.setValue(b,this.skipAnim)},_updatePickerSlider:function(){var a=this.get(this.OPT.PICKER_SIZE),b=this.get(this.OPT.SATURATION),c=this.get(this.OPT.VALUE),b=Math.round(b*a/100),c=Math.round(a-c*a/100);this.pickerSlider.setRegionValue(b,c,this.skipAnim)},_updateSliders:function(){this._updateHueSlider();this._updatePickerSlider()},setValue:function(a,b){this.set(this.OPT.RGB,a,b||false);this._updateSliders()}, +hueSlider:null,pickerSlider:null,_getH:function(){var a=this.get(this.OPT.PICKER_SIZE),a=(a-this.hueSlider.getValue())/a,a=Math.round(a*360);return a===360?0:a},_getS:function(){return this.pickerSlider.getXValue()/this.get(this.OPT.PICKER_SIZE)},_getV:function(){var a=this.get(this.OPT.PICKER_SIZE);return(a-this.pickerSlider.getYValue())/a},_updateSwatch:function(){var a=this.get(this.OPT.RGB),b=this.get(this.OPT.WEBSAFE),c=this.getElement(this.ID.SWATCH),a=a.join(","),d=this.get(this.OPT.TXT);g.setStyle(c, +"background-color","rgb("+a+")");c.title=i(d.CURRENT_COLOR,{rgb:"#"+this.get(this.OPT.HEX)});c=this.getElement(this.ID.WEBSAFE_SWATCH);a=b.join(",");g.setStyle(c,"background-color","rgb("+a+")");c.title=i(d.CLOSEST_WEBSAFE,{rgb:"#"+f.rgb2hex(b)})},_getValuesFromSliders:function(){this.set(this.OPT.RGB,f.hsv2rgb(this._getH(),this._getS(),this._getV()))},_updateFormFields:function(){this.getElement(this.ID.H).value=this.get(this.OPT.HUE);this.getElement(this.ID.S).value=this.get(this.OPT.SATURATION); +this.getElement(this.ID.V).value=this.get(this.OPT.VALUE);this.getElement(this.ID.R).value=this.get(this.OPT.RED);this.getElement(this.ID.R_HEX).innerHTML=f.dec2hex(this.get(this.OPT.RED));this.getElement(this.ID.G).value=this.get(this.OPT.GREEN);this.getElement(this.ID.G_HEX).innerHTML=f.dec2hex(this.get(this.OPT.GREEN));this.getElement(this.ID.B).value=this.get(this.OPT.BLUE);this.getElement(this.ID.B_HEX).innerHTML=f.dec2hex(this.get(this.OPT.BLUE));this.getElement(this.ID.HEX).value=this.get(this.OPT.HEX)}, +_onHueSliderChange:function(){var b=this._getH(),c="rgb("+f.hsv2rgb(b,1,1).join(",")+")";this.set(this.OPT.HUE,b,true);g.setStyle(this.getElement(this.ID.PICKER_BG),"background-color",c);this.hueSlider.valueChangeSource!==a.SOURCE_SET_VALUE&&this._getValuesFromSliders();this._updateFormFields();this._updateSwatch()},_onPickerSliderChange:function(){var b=this._getS(),c=this._getV();this.set(this.OPT.SATURATION,Math.round(b*100),true);this.set(this.OPT.VALUE,Math.round(c*100),true);this.pickerSlider.valueChangeSource!== +a.SOURCE_SET_VALUE&&this._getValuesFromSliders();this._updateFormFields();this._updateSwatch()},_getCommand:function(a){var b=h.getCharCode(a);return b===38?3:b===13?6:b===40?4:b>=48&&b<=57?1:b>=97&&b<=102?2:b>=65&&b<=70?2:"8, 9, 13, 27, 37, 39".indexOf(b)>-1||a.ctrlKey||a.metaKey?5:0},_useFieldValue:function(a,b,c){a=b.value;c!==this.OPT.HEX&&(a=parseInt(a,10));a!==this.get(c)&&this.set(c,a)},_rgbFieldKeypress:function(a,b,c){var d=this._getCommand(a),e=a.shiftKey?10:1;switch(d){case 6:this._useFieldValue.apply(this, +arguments);break;case 3:this.set(c,Math.min(this.get(c)+e,255));this._updateFormFields();break;case 4:this.set(c,Math.max(this.get(c)-e,0));this._updateFormFields()}},_hexFieldKeypress:function(a,b,c){this._getCommand(a)===6&&this._useFieldValue.apply(this,arguments)},_hexOnly:function(a,b){switch(this._getCommand(a)){case 6:case 5:case 1:break;case 2:if(b!==true)break;default:h.stopEvent(a);return false}},_numbersOnly:function(a){return this._hexOnly(a,true)},getElement:function(a){return this.get(this.OPT.ELEMENTS)[this.get(this.OPT.IDS)[a]]}, +_createElements:function(){var a,b,c,e,f=this.get(this.OPT.IDS),g=this.get(this.OPT.TXT),h=this.get(this.OPT.IMAGES),i=function(a,b){var c=document.createElement(a);b&&d.augmentObject(c,b,true);return c},q=function(a,b){var c=d.merge({autocomplete:"off",value:"0",size:3,maxlength:3},b);c.name=c.id;return new i(a,c)};e=this.get("element");a=new i("div",{id:f[this.ID.PICKER_BG],className:"yui-picker-bg",tabIndex:-1,hideFocus:true});b=new i("div",{id:f[this.ID.PICKER_THUMB],className:"yui-picker-thumb"}); +c=new i("img",{src:h.PICKER_THUMB});b.appendChild(c);a.appendChild(b);e.appendChild(a);a=new i("div",{id:f[this.ID.HUE_BG],className:"yui-picker-hue-bg",tabIndex:-1,hideFocus:true});b=new i("div",{id:f[this.ID.HUE_THUMB],className:"yui-picker-hue-thumb"});c=new i("img",{src:h.HUE_THUMB});b.appendChild(c);a.appendChild(b);e.appendChild(a);a=new i("div",{id:f[this.ID.CONTROLS],className:"yui-picker-controls"});e.appendChild(a);e=a;a=new i("div",{className:"hd"});b=new i("a",{id:f[this.ID.CONTROLS_LABEL], +href:"#"});a.appendChild(b);e.appendChild(a);a=new i("div",{className:"bd"});e.appendChild(a);e=a;a=new i("ul",{id:f[this.ID.RGB_CONTROLS],className:"yui-picker-rgb-controls"});b=new i("li");b.appendChild(document.createTextNode(g.R+" "));c=new q("input",{id:f[this.ID.R],className:"yui-picker-r"});b.appendChild(c);a.appendChild(b);b=new i("li");b.appendChild(document.createTextNode(g.G+" "));c=new q("input",{id:f[this.ID.G],className:"yui-picker-g"});b.appendChild(c);a.appendChild(b);b=new i("li"); +b.appendChild(document.createTextNode(g.B+" "));c=new q("input",{id:f[this.ID.B],className:"yui-picker-b"});b.appendChild(c);a.appendChild(b);e.appendChild(a);a=new i("ul",{id:f[this.ID.HSV_CONTROLS],className:"yui-picker-hsv-controls"});b=new i("li");b.appendChild(document.createTextNode(g.H+" "));c=new q("input",{id:f[this.ID.H],className:"yui-picker-h"});b.appendChild(c);b.appendChild(document.createTextNode(" "+g.DEG));a.appendChild(b);b=new i("li");b.appendChild(document.createTextNode(g.S+" ")); +c=new q("input",{id:f[this.ID.S],className:"yui-picker-s"});b.appendChild(c);b.appendChild(document.createTextNode(" "+g.PERCENT));a.appendChild(b);b=new i("li");b.appendChild(document.createTextNode(g.V+" "));c=new q("input",{id:f[this.ID.V],className:"yui-picker-v"});b.appendChild(c);b.appendChild(document.createTextNode(" "+g.PERCENT));a.appendChild(b);e.appendChild(a);a=new i("ul",{id:f[this.ID.HEX_SUMMARY],className:"yui-picker-hex_summary"});b=new i("li",{id:f[this.ID.R_HEX]});a.appendChild(b); +b=new i("li",{id:f[this.ID.G_HEX]});a.appendChild(b);b=new i("li",{id:f[this.ID.B_HEX]});a.appendChild(b);e.appendChild(a);a=new i("div",{id:f[this.ID.HEX_CONTROLS],className:"yui-picker-hex-controls"});a.appendChild(document.createTextNode(g.HEX+" "));b=new q("input",{id:f[this.ID.HEX],className:"yui-picker-hex",size:6,maxlength:6});a.appendChild(b);e.appendChild(a);e=this.get("element");a=new i("div",{id:f[this.ID.SWATCH],className:"yui-picker-swatch"});e.appendChild(a);a=new i("div",{id:f[this.ID.WEBSAFE_SWATCH], +className:"yui-picker-websafe-swatch"});e.appendChild(a)},_attachRGBHSV:function(a,b){h.on(this.getElement(a),"keydown",function(a,c){c._rgbFieldKeypress(a,this,b)},this);h.on(this.getElement(a),"keypress",this._numbersOnly,this,true);h.on(this.getElement(a),"blur",function(a,c){c._useFieldValue(a,this,b)},this)},_updateRGB:function(){this.set(this.OPT.RGB,[this.get(this.OPT.RED),this.get(this.OPT.GREEN),this.get(this.OPT.BLUE)]);this._updateSliders()},_initElements:function(){var a=this.OPT,b=this.get(a.IDS), +a=this.get(a.ELEMENTS),c,e,f;for(c in this.ID)d.hasOwnProperty(this.ID,c)&&(b[this.ID[c]]=b[c]);(e=g.get(b[this.ID.PICKER_BG]))||this._createElements();for(c in b)if(d.hasOwnProperty(b,c)){e=g.get(b[c]);f=g.generateId(e);b[c]=f;b[b[c]]=f;a[f]=e}},initPicker:function(){this._initSliders();this._bindUI();this.syncUI(true)},_initSliders:function(){var b=this.ID,c=this.get(this.OPT.PICKER_SIZE);this.hueSlider=a.getVertSlider(this.getElement(b.HUE_BG),this.getElement(b.HUE_THUMB),0,c);this.pickerSlider= +a.getSliderRegion(this.getElement(b.PICKER_BG),this.getElement(b.PICKER_THUMB),0,c,0,c);this.set(this.OPT.ANIMATE,this.get(this.OPT.ANIMATE))},_bindUI:function(){var a=this.ID,b=this.OPT;this.hueSlider.subscribe("change",this._onHueSliderChange,this,true);this.pickerSlider.subscribe("change",this._onPickerSliderChange,this,true);h.on(this.getElement(a.WEBSAFE_SWATCH),"click",function(){this.setValue(this.get(b.WEBSAFE))},this,true);h.on(this.getElement(a.CONTROLS_LABEL),"click",function(a){this.set(b.SHOW_CONTROLS, +!this.get(b.SHOW_CONTROLS));h.preventDefault(a)},this,true);this._attachRGBHSV(a.R,b.RED);this._attachRGBHSV(a.G,b.GREEN);this._attachRGBHSV(a.B,b.BLUE);this._attachRGBHSV(a.H,b.HUE);this._attachRGBHSV(a.S,b.SATURATION);this._attachRGBHSV(a.V,b.VALUE);h.on(this.getElement(a.HEX),"keydown",function(a,c){c._hexFieldKeypress(a,this,b.HEX)},this);h.on(this.getElement(this.ID.HEX),"keypress",this._hexOnly,this,true);h.on(this.getElement(this.ID.HEX),"blur",function(a,c){c._useFieldValue(a,this,b.HEX)}, +this)},syncUI:function(a){this.skipAnim=a;this._updateRGB();this.skipAnim=false},_updateRGBFromHSV:function(){var a=[this.get(this.OPT.HUE),this.get(this.OPT.SATURATION)/100,this.get(this.OPT.VALUE)/100];this.set(this.OPT.RGB,f.hsv2rgb(a));this._updateSliders()},_updateHex:function(){var a=this.get(this.OPT.HEX),b=a.length,c;if(b===3){a=a.split("");for(c=0;c<b;c=c+1)a[c]=a[c]+a[c];a=a.join("")}if(a.length!==6)return false;this.setValue(f.hex2rgb(a))},_hideShowEl:function(a,b){var c=d.isString(a)? +this.getElement(a):a;g.setStyle(c,"display",b?"":"none")},initAttributes:function(a){a=a||{};c.superclass.initAttributes.call(this,a);this.setAttributeConfig(this.OPT.PICKER_SIZE,{value:a.size||this.DEFAULT.PICKER_SIZE});this.setAttributeConfig(this.OPT.HUE,{value:a.hue||0,validator:d.isNumber});this.setAttributeConfig(this.OPT.SATURATION,{value:a.saturation||0,validator:d.isNumber});this.setAttributeConfig(this.OPT.VALUE,{value:d.isNumber(a.value)?a.value:100,validator:d.isNumber});this.setAttributeConfig(this.OPT.RED, +{value:d.isNumber(a.red)?a.red:255,validator:d.isNumber});this.setAttributeConfig(this.OPT.GREEN,{value:d.isNumber(a.green)?a.green:255,validator:d.isNumber});this.setAttributeConfig(this.OPT.BLUE,{value:d.isNumber(a.blue)?a.blue:255,validator:d.isNumber});this.setAttributeConfig(this.OPT.HEX,{value:a.hex||"FFFFFF",validator:d.isString});this.setAttributeConfig(this.OPT.RGB,{value:a.rgb||[255,255,255],method:function(a){this.set(this.OPT.RED,a[0],true);this.set(this.OPT.GREEN,a[1],true);this.set(this.OPT.BLUE, +a[2],true);var b=f.websafe(a),c=f.rgb2hex(a),a=f.rgb2hsv(a);this.set(this.OPT.WEBSAFE,b,true);this.set(this.OPT.HEX,c,true);a[1]&&this.set(this.OPT.HUE,a[0],true);this.set(this.OPT.SATURATION,Math.round(a[1]*100),true);this.set(this.OPT.VALUE,Math.round(a[2]*100),true)},readonly:true});this.setAttributeConfig(this.OPT.CONTAINER,{value:null,method:function(a){a&&a.showEvent.subscribe(function(){this.pickerSlider.focus()},this,true)}});this.setAttributeConfig(this.OPT.WEBSAFE,{value:a.websafe||[255, +255,255]});var b=a.ids||d.merge({},this.ID),h;if(!a.ids&&e>1)for(h in b)d.hasOwnProperty(b,h)&&(b[h]=b[h]+e);this.setAttributeConfig(this.OPT.IDS,{value:b,writeonce:true});this.setAttributeConfig(this.OPT.TXT,{value:a.txt||this.TXT,writeonce:true});this.setAttributeConfig(this.OPT.IMAGES,{value:a.images||this.IMAGE,writeonce:true});this.setAttributeConfig(this.OPT.ELEMENTS,{value:{},readonly:true});this.setAttributeConfig(this.OPT.SHOW_CONTROLS,{value:d.isBoolean(a.showcontrols)?a.showcontrols:true, +method:function(a){this._hideShowEl(g.getElementsByClassName("bd","div",this.getElement(this.ID.CONTROLS))[0],a);this.getElement(this.ID.CONTROLS_LABEL).innerHTML=a?this.get(this.OPT.TXT).HIDE_CONTROLS:this.get(this.OPT.TXT).SHOW_CONTROLS}});this.setAttributeConfig(this.OPT.SHOW_RGB_CONTROLS,{value:d.isBoolean(a.showrgbcontrols)?a.showrgbcontrols:true,method:function(a){this._hideShowEl(this.ID.RGB_CONTROLS,a)}});this.setAttributeConfig(this.OPT.SHOW_HSV_CONTROLS,{value:d.isBoolean(a.showhsvcontrols)? +a.showhsvcontrols:false,method:function(a){this._hideShowEl(this.ID.HSV_CONTROLS,a);a&&this.get(this.OPT.SHOW_HEX_SUMMARY)&&this.set(this.OPT.SHOW_HEX_SUMMARY,false)}});this.setAttributeConfig(this.OPT.SHOW_HEX_CONTROLS,{value:d.isBoolean(a.showhexcontrols)?a.showhexcontrols:false,method:function(a){this._hideShowEl(this.ID.HEX_CONTROLS,a)}});this.setAttributeConfig(this.OPT.SHOW_WEBSAFE,{value:d.isBoolean(a.showwebsafe)?a.showwebsafe:true,method:function(a){this._hideShowEl(this.ID.WEBSAFE_SWATCH, +a)}});this.setAttributeConfig(this.OPT.SHOW_HEX_SUMMARY,{value:d.isBoolean(a.showhexsummary)?a.showhexsummary:true,method:function(a){this._hideShowEl(this.ID.HEX_SUMMARY,a);a&&this.get(this.OPT.SHOW_HSV_CONTROLS)&&this.set(this.OPT.SHOW_HSV_CONTROLS,false)}});this.setAttributeConfig(this.OPT.ANIMATE,{value:d.isBoolean(a.animate)?a.animate:true,method:function(a){if(this.pickerSlider){this.pickerSlider.animate=a;this.hueSlider.animate=a}}});this.on(this.OPT.HUE+"Change",this._updateRGBFromHSV,this, +true);this.on(this.OPT.SATURATION+"Change",this._updateRGBFromHSV,this,true);this.on(this.OPT.VALUE+"Change",this._updateRGBFromHSV,this,true);this.on(this.OPT.RED+"Change",this._updateRGB,this,true);this.on(this.OPT.GREEN+"Change",this._updateRGB,this,true);this.on(this.OPT.BLUE+"Change",this._updateRGB,this,true);this.on(this.OPT.HEX+"Change",this._updateHex,this,true);this._initElements()}});YAHOO.widget.ColorPicker=c})();YAHOO.register("colorpicker",YAHOO.widget.ColorPicker,{version:"2.7.0",build:"1796"}); +(function(){var c=YAHOO.util,e=function(b,c,a,e){this.init(b,c,a,e)};e.NAME="Anim";e.prototype={toString:function(){var b=this.getEl()||{};return this.constructor.NAME+": "+(b.id||b.tagName)},patterns:{noNegatives:/width|height|opacity|padding/i,offsetAttribute:/^((width|height)|(top|left))$/,defaultUnit:/width|height|top$|bottom$|left$|right$/i,offsetUnit:/\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i},doMethod:function(b,c,a){return this.method(this.currentFrame,c,a-c,this.totalFrames)},setAttribute:function(b, +d,a){var e=this.getEl();this.patterns.noNegatives.test(b)&&(d=d>0?d:0);"style"in e?c.Dom.setStyle(e,b,d+a):b in e&&(e[b]=d)},getAttribute:function(b){var d=this.getEl(),a=c.Dom.getStyle(d,b);if(a!=="auto"&&!this.patterns.offsetUnit.test(a))return parseFloat(a);var e=this.patterns.offsetAttribute.exec(b)||[],g=!!e[3],h=!!e[2];"style"in d?a=h||c.Dom.getStyle(d,"position")=="absolute"&&g?d["offset"+e[0].charAt(0).toUpperCase()+e[0].substr(1)]:0:b in d&&(a=d[b]);return a},getDefaultUnit:function(b){return this.patterns.defaultUnit.test(b)? +"px":""},setRuntimeAttribute:function(b){var c,a,e=this.attributes;this.runtimeAttributes[b]={};var g=function(a){return typeof a!=="undefined"};if(!g(e[b].to)&&!g(e[b].by))return false;c=g(e[b].from)?e[b].from:this.getAttribute(b);if(g(e[b].to))a=e[b].to;else if(g(e[b].by))if(c.constructor==Array){a=[];for(var h=0,i=c.length;h<i;++h)a[h]=c[h]+e[b].by[h]*1}else a=c+e[b].by*1;this.runtimeAttributes[b].start=c;this.runtimeAttributes[b].end=a;this.runtimeAttributes[b].unit=g(e[b].unit)?e[b].unit:this.getDefaultUnit(b); +return true},init:function(b,d,a,e){var g=false,h=null,i=0,b=c.Dom.get(b);this.attributes=d||{};this.duration=!YAHOO.lang.isUndefined(a)?a:1;this.method=e||c.Easing.easeNone;this.useSeconds=true;this.currentFrame=0;this.totalFrames=c.AnimMgr.fps;this.setEl=function(a){b=c.Dom.get(a)};this.getEl=function(){return b};this.isAnimated=function(){return g};this.getStartTime=function(){return h};this.runtimeAttributes={};this.animate=function(){if(this.isAnimated())return false;this.currentFrame=0;this.totalFrames= +this.useSeconds?Math.ceil(c.AnimMgr.fps*this.duration):this.duration;if(this.duration===0&&this.useSeconds)this.totalFrames=1;c.AnimMgr.registerElement(this);return true};this.stop=function(a){if(!this.isAnimated())return false;if(a){this.currentFrame=this.totalFrames;this._onTween.fire()}c.AnimMgr.stop(this)};this._onStart=new c.CustomEvent("_start",this,true);this.onStart=new c.CustomEvent("start",this);this.onTween=new c.CustomEvent("tween",this);this._onTween=new c.CustomEvent("_tween",this,true); +this.onComplete=new c.CustomEvent("complete",this);this._onComplete=new c.CustomEvent("_complete",this,true);this._onStart.subscribe(function(){this.onStart.fire();this.runtimeAttributes={};for(var a in this.attributes)this.setRuntimeAttribute(a);g=true;i=0;h=new Date});this._onTween.subscribe(function(){var a={duration:new Date-this.getStartTime(),currentFrame:this.currentFrame,toString:function(){return"duration: "+a.duration+", currentFrame: "+a.currentFrame}};this.onTween.fire(a);var b=this.runtimeAttributes, +c;for(c in b)this.setAttribute(c,this.doMethod(c,b[c].start,b[c].end),b[c].unit);i=i+1});this._onComplete.subscribe(function(){var a=(new Date-h)/1E3,b={duration:a,frames:i,fps:i/a,toString:function(){return"duration: "+b.duration+", frames: "+b.frames+", fps: "+b.fps}};g=false;i=0;this.onComplete.fire(b)})}};c.Anim=e})(); +YAHOO.util.AnimMgr=new function(){var c=null,e=[],b=0;this.fps=1E3;this.delay=1;this.registerElement=function(c){e[e.length]=c;b=b+1;c._onStart.fire();this.start()};this.unRegister=function(c,a){var f;if(!(f=a))a:{f=0;for(var g=e.length;f<g;++f)if(e[f]==c)break a;f=-1}a=f;if(!c.isAnimated()||a==-1)return false;c._onComplete.fire();e.splice(a,1);b=b-1;b<=0&&this.stop();return true};this.start=function(){c===null&&(c=setInterval(this.run,this.delay))};this.stop=function(d){if(d)this.unRegister(d);else{clearInterval(c); +for(var d=0,a=e.length;d<a;++d)this.unRegister(e[0],0);e=[];c=null;b=0}};this.run=function(){for(var b=0,a=e.length;b<a;++b){var c=e[b];if(c&&c.isAnimated())if(c.currentFrame<c.totalFrames||c.totalFrames===null){c.currentFrame=c.currentFrame+1;if(c.useSeconds){var g=c,h=g.totalFrames,i=g.currentFrame,j=g.currentFrame*g.duration*1E3/g.totalFrames,k=new Date-g.getStartTime(),l=0,l=k<g.duration*1E3?Math.round((k/j-1)*g.currentFrame):h-(i+1);if(l>0&&isFinite(l)){g.currentFrame+l>=h&&(l=h-(i+1));g.currentFrame= +g.currentFrame+l}}c._onTween.fire()}else YAHOO.util.AnimMgr.stop(c,b)}}};YAHOO.util.Bezier=new function(){this.getPosition=function(c,e){for(var b=c.length,d=[],a=0;a<b;++a)d[a]=[c[a][0],c[a][1]];for(var f=1;f<b;++f)for(a=0;a<b-f;++a){d[a][0]=(1-e)*d[a][0]+e*d[parseInt(a+1,10)][0];d[a][1]=(1-e)*d[a][1]+e*d[parseInt(a+1,10)][1]}return[d[0][0],d[0][1]]}}; +(function(){var c=function(a,b,d,e){c.superclass.constructor.call(this,a,b,d,e)};c.NAME="ColorAnim";c.DEFAULT_BGCOLOR="#fff";var e=YAHOO.util;YAHOO.extend(c,e.Anim);var b=c.superclass,d=c.prototype;d.patterns.color=/color$/i;d.patterns.rgb=/^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;d.patterns.hex=/^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;d.patterns.hex3=/^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;d.patterns.transparent=/^transparent|rgba\(0, 0, 0, 0\)$/;d.parseColor=function(a){if(a.length== +3)return a;var b=this.patterns.hex.exec(a);if(b&&b.length==4)return[parseInt(b[1],16),parseInt(b[2],16),parseInt(b[3],16)];if((b=this.patterns.rgb.exec(a))&&b.length==4)return[parseInt(b[1],10),parseInt(b[2],10),parseInt(b[3],10)];return(b=this.patterns.hex3.exec(a))&&b.length==4?[parseInt(b[1]+b[1],16),parseInt(b[2]+b[2],16),parseInt(b[3]+b[3],16)]:null};d.getAttribute=function(a){var d=this.getEl();if(this.patterns.color.test(a)){var g=YAHOO.util.Dom.getStyle(d,a),h=this;if(this.patterns.transparent.test(g))g= +(d=YAHOO.util.Dom.getAncestorBy(d,function(){return!h.patterns.transparent.test(g)}))?e.Dom.getStyle(d,a):c.DEFAULT_BGCOLOR}else g=b.getAttribute.call(this,a);return g};d.doMethod=function(a,c,d){var e;if(this.patterns.color.test(a)){e=[];for(var i=0,j=c.length;i<j;++i)e[i]=b.doMethod.call(this,a,c[i],d[i]);e="rgb("+Math.floor(e[0])+","+Math.floor(e[1])+","+Math.floor(e[2])+")"}else e=b.doMethod.call(this,a,c,d);return e};d.setRuntimeAttribute=function(a){b.setRuntimeAttribute.call(this,a);if(this.patterns.color.test(a)){var c= +this.attributes,d=this.parseColor(this.runtimeAttributes[a].start),e=this.parseColor(this.runtimeAttributes[a].end);if(typeof c[a].to==="undefined"&&typeof c[a].by!=="undefined")for(var e=this.parseColor(c[a].by),c=0,i=d.length;c<i;++c)e[c]=d[c]+e[c];this.runtimeAttributes[a].start=d;this.runtimeAttributes[a].end=e}};e.ColorAnim=c})(); +YAHOO.util.Easing={easeNone:function(c,e,b,d){return b*c/d+e},easeIn:function(c,e,b,d){return b*(c=c/d)*c+e},easeOut:function(c,e,b,d){return-b*(c=c/d)*(c-2)+e},easeBoth:function(c,e,b,d){return(c=c/(d/2))<1?b/2*c*c+e:-b/2*(--c*(c-2)-1)+e},easeInStrong:function(c,e,b,d){return b*(c=c/d)*c*c*c+e},easeOutStrong:function(c,e,b,d){return-b*((c=c/d-1)*c*c*c-1)+e},easeBothStrong:function(c,e,b,d){return(c=c/(d/2))<1?b/2*c*c*c*c+e:-b/2*((c=c-2)*c*c*c-2)+e},elasticIn:function(c,e,b,d,a,f){if(c==0)return e; +if((c=c/d)==1)return e+b;f||(f=d*0.3);if(!a||a<Math.abs(b)){a=b;b=f/4}else b=f/(2*Math.PI)*Math.asin(b/a);return-(a*Math.pow(2,10*(c=c-1))*Math.sin((c*d-b)*2*Math.PI/f))+e},elasticOut:function(c,e,b,d,a,f){if(c==0)return e;if((c=c/d)==1)return e+b;f||(f=d*0.3);if(!a||a<Math.abs(b))var a=b,g=f/4;else g=f/(2*Math.PI)*Math.asin(b/a);return a*Math.pow(2,-10*c)*Math.sin((c*d-g)*2*Math.PI/f)+b+e},elasticBoth:function(c,e,b,d,a,f){if(c==0)return e;if((c=c/(d/2))==2)return e+b;f||(f=d*0.3*1.5);if(!a||a<Math.abs(b))var a= +b,g=f/4;else g=f/(2*Math.PI)*Math.asin(b/a);return c<1?-0.5*a*Math.pow(2,10*(c=c-1))*Math.sin((c*d-g)*2*Math.PI/f)+e:a*Math.pow(2,-10*(c=c-1))*Math.sin((c*d-g)*2*Math.PI/f)*0.5+b+e},backIn:function(c,e,b,d,a){typeof a=="undefined"&&(a=1.70158);return b*(c=c/d)*c*((a+1)*c-a)+e},backOut:function(c,e,b,d,a){typeof a=="undefined"&&(a=1.70158);return b*((c=c/d-1)*c*((a+1)*c+a)+1)+e},backBoth:function(c,e,b,d,a){typeof a=="undefined"&&(a=1.70158);return(c=c/(d/2))<1?b/2*c*c*(((a=a*1.525)+1)*c-a)+e:b/2* +((c=c-2)*c*(((a=a*1.525)+1)*c+a)+2)+e},bounceIn:function(c,e,b,d){return b-YAHOO.util.Easing.bounceOut(d-c,0,b,d)+e},bounceOut:function(c,e,b,d){return(c=c/d)<1/2.75?b*7.5625*c*c+e:c<2/2.75?b*(7.5625*(c=c-1.5/2.75)*c+0.75)+e:c<2.5/2.75?b*(7.5625*(c=c-2.25/2.75)*c+0.9375)+e:b*(7.5625*(c=c-2.625/2.75)*c+0.984375)+e},bounceBoth:function(c,e,b,d){return c<d/2?YAHOO.util.Easing.bounceIn(c*2,0,b,d)*0.5+e:YAHOO.util.Easing.bounceOut(c*2-d,0,b,d)*0.5+b*0.5+e}}; +(function(){var c=function(a,b,d,e){a&&c.superclass.constructor.call(this,a,b,d,e)};c.NAME="Motion";var e=YAHOO.util;YAHOO.extend(c,e.ColorAnim);var b=c.superclass,d=c.prototype;d.patterns.points=/^points$/i;d.setAttribute=function(a,c,d){if(this.patterns.points.test(a)){d=d||"px";b.setAttribute.call(this,"left",c[0],d);b.setAttribute.call(this,"top",c[1],d)}else b.setAttribute.call(this,a,c,d)};d.getAttribute=function(a){return this.patterns.points.test(a)?[b.getAttribute.call(this,"left"),b.getAttribute.call(this, +"top")]:b.getAttribute.call(this,a)};d.doMethod=function(a,c,d){var f=null;if(this.patterns.points.test(a)){c=this.method(this.currentFrame,0,100,this.totalFrames)/100;f=e.Bezier.getPosition(this.runtimeAttributes[a],c)}else f=b.doMethod.call(this,a,c,d);return f};d.setRuntimeAttribute=function(c){if(this.patterns.points.test(c)){var d=this.getEl(),i=this.attributes,j=i.points.control||[],k,l,m;if(j.length>0&&!(j[0]instanceof Array))j=[j];else{var n=[];l=0;for(m=j.length;l<m;++l)n[l]=j[l];j=n}e.Dom.getStyle(d, +"position")=="static"&&e.Dom.setStyle(d,"position","relative");f(i.points.from)?e.Dom.setXY(d,i.points.from):e.Dom.setXY(d,e.Dom.getXY(d));d=this.getAttribute("points");if(f(i.points.to)){k=a.call(this,i.points.to,d);e.Dom.getXY(this.getEl());l=0;for(m=j.length;l<m;++l)j[l]=a.call(this,j[l],d)}else if(f(i.points.by)){k=[d[0]+i.points.by[0],d[1]+i.points.by[1]];l=0;for(m=j.length;l<m;++l)j[l]=[d[0]+j[l][0],d[1]+j[l][1]]}this.runtimeAttributes[c]=[d];j.length>0&&(this.runtimeAttributes[c]=this.runtimeAttributes[c].concat(j)); +this.runtimeAttributes[c][this.runtimeAttributes[c].length]=k}else b.setRuntimeAttribute.call(this,c)};var a=function(a,b){var c=e.Dom.getXY(this.getEl());return a=[a[0]-c[0]+b[0],a[1]-c[1]+b[1]]},f=function(a){return typeof a!=="undefined"};e.Motion=c})(); +(function(){var c=function(a,b,d,e){a&&c.superclass.constructor.call(this,a,b,d,e)};c.NAME="Scroll";var e=YAHOO.util;YAHOO.extend(c,e.ColorAnim);var b=c.superclass,d=c.prototype;d.doMethod=function(a,c,d){var e=null;return e=a=="scroll"?[this.method(this.currentFrame,c[0],d[0]-c[0],this.totalFrames),this.method(this.currentFrame,c[1],d[1]-c[1],this.totalFrames)]:b.doMethod.call(this,a,c,d)};d.getAttribute=function(a){var c=null,c=this.getEl();return c=a=="scroll"?[c.scrollLeft,c.scrollTop]:b.getAttribute.call(this, +a)};d.setAttribute=function(a,c,d){var e=this.getEl();if(a=="scroll"){e.scrollLeft=c[0];e.scrollTop=c[1]}else b.setAttribute.call(this,a,c,d)};e.Scroll=c})();YAHOO.register("animation",YAHOO.util.Anim,{version:"2.7.0",build:"1799"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadimage/plugin.js b/static/ckeditor/ckeditor/plugins/uploadimage/plugin.js new file mode 100644 index 0000000000..3efe0db674 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadimage/plugin.js @@ -0,0 +1 @@ +"use strict";(function(){CKEDITOR.plugins.add("uploadimage",{requires:"uploadwidget",onLoad:function(){CKEDITOR.addCss(".cke_upload_uploading img{opacity: 0.3}")},init:function(b){if(!CKEDITOR.plugins.clipboard.isFileApiSupported){return}var d=CKEDITOR.fileTools,c=d.getUploadUrl(b.config,"image");if(!c){CKEDITOR.error("uploadimage-config");return}d.addUploadWidget(b,"uploadimage",{supportedTypes:/image\/(jpeg|png|gif|bmp)/,uploadUrl:c,fileToElement:function(){var e=new CKEDITOR.dom.element("img");e.setAttribute("src",a);return e},parts:{img:"img"},onUploading:function(e){this.parts.img.setAttribute("src",e.data)},onUploaded:function(e){console.log(e);this.replaceWith('<img src="'+e.url+'" width="'+this.parts.img.$.naturalWidth+'" height="'+this.parts.img.$.naturalHeight+'">')}});b.on("paste",function(m){if(!m.data.dataValue.match(/<img[\s\S]+data:/i)){return}var h=m.data,l=document.implementation.createHTMLDocument(""),o=new CKEDITOR.dom.element(l.body),j,f,g;o.data("cke-editable",1);o.appendHtml(h.dataValue);j=o.find("img");for(g=0;g<j.count();g++){f=j.getItem(g);var k=f.getAttribute("src")&&f.getAttribute("src").substring(0,5)=="data:",e=f.data("cke-realelement")===null;if(k&&e&&!f.data("cke-upload-id")&&!f.isReadOnly(1)){var n=b.uploadRepository.create(f.getAttribute("src"));n.upload(c);d.markElement(f,"uploadimage",n.id);d.bindNotifications(b,n)}}h.dataValue=o.getHtml()})}});var a="data:image/gif;base64,R0lGODlhDgAOAIAAAAAAAP///yH5BAAAAAAALAAAAAAOAA4AAAIMhI+py+0Po5y02qsKADs="})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/cs.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/cs.js new file mode 100644 index 0000000000..a89b4e15d1 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/cs.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","cs",{abort:"Nahrávání zrušeno uživatelem.",doneOne:"Soubor úspěšně nahrán.",doneMany:"Úspěšně nahráno %1 souborů.",uploadOne:"Nahrávání souboru ({percentage}%)...",uploadMany:"Nahrávání souborů, {current} z {max} hotovo ({percentage}%)..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/da.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/da.js new file mode 100644 index 0000000000..36cfff55a5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/da.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","da",{abort:"Upload er afbrudt af brugen.",doneOne:"Filen er uploadet.",doneMany:"Du har uploadet %1 filer.",uploadOne:"Uploader fil ({percentage}%)...",uploadMany:"Uploader filer, {current} af {max} er uploadet ({percentage}%)..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/de.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/de.js new file mode 100644 index 0000000000..6ff1815246 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/de.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","de",{abort:"Hochladen durch den Benutzer abgebrochen.",doneOne:"Datei erfolgreich hochgeladen.",doneMany:"%1 Dateien erfolgreich hochgeladen.",uploadOne:"Datei wird hochgeladen ({percentage}%)...",uploadMany:"Dateien werden hochgeladen, {current} von {max} fertig ({percentage}%)..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/en.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/en.js new file mode 100644 index 0000000000..7bb1858a4d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/en.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","en",{abort:"Upload aborted by the user.",doneOne:"File successfully uploaded.",doneMany:"Successfully uploaded %1 files.",uploadOne:"Uploading file ({percentage}%)...",uploadMany:"Uploading files, {current} of {max} done ({percentage}%)..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/eo.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/eo.js new file mode 100644 index 0000000000..4ba5f859c2 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/eo.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","eo",{abort:"Alŝuto ĉesigita de la uzanto",doneOne:"Dosiero sukcese alŝutita.",doneMany:"Sukcese alŝutitaj %1 dosieroj.",uploadOne:"alŝutata dosiero ({percentage}%)...",uploadMany:"Alŝutataj dosieroj, {current} el {max} faritaj ({percentage}%)..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/fr.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/fr.js new file mode 100644 index 0000000000..aab60d37cb --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/fr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","fr",{abort:"Téléversement interrompu par l'utilisateur.",doneOne:"Fichier téléversé avec succès.",doneMany:"%1 fichiers téléversés avec succès.",uploadOne:"Téléversement du fichier en cours ({percentage}%)...",uploadMany:"Téléversement des fichiers en cours, {current} sur {max} effectués ({percentage}%)..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/gl.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/gl.js new file mode 100644 index 0000000000..ec376a52d6 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/gl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","gl",{abort:"Envío interrompido polo usuario.",doneOne:"Ficheiro enviado satisfactoriamente.",doneMany:"%1 ficheiros enviados satisfactoriamente.",uploadOne:"Enviando o ficheiro ({percentage}%)...",uploadMany:"Enviando ficheiros, {current} de {max} feito o ({percentage}%)..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/hu.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/hu.js new file mode 100644 index 0000000000..5543b87aac --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/hu.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","hu",{abort:"A feltöltést a felhasználó megszakította.",doneOne:"A fájl sikeresen feltöltve.",doneMany:"%1 fájl sikeresen feltöltve.",uploadOne:"Fájl feltöltése ({percentage}%)...",uploadMany:"Fájlok feltöltése, {current}/{max} kész ({percentage}%)..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/it.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/it.js new file mode 100644 index 0000000000..914db813bc --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/it.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","it",{abort:"Caricamento interrotto dall'utente.",doneOne:"Il file è stato caricato correttamente.",doneMany:"%1 file sono stati caricati correttamente.",uploadOne:"Caricamento del file ({percentage}%)...",uploadMany:"Caricamento dei file, {current} di {max} completati ({percentage}%)..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/ko.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/ko.js new file mode 100644 index 0000000000..d36fa46b6f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/ko.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","ko",{abort:"사용자가 업로드를 중단했습니다.",doneOne:"파일이 성공적으로 업로드되었습니다.",doneMany:"파일 %1개를 성공적으로 업로드하였습니다.",uploadOne:"파일 업로드중 ({percentage}%)...",uploadMany:"파일 {max} 개 중 {current} 번째 파일 업로드 중 ({percentage}%)..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/ku.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/ku.js new file mode 100644 index 0000000000..6c1a020912 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/ku.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","ku",{abort:"بارکردنەکە بڕدرا لەلایەن بەکارهێنەر.",doneOne:"پەڕگەکە بەسەرکەوتووانە بارکرا.",doneMany:"بەسەرکەوتووانە بارکرا %1 پەڕگە.",uploadOne:"پەڕگە باردەکرێت ({percentage}%)...",uploadMany:"پەڕگە باردەکرێت, {current} لە {max} ئەنجامدراوە ({percentage}%)..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/nb.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/nb.js new file mode 100644 index 0000000000..fed26eebc3 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/nb.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","nb",{abort:"Opplasting ble avbrutt av brukeren.",doneOne:"Filen har blitt lastet opp.",doneMany:"Fullført opplasting av %1 filer.",uploadOne:"Laster opp fil ({percentage}%)...",uploadMany:"Laster opp filer, {current} av {max} fullført ({percentage}%)..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/nl.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/nl.js new file mode 100644 index 0000000000..cb56b0b051 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/nl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","nl",{abort:"Upload gestopt door de gebruiker.",doneOne:"Bestand succesvol geüpload.",doneMany:"Succesvol %1 bestanden geüpload.",uploadOne:"Uploaden bestand ({percentage}%)…",uploadMany:"Bestanden aan het uploaden, {current} van {max} klaar ({percentage}%)…"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/pl.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/pl.js new file mode 100644 index 0000000000..db79b12c4c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/pl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","pl",{abort:"Wysyłanie przerwane przez użytkownika.",doneOne:"Plik został pomyślnie wysłany.",doneMany:"Pomyślnie wysłane pliki: %1.",uploadOne:"Wysyłanie pliku ({percentage}%)...",uploadMany:"Wysyłanie plików, gotowe {current} z {max} ({percentage}%)..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/pt-br.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/pt-br.js new file mode 100644 index 0000000000..add5cec2eb --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/pt-br.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","pt-br",{abort:"Envio cancelado pelo usuário.",doneOne:"Arquivo enviado com sucesso.",doneMany:"Enviados %1 arquivos com sucesso.",uploadOne:"Enviando arquivo({percentage}%)...",uploadMany:"Enviando arquivos, {current} de {max} completos ({percentage}%)..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/ru.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/ru.js new file mode 100644 index 0000000000..fe517a316c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/ru.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","ru",{abort:"Загрузка отменена пользователем",doneOne:"Файл успешно загружен",doneMany:"Успешно загружено файлов: %1",uploadOne:"Загрузка файла ({percentage}%)",uploadMany:"Загрузка файлов, {current} из {max} загружено ({percentage}%)..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/sv.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/sv.js new file mode 100644 index 0000000000..d5de2b9998 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/sv.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","sv",{abort:"Uppladdning avbruten av användaren.",doneOne:"Filuppladdning lyckades.",doneMany:"Uppladdning av %1 filer lyckades.",uploadOne:"Laddar upp fil ({percentage}%)...",uploadMany:"Laddar upp filer, {current} av {max} färdiga ({percentage}%)..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/tr.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/tr.js new file mode 100644 index 0000000000..a9978abc8a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/tr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","tr",{abort:"Gönderme işlemi kullanıcı tarafından durduruldu.",doneOne:"Gönderim işlemi başarılı şekilde tamamlandı.",doneMany:"%1 dosya başarılı şekilde gönderildi.",uploadOne:"Dosyanın ({percentage}%) gönderildi...",uploadMany:"Toplam {current} / {max} dosyanın ({percentage}%) gönderildi..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/zh-cn.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/zh-cn.js new file mode 100644 index 0000000000..c33d7963bd --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/zh-cn.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","zh-cn",{abort:"上传已被用户中止。",doneOne:"文件上传成功。",doneMany:"成功上传了 %1 个文件。",uploadOne:"正在上传文件({percentage}%)……",uploadMany:"正在上传文件,{max} 中的 {current}({percentage}%)……"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/lang/zh.js b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/zh.js new file mode 100644 index 0000000000..27043cb4d6 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/lang/zh.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("uploadwidget","zh",{abort:"上傳由使用者放棄。",doneOne:"檔案成功上傳。",doneMany:"成功上傳 %1 檔案。",uploadOne:"正在上傳檔案({percentage}%)...",uploadMany:"正在上傳檔案,{max} 中的 {current} 已完成({percentage}%)..."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/uploadwidget/plugin.js b/static/ckeditor/ckeditor/plugins/uploadwidget/plugin.js new file mode 100644 index 0000000000..29ae5d1a5a --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/uploadwidget/plugin.js @@ -0,0 +1,10 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){CKEDITOR.plugins.add("uploadwidget",{lang:"cs,da,de,en,eo,fr,gl,hu,it,ko,ku,nb,nl,pl,pt-br,ru,sv,tr,zh,zh-cn",requires:"widget,clipboard,filetools,notificationaggregator",init:function(b){b.filter.allow("*[!data-widget,!data-cke-upload-id]")}});CKEDITOR.fileTools||(CKEDITOR.fileTools={});CKEDITOR.tools.extend(CKEDITOR.fileTools,{addUploadWidget:function(b,c,a){var f=CKEDITOR.fileTools,k=b.uploadRepository,m=a.supportedTypes?10:20;if(a.fileToElement)b.on("paste",function(i){var i=i.data, +l=i.dataTransfer,e=l.getFilesCount(),j=a.loadMethod||"loadAndUpload",d,g;if(!i.dataValue&&e)for(g=0;g<e;g++){d=l.getFile(g);if(!a.supportedTypes||f.isTypeSupported(d,a.supportedTypes)){var h=a.fileToElement(d);d=k.create(d);if(h){d[j](a.uploadUrl);CKEDITOR.fileTools.markElement(h,c,d.id);(j=="loadAndUpload"||j=="upload")&&CKEDITOR.fileTools.bindNotifications(b,d);i.dataValue=i.dataValue+h.getOuterHtml()}}}},null,null,m);CKEDITOR.tools.extend(a,{downcast:function(){return new CKEDITOR.htmlParser.text("")}, +init:function(){var a=this,c=this.wrapper.findOne("[data-cke-upload-id]").data("cke-upload-id"),e=k.loaders[c],f=CKEDITOR.tools.capitalize,d,g;e.on("update",function(h){if(!a.wrapper||!a.wrapper.getParent()){b.editable().find('[data-cke-upload-id="'+c+'"]').count()||e.abort();h.removeListener()}else{b.fire("lockSnapshot");h="on"+f(e.status);if(!(typeof a[h]==="function"&&a[h](e)===false)){g="cke_upload_"+e.status;if(a.wrapper&&g!=d){d&&a.wrapper.removeClass(d);a.wrapper.addClass(g);d=g}(e.status== +"error"||e.status=="abort")&&b.widgets.del(a)}b.fire("unlockSnapshot")}});e.update()},replaceWith:function(a,c){if(a.trim()==="")b.widgets.del(this);else{var e=this==b.widgets.focused,f=b.editable(),d=b.createRange(),g,h;e||(h=b.getSelection().createBookmarks());d.setStartBefore(this.wrapper);d.setEndAfter(this.wrapper);e&&(g=d.createBookmark());f.insertHtmlIntoRange(a,d,c);b.widgets.checkWidgets({initOnlyNew:true});b.widgets.destroy(this,true);if(e){d.moveToBookmark(g);d.select()}else b.getSelection().selectBookmarks(h)}}}); +b.widgets.add(c,a)},markElement:function(b,c,a){b.setAttributes({"data-cke-upload-id":a,"data-widget":c})},bindNotifications:function(b,c){var a=b._.uploadWidgetNotificaionAggregator;if(!a||a.isFinished()){a=b._.uploadWidgetNotificaionAggregator=new CKEDITOR.plugins.notificationAggregator(b,b.lang.uploadwidget.uploadMany,b.lang.uploadwidget.uploadOne);a.once("finished",function(){var c=a.getTaskCount();c===0?a.notification.hide():a.notification.update({message:c==1?b.lang.uploadwidget.doneOne:b.lang.uploadwidget.doneMany.replace("%1", +c),type:"success",important:1})})}var f=a.createTask({weight:c.total});c.on("update",function(){f&&c.status=="uploading"&&f.update(c.uploaded)});c.on("uploaded",function(){f&&f.done()});c.on("error",function(){f&&f.cancel();b.showNotification(c.message,"warning")});c.on("abort",function(){f&&f.cancel();b.showNotification(b.lang.uploadwidget.abort,"info")})}})})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/images/handle.png b/static/ckeditor/ckeditor/plugins/widget/images/handle.png new file mode 100644 index 0000000000..ba8cda5b30 Binary files /dev/null and b/static/ckeditor/ckeditor/plugins/widget/images/handle.png differ diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/af.js b/static/ckeditor/ckeditor/plugins/widget/lang/af.js new file mode 100644 index 0000000000..a20b223b24 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/af.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","af",{move:"Klik en trek on te beweeg"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/ar.js b/static/ckeditor/ckeditor/plugins/widget/lang/ar.js new file mode 100644 index 0000000000..f93cca9063 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/ar.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","ar",{move:"إضغط و إسحب للتحريك"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/bg.js b/static/ckeditor/ckeditor/plugins/widget/lang/bg.js new file mode 100644 index 0000000000..d3fc9ed1c6 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/bg.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","bg",{move:"Кликни и влачи, за да преместиш"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/ca.js b/static/ckeditor/ckeditor/plugins/widget/lang/ca.js new file mode 100644 index 0000000000..d80e5973ff --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/ca.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","ca",{move:"Clicar i arrossegar per moure"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/cs.js b/static/ckeditor/ckeditor/plugins/widget/lang/cs.js new file mode 100644 index 0000000000..7dcb085d55 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/cs.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","cs",{move:"Klepněte a táhněte pro přesunutí"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/cy.js b/static/ckeditor/ckeditor/plugins/widget/lang/cy.js new file mode 100644 index 0000000000..bca5c69660 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/cy.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","cy",{move:"Clcio a llusgo i symud"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/da.js b/static/ckeditor/ckeditor/plugins/widget/lang/da.js new file mode 100644 index 0000000000..5ebe806838 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/da.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","da",{move:"Klik og træk for at flytte"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/de.js b/static/ckeditor/ckeditor/plugins/widget/lang/de.js new file mode 100644 index 0000000000..8df3bbfada --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/de.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","de",{move:"Zum Verschieben anwählen und ziehen"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/el.js b/static/ckeditor/ckeditor/plugins/widget/lang/el.js new file mode 100644 index 0000000000..9db5c5ccd4 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/el.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","el",{move:"Κάνετε κλικ και σύρετε το ποντίκι για να μετακινήστε"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/en-gb.js b/static/ckeditor/ckeditor/plugins/widget/lang/en-gb.js new file mode 100644 index 0000000000..35a08fc638 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/en-gb.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","en-gb",{move:"Click and drag to move"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/en.js b/static/ckeditor/ckeditor/plugins/widget/lang/en.js new file mode 100644 index 0000000000..7d5bf3a9b1 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/en.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","en",{move:"Click and drag to move"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/eo.js b/static/ckeditor/ckeditor/plugins/widget/lang/eo.js new file mode 100644 index 0000000000..5dfaec188c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/eo.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","eo",{move:"klaki kaj treni por movi"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/es.js b/static/ckeditor/ckeditor/plugins/widget/lang/es.js new file mode 100644 index 0000000000..e182bc4038 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/es.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","es",{move:"Dar clic y arrastrar para mover"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/fa.js b/static/ckeditor/ckeditor/plugins/widget/lang/fa.js new file mode 100644 index 0000000000..93b87e12b7 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/fa.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","fa",{move:"کلیک و کشیدن برای جابجایی"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/fi.js b/static/ckeditor/ckeditor/plugins/widget/lang/fi.js new file mode 100644 index 0000000000..4e63d5c591 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/fi.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","fi",{move:"Siirrä klikkaamalla ja raahaamalla"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/fr.js b/static/ckeditor/ckeditor/plugins/widget/lang/fr.js new file mode 100644 index 0000000000..5ff1ebfed5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/fr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","fr",{move:"Cliquer et glisser pour déplacer"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/gl.js b/static/ckeditor/ckeditor/plugins/widget/lang/gl.js new file mode 100644 index 0000000000..85e41ea354 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/gl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","gl",{move:"Prema e arrastre para mover"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/he.js b/static/ckeditor/ckeditor/plugins/widget/lang/he.js new file mode 100644 index 0000000000..4698585946 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/he.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","he",{move:"לחץ וגרור להזזה"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/hr.js b/static/ckeditor/ckeditor/plugins/widget/lang/hr.js new file mode 100644 index 0000000000..aaf8794426 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/hr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","hr",{move:"Klikni i povuci da pomakneš"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/hu.js b/static/ckeditor/ckeditor/plugins/widget/lang/hu.js new file mode 100644 index 0000000000..13d414a59b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/hu.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","hu",{move:"Kattints és húzd a mozgatáshoz"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/it.js b/static/ckeditor/ckeditor/plugins/widget/lang/it.js new file mode 100644 index 0000000000..10468fcb5f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/it.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","it",{move:"Fare clic e trascinare per spostare"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/ja.js b/static/ckeditor/ckeditor/plugins/widget/lang/ja.js new file mode 100644 index 0000000000..add6576663 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/ja.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","ja",{move:"ドラッグして移動"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/km.js b/static/ckeditor/ckeditor/plugins/widget/lang/km.js new file mode 100644 index 0000000000..ddd4a92d3f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/km.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","km",{move:"ចុច​ហើយ​ទាញ​ដើម្បី​ផ្លាស់​ទី"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/ko.js b/static/ckeditor/ckeditor/plugins/widget/lang/ko.js new file mode 100644 index 0000000000..42bb884273 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/ko.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","ko",{move:"움직이려면 클릭 후 드래그 하세요"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/ku.js b/static/ckeditor/ckeditor/plugins/widget/lang/ku.js new file mode 100644 index 0000000000..7ddec15015 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/ku.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","ku",{move:"کرتەبکە و ڕایبکێشە بۆ جوڵاندن"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/lv.js b/static/ckeditor/ckeditor/plugins/widget/lang/lv.js new file mode 100644 index 0000000000..11da560117 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/lv.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","lv",{move:"Klikšķina un velc, lai pārvietotu"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/nb.js b/static/ckeditor/ckeditor/plugins/widget/lang/nb.js new file mode 100644 index 0000000000..45cfd5b998 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/nb.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","nb",{move:"Klikk og dra for å flytte"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/nl.js b/static/ckeditor/ckeditor/plugins/widget/lang/nl.js new file mode 100644 index 0000000000..f0e7c7f388 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/nl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","nl",{move:"Klik en sleep om te verplaatsen"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/no.js b/static/ckeditor/ckeditor/plugins/widget/lang/no.js new file mode 100644 index 0000000000..87b0f57f79 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/no.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","no",{move:"Klikk og dra for å flytte"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/pl.js b/static/ckeditor/ckeditor/plugins/widget/lang/pl.js new file mode 100644 index 0000000000..96019efaf0 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/pl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","pl",{move:"Kliknij i przeciągnij, by przenieść."}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/pt-br.js b/static/ckeditor/ckeditor/plugins/widget/lang/pt-br.js new file mode 100644 index 0000000000..7e580a8f66 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/pt-br.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","pt-br",{move:"Click e arraste para mover"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/pt.js b/static/ckeditor/ckeditor/plugins/widget/lang/pt.js new file mode 100644 index 0000000000..d181d22e2b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/pt.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","pt",{move:"Clique e arraste para mover"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/ru.js b/static/ckeditor/ckeditor/plugins/widget/lang/ru.js new file mode 100644 index 0000000000..e8e046c2b5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/ru.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","ru",{move:"Нажмите и перетащите"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/sk.js b/static/ckeditor/ckeditor/plugins/widget/lang/sk.js new file mode 100644 index 0000000000..3920c36269 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/sk.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","sk",{move:"Kliknite a potiahnite pre presunutie"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/sl.js b/static/ckeditor/ckeditor/plugins/widget/lang/sl.js new file mode 100644 index 0000000000..a228498029 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/sl.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","sl",{move:"Kliknite in povlecite, da premaknete"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/sq.js b/static/ckeditor/ckeditor/plugins/widget/lang/sq.js new file mode 100644 index 0000000000..71d56bf68d --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/sq.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","sq",{move:"Kliko dhe tërhiqe për ta lëvizur"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/sv.js b/static/ckeditor/ckeditor/plugins/widget/lang/sv.js new file mode 100644 index 0000000000..f8a24c240e --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/sv.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","sv",{move:"Klicka och drag för att flytta"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/tr.js b/static/ckeditor/ckeditor/plugins/widget/lang/tr.js new file mode 100644 index 0000000000..27d36925dd --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/tr.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","tr",{move:"Taşımak için, tıklayın ve sürükleyin"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/tt.js b/static/ckeditor/ckeditor/plugins/widget/lang/tt.js new file mode 100644 index 0000000000..8866a60c7f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/tt.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","tt",{move:"Күчереп куер өчен басып шудырыгыз"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/uk.js b/static/ckeditor/ckeditor/plugins/widget/lang/uk.js new file mode 100644 index 0000000000..a3ab02488b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/uk.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","uk",{move:"Клікніть і потягніть для переміщення"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/vi.js b/static/ckeditor/ckeditor/plugins/widget/lang/vi.js new file mode 100644 index 0000000000..2d79369f70 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/vi.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","vi",{move:"Nhấp chuột và kéo để di chuyển"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/zh-cn.js b/static/ckeditor/ckeditor/plugins/widget/lang/zh-cn.js new file mode 100644 index 0000000000..cbdb0fd299 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/zh-cn.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","zh-cn",{move:"点击并拖拽以移动"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/lang/zh.js b/static/ckeditor/ckeditor/plugins/widget/lang/zh.js new file mode 100644 index 0000000000..473a9f8d64 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/lang/zh.js @@ -0,0 +1,5 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +CKEDITOR.plugins.setLang("widget","zh",{move:"拖曳以移動"}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/widget/plugin.js b/static/ckeditor/ckeditor/plugins/widget/plugin.js new file mode 100644 index 0000000000..2e2d37ae9b --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/widget/plugin.js @@ -0,0 +1,60 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){function n(a){this.editor=a;this.registered={};this.instances={};this.selected=[];this.widgetHoldingFocusedEditable=this.focused=null;this._={nextId:0,upcasts:[],upcastCallbacks:[],filters:{}};C(this);D(this);this.on("checkWidgets",E);this.editor.on("contentDomInvalidated",this.checkWidgets,this);F(this);G(this);H(this);I(this);J(this)}function h(a,b,c,d,e){var f=a.editor;CKEDITOR.tools.extend(this,d,{editor:f,id:b,inline:"span"==c.getParent().getName(),element:c,data:CKEDITOR.tools.extend({}, +"function"==typeof d.defaults?d.defaults():d.defaults),dataReady:!1,inited:!1,ready:!1,edit:h.prototype.edit,focusedEditable:null,definition:d,repository:a,draggable:!1!==d.draggable,_:{downcastFn:d.downcast&&"string"==typeof d.downcast?d.downcasts[d.downcast]:d.downcast}},!0);a.fire("instanceCreated",this);K(this,d);this.init&&this.init();this.inited=!0;(a=this.element.data("cke-widget-data"))&&this.setData(JSON.parse(decodeURIComponent(a)));e&&this.setData(e);this.data.classes||this.setData("classes", +this.getClasses());this.dataReady=!0;p(this);this.fire("data",this.data);this.isInited()&&f.editable().contains(this.wrapper)&&(this.ready=!0,this.fire("ready"))}function o(a,b,c){CKEDITOR.dom.element.call(this,b.$);this.editor=a;this._={};b=this.filter=c.filter;CKEDITOR.dtd[this.getName()].p?(this.enterMode=b?b.getAllowedEnterMode(a.enterMode):a.enterMode,this.shiftEnterMode=b?b.getAllowedEnterMode(a.shiftEnterMode,!0):a.shiftEnterMode):this.enterMode=this.shiftEnterMode=CKEDITOR.ENTER_BR}function L(a, +b){a.addCommand(b.name,{exec:function(a,d){function e(){a.widgets.finalizeCreation(i)}var f=a.widgets.focused;if(f&&f.name==b.name)f.edit();else if(b.insert)b.insert();else if(b.template){var f="function"==typeof b.defaults?b.defaults():b.defaults,f=CKEDITOR.dom.element.createFromHtml(b.template.output(f)),g,j=a.widgets.wrapElement(f,b.name),i=new CKEDITOR.dom.documentFragment(j.getDocument());i.append(j);(g=a.widgets.initOn(f,b,d&&d.startupData))?(f=g.once("edit",function(b){if(b.data.dialog)g.once("dialog", +function(b){var b=b.data,d,f;d=b.once("ok",e,null,null,20);f=b.once("cancel",function(b){b.data&&!1===b.data.hide||a.widgets.destroy(g,!0)});b.once("hide",function(){d.removeListener();f.removeListener()})});else e()},null,null,999),g.edit(),f.removeListener()):e()}},allowedContent:b.allowedContent,requiredContent:b.requiredContent,contentForms:b.contentForms,contentTransformations:b.contentTransformations})}function M(a,b){function c(b,c,d){var e=CKEDITOR.tools.getIndex(a._.upcasts,function(a){return a[2]> +d});0>e&&(e=a._.upcasts.length);a._.upcasts.splice(e,0,[b,c,d])}var d=b.upcast,e=b.upcastPriority||10;if(d)if("string"==typeof d)for(d=d.split(",");d.length;)c(b.upcasts[d.pop()],b.name,e);else c(d,b.name,e)}function q(a,b){a.focused=null;if(b.isInited()){var c=b.editor.checkDirty();a.fire("widgetBlurred",{widget:b});b.setFocused(!1);!c&&b.editor.resetDirty()}}function E(a){a=a.data;if("wysiwyg"==this.editor.mode){var b=this.editor.editable(),c=this.instances,d,e,f,g;if(b){for(d in c)c[d].isReady()&& +!b.contains(c[d].wrapper)&&this.destroy(c[d],!0);if(a&&a.initOnlyNew)c=this.initOnAll();else{var j=b.find(".cke_widget_wrapper"),c=[];d=0;for(e=j.count();d<e;d++){f=j.getItem(d);if(g=!this.getByElement(f,!0)){a:{g=N;for(var i=f;i=i.getParent();)if(g(i)){g=!0;break a}g=!1}g=!g&&b.contains(f)}g&&(f.addClass("cke_widget_new"),c.push(this.initOn(f.getFirst(h.isDomWidgetElement))))}}a&&(a.focusInited&&1==c.length)&&c[0].focus()}}}function r(a,b,c){if(!c.allowedContent)return null;var d=this._.filters[a]; +d||(this._.filters[a]=d={});(a=d[b])||(d[b]=a=new CKEDITOR.filter(c.allowedContent));return a}function O(a){var b=[],c=a._.upcasts,d=a._.upcastCallbacks;return{toBeWrapped:b,iterator:function(a){var f,g,j,i,l;if("data-cke-widget-wrapper"in a.attributes)return(a=a.getFirst(h.isParserWidgetElement))&&b.push([a]),!1;if("data-widget"in a.attributes)return b.push([a]),!1;if(l=c.length){if(a.attributes["data-cke-widget-upcasted"])return!1;i=0;for(f=d.length;i<f;++i)if(!1===d[i](a))return;for(i=0;i<l;++i)if(f= +c[i],j={},g=f[0](a,j))return g instanceof CKEDITOR.htmlParser.element&&(a=g),a.attributes["data-cke-widget-data"]=encodeURIComponent(JSON.stringify(j)),a.attributes["data-cke-widget-upcasted"]=1,b.push([a,f[1]]),!1}}}}function s(a){return{tabindex:-1,contenteditable:"false","data-cke-widget-wrapper":1,"data-cke-filter":"off","class":"cke_widget_wrapper cke_widget_new cke_widget_"+(a?"inline":"block")}}function t(a,b,c){if(a.type==CKEDITOR.NODE_ELEMENT){var d=CKEDITOR.dtd[a.name];if(d&&!d[c.name]){var d= +a.split(b),e=a.parent,b=d.getIndex();a.children.length||(b-=1,a.remove());d.children.length||d.remove();return t(e,b,c)}}a.add(c,b)}function u(a,b){return"boolean"==typeof a.inline?a.inline:!!CKEDITOR.dtd.$inline[b]}function N(a){return a.hasAttribute("data-cke-temp")}function m(a,b,c,d){var e=a.editor;e.fire("lockSnapshot");c?(d=c.data("cke-widget-editable"),d=b.editables[d],a.widgetHoldingFocusedEditable=b,b.focusedEditable=d,c.addClass("cke_widget_editable_focused"),d.filter&&e.setActiveFilter(d.filter), +e.setActiveEnterMode(d.enterMode,d.shiftEnterMode)):(d||b.focusedEditable.removeClass("cke_widget_editable_focused"),b.focusedEditable=null,a.widgetHoldingFocusedEditable=null,e.setActiveFilter(null),e.setActiveEnterMode(null,null));e.fire("unlockSnapshot")}function P(a){a.contextMenu&&a.contextMenu.addListener(function(b){if(b=a.widgets.getByElement(b,!0))return b.fire("contextMenu",{})})}function Q(a,b){return CKEDITOR.tools.trim(b)}function I(a){var b=a.editor,c=CKEDITOR.plugins.lineutils;b.on("dragstart", +function(c){var e=c.data.target;h.isDomDragHandler(e)&&(e=a.getByElement(e),c.data.dataTransfer.setData("cke/widget-id",e.id),b.focus(),e.focus())});b.on("drop",function(c){var e=c.data.dataTransfer,f=e.getData("cke/widget-id"),g=b.createRange();if(!(""===f||e.getTransferType(b)!=CKEDITOR.DATA_TRANSFER_INTERNAL))if(e=a.instances[f])g.setStartBefore(e.wrapper),g.setEndAfter(e.wrapper),c.data.dragRange=g,delete CKEDITOR.plugins.clipboard.dragStartContainerChildCount,delete CKEDITOR.plugins.clipboard.dragEndContainerChildCount, +c.data.dataTransfer.setData("text/html",b.editable().getHtmlFromRange(g).getHtml()),b.widgets.destroy(e,!0)});b.on("contentDom",function(){var d=b.editable();CKEDITOR.tools.extend(a,{finder:new c.finder(b,{lookups:{"default":function(b){if(!b.is(CKEDITOR.dtd.$listItem)&&b.is(CKEDITOR.dtd.$block)&&!h.isDomNestedEditable(b)&&!a._.draggedWidget.wrapper.contains(b)){var c=h.getNestedEditable(d,b);if(c){b=a._.draggedWidget;if(a.getByElement(c)==b)return;c=CKEDITOR.filter.instances[c.data("cke-filter")]; +b=b.requiredContent;if(c&&b&&!c.check(b))return}return CKEDITOR.LINEUTILS_BEFORE|CKEDITOR.LINEUTILS_AFTER}}}}),locator:new c.locator(b),liner:new c.liner(b,{lineStyle:{cursor:"move !important","border-top-color":"#666"},tipLeftStyle:{"border-left-color":"#666"},tipRightStyle:{"border-right-color":"#666"}})},!0)})}function G(a){var b=a.editor;b.on("contentDom",function(){var c=b.editable(),d=c.isInline()?c:b.document,e,f;c.attachListener(d,"mousedown",function(b){var c=b.data.getTarget();if(!c.type)return!1; +e=a.getByElement(c);f=0;e&&(e.inline&&c.type==CKEDITOR.NODE_ELEMENT&&c.hasAttribute("data-cke-widget-drag-handler")?f=1:h.getNestedEditable(e.wrapper,c)?e=null:(b.data.preventDefault(),CKEDITOR.env.ie||e.focus()))});c.attachListener(d,"mouseup",function(){f&&(e&&e.wrapper)&&(f=0,e.focus())});CKEDITOR.env.ie&&c.attachListener(d,"mouseup",function(){setTimeout(function(){e&&(e.wrapper&&c.contains(e.wrapper))&&(e.focus(),e=null)})})});b.on("doubleclick",function(b){var d=a.getByElement(b.data.element); +if(d&&!h.getNestedEditable(d.wrapper,b.data.element))return d.fire("doubleclick",{element:b.data.element})},null,null,1)}function H(a){a.editor.on("key",function(b){var c=a.focused,d=a.widgetHoldingFocusedEditable,e;c?e=c.fire("key",{keyCode:b.data.keyCode}):d&&(c=b.data.keyCode,b=d.focusedEditable,c==CKEDITOR.CTRL+65?(c=b.getBogus(),d=d.editor.createRange(),d.selectNodeContents(b),c&&d.setEndAt(c,CKEDITOR.POSITION_BEFORE_START),d.select(),e=!1):8==c||46==c?(e=d.editor.getSelection().getRanges(), +d=e[0],e=!(1==e.length&&d.collapsed&&d.checkBoundaryOfElement(b,CKEDITOR[8==c?"START":"END"]))):e=void 0);return e},null,null,1)}function J(a){function b(b){a.focused&&v(a.focused,"cut"==b.name)}var c=a.editor;c.on("contentDom",function(){var a=c.editable();a.attachListener(a,"copy",b);a.attachListener(a,"cut",b)})}function F(a){var b=a.editor;b.on("selectionCheck",function(){a.fire("checkSelection")});a.on("checkSelection",a.checkSelection,a);b.on("selectionChange",function(c){var d=(c=h.getNestedEditable(b.editable(), +c.data.selection.getStartElement()))&&a.getByElement(c),e=a.widgetHoldingFocusedEditable;if(e){if(e!==d||!e.focusedEditable.equals(c))m(a,e,null),d&&c&&m(a,d,c)}else d&&c&&m(a,d,c)});b.on("dataReady",function(){w(a).commit()});b.on("blur",function(){var b;(b=a.focused)&&q(a,b);(b=a.widgetHoldingFocusedEditable)&&m(a,b,null)})}function D(a){var b=a.editor,c={};b.on("toDataFormat",function(b){var e=CKEDITOR.tools.getNextNumber(),f=[];b.data.downcastingSessionId=e;c[e]=f;b.data.dataValue.forEach(function(b){var c= +b.attributes,d;if("data-cke-widget-id"in c){if(c=a.instances[c["data-cke-widget-id"]])d=b.getFirst(h.isParserWidgetElement),f.push({wrapper:b,element:d,widget:c,editables:{}}),"1"!=d.attributes["data-cke-widget-keep-attr"]&&delete d.attributes["data-widget"]}else if("data-cke-widget-editable"in c)return f[f.length-1].editables[c["data-cke-widget-editable"]]=b,!1},CKEDITOR.NODE_ELEMENT,!0)},null,null,8);b.on("toDataFormat",function(a){if(a.data.downcastingSessionId)for(var a=c[a.data.downcastingSessionId], +b,f,g,j,h,l;b=a.shift();){f=b.widget;g=b.element;j=f._.downcastFn&&f._.downcastFn.call(f,g);for(l in b.editables)h=b.editables[l],delete h.attributes.contenteditable,h.setHtml(f.editables[l].getData());j||(j=g);b.wrapper.replaceWith(j)}},null,null,13);b.on("contentDomUnload",function(){a.destroyAll(!0)})}function C(a){var b=a.editor,c,d;b.on("toHtml",function(b){var d=O(a),g;for(b.data.dataValue.forEach(d.iterator,CKEDITOR.NODE_ELEMENT,!0);g=d.toBeWrapped.pop();){var j=g[0],i=j.parent;i.type==CKEDITOR.NODE_ELEMENT&& +i.attributes["data-cke-widget-wrapper"]&&i.replaceWith(j);a.wrapElement(g[0],g[1])}c=b.data.protectedWhitespaces?3==b.data.dataValue.children.length&&h.isParserWidgetWrapper(b.data.dataValue.children[1]):1==b.data.dataValue.children.length&&h.isParserWidgetWrapper(b.data.dataValue.children[0])},null,null,8);b.on("dataReady",function(){if(d)for(var c=b.editable().find(".cke_widget_wrapper"),f,g,j=0,i=c.count();j<i;++j)f=c.getItem(j),g=f.getFirst(h.isDomWidgetElement),g.type==CKEDITOR.NODE_ELEMENT&& +g.data("widget")?(g.replace(f),a.wrapElement(g)):f.remove();d=0;a.destroyAll(!0);a.initOnAll()});b.on("loadSnapshot",function(b){/data-cke-widget/.test(b.data)&&(d=1);a.destroyAll(!0)},null,null,9);b.on("paste",function(a){a=a.data;a.dataValue=a.dataValue.replace(R,Q);if(a.range&&(a=h.getNestedEditable(b.editable(),a.range.startContainer)))(a=CKEDITOR.filter.instances[a.data("cke-filter")])&&b.setActiveFilter(a)});b.on("afterInsertHtml",function(d){d.data.intoRange?a.checkWidgets({initOnlyNew:!0}): +(b.fire("lockSnapshot"),a.checkWidgets({initOnlyNew:!0,focusInited:c}),b.fire("unlockSnapshot"))})}function w(a){var b=a.selected,c=[],d=b.slice(0),e=null;return{select:function(a){0>CKEDITOR.tools.indexOf(b,a)&&c.push(a);a=CKEDITOR.tools.indexOf(d,a);0<=a&&d.splice(a,1);return this},focus:function(a){e=a;return this},commit:function(){var f=a.focused!==e,g,h;a.editor.fire("lockSnapshot");for(f&&(g=a.focused)&&q(a,g);g=d.pop();)b.splice(CKEDITOR.tools.indexOf(b,g),1),g.isInited()&&(h=g.editor.checkDirty(), +g.setSelected(!1),!h&&g.editor.resetDirty());f&&e&&(h=a.editor.checkDirty(),a.focused=e,a.fire("widgetFocused",{widget:e}),e.setFocused(!0),!h&&a.editor.resetDirty());for(;g=c.pop();)b.push(g),g.setSelected(!0);a.editor.fire("unlockSnapshot")}}}function x(a,b,c){var d=0,b=y(b),e=a.data.classes||{},f;if(b){for(e=CKEDITOR.tools.clone(e);f=b.pop();)c?e[f]||(d=e[f]=1):e[f]&&(delete e[f],d=1);d&&a.setData("classes",e)}}function z(a){a.cancel()}function v(a,b){var c=a.editor,d=c.document;if(!d.getById("cke_copybin")){var e= +c.blockless||CKEDITOR.env.ie?"span":"div",f=d.createElement(e),g=d.createElement(e),e=CKEDITOR.env.ie&&9>CKEDITOR.env.version;g.setAttributes({id:"cke_copybin","data-cke-temp":"1"});f.setStyles({position:"absolute",width:"1px",height:"1px",overflow:"hidden"});f.setStyle("ltr"==c.config.contentsLangDirection?"left":"right","-5000px");var h=c.createRange();h.setStartBefore(a.wrapper);h.setEndAfter(a.wrapper);f.setHtml('<span data-cke-copybin-start="1">​</span>'+c.editable().getHtmlFromRange(h).getHtml()+ +'<span data-cke-copybin-end="1">​</span>');c.fire("saveSnapshot");c.fire("lockSnapshot");g.append(f);c.editable().append(g);var i=c.on("selectionChange",z,null,null,0),l=a.repository.on("checkSelection",z,null,null,0);if(e)var k=d.getDocumentElement().$,m=k.scrollTop;h=c.createRange();h.selectNodeContents(f);h.select();e&&(k.scrollTop=m);setTimeout(function(){b||a.focus();g.remove();i.removeListener();l.removeListener();c.fire("unlockSnapshot");if(b){a.repository.del(a);c.fire("saveSnapshot")}},100)}} +function y(a){return(a=(a=a.getDefinition().attributes)&&a["class"])?a.split(/\s+/):null}function A(){var a=CKEDITOR.document.getActive(),b=this.editor,c=b.editable();(c.isInline()?c:b.document.getWindow().getFrame()).equals(a)&&b.focusManager.focus(c)}function B(){CKEDITOR.env.gecko&&this.editor.unlockSelection();CKEDITOR.env.webkit||(this.editor.forceNextSelectionCheck(),this.editor.selectionChange(1))}function S(a){var b=null;a.on("data",function(){var a=this.data.classes,d;if(b!=a){for(d in b)(!a|| +!a[d])&&this.removeClass(d);for(d in a)this.addClass(d);b=a}})}function T(a){if(a.draggable){var b=a.editor,c=a.wrapper.getLast(h.isDomDragHandlerContainer),d;c?d=c.findOne("img"):(c=new CKEDITOR.dom.element("span",b.document),c.setAttributes({"class":"cke_reset cke_widget_drag_handler_container",style:"background:rgba(220,220,220,0.5);background-image:url("+b.plugins.widget.path+"images/handle.png)"}),d=new CKEDITOR.dom.element("img",b.document),d.setAttributes({"class":"cke_reset cke_widget_drag_handler", +"data-cke-widget-drag-handler":"1",src:CKEDITOR.tools.transparentImageData,width:k,title:b.lang.widget.move,height:k}),a.inline&&d.setAttribute("draggable","true"),c.append(d),a.wrapper.append(c));a.wrapper.on("dragover",function(a){a.data.preventDefault()});a.wrapper.on("mouseenter",a.updateDragHandlerPosition,a);setTimeout(function(){a.on("data",a.updateDragHandlerPosition,a)},50);if(!a.inline&&(d.on("mousedown",U,a),CKEDITOR.env.ie&&9>CKEDITOR.env.version))d.on("dragstart",function(a){a.data.preventDefault(true)}); +a.dragHandlerContainer=c}}function U(a){function b(){var b;for(k.reset();b=h.pop();)b.removeListener();var c=i;b=a.sender;var d=this.repository.finder,e=this.repository.liner,f=this.editor,g=this.editor.editable();CKEDITOR.tools.isEmpty(e.visible)||(c=d.getRange(c[0]),this.focus(),f.fire("drop",{dropRange:c,target:c.startContainer}));g.removeClass("cke_widget_dragging");e.hideVisible();f.fire("dragend",{target:b})}var c=this.repository.finder,d=this.repository.locator,e=this.repository.liner,f=this.editor, +g=f.editable(),h=[],i=[];this.repository._.draggedWidget=this;var l=c.greedySearch(),k=CKEDITOR.tools.eventsBuffer(50,function(){m=d.locate(l);i=d.sort(n,1);i.length&&(e.prepare(l,m),e.placeLine(i[0]),e.cleanup())}),m,n;g.addClass("cke_widget_dragging");h.push(g.on("mousemove",function(a){n=a.data.$.clientY;k.input()}));f.fire("dragstart",{target:a.sender});h.push(f.document.once("mouseup",b,this));g.isInline()||h.push(CKEDITOR.document.once("mouseup",b,this))}function V(a){var b,c,d=a.editables; +a.editables={};if(a.editables)for(b in d)c=d[b],a.initEditable(b,"string"==typeof c?{selector:c}:c)}function W(a){if(a.mask){var b=a.wrapper.findOne(".cke_widget_mask");b||(b=new CKEDITOR.dom.element("img",a.editor.document),b.setAttributes({src:CKEDITOR.tools.transparentImageData,"class":"cke_reset cke_widget_mask"}),a.wrapper.append(b));a.mask=b}}function X(a){if(a.parts){var b={},c,d;for(d in a.parts)c=a.wrapper.findOne(a.parts[d]),b[d]=c;a.parts=b}}function K(a,b){Y(a);X(a);V(a);W(a);T(a);S(a); +if(CKEDITOR.env.ie&&9>CKEDITOR.env.version)a.wrapper.on("dragstart",function(b){var d=b.data.getTarget();!h.getNestedEditable(a,d)&&(!a.inline||!h.isDomDragHandler(d))&&b.data.preventDefault()});a.wrapper.removeClass("cke_widget_new");a.element.addClass("cke_widget_element");a.on("key",function(b){b=b.data.keyCode;if(13==b)a.edit();else{if(b==CKEDITOR.CTRL+67||b==CKEDITOR.CTRL+88){v(a,b==CKEDITOR.CTRL+88);return}if(b in Z||CKEDITOR.CTRL&b||CKEDITOR.ALT&b)return}return!1},null,null,999);a.on("doubleclick", +function(b){a.edit()&&b.cancel()});if(b.data)a.on("data",b.data);if(b.edit)a.on("edit",b.edit)}function Y(a){(a.wrapper=a.element.getParent()).setAttribute("data-cke-widget-id",a.id)}function p(a){a.element.data("cke-widget-data",encodeURIComponent(JSON.stringify(a.data)))}var k=15;CKEDITOR.plugins.add("widget",{lang:"af,ar,bg,ca,cs,cy,da,de,el,en,en-gb,eo,es,fa,fi,fr,gl,he,hr,hu,it,ja,km,ko,ku,lv,nb,nl,no,pl,pt,pt-br,ru,sk,sl,sq,sv,tr,tt,uk,vi,zh,zh-cn",requires:"lineutils,clipboard",onLoad:function(){CKEDITOR.addCss(".cke_widget_wrapper{position:relative;outline:none}.cke_widget_inline{display:inline-block}.cke_widget_wrapper:hover>.cke_widget_element{outline:2px solid yellow;cursor:default}.cke_widget_wrapper:hover .cke_widget_editable{outline:2px solid yellow}.cke_widget_wrapper.cke_widget_focused>.cke_widget_element,.cke_widget_wrapper .cke_widget_editable.cke_widget_editable_focused{outline:2px solid #ace}.cke_widget_editable{cursor:text}.cke_widget_drag_handler_container{position:absolute;width:"+ +k+"px;height:0;display:none;opacity:0.75;transition:height 0s 0.2s;line-height:0}.cke_widget_wrapper:hover>.cke_widget_drag_handler_container{height:"+k+"px;transition:none}.cke_widget_drag_handler_container:hover{opacity:1}img.cke_widget_drag_handler{cursor:move;width:"+k+"px;height:"+k+"px;display:inline-block}.cke_widget_mask{position:absolute;top:0;left:0;width:100%;height:100%;display:block}.cke_editable.cke_widget_dragging, .cke_editable.cke_widget_dragging *{cursor:move !important}")},beforeInit:function(a){a.widgets= +new n(a)},afterInit:function(a){var b=a.widgets.registered,c,d,e;for(d in b)c=b[d],(e=c.button)&&a.ui.addButton&&a.ui.addButton(CKEDITOR.tools.capitalize(c.name,!0),{label:e,command:c.name,toolbar:"insert,10"});P(a)}});n.prototype={MIN_SELECTION_CHECK_INTERVAL:500,add:function(a,b){b=CKEDITOR.tools.prototypedCopy(b);b.name=a;b._=b._||{};this.editor.fire("widgetDefinition",b);b.template&&(b.template=new CKEDITOR.template(b.template));L(this.editor,b);M(this,b);return this.registered[a]=b},addUpcastCallback:function(a){this._.upcastCallbacks.push(a)}, +checkSelection:function(){var a=this.editor.getSelection(),b=a.getSelectedElement(),c=w(this),d;if(b&&(d=this.getByElement(b,!0)))return c.focus(d).select(d).commit();a=a.getRanges()[0];if(!a||a.collapsed)return c.commit();a=new CKEDITOR.dom.walker(a);for(a.evaluator=h.isDomWidgetWrapper;b=a.next();)c.select(this.getByElement(b));c.commit()},checkWidgets:function(a){this.fire("checkWidgets",CKEDITOR.tools.copy(a||{}))},del:function(a){if(this.focused===a){var b=a.editor,c=b.createRange(),d;if(!(d= +c.moveToClosestEditablePosition(a.wrapper,!0)))d=c.moveToClosestEditablePosition(a.wrapper,!1);d&&b.getSelection().selectRanges([c])}a.wrapper.remove();this.destroy(a,!0)},destroy:function(a,b){this.widgetHoldingFocusedEditable===a&&m(this,a,null,b);a.destroy(b);delete this.instances[a.id];this.fire("instanceDestroyed",a)},destroyAll:function(a,b){var c,d,e=this.instances;if(b&&!a){d=b.find(".cke_widget_wrapper");for(var e=d.count(),f=0;f<e;++f)(c=this.getByElement(d.getItem(f),!0))&&this.destroy(c)}else for(d in e)c= +e[d],this.destroy(c,a)},finalizeCreation:function(a){if((a=a.getFirst())&&h.isDomWidgetWrapper(a))this.editor.insertElement(a),a=this.getByElement(a),a.ready=!0,a.fire("ready"),a.focus()},getByElement:function(){var a={div:1,span:1};return function(b,c){if(!b)return null;var d=b.is(a)&&b.data("cke-widget-id");if(!c&&!d){var e=this.editor.editable();do b=b.getParent();while(b&&!b.equals(e)&&!(d=b.is(a)&&b.data("cke-widget-id")))}return this.instances[d]||null}}(),initOn:function(a,b,c){b?"string"== +typeof b&&(b=this.registered[b]):b=this.registered[a.data("widget")];if(!b)return null;var d=this.wrapElement(a,b.name);return d?d.hasClass("cke_widget_new")?(a=new h(this,this._.nextId++,a,b,c),a.isInited()?this.instances[a.id]=a:null):this.getByElement(a):null},initOnAll:function(a){for(var a=(a||this.editor.editable()).find(".cke_widget_new"),b=[],c,d=a.count();d--;)(c=this.initOn(a.getItem(d).getFirst(h.isDomWidgetElement)))&&b.push(c);return b},onWidget:function(a){var b=Array.prototype.slice.call(arguments); +b.shift();for(var c in this.instances){var d=this.instances[c];d.name==a&&d.on.apply(d,b)}this.on("instanceCreated",function(c){c=c.data;c.name==a&&c.on.apply(c,b)})},parseElementClasses:function(a){if(!a)return null;for(var a=CKEDITOR.tools.trim(a).split(/\s+/),b,c={},d=0;b=a.pop();)-1==b.indexOf("cke_")&&(c[b]=d=1);return d?c:null},wrapElement:function(a,b){var c=null,d,e;if(a instanceof CKEDITOR.dom.element){d=this.registered[b||a.data("widget")];if(!d)return null;if((c=a.getParent())&&c.type== +CKEDITOR.NODE_ELEMENT&&c.data("cke-widget-wrapper"))return c;a.hasAttribute("data-cke-widget-keep-attr")||a.data("cke-widget-keep-attr",a.data("widget")?1:0);b&&a.data("widget",b);e=u(d,a.getName());c=new CKEDITOR.dom.element(e?"span":"div");c.setAttributes(s(e));c.data("cke-display-name",d.pathName?d.pathName:a.getName());a.getParent(!0)&&c.replace(a);a.appendTo(c)}else if(a instanceof CKEDITOR.htmlParser.element){d=this.registered[b||a.attributes["data-widget"]];if(!d)return null;if((c=a.parent)&& +c.type==CKEDITOR.NODE_ELEMENT&&c.attributes["data-cke-widget-wrapper"])return c;"data-cke-widget-keep-attr"in a.attributes||(a.attributes["data-cke-widget-keep-attr"]=a.attributes["data-widget"]?1:0);b&&(a.attributes["data-widget"]=b);e=u(d,a.name);c=new CKEDITOR.htmlParser.element(e?"span":"div",s(e));c.attributes["data-cke-display-name"]=d.pathName?d.pathName:a.name;d=a.parent;var f;d&&(f=a.getIndex(),a.remove());c.add(a);d&&t(d,f,c)}return c},_tests_createEditableFilter:r};CKEDITOR.event.implementOn(n.prototype); +h.prototype={addClass:function(a){this.element.addClass(a)},applyStyle:function(a){x(this,a,1)},checkStyleActive:function(a){var a=y(a),b;if(!a)return!1;for(;b=a.pop();)if(!this.hasClass(b))return!1;return!0},destroy:function(a){this.fire("destroy");if(this.editables)for(var b in this.editables)this.destroyEditable(b,a);a||("0"==this.element.data("cke-widget-keep-attr")&&this.element.removeAttribute("data-widget"),this.element.removeAttributes(["data-cke-widget-data","data-cke-widget-keep-attr"]), +this.element.removeClass("cke_widget_element"),this.element.replace(this.wrapper));this.wrapper=null},destroyEditable:function(a,b){var c=this.editables[a];c.removeListener("focus",B);c.removeListener("blur",A);this.editor.focusManager.remove(c);b||(this.repository.destroyAll(!1,c),c.removeClass("cke_widget_editable"),c.removeClass("cke_widget_editable_focused"),c.removeAttributes(["contenteditable","data-cke-widget-editable","data-cke-enter-mode"]));delete this.editables[a]},edit:function(){var a= +{dialog:this.dialog},b=this;if(!1===this.fire("edit",a)||!a.dialog)return!1;this.editor.openDialog(a.dialog,function(a){var d,e;!1!==b.fire("dialog",a)&&(d=a.on("show",function(){a.setupContent(b)}),e=a.on("ok",function(){var d,e=b.on("data",function(a){d=1;a.cancel()},null,null,0);b.editor.fire("saveSnapshot");a.commitContent(b);e.removeListener();d&&(b.fire("data",b.data),b.editor.fire("saveSnapshot"))}),a.once("hide",function(){d.removeListener();e.removeListener()}))});return!0},getClasses:function(){return this.repository.parseElementClasses(this.element.getAttribute("class"))}, +hasClass:function(a){return this.element.hasClass(a)},initEditable:function(a,b){var c=this._findOneNotNested(b.selector);return c&&c.is(CKEDITOR.dtd.$editable)?(c=new o(this.editor,c,{filter:r.call(this.repository,this.name,a,b)}),this.editables[a]=c,c.setAttributes({contenteditable:"true","data-cke-widget-editable":a,"data-cke-enter-mode":c.enterMode}),c.filter&&c.data("cke-filter",c.filter.id),c.addClass("cke_widget_editable"),c.removeClass("cke_widget_editable_focused"),b.pathName&&c.data("cke-display-name", +b.pathName),this.editor.focusManager.add(c),c.on("focus",B,this),CKEDITOR.env.ie&&c.on("blur",A,this),c._.initialSetData=!0,c.setData(c.getHtml()),!0):!1},_findOneNotNested:function(a){for(var a=this.wrapper.find(a),b,c,d=0;d<a.count();d++)if(b=a.getItem(d),c=b.getAscendant(h.isDomWidgetWrapper),this.wrapper.equals(c))return b;return null},isInited:function(){return!(!this.wrapper||!this.inited)},isReady:function(){return this.isInited()&&this.ready},focus:function(){var a=this.editor.getSelection(); +if(a){var b=this.editor.checkDirty();a.fake(this.wrapper);!b&&this.editor.resetDirty()}this.editor.focus()},removeClass:function(a){this.element.removeClass(a)},removeStyle:function(a){x(this,a,0)},setData:function(a,b){var c=this.data,d=0;if("string"==typeof a)c[a]!==b&&(c[a]=b,d=1);else{var e=a;for(a in e)c[a]!==e[a]&&(d=1,c[a]=e[a])}d&&this.dataReady&&(p(this),this.fire("data",c));return this},setFocused:function(a){this.wrapper[a?"addClass":"removeClass"]("cke_widget_focused");this.fire(a?"focus": +"blur");return this},setSelected:function(a){this.wrapper[a?"addClass":"removeClass"]("cke_widget_selected");this.fire(a?"select":"deselect");return this},updateDragHandlerPosition:function(){var a=this.editor,b=this.element.$,c=this._.dragHandlerOffset,b={x:b.offsetLeft,y:b.offsetTop-k};if(!c||!(b.x==c.x&&b.y==c.y))c=a.checkDirty(),a.fire("lockSnapshot"),this.dragHandlerContainer.setStyles({top:b.y+"px",left:b.x+"px",display:"block"}),a.fire("unlockSnapshot"),!c&&a.resetDirty(),this._.dragHandlerOffset= +b}};CKEDITOR.event.implementOn(h.prototype);h.getNestedEditable=function(a,b){return!b||b.equals(a)?null:h.isDomNestedEditable(b)?b:h.getNestedEditable(a,b.getParent())};h.isDomDragHandler=function(a){return a.type==CKEDITOR.NODE_ELEMENT&&a.hasAttribute("data-cke-widget-drag-handler")};h.isDomDragHandlerContainer=function(a){return a.type==CKEDITOR.NODE_ELEMENT&&a.hasClass("cke_widget_drag_handler_container")};h.isDomNestedEditable=function(a){return a.type==CKEDITOR.NODE_ELEMENT&&a.hasAttribute("data-cke-widget-editable")}; +h.isDomWidgetElement=function(a){return a.type==CKEDITOR.NODE_ELEMENT&&a.hasAttribute("data-widget")};h.isDomWidgetWrapper=function(a){return a.type==CKEDITOR.NODE_ELEMENT&&a.hasAttribute("data-cke-widget-wrapper")};h.isParserWidgetElement=function(a){return a.type==CKEDITOR.NODE_ELEMENT&&!!a.attributes["data-widget"]};h.isParserWidgetWrapper=function(a){return a.type==CKEDITOR.NODE_ELEMENT&&!!a.attributes["data-cke-widget-wrapper"]};o.prototype=CKEDITOR.tools.extend(CKEDITOR.tools.prototypedCopy(CKEDITOR.dom.element.prototype), +{setData:function(a){this._.initialSetData||this.editor.widgets.destroyAll(!1,this);this._.initialSetData=!1;a=this.editor.dataProcessor.toHtml(a,{context:this.getName(),filter:this.filter,enterMode:this.enterMode});this.setHtml(a);this.editor.widgets.initOnAll(this)},getData:function(){return this.editor.dataProcessor.toDataFormat(this.getHtml(),{context:this.getName(),filter:this.filter,enterMode:this.enterMode})}});var R=RegExp('^(?:<(?:div|span)(?: data-cke-temp="1")?(?: id="cke_copybin")?(?: data-cke-temp="1")?>)?(?:<(?:div|span)(?: style="[^"]+")?>)?<span [^>]*data-cke-copybin-start="1"[^>]*>.?</span>([\\s\\S]+)<span [^>]*data-cke-copybin-end="1"[^>]*>.?</span>(?:</(?:div|span)>)?(?:</(?:div|span)>)?$', +"i"),Z={37:1,38:1,39:1,40:1,8:1,46:1};(function(){function a(){}function b(a,b,e){return!e||!this.checkElement(a)?!1:(a=e.widgets.getByElement(a,!0))&&a.checkStyleActive(this)}CKEDITOR.style.addCustomHandler({type:"widget",setup:function(a){this.widget=a.widget},apply:function(a){a instanceof CKEDITOR.editor&&this.checkApplicable(a.elementPath(),a)&&a.widgets.focused.applyStyle(this)},remove:function(a){a instanceof CKEDITOR.editor&&this.checkApplicable(a.elementPath(),a)&&a.widgets.focused.removeStyle(this)}, +checkActive:function(a,b){return this.checkElementMatch(a.lastElement,0,b)},checkApplicable:function(a,b){return!(b instanceof CKEDITOR.editor)?!1:this.checkElement(a.lastElement)},checkElementMatch:b,checkElementRemovable:b,checkElement:function(a){return!h.isDomWidgetWrapper(a)?!1:(a=a.getFirst(h.isDomWidgetElement))&&a.data("widget")==this.widget},buildPreview:function(a){return a||this._.definition.name},toAllowedContentRules:function(a){if(!a)return null;var a=a.widgets.registered[this.widget], +b,e={};if(!a)return null;if(a.styleableElements){b=this.getClassesArray();if(!b)return null;e[a.styleableElements]={classes:b,propertiesOnly:!0};return e}return a.styleToAllowedContentRules?a.styleToAllowedContentRules(this):null},getClassesArray:function(){var a=this._.definition.attributes&&this._.definition.attributes["class"];return a?CKEDITOR.tools.trim(a).split(/\s+/):null},applyToRange:a,removeFromRange:a,applyToObject:a})})();CKEDITOR.plugins.widget=h;h.repository=n;h.nestedEditable=o})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/wsc/LICENSE.md b/static/ckeditor/ckeditor/plugins/wsc/LICENSE.md new file mode 100644 index 0000000000..6096de2335 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/wsc/LICENSE.md @@ -0,0 +1,28 @@ +Software License Agreement +========================== + +**CKEditor WSC Plugin** +Copyright © 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved. + +Licensed under the terms of any of the following licenses at your choice: + +* GNU General Public License Version 2 or later (the "GPL"): + http://www.gnu.org/licenses/gpl.html + +* GNU Lesser General Public License Version 2.1 or later (the "LGPL"): + http://www.gnu.org/licenses/lgpl.html + +* Mozilla Public License Version 1.1 or later (the "MPL"): + http://www.mozilla.org/MPL/MPL-1.1.html + +You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice. + +Sources of Intellectual Property Included in this plugin +-------------------------------------------------------- + +Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission. + +Trademarks +---------- + +CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders. diff --git a/static/ckeditor/ckeditor/plugins/wsc/README.md b/static/ckeditor/ckeditor/plugins/wsc/README.md new file mode 100644 index 0000000000..3d9b466b95 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/wsc/README.md @@ -0,0 +1,84 @@ +Imprortant! +------------ +WebSpellChecker Dialog plugin for CKEditor 4 is appoaching its end-of-life (EOL) in 2021. Find out more in our [blog post](https://webspellchecker.com/blog/2020/12/02/end-of-life-for-spell-checker-dialog-plugin-for-ckeditor-4/) about its termination schedule. + +WebSpellChecker Dialog plugin for CKEditor 4 +=============================== + +WebSpellChecker Dialog (WSC Dialog) provides distraction-free proofreading, checking the whole text’s spelling and grammar on-click in a separate pop-up window. + +![WSC Dialog Plugin for CKEditor 4 View](https://webspellchecker.com/app/images/wsc_dialog_plugin_for_ckeditor4.png) + +This plugin brings the multi-language WSC Dialog functionality into CKEditor 4. It is integrated by default starting with [Standard Package of CKEditor 4](https://ckeditor.com/ckeditor-4/download/). You can find it on the CKEditor 4 toolbar panel under the ABC button (Check Spelling). + +If your version of CKEditor doesn’t have WSC Dialog built-in, you can easily add it by following the steps outlined in the Get Started section. + +The default version of WSC Dialog plugin for CKEditor 4 is using the free services of WebSpellChecker. It is provided with a banner ad and has some [limitations](https://docs.webspellchecker.net/display/WebSpellCheckerCloud/Free+and+Paid+WebSpellChecker+Cloud+Services+Comparison+for+CKEditor). + +To lift the limitations and get rid of the banner, [obtain a license](https://webspellchecker.com/wsc-dialog-ckeditor4/#pricing). Depending on your needs, you can choose a Cloud-based or Server (self-hosted) solution. + +Demo +------------ +WSC Dialog plugin for CKEditor 4: https://webspellchecker.com/wsc-dialog-ckeditor4/ + +Supported languages +------------ + +The WSC Dialog plugin for CKEditor as a part of the free services supports the next languages for check spelling: American English, British English, Canadian English, Canadian French, Danish, Dutch, Finnish, French, German, Greek, Italian, Norwegian Bokmal, Spanish, Swedish. + +There are also additional languages and specialized dictionaries available for a commercial license, you can check the full list [here](https://webspellchecker.com/additional-dictionaries/). + +Get started +------------ + +1. Clone/copy this repository contents in a new "plugins/wsc" folder in your CKEditor installation. +2. Enable the "wsc" plugin in the CKEditor configuration file (config.js): + + config.extraPlugins = 'wsc'; + +That's all. WSC Dialog will appear on the editor toolbar under the ABC button and will be ready to use. + +Supported browsers +------- + +This is the list of officially supported browsers for the WSC Dialog plugin for CKEditor 4. WSC Dialog may also work in other browsers and environments but we unable to check all of them and guarantee proper work. + +* Chrome (the latest) +* Firefox (the latest) +* Safari (the latest) +* MS Edge (the latest) +* Internet Explorer 8.0 (limited support) +* Internet Explorer 9.0+ (close to full support) + +Note: All browsers are to be supported for web pages that work in Standards Mode. + +Resources +------- + +* Demo: https://webspellchecker.com/wsc-dialog-ckeditor4/ +* Documentation: https://docs.webspellchecker.net/ +* YouTube video: https://youtu.be/bkVPZ-5T22Q +* Term of Service: https://webspellchecker.com/terms-of-service/ + +Technical support or questions +------- + +In cooperation with the CKEditor team, during the past 10 years we have simplified the installation and built the extensive amount of documentation devoted to WSC Dialog plugin for CKEditor 4 and less. + +If you are experiencing any difficulties with the setup of the plugin, please check the links provided in the Resources section. + +Holders of an active subscription to the services or a commercial license have access to professional technical assistance directly from the WebSpellChecker team. [Contact us here](https://webspellchecker.com/contact-us/)! + +Reporting issues +------- + +Please use the [WSC Dialog plugin for CKEditor 4 GitHub issue page](https://github.com/WebSpellChecker/ckeditor-plugin-wsc/issues) to report bugs and feature requests. We will do our best to reply at our earliest convenience. + +License +------- + +This plugin is licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html). + +See LICENSE.md for more information. + +Developed by [WebSpellChecker](https://webspellchecker.com/) in cooperation with CKSource. diff --git a/static/ckeditor/ckeditor/plugins/wsc/dialogs/ciframe.html b/static/ckeditor/ckeditor/plugins/wsc/dialogs/ciframe.html new file mode 100644 index 0000000000..8e4e6bc9a5 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/wsc/dialogs/ciframe.html @@ -0,0 +1,66 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> +<!-- +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.html or http://ckeditor.com/license +--> +<html> +<head> + <title> + + + +

      + diff --git a/static/ckeditor/ckeditor/plugins/wsc/dialogs/tmpFrameset.html b/static/ckeditor/ckeditor/plugins/wsc/dialogs/tmpFrameset.html new file mode 100644 index 0000000000..38c7540f77 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/wsc/dialogs/tmpFrameset.html @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + diff --git a/static/ckeditor/ckeditor/plugins/wsc/dialogs/wsc.css b/static/ckeditor/ckeditor/plugins/wsc/dialogs/wsc.css new file mode 100644 index 0000000000..2a622f2252 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/wsc/dialogs/wsc.css @@ -0,0 +1,82 @@ +/* +Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.html or http://ckeditor.com/license +*/ + +html, body +{ + background-color: transparent; + margin: 0px; + padding: 0px; +} + +body +{ + padding: 10px; +} + +body, td, input, select, textarea +{ + font-size: 11px; + font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana; +} + +.midtext +{ + padding:0px; + margin:10px; +} + +.midtext p +{ + padding:0px; + margin:10px; +} + +.Button +{ + border: #737357 1px solid; + color: #3b3b1f; + background-color: #c7c78f; +} + +.PopupTabArea +{ + color: #737357; + background-color: #e3e3c7; +} + +.PopupTitleBorder +{ + border-bottom: #d5d59d 1px solid; +} +.PopupTabEmptyArea +{ + padding-left: 10px; + border-bottom: #d5d59d 1px solid; +} + +.PopupTab, .PopupTabSelected +{ + border-right: #d5d59d 1px solid; + border-top: #d5d59d 1px solid; + border-left: #d5d59d 1px solid; + padding: 3px 5px 3px 5px; + color: #737357; +} + +.PopupTab +{ + margin-top: 1px; + border-bottom: #d5d59d 1px solid; + cursor: pointer; +} + +.PopupTabSelected +{ + font-weight: bold; + cursor: default; + padding-top: 4px; + border-bottom: #f1f1e3 1px solid; + background-color: #f1f1e3; +} diff --git a/static/ckeditor/ckeditor/plugins/wsc/dialogs/wsc.js b/static/ckeditor/ckeditor/plugins/wsc/dialogs/wsc.js new file mode 100644 index 0000000000..9fb84ce735 --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/wsc/dialogs/wsc.js @@ -0,0 +1,90 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.html or http://ckeditor.com/license +*/ +(function(){function A(a){return a&&a.domId&&a.getInputElement().$?a.getInputElement():a&&a.$?a:!1}function J(a){if(!a)throw"Languages-by-groups list are required for construct selectbox";var d=[],c="",e;for(e in a)for(var f in a[e]){var h=a[e][f];"en_US"==h?c=h:d.push(h)}d.sort();c&&d.unshift(c);return{getCurrentLangGroup:function(d){a:{for(var c in a)for(var e in a[c])if(e.toUpperCase()===d.toUpperCase()){d=c;break a}d=""}return d},setLangList:function(){var d={},c;for(c in a)for(var e in a[c])d[a[c][e]]= +e;return d}()}}var g=function(){var a=function(a,b,e){e=e||{};var f=e.expires;if("number"==typeof f&&f){var h=new Date;h.setTime(h.getTime()+1E3*f);f=e.expires=h}f&&f.toUTCString&&(e.expires=f.toUTCString());b=encodeURIComponent(b);a=a+"\x3d"+b;for(var k in e)b=e[k],a+="; "+k,!0!==b&&(a+="\x3d"+b);document.cookie=a};return{postMessage:{init:function(a){window.addEventListener?window.addEventListener("message",a,!1):window.attachEvent("onmessage",a)},send:function(a){var b=Object.prototype.toString, +e=a.fn||null,f=a.id||"",h=a.target||window,k=a.message||{id:f};a.message&&"[object Object]"==b.call(a.message)&&(a.message.id?a.message.id:a.message.id=f,k=a.message);a=window.JSON.stringify(k,e);h.postMessage(a,"*")},unbindHandler:function(a){window.removeEventListener?window.removeEventListener("message",a,!1):window.detachEvent("onmessage",a)}},hash:{create:function(){},parse:function(){}},cookie:{set:a,get:function(a){return(a=document.cookie.match(new RegExp("(?:^|; )"+a.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g, +"\\$1")+"\x3d([^;]*)")))?decodeURIComponent(a[1]):void 0},remove:function(d){a(d,"",{expires:-1})}},misc:{findFocusable:function(a){var b=null;a&&(b=a.find("a[href], area[href], input, select, textarea, button, *[tabindex], *[contenteditable]"));return b},isVisible:function(a){var b;(b=0===a.offsetWidth||0==a.offsetHeight)||(b="none"===(document.defaultView&&document.defaultView.getComputedStyle?document.defaultView.getComputedStyle(a,null).display:a.currentStyle?a.currentStyle.display:a.style.display)); +return!b},hasClass:function(a,b){return!(!a.className||!a.className.match(new RegExp("(\\s|^)"+b+"(\\s|$)")))}}}}(),a=a||{};a.TextAreaNumber=null;a.load=!0;a.cmd={SpellTab:"spell",Thesaurus:"thes",GrammTab:"grammar"};a.dialog=null;a.optionNode=null;a.selectNode=null;a.grammerSuggest=null;a.textNode={};a.iframeMain=null;a.dataTemp="";a.div_overlay=null;a.textNodeInfo={};a.selectNode={};a.selectNodeResponce={};a.langList=null;a.langSelectbox=null;a.banner="";a.show_grammar=null;a.div_overlay_no_check= +null;a.targetFromFrame={};a.onLoadOverlay=null;a.LocalizationComing={};a.OverlayPlace=null;a.sessionid="";a.LocalizationButton={ChangeTo_button:{instance:null,text:"Change to",localizationID:"ChangeTo"},ChangeAll:{instance:null,text:"Change All"},IgnoreWord:{instance:null,text:"Ignore word"},IgnoreAllWords:{instance:null,text:"Ignore all words"},Options:{instance:null,text:"Options",optionsDialog:{instance:null}},AddWord:{instance:null,text:"Add word"},FinishChecking_button:{instance:null,text:"Finish Checking", +localizationID:"FinishChecking"},Option_button:{instance:null,text:"Options",localizationID:"Options"},FinishChecking_button_block:{instance:null,text:"Finish Checking",localizationID:"FinishChecking"}};a.LocalizationLabel={ChangeTo_label:{instance:null,text:"Change to",localizationID:"ChangeTo"},Suggestions:{instance:null,text:"Suggestions"},Categories:{instance:null,text:"Categories"},Synonyms:{instance:null,text:"Synonyms"}};var K=function(b){var d,c,e;for(e in b){if(d=a.dialog.getContentElement(a.dialog._.currentTabId, +e))d=d.getElement();else if(b[e].instance)d=b[e].instance.getElement().getFirst()||b[e].instance.getElement();else continue;c=b[e].localizationID||e;d.setText(a.LocalizationComing[c])}},L=function(b){var d,c,e;for(e in b)d=a.dialog.getContentElement(a.dialog._.currentTabId,e),d||(d=b[e].instance),d.setLabel&&(c=b[e].localizationID||e,d.setLabel(a.LocalizationComing[c]+":"))},t,B;a.framesetHtml=function(b){return"\x3ciframe id\x3d"+a.iframeNumber+"_"+b+' frameborder\x3d"0" allowtransparency\x3d"1" style\x3d"width:100%;border: 1px solid #AEB3B9;overflow: auto;background:#fff; border-radius: 3px;"\x3e\x3c/iframe\x3e'}; +a.setIframe=function(b,d){var c;c=a.framesetHtml(d);var e=a.iframeNumber+"_"+d;b.getElement().setHtml(c);c=document.getElementById(e);c=c.contentWindow?c.contentWindow:c.contentDocument.document?c.contentDocument.document:c.contentDocument;c.document.open();c.document.write('\x3c!DOCTYPE html\x3e\x3chtml\x3e\x3chead\x3e\x3cmeta charset\x3d"UTF-8"\x3e\x3ctitle\x3eiframe\x3c/title\x3e\x3cstyle\x3ehtml,body{margin: 0;height: 100%;font: 13px/1.555 "Trebuchet MS", sans-serif;}a{color: #888;font-weight: bold;text-decoration: none;border-bottom: 1px solid #888;}.main-box {color:#252525;padding: 3px 5px;text-align: justify;}.main-box p{margin: 0 0 14px;}.main-box .cerr{color: #f00000;border-bottom-color: #f00000;}\x3c/style\x3e\x3c/head\x3e\x3cbody\x3e\x3cdiv id\x3d"content" class\x3d"main-box"\x3e\x3c/div\x3e\x3ciframe src\x3d"" frameborder\x3d"0" id\x3d"spelltext" name\x3d"spelltext" style\x3d"display:none; width: 100%" \x3e\x3c/iframe\x3e\x3ciframe src\x3d"" frameborder\x3d"0" id\x3d"loadsuggestfirst" name\x3d"loadsuggestfirst" style\x3d"display:none; width: 100%" \x3e\x3c/iframe\x3e\x3ciframe src\x3d"" frameborder\x3d"0" id\x3d"loadspellsuggestall" name\x3d"loadspellsuggestall" style\x3d"display:none; width: 100%" \x3e\x3c/iframe\x3e\x3ciframe src\x3d"" frameborder\x3d"0" id\x3d"loadOptionsForm" name\x3d"loadOptionsForm" style\x3d"display:none; width: 100%" \x3e\x3c/iframe\x3e\x3cscript\x3e(function(window) {var ManagerPostMessage \x3d function() {var _init \x3d function(handler) {if (document.addEventListener) {window.addEventListener("message", handler, false);} else {window.attachEvent("onmessage", handler);};};var _sendCmd \x3d function(o) {var str,type \x3d Object.prototype.toString,fn \x3d o.fn || null,id \x3d o.id || "",target \x3d o.target || window,message \x3d o.message || { "id": id };if (o.message \x26\x26 type.call(o.message) \x3d\x3d "[object Object]") {(o.message["id"]) ? o.message["id"] : o.message["id"] \x3d id;message \x3d o.message;};str \x3d JSON.stringify(message, fn);target.postMessage(str, "*");};return {init: _init,send: _sendCmd};};var manageMessageTmp \x3d new ManagerPostMessage;var appString \x3d (function(){var spell \x3d parent.CKEDITOR.config.wsc.DefaultParams.scriptPath;var serverUrl \x3d parent.CKEDITOR.config.wsc.DefaultParams.serviceHost;return serverUrl + spell;})();function loadScript(src, callback) {var scriptTag \x3d document.createElement("script");scriptTag.type \x3d "text/javascript";callback ? callback : callback \x3d function() {};if(scriptTag.readyState) {scriptTag.onreadystatechange \x3d function() {if (scriptTag.readyState \x3d\x3d "loaded" ||scriptTag.readyState \x3d\x3d "complete") {scriptTag.onreadystatechange \x3d null;setTimeout(function(){scriptTag.parentNode.removeChild(scriptTag)},1);callback();}};}else{scriptTag.onload \x3d function() {setTimeout(function(){scriptTag.parentNode.removeChild(scriptTag)},1);callback();};};scriptTag.src \x3d src;document.getElementsByTagName("head")[0].appendChild(scriptTag);};window.onload \x3d function(){loadScript(appString, function(){manageMessageTmp.send({"id": "iframeOnload","target": window.parent});});}})(this);\x3c/script\x3e\x3c/body\x3e\x3c/html\x3e'); +c.document.close();a.div_overlay.setEnable()};a.setCurrentIframe=function(b){a.setIframe(a.dialog._.contents[b].Content,b)};a.setHeightBannerFrame=function(){var b=a.dialog.getContentElement("SpellTab","banner").getElement(),d=a.dialog.getContentElement("GrammTab","banner").getElement(),c=a.dialog.getContentElement("Thesaurus","banner").getElement();b.setStyle("height","90px");d.setStyle("height","90px");c.setStyle("height","90px")};a.setHeightFrame=function(){document.getElementById(a.iframeNumber+ +"_"+a.dialog._.currentTabId).style.height="240px"};a.sendData=function(b){var d=b._.currentTabId,c=b._.contents[d].Content,e,f;a.previousTab=d;a.setIframe(c,d);var h=function(h){d=b._.currentTabId;h=h||window.event;h.data.getTarget().is("a")&&d!==a.previousTab&&(a.previousTab=d,c=b._.contents[d].Content,e=a.iframeNumber+"_"+d,a.div_overlay.setEnable(),c.getElement().getChildCount()?F(a.targetFromFrame[e],a.cmd[d]):(a.setIframe(c,d),f=document.getElementById(e),a.targetFromFrame[e]=f.contentWindow))}; +b.parts.tabs.removeListener("click",h);b.parts.tabs.on("click",h)};a.buildSelectLang=function(a){var d=new CKEDITOR.dom.element("div"),c=new CKEDITOR.dom.element("select");a="wscLang"+a;d.addClass("cke_dialog_ui_input_select");d.setAttribute("role","presentation");d.setStyles({height:"auto",position:"absolute",right:"0",top:"-1px",width:"160px","white-space":"normal"});c.setAttribute("id",a);c.addClass("cke_dialog_ui_input_select");c.setStyles({width:"160px"});d.append(c);return d};a.buildOptionLang= +function(b,d){var c=document.getElementById("wscLang"+d),e=document.createDocumentFragment(),f,h,k=[];if(0===c.options.length){for(f in b)k.push([f,b[f]]);k.sort();for(var l=0;lm.width-E&&(e=m.width-E);if(gm.height-r&&(g=m.height-r);n.width=e+E;n.height=g+r;a._.fromResizeEvent=!1;a.resize(e,g);setTimeout(function(){a._.fromResizeEvent=!1;CKEDITOR.dialog.fire("resize",{dialog:a,width:e, +height:g},b)},300)}a._.moved||(r=isNaN(c)&&isNaN(d)?0:1,isNaN(c)&&(c=(m.width-n.width)/2),0>c&&(c=0),c>m.width-n.width&&(c=m.width-n.width),isNaN(d)&&(d=(m.height-n.height)/2),0>d&&(d=0),d>m.height-n.height&&(d=m.height-n.height),a.move(c,d,r))}function c(){b.wsc={};(function(a){var b={separator:"\x3c$\x3e",getDataType:function(a){return"undefined"===typeof a?"undefined":null===a?"null":Object.prototype.toString.call(a).slice(8,-1)},convertDataToString:function(a){return this.getDataType(a).toLowerCase()+ +this.separator+a},restoreDataFromString:function(a){var b=a,c;a=this.backCompatibility(a);if("string"===typeof a)switch(b=a.indexOf(this.separator),c=a.substring(0,b),b=a.substring(b+this.separator.length),c){case "boolean":b="true"===b;break;case "number":b=parseFloat(b);break;case "array":b=""===b?[]:b.split(",");break;case "null":b=null;break;case "undefined":b=void 0}return b},backCompatibility:function(a){var b=a,c;"string"===typeof a&&(c=a.indexOf(this.separator),0>c&&(b=parseFloat(a),isNaN(b)&& +("["===a[0]&&"]"===a[a.length-1]?(a=a.replace("[",""),a=a.replace("]",""),b=""===a?[]:a.split(",")):b="true"===a||"false"===a?"true"===a:a),b=this.convertDataToString(b)));return b}},c={get:function(a){return b.restoreDataFromString(window.localStorage.getItem(a))},set:function(a,c){var d=b.convertDataToString(c);window.localStorage.setItem(a,d)},del:function(a){window.localStorage.removeItem(a)},clear:function(){window.localStorage.clear()}},d={expiration:31622400,get:function(a){return b.restoreDataFromString(this.getCookie(a))}, +set:function(a,c){var d=b.convertDataToString(c);this.setCookie(a,d,{expires:this.expiration})},del:function(a){this.deleteCookie(a)},getCookie:function(a){return(a=document.cookie.match(new RegExp("(?:^|; )"+a.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g,"\\$1")+"\x3d([^;]*)")))?decodeURIComponent(a[1]):void 0},setCookie:function(a,b,c){c=c||{};var d=c.expires;if("number"===typeof d&&d){var e=new Date;e.setTime(e.getTime()+1E3*d);d=c.expires=e}d&&d.toUTCString&&(c.expires=d.toUTCString());b=encodeURIComponent(b); +a=a+"\x3d"+b;for(var h in c)b=c[h],a+="; "+h,!0!==b&&(a+="\x3d"+b);document.cookie=a},deleteCookie:function(a){this.setCookie(a,null,{expires:-1})},clear:function(){for(var a=document.cookie.split(";"),b=0;bb.version||b.quirks))};"undefined"==typeof a.plugins.scayt&&a.ui.addButton&&a.ui.addButton("SpellChecker",{label:a.lang.wsc.toolbar,click:function(a){var b=a.elementMode==CKEDITOR.ELEMENT_MODE_INLINE?a.container.getText():a.document.getBody().getText();(b=b.replace(/\s/g,""))?a.execCommand("checkspell"):alert("Nothing to check!")},toolbar:"spellchecker,10"});CKEDITOR.dialog.add("checkspell",this.path+ +(CKEDITOR.env.ie&&7>=CKEDITOR.env.version?"dialogs/wsc_ie.js":window.postMessage?"dialogs/wsc.js":"dialogs/wsc_ie.js"))}}); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/plugins/wsc/skins/moono-lisa/wsc.css b/static/ckeditor/ckeditor/plugins/wsc/skins/moono-lisa/wsc.css new file mode 100644 index 0000000000..d8b20de78f --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/wsc/skins/moono-lisa/wsc.css @@ -0,0 +1,43 @@ +.cke_dialog_body #overlayBlock, +.cke_dialog_body #no_check_over +{ + top: 39px !important; +} + +div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_vbox td > .cke_dialog_ui_button:first-child +{ + margin-top: 4px; +} + +div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select > label +{ + margin-left: 0; +} + +div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select div.cke_dialog_ui_input_select +{ + width: 140px !important; +} + +div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select select.cke_dialog_ui_input_select, +div[name=Thesaurus] div.cke_dialog_ui_input_select select.cke_dialog_ui_input_select +{ + margin-top: 1px; +} + +div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select select.cke_dialog_ui_input_select:focus, +div[name=Thesaurus] div.cke_dialog_ui_input_select select.cke_dialog_ui_input_select:focus +{ + margin-top: 0; +} + +div[name=GrammTab] .cke_dialog_ui_vbox tbody > tr:first-child .cke_dialog_ui_button, +div[name=Thesaurus] .cke_dialog_ui_vbox tbody > tr:first-child .cke_dialog_ui_button +{ + margin-top: 4px !important; +} + +div[name=Thesaurus] div.cke_dialog_ui_input_select +{ + width: 180px !important; +} diff --git a/static/ckeditor/ckeditor/plugins/xml/plugin.js b/static/ckeditor/ckeditor/plugins/xml/plugin.js new file mode 100644 index 0000000000..2f285bfd5c --- /dev/null +++ b/static/ckeditor/ckeditor/plugins/xml/plugin.js @@ -0,0 +1,7 @@ +/* + Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. + For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +(function(){CKEDITOR.plugins.add("xml",{});CKEDITOR.xml=function(c){var a=null;if("object"==typeof c)a=c;else if(c=(c||"").replace(/ /g," "),"ActiveXObject"in window){try{a=new ActiveXObject("MSXML2.DOMDocument")}catch(b){try{a=new ActiveXObject("Microsoft.XmlDom")}catch(d){}}a&&(a.async=!1,a.resolveExternals=!1,a.validateOnParse=!1,a.loadXML(c))}else window.DOMParser&&(a=(new DOMParser).parseFromString(c,"text/xml"));this.baseXml=a};CKEDITOR.xml.prototype={selectSingleNode:function(c,a){var b= +this.baseXml;if(a||(a=b)){if("selectSingleNode"in a)return a.selectSingleNode(c);if(b.evaluate)return(b=b.evaluate(c,a,null,9,null))&&b.singleNodeValue||null}return null},selectNodes:function(c,a){var b=this.baseXml,d=[];if(a||(a=b)){if("selectNodes"in a)return a.selectNodes(c);if(b.evaluate&&(b=b.evaluate(c,a,null,5,null)))for(var e;e=b.iterateNext();)d.push(e)}return d},getInnerXml:function(c,a){var b=this.selectSingleNode(c,a),d=[];if(b)for(b=b.firstChild;b;)b.xml?d.push(b.xml):window.XMLSerializer&& +d.push((new XMLSerializer).serializeToString(b)),b=b.nextSibling;return d.length?d.join(""):null}}})(); \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/dialog.css b/static/ckeditor/ckeditor/skins/moono-lisa/dialog.css new file mode 100644 index 0000000000..5957519d32 --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono-lisa/dialog.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#fff}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:12px;cursor:move;position:relative;color:#484848;border-bottom:1px solid #d1d1d1;padding:12px 19px 12px 12px;background:#f8f8f8;letter-spacing:.3px}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border:2px solid rgba(102,102,102,0.2);border-left-color:rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:43px;border-top:1px solid #d1d1d1}.cke_dialog_contents_body{overflow:auto;padding:9px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border-top:1px solid #d1d1d1;background:#f8f8f8}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:33px;display:inline-block;margin:9px 0 0;position:absolute;z-index:2;left:11px}.cke_rtl .cke_dialog_tabs{left:auto;right:11px}a.cke_dialog_tab{height:25px;padding:4px 8px;display:inline-block;cursor:pointer;line-height:26px;outline:0;color:#484848;border:1px solid #d1d1d1;border-radius:3px 3px 0 0;background:#f8f8f8;min-width:90px;text-align:center;margin-left:-1px;letter-spacing:.3px}a.cke_dialog_tab:hover{background-color:#fff}a.cke_dialog_tab:focus{border:2px solid #139ff7;border-bottom-color:#d1d1d1;padding:3px 7px;position:relative;z-index:1}a.cke_dialog_tab_selected{background:#fff;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus{border-bottom-color:#fff}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:16px;width:16px;top:11px;z-index:5;opacity:.7;filter:alpha(opacity = 70)}.cke_rtl .cke_dialog_close_button{left:12px}.cke_ltr .cke_dialog_close_button{right:12px}.cke_hc a.cke_dialog_close_button{background-image:none}.cke_hidpi a.cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}a.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}a.cke_dialog_close_button span{display:none}.cke_hc a.cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%;margin-top:12px}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,input.cke_dialog_ui_input_tel,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #bcbcbc;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:2px;min-height:28px;margin-left:1px}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,input.cke_dialog_ui_input_tel:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,input.cke_dialog_ui_input_tel:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:2px solid #139ff7}input.cke_dialog_ui_input_text:focus{padding-left:5px}textarea.cke_dialog_ui_input_textarea:focus{padding:3px 5px}select.cke_dialog_ui_input_select:focus{margin:0;width:100%!important}input.cke_dialog_ui_checkbox_input,input.cke_dialog_ui_radio_input{margin-left:1px;margin-right:2px}input.cke_dialog_ui_checkbox_input:focus,input.cke_dialog_ui_checkbox_input:active,input.cke_dialog_ui_radio_input:focus,input.cke_dialog_ui_radio_input:active{border:0;outline:2px solid #139ff7}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 1px;margin:0;text-align:center;color:#484848;vertical-align:middle;cursor:pointer;border:1px solid #bcbcbc;border-radius:2px;background:#f8f8f8;letter-spacing:.3px;line-height:18px;box-sizing:border-box}.cke_hc a.cke_dialog_ui_button{border-width:3px}span.cke_dialog_ui_button{padding:0 10px;cursor:pointer}a.cke_dialog_ui_button:hover{background:#fff}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border:2px solid #139ff7;outline:0;padding:3px 0}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;background:#09863e;border:1px solid #09863e}.cke_hc a.cke_dialog_ui_button{border:1px solid #bcbcbc}a.cke_dialog_ui_button_ok:hover{background:#53aa78;border-color:#53aa78}a.cke_dialog_ui_button_ok:focus{box-shadow:inset 0 0 0 2px #FFF}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#139ff7}.cke_hc a.cke_dialog_ui_button_ok:hover,.cke_hc a.cke_dialog_ui_button_ok:focus,.cke_hc a.cke_dialog_ui_button_ok:active{border-color:#484848}a.cke_dialog_ui_button_ok.cke_disabled{background:#d1d1d1;border-color:#d1d1d1;cursor:default}a.cke_dialog_ui_button_ok.cke_disabled span{cursor:default}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:28px;line-height:28px;background-color:#fff;border:1px solid #bcbcbc;padding:3px 3px 3px 6px;outline:0;border-radius:2px;margin:0 1px;box-sizing:border-box;width:calc(100% - 2px)!important}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog_ui_labeled_label{margin-left:1px}.cke_dialog_ui_labeled_required{font-weight:bold;font-size:1.2em}.cke_dialog .cke_dark_background{background-color:transparent}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked,.cke_dialog a.cke_btn_reset{margin:2px}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_dialog a.cke_btn_over,.cke_dialog a.cke_btn_locked:hover,.cke_dialog a.cke_btn_locked:focus,.cke_dialog a.cke_btn_locked:active,.cke_dialog a.cke_btn_unlocked:hover,.cke_dialog a.cke_btn_unlocked:focus,.cke_dialog a.cke_btn_unlocked:active,.cke_dialog a.cke_btn_reset:hover,.cke_dialog a.cke_btn_reset:focus,.cke_dialog a.cke_btn_reset:active{cursor:pointer;outline:0;margin:0;border:2px solid #139ff7}.cke_dialog fieldset{border:1px solid #bcbcbc}.cke_dialog fieldset legend{padding:0 6px}.cke_dialog_ui_checkbox,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox{display:inline-block}.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox{padding-top:5px}.cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input,.cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input+label,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input+label{vertical-align:middle}.cke_dialog .ImagePreviewBox{border:1px ridge #bcbcbc;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;cursor:default;letter-spacing:.3px}.cke_dialog_body label+.cke_dialog_ui_labeled_content{margin-top:2px}.cke_dialog_contents_body .cke_dialog_ui_text,.cke_dialog_contents_body .cke_dialog_ui_select,.cke_dialog_contents_body .cke_dialog_ui_hbox_last>a.cke_dialog_ui_button{margin-top:4px}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:2px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_dialog_contents_body .cke_accessibility_legend{margin:2px 7px 2px 2px}.cke_dialog_contents_body .cke_accessibility_legend:focus,.cke_dialog_contents_body .cke_accessibility_legend:active{outline:0;border:2px solid #139ff7;margin:0 5px 0 0}.cke_dialog_contents_body input[type=file]:focus,.cke_dialog_contents_body input[type=file]:active{border:2px solid #139ff7}.cke_dialog_find_fieldset{margin-top:10px!important}.cke_dialog_image_ratiolock{margin-top:52px!important}.cke_dialog_forms_select_order label.cke_dialog_ui_labeled_label{margin-left:0}.cke_dialog_forms_select_order div.cke_dialog_ui_input_select{width:100%}.cke_dialog_forms_select_order_txtsize .cke_dialog_ui_hbox_last{padding-top:4px}.cke_dialog_image_url .cke_dialog_ui_hbox_last{vertical-align:bottom}a.cke_dialog_ui_button.cke_dialog_image_browse{margin-top:10px}.cke_dialog_contents_body .cke_tpl_list{border:#bcbcbc 1px solid;margin:1px}.cke_dialog_contents_body .cke_tpl_list:focus,.cke_dialog_contents_body .cke_tpl_list:active{outline:0;margin:0;border:2px solid #139ff7}.cke_dialog_contents_body .cke_tpl_list a:focus,.cke_dialog_contents_body .cke_tpl_list a:active{outline:0}.cke_dialog_contents_body .cke_tpl_list a:focus .cke_tpl_item,.cke_dialog_contents_body .cke_tpl_list a:active .cke_tpl_item{border:2px solid #139ff7;padding:6px} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/dialog_ie.css b/static/ckeditor/ckeditor/skins/moono-lisa/dialog_ie.css new file mode 100644 index 0000000000..ed6155ff42 --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono-lisa/dialog_ie.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#fff}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:12px;cursor:move;position:relative;color:#484848;border-bottom:1px solid #d1d1d1;padding:12px 19px 12px 12px;background:#f8f8f8;letter-spacing:.3px}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border:2px solid rgba(102,102,102,0.2);border-left-color:rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:43px;border-top:1px solid #d1d1d1}.cke_dialog_contents_body{overflow:auto;padding:9px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border-top:1px solid #d1d1d1;background:#f8f8f8}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:33px;display:inline-block;margin:9px 0 0;position:absolute;z-index:2;left:11px}.cke_rtl .cke_dialog_tabs{left:auto;right:11px}a.cke_dialog_tab{height:25px;padding:4px 8px;display:inline-block;cursor:pointer;line-height:26px;outline:0;color:#484848;border:1px solid #d1d1d1;border-radius:3px 3px 0 0;background:#f8f8f8;min-width:90px;text-align:center;margin-left:-1px;letter-spacing:.3px}a.cke_dialog_tab:hover{background-color:#fff}a.cke_dialog_tab:focus{border:2px solid #139ff7;border-bottom-color:#d1d1d1;padding:3px 7px;position:relative;z-index:1}a.cke_dialog_tab_selected{background:#fff;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus{border-bottom-color:#fff}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:16px;width:16px;top:11px;z-index:5;opacity:.7;filter:alpha(opacity = 70)}.cke_rtl .cke_dialog_close_button{left:12px}.cke_ltr .cke_dialog_close_button{right:12px}.cke_hc a.cke_dialog_close_button{background-image:none}.cke_hidpi a.cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}a.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}a.cke_dialog_close_button span{display:none}.cke_hc a.cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%;margin-top:12px}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,input.cke_dialog_ui_input_tel,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #bcbcbc;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:2px;min-height:28px;margin-left:1px}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,input.cke_dialog_ui_input_tel:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,input.cke_dialog_ui_input_tel:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:2px solid #139ff7}input.cke_dialog_ui_input_text:focus{padding-left:5px}textarea.cke_dialog_ui_input_textarea:focus{padding:3px 5px}select.cke_dialog_ui_input_select:focus{margin:0;width:100%!important}input.cke_dialog_ui_checkbox_input,input.cke_dialog_ui_radio_input{margin-left:1px;margin-right:2px}input.cke_dialog_ui_checkbox_input:focus,input.cke_dialog_ui_checkbox_input:active,input.cke_dialog_ui_radio_input:focus,input.cke_dialog_ui_radio_input:active{border:0;outline:2px solid #139ff7}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 1px;margin:0;text-align:center;color:#484848;vertical-align:middle;cursor:pointer;border:1px solid #bcbcbc;border-radius:2px;background:#f8f8f8;letter-spacing:.3px;line-height:18px;box-sizing:border-box}.cke_hc a.cke_dialog_ui_button{border-width:3px}span.cke_dialog_ui_button{padding:0 10px;cursor:pointer}a.cke_dialog_ui_button:hover{background:#fff}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border:2px solid #139ff7;outline:0;padding:3px 0}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;background:#09863e;border:1px solid #09863e}.cke_hc a.cke_dialog_ui_button{border:1px solid #bcbcbc}a.cke_dialog_ui_button_ok:hover{background:#53aa78;border-color:#53aa78}a.cke_dialog_ui_button_ok:focus{box-shadow:inset 0 0 0 2px #FFF}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#139ff7}.cke_hc a.cke_dialog_ui_button_ok:hover,.cke_hc a.cke_dialog_ui_button_ok:focus,.cke_hc a.cke_dialog_ui_button_ok:active{border-color:#484848}a.cke_dialog_ui_button_ok.cke_disabled{background:#d1d1d1;border-color:#d1d1d1;cursor:default}a.cke_dialog_ui_button_ok.cke_disabled span{cursor:default}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:28px;line-height:28px;background-color:#fff;border:1px solid #bcbcbc;padding:3px 3px 3px 6px;outline:0;border-radius:2px;margin:0 1px;box-sizing:border-box;width:calc(100% - 2px)!important}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog_ui_labeled_label{margin-left:1px}.cke_dialog_ui_labeled_required{font-weight:bold;font-size:1.2em}.cke_dialog .cke_dark_background{background-color:transparent}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked,.cke_dialog a.cke_btn_reset{margin:2px}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_dialog a.cke_btn_over,.cke_dialog a.cke_btn_locked:hover,.cke_dialog a.cke_btn_locked:focus,.cke_dialog a.cke_btn_locked:active,.cke_dialog a.cke_btn_unlocked:hover,.cke_dialog a.cke_btn_unlocked:focus,.cke_dialog a.cke_btn_unlocked:active,.cke_dialog a.cke_btn_reset:hover,.cke_dialog a.cke_btn_reset:focus,.cke_dialog a.cke_btn_reset:active{cursor:pointer;outline:0;margin:0;border:2px solid #139ff7}.cke_dialog fieldset{border:1px solid #bcbcbc}.cke_dialog fieldset legend{padding:0 6px}.cke_dialog_ui_checkbox,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox{display:inline-block}.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox{padding-top:5px}.cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input,.cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input+label,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input+label{vertical-align:middle}.cke_dialog .ImagePreviewBox{border:1px ridge #bcbcbc;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;cursor:default;letter-spacing:.3px}.cke_dialog_body label+.cke_dialog_ui_labeled_content{margin-top:2px}.cke_dialog_contents_body .cke_dialog_ui_text,.cke_dialog_contents_body .cke_dialog_ui_select,.cke_dialog_contents_body .cke_dialog_ui_hbox_last>a.cke_dialog_ui_button{margin-top:4px}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:2px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_dialog_contents_body .cke_accessibility_legend{margin:2px 7px 2px 2px}.cke_dialog_contents_body .cke_accessibility_legend:focus,.cke_dialog_contents_body .cke_accessibility_legend:active{outline:0;border:2px solid #139ff7;margin:0 5px 0 0}.cke_dialog_contents_body input[type=file]:focus,.cke_dialog_contents_body input[type=file]:active{border:2px solid #139ff7}.cke_dialog_find_fieldset{margin-top:10px!important}.cke_dialog_image_ratiolock{margin-top:52px!important}.cke_dialog_forms_select_order label.cke_dialog_ui_labeled_label{margin-left:0}.cke_dialog_forms_select_order div.cke_dialog_ui_input_select{width:100%}.cke_dialog_forms_select_order_txtsize .cke_dialog_ui_hbox_last{padding-top:4px}.cke_dialog_image_url .cke_dialog_ui_hbox_last{vertical-align:bottom}a.cke_dialog_ui_button.cke_dialog_image_browse{margin-top:10px}.cke_dialog_contents_body .cke_tpl_list{border:#bcbcbc 1px solid;margin:1px}.cke_dialog_contents_body .cke_tpl_list:focus,.cke_dialog_contents_body .cke_tpl_list:active{outline:0;margin:0;border:2px solid #139ff7}.cke_dialog_contents_body .cke_tpl_list a:focus,.cke_dialog_contents_body .cke_tpl_list a:active{outline:0}.cke_dialog_contents_body .cke_tpl_list a:focus .cke_tpl_item,.cke_dialog_contents_body .cke_tpl_list a:active .cke_tpl_item{border:2px solid #139ff7;padding:6px}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password,.cke_rtl input.cke_dialog_ui_input_tel{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password,.cke_rtl div.cke_dialog_ui_input_tel{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/dialog_ie8.css b/static/ckeditor/ckeditor/skins/moono-lisa/dialog_ie8.css new file mode 100644 index 0000000000..cac3558725 --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono-lisa/dialog_ie8.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#fff}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:12px;cursor:move;position:relative;color:#484848;border-bottom:1px solid #d1d1d1;padding:12px 19px 12px 12px;background:#f8f8f8;letter-spacing:.3px}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border:2px solid rgba(102,102,102,0.2);border-left-color:rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:43px;border-top:1px solid #d1d1d1}.cke_dialog_contents_body{overflow:auto;padding:9px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border-top:1px solid #d1d1d1;background:#f8f8f8}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:33px;display:inline-block;margin:9px 0 0;position:absolute;z-index:2;left:11px}.cke_rtl .cke_dialog_tabs{left:auto;right:11px}a.cke_dialog_tab{height:25px;padding:4px 8px;display:inline-block;cursor:pointer;line-height:26px;outline:0;color:#484848;border:1px solid #d1d1d1;border-radius:3px 3px 0 0;background:#f8f8f8;min-width:90px;text-align:center;margin-left:-1px;letter-spacing:.3px}a.cke_dialog_tab:hover{background-color:#fff}a.cke_dialog_tab:focus{border:2px solid #139ff7;border-bottom-color:#d1d1d1;padding:3px 7px;position:relative;z-index:1}a.cke_dialog_tab_selected{background:#fff;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus{border-bottom-color:#fff}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:16px;width:16px;top:11px;z-index:5;opacity:.7;filter:alpha(opacity = 70)}.cke_rtl .cke_dialog_close_button{left:12px}.cke_ltr .cke_dialog_close_button{right:12px}.cke_hc a.cke_dialog_close_button{background-image:none}.cke_hidpi a.cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}a.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}a.cke_dialog_close_button span{display:none}.cke_hc a.cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%;margin-top:12px}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,input.cke_dialog_ui_input_tel,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #bcbcbc;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:2px;min-height:28px;margin-left:1px}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,input.cke_dialog_ui_input_tel:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,input.cke_dialog_ui_input_tel:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:2px solid #139ff7}input.cke_dialog_ui_input_text:focus{padding-left:5px}textarea.cke_dialog_ui_input_textarea:focus{padding:3px 5px}select.cke_dialog_ui_input_select:focus{margin:0;width:100%!important}input.cke_dialog_ui_checkbox_input,input.cke_dialog_ui_radio_input{margin-left:1px;margin-right:2px}input.cke_dialog_ui_checkbox_input:focus,input.cke_dialog_ui_checkbox_input:active,input.cke_dialog_ui_radio_input:focus,input.cke_dialog_ui_radio_input:active{border:0;outline:2px solid #139ff7}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 1px;margin:0;text-align:center;color:#484848;vertical-align:middle;cursor:pointer;border:1px solid #bcbcbc;border-radius:2px;background:#f8f8f8;letter-spacing:.3px;line-height:18px;box-sizing:border-box}.cke_hc a.cke_dialog_ui_button{border-width:3px}span.cke_dialog_ui_button{padding:0 10px;cursor:pointer}a.cke_dialog_ui_button:hover{background:#fff}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border:2px solid #139ff7;outline:0;padding:3px 0}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;background:#09863e;border:1px solid #09863e}.cke_hc a.cke_dialog_ui_button{border:1px solid #bcbcbc}a.cke_dialog_ui_button_ok:hover{background:#53aa78;border-color:#53aa78}a.cke_dialog_ui_button_ok:focus{box-shadow:inset 0 0 0 2px #FFF}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#139ff7}.cke_hc a.cke_dialog_ui_button_ok:hover,.cke_hc a.cke_dialog_ui_button_ok:focus,.cke_hc a.cke_dialog_ui_button_ok:active{border-color:#484848}a.cke_dialog_ui_button_ok.cke_disabled{background:#d1d1d1;border-color:#d1d1d1;cursor:default}a.cke_dialog_ui_button_ok.cke_disabled span{cursor:default}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:28px;line-height:28px;background-color:#fff;border:1px solid #bcbcbc;padding:3px 3px 3px 6px;outline:0;border-radius:2px;margin:0 1px;box-sizing:border-box;width:calc(100% - 2px)!important}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog_ui_labeled_label{margin-left:1px}.cke_dialog_ui_labeled_required{font-weight:bold;font-size:1.2em}.cke_dialog .cke_dark_background{background-color:transparent}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked,.cke_dialog a.cke_btn_reset{margin:2px}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_dialog a.cke_btn_over,.cke_dialog a.cke_btn_locked:hover,.cke_dialog a.cke_btn_locked:focus,.cke_dialog a.cke_btn_locked:active,.cke_dialog a.cke_btn_unlocked:hover,.cke_dialog a.cke_btn_unlocked:focus,.cke_dialog a.cke_btn_unlocked:active,.cke_dialog a.cke_btn_reset:hover,.cke_dialog a.cke_btn_reset:focus,.cke_dialog a.cke_btn_reset:active{cursor:pointer;outline:0;margin:0;border:2px solid #139ff7}.cke_dialog fieldset{border:1px solid #bcbcbc}.cke_dialog fieldset legend{padding:0 6px}.cke_dialog_ui_checkbox,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox{display:inline-block}.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox{padding-top:5px}.cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input,.cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input+label,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input+label{vertical-align:middle}.cke_dialog .ImagePreviewBox{border:1px ridge #bcbcbc;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;cursor:default;letter-spacing:.3px}.cke_dialog_body label+.cke_dialog_ui_labeled_content{margin-top:2px}.cke_dialog_contents_body .cke_dialog_ui_text,.cke_dialog_contents_body .cke_dialog_ui_select,.cke_dialog_contents_body .cke_dialog_ui_hbox_last>a.cke_dialog_ui_button{margin-top:4px}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:2px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_dialog_contents_body .cke_accessibility_legend{margin:2px 7px 2px 2px}.cke_dialog_contents_body .cke_accessibility_legend:focus,.cke_dialog_contents_body .cke_accessibility_legend:active{outline:0;border:2px solid #139ff7;margin:0 5px 0 0}.cke_dialog_contents_body input[type=file]:focus,.cke_dialog_contents_body input[type=file]:active{border:2px solid #139ff7}.cke_dialog_find_fieldset{margin-top:10px!important}.cke_dialog_image_ratiolock{margin-top:52px!important}.cke_dialog_forms_select_order label.cke_dialog_ui_labeled_label{margin-left:0}.cke_dialog_forms_select_order div.cke_dialog_ui_input_select{width:100%}.cke_dialog_forms_select_order_txtsize .cke_dialog_ui_hbox_last{padding-top:4px}.cke_dialog_image_url .cke_dialog_ui_hbox_last{vertical-align:bottom}a.cke_dialog_ui_button.cke_dialog_image_browse{margin-top:10px}.cke_dialog_contents_body .cke_tpl_list{border:#bcbcbc 1px solid;margin:1px}.cke_dialog_contents_body .cke_tpl_list:focus,.cke_dialog_contents_body .cke_tpl_list:active{outline:0;margin:0;border:2px solid #139ff7}.cke_dialog_contents_body .cke_tpl_list a:focus,.cke_dialog_contents_body .cke_tpl_list a:active{outline:0}.cke_dialog_contents_body .cke_tpl_list a:focus .cke_tpl_item,.cke_dialog_contents_body .cke_tpl_list a:active .cke_tpl_item{border:2px solid #139ff7;padding:6px}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password,.cke_rtl input.cke_dialog_ui_input_tel{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password,.cke_rtl div.cke_dialog_ui_input_tel{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}a.cke_dialog_ui_button{min-height:18px}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,input.cke_dialog_ui_input_tel,textarea.cke_dialog_ui_input_textarea{min-height:18px}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,input.cke_dialog_ui_input_tel:focus,textarea.cke_dialog_ui_input_textarea:focus{padding-top:4px;padding-bottom:2px}select.cke_dialog_ui_input_select{width:100%!important}select.cke_dialog_ui_input_select:focus{margin-left:1px;width:100%!important;padding-top:2px;padding-bottom:2px} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/dialog_iequirks.css b/static/ckeditor/ckeditor/skins/moono-lisa/dialog_iequirks.css new file mode 100644 index 0000000000..5c1530e91a --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono-lisa/dialog_iequirks.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#fff}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:12px;cursor:move;position:relative;color:#484848;border-bottom:1px solid #d1d1d1;padding:12px 19px 12px 12px;background:#f8f8f8;letter-spacing:.3px}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border:2px solid rgba(102,102,102,0.2);border-left-color:rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:43px;border-top:1px solid #d1d1d1}.cke_dialog_contents_body{overflow:auto;padding:9px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border-top:1px solid #d1d1d1;background:#f8f8f8}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:33px;display:inline-block;margin:9px 0 0;position:absolute;z-index:2;left:11px}.cke_rtl .cke_dialog_tabs{left:auto;right:11px}a.cke_dialog_tab{height:25px;padding:4px 8px;display:inline-block;cursor:pointer;line-height:26px;outline:0;color:#484848;border:1px solid #d1d1d1;border-radius:3px 3px 0 0;background:#f8f8f8;min-width:90px;text-align:center;margin-left:-1px;letter-spacing:.3px}a.cke_dialog_tab:hover{background-color:#fff}a.cke_dialog_tab:focus{border:2px solid #139ff7;border-bottom-color:#d1d1d1;padding:3px 7px;position:relative;z-index:1}a.cke_dialog_tab_selected{background:#fff;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus{border-bottom-color:#fff}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:16px;width:16px;top:11px;z-index:5;opacity:.7;filter:alpha(opacity = 70)}.cke_rtl .cke_dialog_close_button{left:12px}.cke_ltr .cke_dialog_close_button{right:12px}.cke_hc a.cke_dialog_close_button{background-image:none}.cke_hidpi a.cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}a.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}a.cke_dialog_close_button span{display:none}.cke_hc a.cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%;margin-top:12px}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,input.cke_dialog_ui_input_tel,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #bcbcbc;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:2px;min-height:28px;margin-left:1px}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,input.cke_dialog_ui_input_tel:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,input.cke_dialog_ui_input_tel:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:2px solid #139ff7}input.cke_dialog_ui_input_text:focus{padding-left:5px}textarea.cke_dialog_ui_input_textarea:focus{padding:3px 5px}select.cke_dialog_ui_input_select:focus{margin:0;width:100%!important}input.cke_dialog_ui_checkbox_input,input.cke_dialog_ui_radio_input{margin-left:1px;margin-right:2px}input.cke_dialog_ui_checkbox_input:focus,input.cke_dialog_ui_checkbox_input:active,input.cke_dialog_ui_radio_input:focus,input.cke_dialog_ui_radio_input:active{border:0;outline:2px solid #139ff7}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 1px;margin:0;text-align:center;color:#484848;vertical-align:middle;cursor:pointer;border:1px solid #bcbcbc;border-radius:2px;background:#f8f8f8;letter-spacing:.3px;line-height:18px;box-sizing:border-box}.cke_hc a.cke_dialog_ui_button{border-width:3px}span.cke_dialog_ui_button{padding:0 10px;cursor:pointer}a.cke_dialog_ui_button:hover{background:#fff}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border:2px solid #139ff7;outline:0;padding:3px 0}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;background:#09863e;border:1px solid #09863e}.cke_hc a.cke_dialog_ui_button{border:1px solid #bcbcbc}a.cke_dialog_ui_button_ok:hover{background:#53aa78;border-color:#53aa78}a.cke_dialog_ui_button_ok:focus{box-shadow:inset 0 0 0 2px #FFF}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#139ff7}.cke_hc a.cke_dialog_ui_button_ok:hover,.cke_hc a.cke_dialog_ui_button_ok:focus,.cke_hc a.cke_dialog_ui_button_ok:active{border-color:#484848}a.cke_dialog_ui_button_ok.cke_disabled{background:#d1d1d1;border-color:#d1d1d1;cursor:default}a.cke_dialog_ui_button_ok.cke_disabled span{cursor:default}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:28px;line-height:28px;background-color:#fff;border:1px solid #bcbcbc;padding:3px 3px 3px 6px;outline:0;border-radius:2px;margin:0 1px;box-sizing:border-box;width:calc(100% - 2px)!important}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog_ui_labeled_label{margin-left:1px}.cke_dialog_ui_labeled_required{font-weight:bold;font-size:1.2em}.cke_dialog .cke_dark_background{background-color:transparent}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked,.cke_dialog a.cke_btn_reset{margin:2px}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_dialog a.cke_btn_over,.cke_dialog a.cke_btn_locked:hover,.cke_dialog a.cke_btn_locked:focus,.cke_dialog a.cke_btn_locked:active,.cke_dialog a.cke_btn_unlocked:hover,.cke_dialog a.cke_btn_unlocked:focus,.cke_dialog a.cke_btn_unlocked:active,.cke_dialog a.cke_btn_reset:hover,.cke_dialog a.cke_btn_reset:focus,.cke_dialog a.cke_btn_reset:active{cursor:pointer;outline:0;margin:0;border:2px solid #139ff7}.cke_dialog fieldset{border:1px solid #bcbcbc}.cke_dialog fieldset legend{padding:0 6px}.cke_dialog_ui_checkbox,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox{display:inline-block}.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox{padding-top:5px}.cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input,.cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input+label,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input,.cke_dialog fieldset .cke_dialog_ui_vbox .cke_dialog_ui_checkbox .cke_dialog_ui_checkbox_input+label{vertical-align:middle}.cke_dialog .ImagePreviewBox{border:1px ridge #bcbcbc;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;cursor:default;letter-spacing:.3px}.cke_dialog_body label+.cke_dialog_ui_labeled_content{margin-top:2px}.cke_dialog_contents_body .cke_dialog_ui_text,.cke_dialog_contents_body .cke_dialog_ui_select,.cke_dialog_contents_body .cke_dialog_ui_hbox_last>a.cke_dialog_ui_button{margin-top:4px}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:2px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_dialog_contents_body .cke_accessibility_legend{margin:2px 7px 2px 2px}.cke_dialog_contents_body .cke_accessibility_legend:focus,.cke_dialog_contents_body .cke_accessibility_legend:active{outline:0;border:2px solid #139ff7;margin:0 5px 0 0}.cke_dialog_contents_body input[type=file]:focus,.cke_dialog_contents_body input[type=file]:active{border:2px solid #139ff7}.cke_dialog_find_fieldset{margin-top:10px!important}.cke_dialog_image_ratiolock{margin-top:52px!important}.cke_dialog_forms_select_order label.cke_dialog_ui_labeled_label{margin-left:0}.cke_dialog_forms_select_order div.cke_dialog_ui_input_select{width:100%}.cke_dialog_forms_select_order_txtsize .cke_dialog_ui_hbox_last{padding-top:4px}.cke_dialog_image_url .cke_dialog_ui_hbox_last{vertical-align:bottom}a.cke_dialog_ui_button.cke_dialog_image_browse{margin-top:10px}.cke_dialog_contents_body .cke_tpl_list{border:#bcbcbc 1px solid;margin:1px}.cke_dialog_contents_body .cke_tpl_list:focus,.cke_dialog_contents_body .cke_tpl_list:active{outline:0;margin:0;border:2px solid #139ff7}.cke_dialog_contents_body .cke_tpl_list a:focus,.cke_dialog_contents_body .cke_tpl_list a:active{outline:0}.cke_dialog_contents_body .cke_tpl_list a:focus .cke_tpl_item,.cke_dialog_contents_body .cke_tpl_list a:active .cke_tpl_item{border:2px solid #139ff7;padding:6px}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password,.cke_rtl input.cke_dialog_ui_input_tel{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password,.cke_rtl div.cke_dialog_ui_input_tel{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_tel,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}.cke_dialog_footer{filter:""} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/editor.css b/static/ckeditor/ckeditor/skins/moono-lisa/editor.css new file mode 100644 index 0000000000..c155e3a462 --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono-lisa/editor.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #d1d1d1;padding:0}.cke_inner{display:block;background:#fff;padding:0;-webkit-touch-callout:none}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #d1d1d1;background:#f8f8f8;padding:6px 8px 2px;white-space:normal}.cke_float .cke_top{border:1px solid #d1d1d1}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #d1d1d1;background:#f8f8f8}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #bcbcbc transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #bcbcbc;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #d1d1d1}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_block:focus{outline:0}.cke_panel_list{margin:0;padding:0;list-style-type:none;white-space:nowrap}.cke_panel_listItem{margin:0;padding:0}.cke_panel_listItem a{padding:6px 7px;display:block;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis}.cke_hc .cke_panel_listItem a{border-style:none}.cke_panel_listItem.cke_selected a,.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{background-color:#e9e9e9}.cke_panel_listItem a:focus{outline:1px dotted #000}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:4px 5px}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:6px 6px 7px 6px;color:#484848;border-bottom:1px solid #d1d1d1;background:#f8f8f8}.cke_colorblock{padding:10px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}a.cke_colorbox{padding:2px;float:left;width:20px;height:20px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{outline:0;padding:0;border:2px solid #139ff7}a:hover.cke_colorbox{border-color:#bcbcbc}span.cke_colorbox{width:20px;height:20px;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:3px;display:block;cursor:pointer}a.cke_colorauto{padding:0;border:1px solid transparent;margin-bottom:6px;height:26px;line-height:26px}a.cke_colormore{margin-top:10px;height:20px;line-height:19px}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{outline:0;border:#139ff7 1px solid;background-color:#f8f8f8}a:hover.cke_colorauto,a:hover.cke_colormore{border-color:#bcbcbc}.cke_colorauto span.cke_colorbox{width:18px;height:18px;border:1px solid #808080;margin-left:1px;margin-top:3px}.cke_rtl .cke_colorauto span.cke_colorbox{margin-left:0;margin-right:1px}span.cke_colorbox[style*="#ffffff"],span.cke_colorbox[style*="#FFFFFF"],span.cke_colorbox[style="background-color:#fff"],span.cke_colorbox[style="background-color:#FFF"],span.cke_colorbox[style*="rgb(255,255,255)"],span.cke_colorbox[style*="rgb(255, 255, 255)"]{border:1px solid #808080;width:18px;height:18px}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{border:0;float:left;margin:1px 2px 6px 0;padding-right:3px}.cke_rtl .cke_toolgroup{float:right;margin:1px 0 6px 2px;padding-left:3px;padding-right:0}.cke_hc .cke_toolgroup{margin-right:5px;margin-bottom:5px}.cke_hc.cke_rtl .cke_toolgroup{margin-right:0;margin-left:5px}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0;position:relative}a.cke_button_expandable{padding:4px 5px}.cke_rtl a.cke_button{float:right}.cke_hc a.cke_button{border:1px solid black;padding:3px 5px;margin:0 3px 5px 0}.cke_hc.cke_rtl a.cke_button{margin:0 0 5px 3px}a.cke_button_on{background:#fff;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_on{padding:3px 4px}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:hover,a.cke_button_expandable.cke_button_off:focus,a.cke_button_expandable.cke_button_off:active{padding:3px 4px}.cke_hc a.cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active{background:#e5e5e5;border:3px solid #000;padding:1px 3px}@media screen and (hover:none){a.cke_button_off:hover{background:transparent;border:0;padding:4px 6px}a.cke_button_expandable.cke_button_off:hover{padding:4px 5px}a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:active{padding:3px 4px}}a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{border:0;padding:4px 6px;background-color:transparent}a.cke_button_expandable.cke_button_disabled:hover,a.cke_button_expandable.cke_button_disabled:active{padding:4px 5px}a.cke_button_disabled:focus{border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_disabled:focus{padding:3px 4px}.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border:1px solid #acacac;padding:3px 5px;margin:0 3px 5px 0}.cke_hc a.cke_button_disabled:focus{border:3px solid #000;padding:1px 3px}.cke_hc.cke_rtl a.cke_button_disabled:hover,.cke_hc.cke_rtl a.cke_button_disabled:focus,.cke_hc.cke_rtl a.cke_button_disabled:active{margin:0 0 5px 3px}a.cke_button_disabled .cke_button_icon,a.cke_button_disabled .cke_button_arrow{opacity:.3}.cke_hc a.cke_button_disabled{border-color:#acacac}.cke_hc a.cke_button_disabled .cke_button_icon,.cke_hc a.cke_button_disabled .cke_button_label{opacity:.5}.cke_toolgroup a.cke_button:last-child:after,.cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:4px;top:0;right:-3px}.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-right:0;right:auto;border-left:1px solid #bcbcbc;top:0;left:-3px}.cke_hc .cke_toolgroup a.cke_button:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-color:#000;top:0;right:-7px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{top:0;right:auto;left:-7px}.cke_toolgroup a.cke_button:hover:last-child:after,.cke_toolgroup a.cke_button:focus:last-child:after,.cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:-4px}.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_rtl .cke_toolgroup a.cke_button:focus:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:auto;left:-4px}.cke_hc .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:-9px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:auto;left:-9px}.cke_toolbar.cke_toolbar_last .cke_toolgroup a.cke_button:last-child:after{content:none;border:0;width:0;height:0}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#484848}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 3px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px 0 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#bcbcbc;margin:4px 2px 0 2px;height:18px;width:1px}.cke_rtl .cke_toolbar_separator{float:right}.cke_hc .cke_toolbar_separator{background-color:#000;margin-left:2px;margin-right:5px;margin-bottom:9px}.cke_hc.cke_rtl .cke_toolbar_separator{margin-left:5px;margin-right:2px}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #bcbcbc}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser:hover{background:#e5e5e5}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border:3px solid transparent;border-bottom-color:#484848}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#484848}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0}.cke_menuitem span{cursor:default}.cke_menubutton{display:block}.cke_hc .cke_menubutton{padding:2px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#e9e9e9;display:block;outline:1px dotted}.cke_menubutton:hover{outline:0}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_disabled:hover,.cke_menubutton_disabled:focus,.cke_menubutton_disabled:active{background-color:transparent;outline:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#f8f8f8;padding:6px 4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#e9e9e9}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{background-color:#f8f8f8;outline:0}.cke_menuitem .cke_menubutton_on{background-color:#e9e9e9;border:1px solid #dedede;outline:0}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px;background-color:#e9e9e9}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_shortcut{color:#979797}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d1d1d1;height:1px}.cke_menuarrow{background:transparent url(images/arrow.png) no-repeat 0 10px;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_hc .cke_menuarrow{background-image:none}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left;position:relative;margin-bottom:5px}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:1px;margin-bottom:10px}.cke_combo:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:5px;top:0;right:0}.cke_rtl .cke_combo:after{border-right:0;border-left:1px solid #bcbcbc;right:auto;left:0}.cke_hc .cke_combo:after{border-color:#000}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0;padding:1px}.cke_rtl a.cke_combo_button{float:right}.cke_hc a.cke_combo_button{padding:4px}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus,.cke_combo_off a.cke_combo_button:active{background:#e5e5e5;border:1px solid #bcbcbc;padding:0 0 0 1px;margin-left:-1px}.cke_combo_off a.cke_combo_button:focus{outline:0}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:active{background:#fff}@media screen and (hover:none){.cke_combo_off a.cke_combo_button:hover{background:transparent;border-color:transparent}.cke_combo_off a.cke_combo_button:active{background:#fff;border:1px solid #bcbcbc}}.cke_rtl .cke_combo_on a.cke_combo_button,.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:0 1px 0 0;margin-left:0;margin-right:-1px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border:3px solid #000;padding:1px 1px 1px 2px}.cke_hc.cke_rtl .cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:1px 2px 1px 1px}.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 0 0 3px;margin-left:-3px}.cke_rtl .cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 3px 0 0;margin-left:0;margin-right:-3px}.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 1px 1px 7px;margin-left:-6px}.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 7px 1px 1px;margin-left:0;margin-right:-6px}.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0;margin:0}.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px;margin:0}.cke_toolbar .cke_combo+.cke_toolbar_end,.cke_toolbar .cke_combo+.cke_toolgroup{margin-right:0;margin-left:2px}.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:2px}.cke_hc .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:5px}.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:5px}.cke_toolbar.cke_toolbar_last .cke_combo:nth-last-child(-n+2):after{content:none;border:0;width:0;height:0}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#484848;width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 10px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#484848;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#e5e5e5}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combopanel__fontsize{width:135px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;text-align:center;opacity:.95;filter:alpha(opacity = 95);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_button__about_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -144px !important;}.cke_button__bidiltr_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -168px !important;}.cke_button__bidirtl_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -192px !important;}.cke_button__blockquote_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -216px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -240px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -264px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -288px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -312px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -336px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -360px !important;}.cke_button__bgcolor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -384px !important;}.cke_button__textcolor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -408px !important;}.cke_rtl .cke_button__templates_icon, .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -432px !important;}.cke_ltr .cke_button__templates_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -456px !important;}.cke_button__copyformatting_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -480px !important;}.cke_button__creatediv_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -504px !important;}.cke_button__exportpdf_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -528px !important;}.cke_rtl .cke_button__find_icon, .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -552px !important;}.cke_ltr .cke_button__find_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -576px !important;}.cke_button__replace_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -600px !important;}.cke_button__button_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -624px !important;}.cke_button__checkbox_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -648px !important;}.cke_button__form_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -672px !important;}.cke_button__hiddenfield_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -696px !important;}.cke_button__imagebutton_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -720px !important;}.cke_button__radio_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -744px !important;}.cke_rtl .cke_button__select_icon, .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -768px !important;}.cke_ltr .cke_button__select_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -792px !important;}.cke_rtl .cke_button__textarea_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -816px !important;}.cke_ltr .cke_button__textarea_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -840px !important;}.cke_rtl .cke_button__textfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -864px !important;}.cke_ltr .cke_button__textfield_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -888px !important;}.cke_button__horizontalrule_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -912px !important;}.cke_button__iframe_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -936px !important;}.cke_button__image_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -960px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -984px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1008px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1032px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1056px !important;}.cke_button__smiley_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1080px !important;}.cke_button__justifyblock_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1104px !important;}.cke_button__justifycenter_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1128px !important;}.cke_button__justifyleft_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1152px !important;}.cke_button__justifyright_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1176px !important;}.cke_button__language_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1200px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1224px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1248px !important;}.cke_button__link_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1272px !important;}.cke_button__unlink_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1296px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1320px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1344px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1368px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1392px !important;}.cke_button__maximize_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1416px !important;}.cke_rtl .cke_button__newpage_icon, .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1440px !important;}.cke_ltr .cke_button__newpage_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1464px !important;}.cke_rtl .cke_button__pagebreak_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1488px !important;}.cke_ltr .cke_button__pagebreak_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1512px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1536px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1560px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1584px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1608px !important;}.cke_rtl .cke_button__preview_icon, .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1632px !important;}.cke_ltr .cke_button__preview_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1656px !important;}.cke_button__print_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1680px !important;}.cke_button__removeformat_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1704px !important;}.cke_button__save_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1728px !important;}.cke_button__selectall_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1752px !important;}.cke_rtl .cke_button__showblocks_icon, .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1776px !important;}.cke_ltr .cke_button__showblocks_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1800px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1824px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1848px !important;}.cke_button__specialchar_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1872px !important;}.cke_button__scayt_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1896px !important;}.cke_button__table_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1920px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1944px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1968px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1992px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -2016px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidiltr_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidirtl_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__templates_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_hidpi .cke_button__copyformatting_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_button__creatediv_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__exportpdf_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__find_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_button__replace_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_button__button_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_button__checkbox_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__form_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_hidpi .cke_button__hiddenfield_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_button__imagebutton_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_hidpi .cke_button__radio_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__select_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textarea_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_hidpi .cke_button__iframe_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1056px !important;background-size: 16px !important;}.cke_hidpi .cke_button__smiley_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1080px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyblock_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1104px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifycenter_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1128px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyleft_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1152px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyright_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1176px !important;background-size: 16px !important;}.cke_hidpi .cke_button__language_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1200px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1224px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1248px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1272px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1296px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1320px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1344px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1368px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1392px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1416px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__newpage_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1440px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1464px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1488px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1512px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1536px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1560px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1584px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1608px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__preview_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1632px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1656px !important;background-size: 16px !important;}.cke_hidpi .cke_button__print_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1680px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1704px !important;background-size: 16px !important;}.cke_hidpi .cke_button__save_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1728px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1752px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__showblocks_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1776px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1800px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1824px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1848px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1872px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1896px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1920px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1944px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1968px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1992px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -2016px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/editor_gecko.css b/static/ckeditor/ckeditor/skins/moono-lisa/editor_gecko.css new file mode 100644 index 0000000000..7878838c5d --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono-lisa/editor_gecko.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #d1d1d1;padding:0}.cke_inner{display:block;background:#fff;padding:0;-webkit-touch-callout:none}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #d1d1d1;background:#f8f8f8;padding:6px 8px 2px;white-space:normal}.cke_float .cke_top{border:1px solid #d1d1d1}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #d1d1d1;background:#f8f8f8}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #bcbcbc transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #bcbcbc;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #d1d1d1}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_block:focus{outline:0}.cke_panel_list{margin:0;padding:0;list-style-type:none;white-space:nowrap}.cke_panel_listItem{margin:0;padding:0}.cke_panel_listItem a{padding:6px 7px;display:block;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis}.cke_hc .cke_panel_listItem a{border-style:none}.cke_panel_listItem.cke_selected a,.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{background-color:#e9e9e9}.cke_panel_listItem a:focus{outline:1px dotted #000}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:4px 5px}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:6px 6px 7px 6px;color:#484848;border-bottom:1px solid #d1d1d1;background:#f8f8f8}.cke_colorblock{padding:10px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}a.cke_colorbox{padding:2px;float:left;width:20px;height:20px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{outline:0;padding:0;border:2px solid #139ff7}a:hover.cke_colorbox{border-color:#bcbcbc}span.cke_colorbox{width:20px;height:20px;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:3px;display:block;cursor:pointer}a.cke_colorauto{padding:0;border:1px solid transparent;margin-bottom:6px;height:26px;line-height:26px}a.cke_colormore{margin-top:10px;height:20px;line-height:19px}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{outline:0;border:#139ff7 1px solid;background-color:#f8f8f8}a:hover.cke_colorauto,a:hover.cke_colormore{border-color:#bcbcbc}.cke_colorauto span.cke_colorbox{width:18px;height:18px;border:1px solid #808080;margin-left:1px;margin-top:3px}.cke_rtl .cke_colorauto span.cke_colorbox{margin-left:0;margin-right:1px}span.cke_colorbox[style*="#ffffff"],span.cke_colorbox[style*="#FFFFFF"],span.cke_colorbox[style="background-color:#fff"],span.cke_colorbox[style="background-color:#FFF"],span.cke_colorbox[style*="rgb(255,255,255)"],span.cke_colorbox[style*="rgb(255, 255, 255)"]{border:1px solid #808080;width:18px;height:18px}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{border:0;float:left;margin:1px 2px 6px 0;padding-right:3px}.cke_rtl .cke_toolgroup{float:right;margin:1px 0 6px 2px;padding-left:3px;padding-right:0}.cke_hc .cke_toolgroup{margin-right:5px;margin-bottom:5px}.cke_hc.cke_rtl .cke_toolgroup{margin-right:0;margin-left:5px}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0;position:relative}a.cke_button_expandable{padding:4px 5px}.cke_rtl a.cke_button{float:right}.cke_hc a.cke_button{border:1px solid black;padding:3px 5px;margin:0 3px 5px 0}.cke_hc.cke_rtl a.cke_button{margin:0 0 5px 3px}a.cke_button_on{background:#fff;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_on{padding:3px 4px}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:hover,a.cke_button_expandable.cke_button_off:focus,a.cke_button_expandable.cke_button_off:active{padding:3px 4px}.cke_hc a.cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active{background:#e5e5e5;border:3px solid #000;padding:1px 3px}@media screen and (hover:none){a.cke_button_off:hover{background:transparent;border:0;padding:4px 6px}a.cke_button_expandable.cke_button_off:hover{padding:4px 5px}a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:active{padding:3px 4px}}a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{border:0;padding:4px 6px;background-color:transparent}a.cke_button_expandable.cke_button_disabled:hover,a.cke_button_expandable.cke_button_disabled:active{padding:4px 5px}a.cke_button_disabled:focus{border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_disabled:focus{padding:3px 4px}.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border:1px solid #acacac;padding:3px 5px;margin:0 3px 5px 0}.cke_hc a.cke_button_disabled:focus{border:3px solid #000;padding:1px 3px}.cke_hc.cke_rtl a.cke_button_disabled:hover,.cke_hc.cke_rtl a.cke_button_disabled:focus,.cke_hc.cke_rtl a.cke_button_disabled:active{margin:0 0 5px 3px}a.cke_button_disabled .cke_button_icon,a.cke_button_disabled .cke_button_arrow{opacity:.3}.cke_hc a.cke_button_disabled{border-color:#acacac}.cke_hc a.cke_button_disabled .cke_button_icon,.cke_hc a.cke_button_disabled .cke_button_label{opacity:.5}.cke_toolgroup a.cke_button:last-child:after,.cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:4px;top:0;right:-3px}.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-right:0;right:auto;border-left:1px solid #bcbcbc;top:0;left:-3px}.cke_hc .cke_toolgroup a.cke_button:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-color:#000;top:0;right:-7px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{top:0;right:auto;left:-7px}.cke_toolgroup a.cke_button:hover:last-child:after,.cke_toolgroup a.cke_button:focus:last-child:after,.cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:-4px}.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_rtl .cke_toolgroup a.cke_button:focus:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:auto;left:-4px}.cke_hc .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:-9px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:auto;left:-9px}.cke_toolbar.cke_toolbar_last .cke_toolgroup a.cke_button:last-child:after{content:none;border:0;width:0;height:0}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#484848}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 3px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px 0 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#bcbcbc;margin:4px 2px 0 2px;height:18px;width:1px}.cke_rtl .cke_toolbar_separator{float:right}.cke_hc .cke_toolbar_separator{background-color:#000;margin-left:2px;margin-right:5px;margin-bottom:9px}.cke_hc.cke_rtl .cke_toolbar_separator{margin-left:5px;margin-right:2px}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #bcbcbc}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser:hover{background:#e5e5e5}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border:3px solid transparent;border-bottom-color:#484848}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#484848}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0}.cke_menuitem span{cursor:default}.cke_menubutton{display:block}.cke_hc .cke_menubutton{padding:2px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#e9e9e9;display:block;outline:1px dotted}.cke_menubutton:hover{outline:0}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_disabled:hover,.cke_menubutton_disabled:focus,.cke_menubutton_disabled:active{background-color:transparent;outline:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#f8f8f8;padding:6px 4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#e9e9e9}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{background-color:#f8f8f8;outline:0}.cke_menuitem .cke_menubutton_on{background-color:#e9e9e9;border:1px solid #dedede;outline:0}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px;background-color:#e9e9e9}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_shortcut{color:#979797}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d1d1d1;height:1px}.cke_menuarrow{background:transparent url(images/arrow.png) no-repeat 0 10px;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_hc .cke_menuarrow{background-image:none}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left;position:relative;margin-bottom:5px}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:1px;margin-bottom:10px}.cke_combo:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:5px;top:0;right:0}.cke_rtl .cke_combo:after{border-right:0;border-left:1px solid #bcbcbc;right:auto;left:0}.cke_hc .cke_combo:after{border-color:#000}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0;padding:1px}.cke_rtl a.cke_combo_button{float:right}.cke_hc a.cke_combo_button{padding:4px}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus,.cke_combo_off a.cke_combo_button:active{background:#e5e5e5;border:1px solid #bcbcbc;padding:0 0 0 1px;margin-left:-1px}.cke_combo_off a.cke_combo_button:focus{outline:0}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:active{background:#fff}@media screen and (hover:none){.cke_combo_off a.cke_combo_button:hover{background:transparent;border-color:transparent}.cke_combo_off a.cke_combo_button:active{background:#fff;border:1px solid #bcbcbc}}.cke_rtl .cke_combo_on a.cke_combo_button,.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:0 1px 0 0;margin-left:0;margin-right:-1px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border:3px solid #000;padding:1px 1px 1px 2px}.cke_hc.cke_rtl .cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:1px 2px 1px 1px}.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 0 0 3px;margin-left:-3px}.cke_rtl .cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 3px 0 0;margin-left:0;margin-right:-3px}.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 1px 1px 7px;margin-left:-6px}.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 7px 1px 1px;margin-left:0;margin-right:-6px}.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0;margin:0}.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px;margin:0}.cke_toolbar .cke_combo+.cke_toolbar_end,.cke_toolbar .cke_combo+.cke_toolgroup{margin-right:0;margin-left:2px}.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:2px}.cke_hc .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:5px}.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:5px}.cke_toolbar.cke_toolbar_last .cke_combo:nth-last-child(-n+2):after{content:none;border:0;width:0;height:0}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#484848;width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 10px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#484848;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#e5e5e5}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combopanel__fontsize{width:135px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;text-align:center;opacity:.95;filter:alpha(opacity = 95);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_bottom{padding-bottom:3px}.cke_combo_text{margin-bottom:-1px;margin-top:1px}.cke_button__about_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -144px !important;}.cke_button__bidiltr_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -168px !important;}.cke_button__bidirtl_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -192px !important;}.cke_button__blockquote_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -216px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -240px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -264px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -288px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -312px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -336px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -360px !important;}.cke_button__bgcolor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -384px !important;}.cke_button__textcolor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -408px !important;}.cke_rtl .cke_button__templates_icon, .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -432px !important;}.cke_ltr .cke_button__templates_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -456px !important;}.cke_button__copyformatting_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -480px !important;}.cke_button__creatediv_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -504px !important;}.cke_button__exportpdf_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -528px !important;}.cke_rtl .cke_button__find_icon, .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -552px !important;}.cke_ltr .cke_button__find_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -576px !important;}.cke_button__replace_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -600px !important;}.cke_button__button_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -624px !important;}.cke_button__checkbox_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -648px !important;}.cke_button__form_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -672px !important;}.cke_button__hiddenfield_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -696px !important;}.cke_button__imagebutton_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -720px !important;}.cke_button__radio_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -744px !important;}.cke_rtl .cke_button__select_icon, .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -768px !important;}.cke_ltr .cke_button__select_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -792px !important;}.cke_rtl .cke_button__textarea_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -816px !important;}.cke_ltr .cke_button__textarea_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -840px !important;}.cke_rtl .cke_button__textfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -864px !important;}.cke_ltr .cke_button__textfield_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -888px !important;}.cke_button__horizontalrule_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -912px !important;}.cke_button__iframe_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -936px !important;}.cke_button__image_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -960px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -984px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1008px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1032px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1056px !important;}.cke_button__smiley_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1080px !important;}.cke_button__justifyblock_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1104px !important;}.cke_button__justifycenter_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1128px !important;}.cke_button__justifyleft_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1152px !important;}.cke_button__justifyright_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1176px !important;}.cke_button__language_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1200px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1224px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1248px !important;}.cke_button__link_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1272px !important;}.cke_button__unlink_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1296px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1320px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1344px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1368px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1392px !important;}.cke_button__maximize_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1416px !important;}.cke_rtl .cke_button__newpage_icon, .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1440px !important;}.cke_ltr .cke_button__newpage_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1464px !important;}.cke_rtl .cke_button__pagebreak_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1488px !important;}.cke_ltr .cke_button__pagebreak_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1512px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1536px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1560px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1584px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1608px !important;}.cke_rtl .cke_button__preview_icon, .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1632px !important;}.cke_ltr .cke_button__preview_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1656px !important;}.cke_button__print_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1680px !important;}.cke_button__removeformat_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1704px !important;}.cke_button__save_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1728px !important;}.cke_button__selectall_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1752px !important;}.cke_rtl .cke_button__showblocks_icon, .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1776px !important;}.cke_ltr .cke_button__showblocks_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1800px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1824px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1848px !important;}.cke_button__specialchar_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1872px !important;}.cke_button__scayt_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1896px !important;}.cke_button__table_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1920px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1944px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1968px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1992px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -2016px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidiltr_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidirtl_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__templates_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_hidpi .cke_button__copyformatting_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_button__creatediv_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__exportpdf_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__find_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_button__replace_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_button__button_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_button__checkbox_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__form_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_hidpi .cke_button__hiddenfield_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_button__imagebutton_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_hidpi .cke_button__radio_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__select_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textarea_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_hidpi .cke_button__iframe_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1056px !important;background-size: 16px !important;}.cke_hidpi .cke_button__smiley_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1080px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyblock_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1104px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifycenter_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1128px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyleft_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1152px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyright_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1176px !important;background-size: 16px !important;}.cke_hidpi .cke_button__language_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1200px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1224px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1248px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1272px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1296px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1320px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1344px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1368px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1392px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1416px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__newpage_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1440px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1464px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1488px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1512px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1536px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1560px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1584px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1608px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__preview_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1632px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1656px !important;background-size: 16px !important;}.cke_hidpi .cke_button__print_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1680px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1704px !important;background-size: 16px !important;}.cke_hidpi .cke_button__save_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1728px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1752px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__showblocks_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1776px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1800px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1824px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1848px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1872px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1896px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1920px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1944px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1968px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1992px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -2016px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/editor_ie.css b/static/ckeditor/ckeditor/skins/moono-lisa/editor_ie.css new file mode 100644 index 0000000000..1f002a4f52 --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono-lisa/editor_ie.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #d1d1d1;padding:0}.cke_inner{display:block;background:#fff;padding:0;-webkit-touch-callout:none}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #d1d1d1;background:#f8f8f8;padding:6px 8px 2px;white-space:normal}.cke_float .cke_top{border:1px solid #d1d1d1}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #d1d1d1;background:#f8f8f8}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #bcbcbc transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #bcbcbc;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #d1d1d1}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_block:focus{outline:0}.cke_panel_list{margin:0;padding:0;list-style-type:none;white-space:nowrap}.cke_panel_listItem{margin:0;padding:0}.cke_panel_listItem a{padding:6px 7px;display:block;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis}.cke_hc .cke_panel_listItem a{border-style:none}.cke_panel_listItem.cke_selected a,.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{background-color:#e9e9e9}.cke_panel_listItem a:focus{outline:1px dotted #000}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:4px 5px}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:6px 6px 7px 6px;color:#484848;border-bottom:1px solid #d1d1d1;background:#f8f8f8}.cke_colorblock{padding:10px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}a.cke_colorbox{padding:2px;float:left;width:20px;height:20px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{outline:0;padding:0;border:2px solid #139ff7}a:hover.cke_colorbox{border-color:#bcbcbc}span.cke_colorbox{width:20px;height:20px;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:3px;display:block;cursor:pointer}a.cke_colorauto{padding:0;border:1px solid transparent;margin-bottom:6px;height:26px;line-height:26px}a.cke_colormore{margin-top:10px;height:20px;line-height:19px}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{outline:0;border:#139ff7 1px solid;background-color:#f8f8f8}a:hover.cke_colorauto,a:hover.cke_colormore{border-color:#bcbcbc}.cke_colorauto span.cke_colorbox{width:18px;height:18px;border:1px solid #808080;margin-left:1px;margin-top:3px}.cke_rtl .cke_colorauto span.cke_colorbox{margin-left:0;margin-right:1px}span.cke_colorbox[style*="#ffffff"],span.cke_colorbox[style*="#FFFFFF"],span.cke_colorbox[style="background-color:#fff"],span.cke_colorbox[style="background-color:#FFF"],span.cke_colorbox[style*="rgb(255,255,255)"],span.cke_colorbox[style*="rgb(255, 255, 255)"]{border:1px solid #808080;width:18px;height:18px}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{border:0;float:left;margin:1px 2px 6px 0;padding-right:3px}.cke_rtl .cke_toolgroup{float:right;margin:1px 0 6px 2px;padding-left:3px;padding-right:0}.cke_hc .cke_toolgroup{margin-right:5px;margin-bottom:5px}.cke_hc.cke_rtl .cke_toolgroup{margin-right:0;margin-left:5px}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0;position:relative}a.cke_button_expandable{padding:4px 5px}.cke_rtl a.cke_button{float:right}.cke_hc a.cke_button{border:1px solid black;padding:3px 5px;margin:0 3px 5px 0}.cke_hc.cke_rtl a.cke_button{margin:0 0 5px 3px}a.cke_button_on{background:#fff;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_on{padding:3px 4px}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:hover,a.cke_button_expandable.cke_button_off:focus,a.cke_button_expandable.cke_button_off:active{padding:3px 4px}.cke_hc a.cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active{background:#e5e5e5;border:3px solid #000;padding:1px 3px}@media screen and (hover:none){a.cke_button_off:hover{background:transparent;border:0;padding:4px 6px}a.cke_button_expandable.cke_button_off:hover{padding:4px 5px}a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:active{padding:3px 4px}}a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{border:0;padding:4px 6px;background-color:transparent}a.cke_button_expandable.cke_button_disabled:hover,a.cke_button_expandable.cke_button_disabled:active{padding:4px 5px}a.cke_button_disabled:focus{border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_disabled:focus{padding:3px 4px}.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border:1px solid #acacac;padding:3px 5px;margin:0 3px 5px 0}.cke_hc a.cke_button_disabled:focus{border:3px solid #000;padding:1px 3px}.cke_hc.cke_rtl a.cke_button_disabled:hover,.cke_hc.cke_rtl a.cke_button_disabled:focus,.cke_hc.cke_rtl a.cke_button_disabled:active{margin:0 0 5px 3px}a.cke_button_disabled .cke_button_icon,a.cke_button_disabled .cke_button_arrow{opacity:.3}.cke_hc a.cke_button_disabled{border-color:#acacac}.cke_hc a.cke_button_disabled .cke_button_icon,.cke_hc a.cke_button_disabled .cke_button_label{opacity:.5}.cke_toolgroup a.cke_button:last-child:after,.cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:4px;top:0;right:-3px}.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-right:0;right:auto;border-left:1px solid #bcbcbc;top:0;left:-3px}.cke_hc .cke_toolgroup a.cke_button:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-color:#000;top:0;right:-7px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{top:0;right:auto;left:-7px}.cke_toolgroup a.cke_button:hover:last-child:after,.cke_toolgroup a.cke_button:focus:last-child:after,.cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:-4px}.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_rtl .cke_toolgroup a.cke_button:focus:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:auto;left:-4px}.cke_hc .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:-9px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:auto;left:-9px}.cke_toolbar.cke_toolbar_last .cke_toolgroup a.cke_button:last-child:after{content:none;border:0;width:0;height:0}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#484848}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 3px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px 0 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#bcbcbc;margin:4px 2px 0 2px;height:18px;width:1px}.cke_rtl .cke_toolbar_separator{float:right}.cke_hc .cke_toolbar_separator{background-color:#000;margin-left:2px;margin-right:5px;margin-bottom:9px}.cke_hc.cke_rtl .cke_toolbar_separator{margin-left:5px;margin-right:2px}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #bcbcbc}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser:hover{background:#e5e5e5}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border:3px solid transparent;border-bottom-color:#484848}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#484848}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0}.cke_menuitem span{cursor:default}.cke_menubutton{display:block}.cke_hc .cke_menubutton{padding:2px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#e9e9e9;display:block;outline:1px dotted}.cke_menubutton:hover{outline:0}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_disabled:hover,.cke_menubutton_disabled:focus,.cke_menubutton_disabled:active{background-color:transparent;outline:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#f8f8f8;padding:6px 4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#e9e9e9}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{background-color:#f8f8f8;outline:0}.cke_menuitem .cke_menubutton_on{background-color:#e9e9e9;border:1px solid #dedede;outline:0}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px;background-color:#e9e9e9}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_shortcut{color:#979797}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d1d1d1;height:1px}.cke_menuarrow{background:transparent url(images/arrow.png) no-repeat 0 10px;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_hc .cke_menuarrow{background-image:none}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left;position:relative;margin-bottom:5px}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:1px;margin-bottom:10px}.cke_combo:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:5px;top:0;right:0}.cke_rtl .cke_combo:after{border-right:0;border-left:1px solid #bcbcbc;right:auto;left:0}.cke_hc .cke_combo:after{border-color:#000}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0;padding:1px}.cke_rtl a.cke_combo_button{float:right}.cke_hc a.cke_combo_button{padding:4px}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus,.cke_combo_off a.cke_combo_button:active{background:#e5e5e5;border:1px solid #bcbcbc;padding:0 0 0 1px;margin-left:-1px}.cke_combo_off a.cke_combo_button:focus{outline:0}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:active{background:#fff}@media screen and (hover:none){.cke_combo_off a.cke_combo_button:hover{background:transparent;border-color:transparent}.cke_combo_off a.cke_combo_button:active{background:#fff;border:1px solid #bcbcbc}}.cke_rtl .cke_combo_on a.cke_combo_button,.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:0 1px 0 0;margin-left:0;margin-right:-1px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border:3px solid #000;padding:1px 1px 1px 2px}.cke_hc.cke_rtl .cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:1px 2px 1px 1px}.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 0 0 3px;margin-left:-3px}.cke_rtl .cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 3px 0 0;margin-left:0;margin-right:-3px}.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 1px 1px 7px;margin-left:-6px}.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 7px 1px 1px;margin-left:0;margin-right:-6px}.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0;margin:0}.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px;margin:0}.cke_toolbar .cke_combo+.cke_toolbar_end,.cke_toolbar .cke_combo+.cke_toolgroup{margin-right:0;margin-left:2px}.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:2px}.cke_hc .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:5px}.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:5px}.cke_toolbar.cke_toolbar_last .cke_combo:nth-last-child(-n+2):after{content:none;border:0;width:0;height:0}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#484848;width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 10px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#484848;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#e5e5e5}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combopanel__fontsize{width:135px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;text-align:center;opacity:.95;filter:alpha(opacity = 95);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_button__about_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -144px !important;}.cke_button__bidiltr_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -168px !important;}.cke_button__bidirtl_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -192px !important;}.cke_button__blockquote_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -216px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -240px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -264px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -288px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -312px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -336px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -360px !important;}.cke_button__bgcolor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -384px !important;}.cke_button__textcolor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -408px !important;}.cke_rtl .cke_button__templates_icon, .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -432px !important;}.cke_ltr .cke_button__templates_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -456px !important;}.cke_button__copyformatting_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -480px !important;}.cke_button__creatediv_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -504px !important;}.cke_button__exportpdf_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -528px !important;}.cke_rtl .cke_button__find_icon, .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -552px !important;}.cke_ltr .cke_button__find_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -576px !important;}.cke_button__replace_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -600px !important;}.cke_button__button_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -624px !important;}.cke_button__checkbox_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -648px !important;}.cke_button__form_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -672px !important;}.cke_button__hiddenfield_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -696px !important;}.cke_button__imagebutton_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -720px !important;}.cke_button__radio_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -744px !important;}.cke_rtl .cke_button__select_icon, .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -768px !important;}.cke_ltr .cke_button__select_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -792px !important;}.cke_rtl .cke_button__textarea_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -816px !important;}.cke_ltr .cke_button__textarea_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -840px !important;}.cke_rtl .cke_button__textfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -864px !important;}.cke_ltr .cke_button__textfield_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -888px !important;}.cke_button__horizontalrule_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -912px !important;}.cke_button__iframe_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -936px !important;}.cke_button__image_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -960px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -984px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1008px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1032px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1056px !important;}.cke_button__smiley_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1080px !important;}.cke_button__justifyblock_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1104px !important;}.cke_button__justifycenter_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1128px !important;}.cke_button__justifyleft_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1152px !important;}.cke_button__justifyright_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1176px !important;}.cke_button__language_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1200px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1224px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1248px !important;}.cke_button__link_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1272px !important;}.cke_button__unlink_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1296px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1320px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1344px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1368px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1392px !important;}.cke_button__maximize_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1416px !important;}.cke_rtl .cke_button__newpage_icon, .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1440px !important;}.cke_ltr .cke_button__newpage_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1464px !important;}.cke_rtl .cke_button__pagebreak_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1488px !important;}.cke_ltr .cke_button__pagebreak_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1512px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1536px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1560px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1584px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1608px !important;}.cke_rtl .cke_button__preview_icon, .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1632px !important;}.cke_ltr .cke_button__preview_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1656px !important;}.cke_button__print_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1680px !important;}.cke_button__removeformat_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1704px !important;}.cke_button__save_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1728px !important;}.cke_button__selectall_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1752px !important;}.cke_rtl .cke_button__showblocks_icon, .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1776px !important;}.cke_ltr .cke_button__showblocks_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1800px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1824px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1848px !important;}.cke_button__specialchar_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1872px !important;}.cke_button__scayt_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1896px !important;}.cke_button__table_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1920px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1944px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1968px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1992px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -2016px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidiltr_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidirtl_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__templates_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_hidpi .cke_button__copyformatting_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_button__creatediv_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__exportpdf_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__find_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_button__replace_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_button__button_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_button__checkbox_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__form_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_hidpi .cke_button__hiddenfield_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_button__imagebutton_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_hidpi .cke_button__radio_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__select_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textarea_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_hidpi .cke_button__iframe_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1056px !important;background-size: 16px !important;}.cke_hidpi .cke_button__smiley_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1080px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyblock_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1104px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifycenter_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1128px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyleft_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1152px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyright_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1176px !important;background-size: 16px !important;}.cke_hidpi .cke_button__language_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1200px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1224px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1248px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1272px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1296px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1320px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1344px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1368px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1392px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1416px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__newpage_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1440px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1464px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1488px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1512px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1536px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1560px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1584px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1608px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__preview_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1632px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1656px !important;background-size: 16px !important;}.cke_hidpi .cke_button__print_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1680px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1704px !important;background-size: 16px !important;}.cke_hidpi .cke_button__save_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1728px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1752px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__showblocks_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1776px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1800px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1824px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1848px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1872px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1896px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1920px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1944px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1968px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1992px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -2016px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/editor_ie8.css b/static/ckeditor/ckeditor/skins/moono-lisa/editor_ie8.css new file mode 100644 index 0000000000..d9120d4a3c --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono-lisa/editor_ie8.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #d1d1d1;padding:0}.cke_inner{display:block;background:#fff;padding:0;-webkit-touch-callout:none}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #d1d1d1;background:#f8f8f8;padding:6px 8px 2px;white-space:normal}.cke_float .cke_top{border:1px solid #d1d1d1}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #d1d1d1;background:#f8f8f8}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #bcbcbc transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #bcbcbc;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #d1d1d1}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_block:focus{outline:0}.cke_panel_list{margin:0;padding:0;list-style-type:none;white-space:nowrap}.cke_panel_listItem{margin:0;padding:0}.cke_panel_listItem a{padding:6px 7px;display:block;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis}.cke_hc .cke_panel_listItem a{border-style:none}.cke_panel_listItem.cke_selected a,.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{background-color:#e9e9e9}.cke_panel_listItem a:focus{outline:1px dotted #000}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:4px 5px}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:6px 6px 7px 6px;color:#484848;border-bottom:1px solid #d1d1d1;background:#f8f8f8}.cke_colorblock{padding:10px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}a.cke_colorbox{padding:2px;float:left;width:20px;height:20px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{outline:0;padding:0;border:2px solid #139ff7}a:hover.cke_colorbox{border-color:#bcbcbc}span.cke_colorbox{width:20px;height:20px;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:3px;display:block;cursor:pointer}a.cke_colorauto{padding:0;border:1px solid transparent;margin-bottom:6px;height:26px;line-height:26px}a.cke_colormore{margin-top:10px;height:20px;line-height:19px}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{outline:0;border:#139ff7 1px solid;background-color:#f8f8f8}a:hover.cke_colorauto,a:hover.cke_colormore{border-color:#bcbcbc}.cke_colorauto span.cke_colorbox{width:18px;height:18px;border:1px solid #808080;margin-left:1px;margin-top:3px}.cke_rtl .cke_colorauto span.cke_colorbox{margin-left:0;margin-right:1px}span.cke_colorbox[style*="#ffffff"],span.cke_colorbox[style*="#FFFFFF"],span.cke_colorbox[style="background-color:#fff"],span.cke_colorbox[style="background-color:#FFF"],span.cke_colorbox[style*="rgb(255,255,255)"],span.cke_colorbox[style*="rgb(255, 255, 255)"]{border:1px solid #808080;width:18px;height:18px}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{border:0;float:left;margin:1px 2px 6px 0;padding-right:3px}.cke_rtl .cke_toolgroup{float:right;margin:1px 0 6px 2px;padding-left:3px;padding-right:0}.cke_hc .cke_toolgroup{margin-right:5px;margin-bottom:5px}.cke_hc.cke_rtl .cke_toolgroup{margin-right:0;margin-left:5px}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0;position:relative}a.cke_button_expandable{padding:4px 5px}.cke_rtl a.cke_button{float:right}.cke_hc a.cke_button{border:1px solid black;padding:3px 5px;margin:0 3px 5px 0}.cke_hc.cke_rtl a.cke_button{margin:0 0 5px 3px}a.cke_button_on{background:#fff;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_on{padding:3px 4px}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:hover,a.cke_button_expandable.cke_button_off:focus,a.cke_button_expandable.cke_button_off:active{padding:3px 4px}.cke_hc a.cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active{background:#e5e5e5;border:3px solid #000;padding:1px 3px}@media screen and (hover:none){a.cke_button_off:hover{background:transparent;border:0;padding:4px 6px}a.cke_button_expandable.cke_button_off:hover{padding:4px 5px}a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:active{padding:3px 4px}}a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{border:0;padding:4px 6px;background-color:transparent}a.cke_button_expandable.cke_button_disabled:hover,a.cke_button_expandable.cke_button_disabled:active{padding:4px 5px}a.cke_button_disabled:focus{border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_disabled:focus{padding:3px 4px}.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border:1px solid #acacac;padding:3px 5px;margin:0 3px 5px 0}.cke_hc a.cke_button_disabled:focus{border:3px solid #000;padding:1px 3px}.cke_hc.cke_rtl a.cke_button_disabled:hover,.cke_hc.cke_rtl a.cke_button_disabled:focus,.cke_hc.cke_rtl a.cke_button_disabled:active{margin:0 0 5px 3px}a.cke_button_disabled .cke_button_icon,a.cke_button_disabled .cke_button_arrow{opacity:.3}.cke_hc a.cke_button_disabled{border-color:#acacac}.cke_hc a.cke_button_disabled .cke_button_icon,.cke_hc a.cke_button_disabled .cke_button_label{opacity:.5}.cke_toolgroup a.cke_button:last-child:after,.cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:4px;top:0;right:-3px}.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-right:0;right:auto;border-left:1px solid #bcbcbc;top:0;left:-3px}.cke_hc .cke_toolgroup a.cke_button:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-color:#000;top:0;right:-7px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{top:0;right:auto;left:-7px}.cke_toolgroup a.cke_button:hover:last-child:after,.cke_toolgroup a.cke_button:focus:last-child:after,.cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:-4px}.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_rtl .cke_toolgroup a.cke_button:focus:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:auto;left:-4px}.cke_hc .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:-9px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:auto;left:-9px}.cke_toolbar.cke_toolbar_last .cke_toolgroup a.cke_button:last-child:after{content:none;border:0;width:0;height:0}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#484848}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 3px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px 0 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#bcbcbc;margin:4px 2px 0 2px;height:18px;width:1px}.cke_rtl .cke_toolbar_separator{float:right}.cke_hc .cke_toolbar_separator{background-color:#000;margin-left:2px;margin-right:5px;margin-bottom:9px}.cke_hc.cke_rtl .cke_toolbar_separator{margin-left:5px;margin-right:2px}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #bcbcbc}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser:hover{background:#e5e5e5}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border:3px solid transparent;border-bottom-color:#484848}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#484848}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0}.cke_menuitem span{cursor:default}.cke_menubutton{display:block}.cke_hc .cke_menubutton{padding:2px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#e9e9e9;display:block;outline:1px dotted}.cke_menubutton:hover{outline:0}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_disabled:hover,.cke_menubutton_disabled:focus,.cke_menubutton_disabled:active{background-color:transparent;outline:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#f8f8f8;padding:6px 4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#e9e9e9}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{background-color:#f8f8f8;outline:0}.cke_menuitem .cke_menubutton_on{background-color:#e9e9e9;border:1px solid #dedede;outline:0}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px;background-color:#e9e9e9}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_shortcut{color:#979797}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d1d1d1;height:1px}.cke_menuarrow{background:transparent url(images/arrow.png) no-repeat 0 10px;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_hc .cke_menuarrow{background-image:none}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left;position:relative;margin-bottom:5px}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:1px;margin-bottom:10px}.cke_combo:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:5px;top:0;right:0}.cke_rtl .cke_combo:after{border-right:0;border-left:1px solid #bcbcbc;right:auto;left:0}.cke_hc .cke_combo:after{border-color:#000}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0;padding:1px}.cke_rtl a.cke_combo_button{float:right}.cke_hc a.cke_combo_button{padding:4px}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus,.cke_combo_off a.cke_combo_button:active{background:#e5e5e5;border:1px solid #bcbcbc;padding:0 0 0 1px;margin-left:-1px}.cke_combo_off a.cke_combo_button:focus{outline:0}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:active{background:#fff}@media screen and (hover:none){.cke_combo_off a.cke_combo_button:hover{background:transparent;border-color:transparent}.cke_combo_off a.cke_combo_button:active{background:#fff;border:1px solid #bcbcbc}}.cke_rtl .cke_combo_on a.cke_combo_button,.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:0 1px 0 0;margin-left:0;margin-right:-1px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border:3px solid #000;padding:1px 1px 1px 2px}.cke_hc.cke_rtl .cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:1px 2px 1px 1px}.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 0 0 3px;margin-left:-3px}.cke_rtl .cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 3px 0 0;margin-left:0;margin-right:-3px}.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 1px 1px 7px;margin-left:-6px}.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 7px 1px 1px;margin-left:0;margin-right:-6px}.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0;margin:0}.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px;margin:0}.cke_toolbar .cke_combo+.cke_toolbar_end,.cke_toolbar .cke_combo+.cke_toolgroup{margin-right:0;margin-left:2px}.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:2px}.cke_hc .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:5px}.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:5px}.cke_toolbar.cke_toolbar_last .cke_combo:nth-last-child(-n+2):after{content:none;border:0;width:0;height:0}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#484848;width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 10px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#484848;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#e5e5e5}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combopanel__fontsize{width:135px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;text-align:center;opacity:.95;filter:alpha(opacity = 95);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_toolbox_collapser .cke_arrow{border-width:4px}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{border-width:3px}.cke_toolbox_collapser .cke_arrow{margin-top:0}.cke_toolbar{position:relative}.cke_rtl .cke_toolbar_end{right:auto;left:0}.cke_toolbar_end:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:4px;top:1px;right:2px}.cke_rtl .cke_toolbar_end:after{right:auto;left:2px}.cke_hc .cke_toolbar_end:after{top:2px;right:5px;border-color:#000}.cke_hc.cke_rtl .cke_toolbar_end:after{right:auto;left:5px}.cke_combo+.cke_toolbar_end:after,.cke_toolbar.cke_toolbar_last .cke_toolbar_end:after{content:none;border:0}.cke_combo+.cke_toolgroup+.cke_toolbar_end:after{right:0}.cke_rtl .cke_combo+.cke_toolgroup+.cke_toolbar_end:after{right:auto;left:0}.cke_button__about_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -144px !important;}.cke_button__bidiltr_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -168px !important;}.cke_button__bidirtl_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -192px !important;}.cke_button__blockquote_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -216px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -240px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -264px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -288px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -312px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -336px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -360px !important;}.cke_button__bgcolor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -384px !important;}.cke_button__textcolor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -408px !important;}.cke_rtl .cke_button__templates_icon, .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -432px !important;}.cke_ltr .cke_button__templates_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -456px !important;}.cke_button__copyformatting_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -480px !important;}.cke_button__creatediv_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -504px !important;}.cke_button__exportpdf_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -528px !important;}.cke_rtl .cke_button__find_icon, .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -552px !important;}.cke_ltr .cke_button__find_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -576px !important;}.cke_button__replace_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -600px !important;}.cke_button__button_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -624px !important;}.cke_button__checkbox_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -648px !important;}.cke_button__form_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -672px !important;}.cke_button__hiddenfield_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -696px !important;}.cke_button__imagebutton_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -720px !important;}.cke_button__radio_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -744px !important;}.cke_rtl .cke_button__select_icon, .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -768px !important;}.cke_ltr .cke_button__select_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -792px !important;}.cke_rtl .cke_button__textarea_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -816px !important;}.cke_ltr .cke_button__textarea_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -840px !important;}.cke_rtl .cke_button__textfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -864px !important;}.cke_ltr .cke_button__textfield_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -888px !important;}.cke_button__horizontalrule_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -912px !important;}.cke_button__iframe_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -936px !important;}.cke_button__image_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -960px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -984px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1008px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1032px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1056px !important;}.cke_button__smiley_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1080px !important;}.cke_button__justifyblock_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1104px !important;}.cke_button__justifycenter_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1128px !important;}.cke_button__justifyleft_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1152px !important;}.cke_button__justifyright_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1176px !important;}.cke_button__language_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1200px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1224px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1248px !important;}.cke_button__link_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1272px !important;}.cke_button__unlink_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1296px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1320px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1344px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1368px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1392px !important;}.cke_button__maximize_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1416px !important;}.cke_rtl .cke_button__newpage_icon, .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1440px !important;}.cke_ltr .cke_button__newpage_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1464px !important;}.cke_rtl .cke_button__pagebreak_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1488px !important;}.cke_ltr .cke_button__pagebreak_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1512px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1536px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1560px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1584px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1608px !important;}.cke_rtl .cke_button__preview_icon, .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1632px !important;}.cke_ltr .cke_button__preview_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1656px !important;}.cke_button__print_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1680px !important;}.cke_button__removeformat_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1704px !important;}.cke_button__save_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1728px !important;}.cke_button__selectall_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1752px !important;}.cke_rtl .cke_button__showblocks_icon, .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1776px !important;}.cke_ltr .cke_button__showblocks_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1800px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1824px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1848px !important;}.cke_button__specialchar_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1872px !important;}.cke_button__scayt_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1896px !important;}.cke_button__table_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1920px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1944px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1968px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1992px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -2016px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidiltr_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidirtl_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__templates_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_hidpi .cke_button__copyformatting_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_button__creatediv_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__exportpdf_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__find_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_button__replace_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_button__button_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_button__checkbox_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__form_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_hidpi .cke_button__hiddenfield_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_button__imagebutton_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_hidpi .cke_button__radio_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__select_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textarea_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_hidpi .cke_button__iframe_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1056px !important;background-size: 16px !important;}.cke_hidpi .cke_button__smiley_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1080px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyblock_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1104px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifycenter_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1128px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyleft_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1152px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyright_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1176px !important;background-size: 16px !important;}.cke_hidpi .cke_button__language_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1200px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1224px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1248px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1272px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1296px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1320px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1344px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1368px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1392px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1416px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__newpage_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1440px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1464px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1488px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1512px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1536px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1560px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1584px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1608px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__preview_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1632px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1656px !important;background-size: 16px !important;}.cke_hidpi .cke_button__print_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1680px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1704px !important;background-size: 16px !important;}.cke_hidpi .cke_button__save_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1728px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1752px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__showblocks_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1776px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1800px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1824px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1848px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1872px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1896px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1920px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1944px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1968px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1992px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -2016px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/editor_iequirks.css b/static/ckeditor/ckeditor/skins/moono-lisa/editor_iequirks.css new file mode 100644 index 0000000000..dd46e0a0d6 --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono-lisa/editor_iequirks.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #d1d1d1;padding:0}.cke_inner{display:block;background:#fff;padding:0;-webkit-touch-callout:none}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #d1d1d1;background:#f8f8f8;padding:6px 8px 2px;white-space:normal}.cke_float .cke_top{border:1px solid #d1d1d1}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #d1d1d1;background:#f8f8f8}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #bcbcbc transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #bcbcbc;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #d1d1d1}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_block:focus{outline:0}.cke_panel_list{margin:0;padding:0;list-style-type:none;white-space:nowrap}.cke_panel_listItem{margin:0;padding:0}.cke_panel_listItem a{padding:6px 7px;display:block;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis}.cke_hc .cke_panel_listItem a{border-style:none}.cke_panel_listItem.cke_selected a,.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{background-color:#e9e9e9}.cke_panel_listItem a:focus{outline:1px dotted #000}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:4px 5px}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:6px 6px 7px 6px;color:#484848;border-bottom:1px solid #d1d1d1;background:#f8f8f8}.cke_colorblock{padding:10px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}a.cke_colorbox{padding:2px;float:left;width:20px;height:20px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{outline:0;padding:0;border:2px solid #139ff7}a:hover.cke_colorbox{border-color:#bcbcbc}span.cke_colorbox{width:20px;height:20px;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:3px;display:block;cursor:pointer}a.cke_colorauto{padding:0;border:1px solid transparent;margin-bottom:6px;height:26px;line-height:26px}a.cke_colormore{margin-top:10px;height:20px;line-height:19px}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{outline:0;border:#139ff7 1px solid;background-color:#f8f8f8}a:hover.cke_colorauto,a:hover.cke_colormore{border-color:#bcbcbc}.cke_colorauto span.cke_colorbox{width:18px;height:18px;border:1px solid #808080;margin-left:1px;margin-top:3px}.cke_rtl .cke_colorauto span.cke_colorbox{margin-left:0;margin-right:1px}span.cke_colorbox[style*="#ffffff"],span.cke_colorbox[style*="#FFFFFF"],span.cke_colorbox[style="background-color:#fff"],span.cke_colorbox[style="background-color:#FFF"],span.cke_colorbox[style*="rgb(255,255,255)"],span.cke_colorbox[style*="rgb(255, 255, 255)"]{border:1px solid #808080;width:18px;height:18px}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{border:0;float:left;margin:1px 2px 6px 0;padding-right:3px}.cke_rtl .cke_toolgroup{float:right;margin:1px 0 6px 2px;padding-left:3px;padding-right:0}.cke_hc .cke_toolgroup{margin-right:5px;margin-bottom:5px}.cke_hc.cke_rtl .cke_toolgroup{margin-right:0;margin-left:5px}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0;position:relative}a.cke_button_expandable{padding:4px 5px}.cke_rtl a.cke_button{float:right}.cke_hc a.cke_button{border:1px solid black;padding:3px 5px;margin:0 3px 5px 0}.cke_hc.cke_rtl a.cke_button{margin:0 0 5px 3px}a.cke_button_on{background:#fff;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_on{padding:3px 4px}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:hover,a.cke_button_expandable.cke_button_off:focus,a.cke_button_expandable.cke_button_off:active{padding:3px 4px}.cke_hc a.cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active{background:#e5e5e5;border:3px solid #000;padding:1px 3px}@media screen and (hover:none){a.cke_button_off:hover{background:transparent;border:0;padding:4px 6px}a.cke_button_expandable.cke_button_off:hover{padding:4px 5px}a.cke_button_off:active{background:#e5e5e5;border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_off:active{padding:3px 4px}}a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{border:0;padding:4px 6px;background-color:transparent}a.cke_button_expandable.cke_button_disabled:hover,a.cke_button_expandable.cke_button_disabled:active{padding:4px 5px}a.cke_button_disabled:focus{border:1px #bcbcbc solid;padding:3px 5px}a.cke_button_expandable.cke_button_disabled:focus{padding:3px 4px}.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border:1px solid #acacac;padding:3px 5px;margin:0 3px 5px 0}.cke_hc a.cke_button_disabled:focus{border:3px solid #000;padding:1px 3px}.cke_hc.cke_rtl a.cke_button_disabled:hover,.cke_hc.cke_rtl a.cke_button_disabled:focus,.cke_hc.cke_rtl a.cke_button_disabled:active{margin:0 0 5px 3px}a.cke_button_disabled .cke_button_icon,a.cke_button_disabled .cke_button_arrow{opacity:.3}.cke_hc a.cke_button_disabled{border-color:#acacac}.cke_hc a.cke_button_disabled .cke_button_icon,.cke_hc a.cke_button_disabled .cke_button_label{opacity:.5}.cke_toolgroup a.cke_button:last-child:after,.cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:4px;top:0;right:-3px}.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-right:0;right:auto;border-left:1px solid #bcbcbc;top:0;left:-3px}.cke_hc .cke_toolgroup a.cke_button:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{border-color:#000;top:0;right:-7px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_disabled:hover:last-child:after{top:0;right:auto;left:-7px}.cke_toolgroup a.cke_button:hover:last-child:after,.cke_toolgroup a.cke_button:focus:last-child:after,.cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:-4px}.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_rtl .cke_toolgroup a.cke_button:focus:last-child:after,.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-1px;right:auto;left:-4px}.cke_hc .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:-9px}.cke_hc.cke_rtl .cke_toolgroup a.cke_button:hover:last-child:after,.cke_hc.cke_rtl .cke_toolgroup a.cke_button.cke_button_on:last-child:after{top:-2px;right:auto;left:-9px}.cke_toolbar.cke_toolbar_last .cke_toolgroup a.cke_button:last-child:after{content:none;border:0;width:0;height:0}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#484848}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 3px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px 0 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#bcbcbc;margin:4px 2px 0 2px;height:18px;width:1px}.cke_rtl .cke_toolbar_separator{float:right}.cke_hc .cke_toolbar_separator{background-color:#000;margin-left:2px;margin-right:5px;margin-bottom:9px}.cke_hc.cke_rtl .cke_toolbar_separator{margin-left:5px;margin-right:2px}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #bcbcbc}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser:hover{background:#e5e5e5}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border:3px solid transparent;border-bottom-color:#484848}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#484848}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0}.cke_menuitem span{cursor:default}.cke_menubutton{display:block}.cke_hc .cke_menubutton{padding:2px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#e9e9e9;display:block;outline:1px dotted}.cke_menubutton:hover{outline:0}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_disabled:hover,.cke_menubutton_disabled:focus,.cke_menubutton_disabled:active{background-color:transparent;outline:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#f8f8f8;padding:6px 4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#e9e9e9}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{background-color:#f8f8f8;outline:0}.cke_menuitem .cke_menubutton_on{background-color:#e9e9e9;border:1px solid #dedede;outline:0}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px;background-color:#e9e9e9}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_shortcut{color:#979797}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d1d1d1;height:1px}.cke_menuarrow{background:transparent url(images/arrow.png) no-repeat 0 10px;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_hc .cke_menuarrow{background-image:none}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left;position:relative;margin-bottom:5px}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:1px;margin-bottom:10px}.cke_combo:after{content:"";position:absolute;height:18px;width:0;border-right:1px solid #bcbcbc;margin-top:5px;top:0;right:0}.cke_rtl .cke_combo:after{border-right:0;border-left:1px solid #bcbcbc;right:auto;left:0}.cke_hc .cke_combo:after{border-color:#000}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0;padding:1px}.cke_rtl a.cke_combo_button{float:right}.cke_hc a.cke_combo_button{padding:4px}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus,.cke_combo_off a.cke_combo_button:active{background:#e5e5e5;border:1px solid #bcbcbc;padding:0 0 0 1px;margin-left:-1px}.cke_combo_off a.cke_combo_button:focus{outline:0}.cke_combo_on a.cke_combo_button,.cke_combo_off a.cke_combo_button:active{background:#fff}@media screen and (hover:none){.cke_combo_off a.cke_combo_button:hover{background:transparent;border-color:transparent}.cke_combo_off a.cke_combo_button:active{background:#fff;border:1px solid #bcbcbc}}.cke_rtl .cke_combo_on a.cke_combo_button,.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:0 1px 0 0;margin-left:0;margin-right:-1px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border:3px solid #000;padding:1px 1px 1px 2px}.cke_hc.cke_rtl .cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_combo_off a.cke_combo_button:active{padding:1px 2px 1px 1px}.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 0 0 3px;margin-left:-3px}.cke_rtl .cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_rtl .cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0 3px 0 0;margin-left:0;margin-right:-3px}.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 1px 1px 7px;margin-left:-6px}.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc.cke_rtl .cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px 7px 1px 1px;margin-left:0;margin-right:-6px}.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:0;margin:0}.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbox .cke_toolbar:first-child>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_on a.cke_combo_button,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_toolbar_break+.cke_toolbar>.cke_toolbar_start+.cke_combo_off a.cke_combo_button:active{padding:1px;margin:0}.cke_toolbar .cke_combo+.cke_toolbar_end,.cke_toolbar .cke_combo+.cke_toolgroup{margin-right:0;margin-left:2px}.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:2px}.cke_hc .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:5px}.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolbar_end,.cke_hc.cke_rtl .cke_toolbar .cke_combo+.cke_toolgroup{margin-left:0;margin-right:5px}.cke_toolbar.cke_toolbar_last .cke_combo:nth-last-child(-n+2):after{content:none;border:0;width:0;height:0}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#484848;width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 10px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #484848}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#484848;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#e5e5e5}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combopanel__fontsize{width:135px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;text-align:center;opacity:.95;filter:alpha(opacity = 95);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_top,.cke_contents,.cke_bottom{width:100%}.cke_button_arrow{font-size:0}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_button,.cke_rtl .cke_button *,.cke_rtl .cke_combo,.cke_rtl .cke_combo *,.cke_rtl .cke_path_item,.cke_rtl .cke_path_item *,.cke_rtl .cke_path_empty{float:none}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_combo_button,.cke_rtl .cke_combo_button *,.cke_rtl .cke_button,.cke_rtl .cke_button_icon{display:inline-block;vertical-align:top}.cke_rtl .cke_button_icon{float:none}.cke_resizer{width:10px}.cke_source{white-space:normal}.cke_bottom{position:static}.cke_colorbox{font-size:0}.cke_button__about_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -144px !important;}.cke_button__bidiltr_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -168px !important;}.cke_button__bidirtl_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -192px !important;}.cke_button__blockquote_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -216px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -240px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -264px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -288px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -312px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -336px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -360px !important;}.cke_button__bgcolor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -384px !important;}.cke_button__textcolor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -408px !important;}.cke_rtl .cke_button__templates_icon, .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -432px !important;}.cke_ltr .cke_button__templates_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -456px !important;}.cke_button__copyformatting_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -480px !important;}.cke_button__creatediv_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -504px !important;}.cke_button__exportpdf_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -528px !important;}.cke_rtl .cke_button__find_icon, .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -552px !important;}.cke_ltr .cke_button__find_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -576px !important;}.cke_button__replace_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -600px !important;}.cke_button__button_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -624px !important;}.cke_button__checkbox_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -648px !important;}.cke_button__form_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -672px !important;}.cke_button__hiddenfield_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -696px !important;}.cke_button__imagebutton_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -720px !important;}.cke_button__radio_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -744px !important;}.cke_rtl .cke_button__select_icon, .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -768px !important;}.cke_ltr .cke_button__select_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -792px !important;}.cke_rtl .cke_button__textarea_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -816px !important;}.cke_ltr .cke_button__textarea_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -840px !important;}.cke_rtl .cke_button__textfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -864px !important;}.cke_ltr .cke_button__textfield_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -888px !important;}.cke_button__horizontalrule_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -912px !important;}.cke_button__iframe_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -936px !important;}.cke_button__image_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -960px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -984px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1008px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1032px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1056px !important;}.cke_button__smiley_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1080px !important;}.cke_button__justifyblock_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1104px !important;}.cke_button__justifycenter_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1128px !important;}.cke_button__justifyleft_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1152px !important;}.cke_button__justifyright_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1176px !important;}.cke_button__language_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1200px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1224px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1248px !important;}.cke_button__link_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1272px !important;}.cke_button__unlink_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1296px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1320px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1344px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1368px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1392px !important;}.cke_button__maximize_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1416px !important;}.cke_rtl .cke_button__newpage_icon, .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1440px !important;}.cke_ltr .cke_button__newpage_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1464px !important;}.cke_rtl .cke_button__pagebreak_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1488px !important;}.cke_ltr .cke_button__pagebreak_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1512px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1536px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1560px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1584px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1608px !important;}.cke_rtl .cke_button__preview_icon, .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1632px !important;}.cke_ltr .cke_button__preview_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1656px !important;}.cke_button__print_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1680px !important;}.cke_button__removeformat_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1704px !important;}.cke_button__save_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1728px !important;}.cke_button__selectall_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1752px !important;}.cke_rtl .cke_button__showblocks_icon, .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1776px !important;}.cke_ltr .cke_button__showblocks_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1800px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1824px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1848px !important;}.cke_button__specialchar_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1872px !important;}.cke_button__scayt_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1896px !important;}.cke_button__table_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1920px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1944px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1968px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -1992px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png?t=f6dd30807a) no-repeat 0 -2016px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidiltr_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidirtl_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__templates_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_hidpi .cke_button__copyformatting_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_hidpi .cke_button__creatediv_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_button__exportpdf_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__find_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_button__replace_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_button__button_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_button__checkbox_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__form_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_hidpi .cke_button__hiddenfield_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_button__imagebutton_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_hidpi .cke_button__radio_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__select_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textarea_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_hidpi .cke_button__iframe_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1056px !important;background-size: 16px !important;}.cke_hidpi .cke_button__smiley_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1080px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyblock_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1104px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifycenter_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1128px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyleft_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1152px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyright_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1176px !important;background-size: 16px !important;}.cke_hidpi .cke_button__language_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1200px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1224px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1248px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1272px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1296px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1320px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1344px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1368px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1392px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1416px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__newpage_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1440px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1464px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1488px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1512px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1536px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1560px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1584px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1608px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__preview_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1632px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1656px !important;background-size: 16px !important;}.cke_hidpi .cke_button__print_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1680px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1704px !important;background-size: 16px !important;}.cke_hidpi .cke_button__save_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1728px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1752px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__showblocks_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1776px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1800px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1824px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1848px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1872px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1896px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1920px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1944px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1968px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -1992px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png?t=f6dd30807a) no-repeat 0 -2016px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/icons.png b/static/ckeditor/ckeditor/skins/moono-lisa/icons.png new file mode 100644 index 0000000000..b2f6d6d634 Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono-lisa/icons.png differ diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/icons_hidpi.png b/static/ckeditor/ckeditor/skins/moono-lisa/icons_hidpi.png new file mode 100644 index 0000000000..bc5403c256 Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono-lisa/icons_hidpi.png differ diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/images/arrow.png b/static/ckeditor/ckeditor/skins/moono-lisa/images/arrow.png new file mode 100644 index 0000000000..d72b5f3b88 Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono-lisa/images/arrow.png differ diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/images/close.png b/static/ckeditor/ckeditor/skins/moono-lisa/images/close.png new file mode 100644 index 0000000000..40caa6ddfd Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono-lisa/images/close.png differ diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/close.png b/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/close.png new file mode 100644 index 0000000000..fa00f4fce6 Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/close.png differ diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png b/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png new file mode 100644 index 0000000000..c89978907d Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png differ diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock.png b/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock.png new file mode 100644 index 0000000000..25ad0f4a31 Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock.png differ diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/refresh.png b/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/refresh.png new file mode 100644 index 0000000000..117a2d4a47 Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/refresh.png differ diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/images/lock-open.png b/static/ckeditor/ckeditor/skins/moono-lisa/images/lock-open.png new file mode 100644 index 0000000000..42df5f4111 Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono-lisa/images/lock-open.png differ diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/images/lock.png b/static/ckeditor/ckeditor/skins/moono-lisa/images/lock.png new file mode 100644 index 0000000000..bde67727d7 Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono-lisa/images/lock.png differ diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/images/refresh.png b/static/ckeditor/ckeditor/skins/moono-lisa/images/refresh.png new file mode 100644 index 0000000000..e363764e3d Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono-lisa/images/refresh.png differ diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/images/spinner.gif b/static/ckeditor/ckeditor/skins/moono-lisa/images/spinner.gif new file mode 100644 index 0000000000..d898d41fa7 Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono-lisa/images/spinner.gif differ diff --git a/static/ckeditor/ckeditor/skins/moono-lisa/readme.md b/static/ckeditor/ckeditor/skins/moono-lisa/readme.md new file mode 100644 index 0000000000..2108c84fc8 --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono-lisa/readme.md @@ -0,0 +1,46 @@ +"Moono-lisa" Skin +================= + +This skin has been made a **default skin** starting from CKEditor 4.6.0 and is maintained by the core developers. + +For more information about skins, please check the [CKEditor Skin SDK](https://ckeditor.com/docs/ckeditor4/latest/guide/skin_sdk_intro.html) +documentation. + +Features +------------------- +"Moono-lisa" is a monochromatic skin, which offers a modern, flat and minimalistic look which blends very well in modern design. +It comes with the following features: + +- Chameleon feature with brightness. +- High-contrast compatibility. +- Graphics source provided in SVG. + +Directory Structure +------------------- + +CSS parts: +- **editor.css**: the main CSS file. It's simply loading several other files, for easier maintenance, +- **mainui.css**: the file contains styles of entire editor outline structures, +- **toolbar.css**: the file contains styles of the editor toolbar space (top), +- **richcombo.css**: the file contains styles of the rich combo ui elements on toolbar, +- **panel.css**: the file contains styles of the rich combo drop-down, it's not loaded +until the first panel open up, +- **elementspath.css**: the file contains styles of the editor elements path bar (bottom), +- **menu.css**: the file contains styles of all editor menus including context menu and button drop-down, +it's not loaded until the first menu open up, +- **dialog.css**: the CSS files for the dialog UI, it's not loaded until the first dialog open, +- **reset.css**: the file defines the basis of style resets among all editor UI spaces, +- **preset.css**: the file defines the default styles of some UI elements reflecting the skin preference, +- **editor_XYZ.css** and **dialog_XYZ.css**: browser specific CSS hacks. + +Other parts: +- **skin.js**: the only JavaScript part of the skin that registers the skin, its browser specific files and its icons and defines the Chameleon feature, +- **images/**: contains a fill general used images, +- **dev/**: contains SVG and PNG source of the skin icons. + +License +------- + +Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + +For licensing, see LICENSE.md or [https://ckeditor.com/legal/ckeditor-oss-license](https://ckeditor.com/legal/ckeditor-oss-license) diff --git a/static/ckeditor/ckeditor/skins/moono/dialog.css b/static/ckeditor/ckeditor/skins/moono/dialog.css new file mode 100644 index 0000000000..68f3d65cd6 --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono/dialog.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border-top:2px solid rgba(102,102,102,0.2);border-right:2px solid rgba(102,102,102,0.2);border-bottom:2px solid rgba(102,102,102,0.2);border-left:2px solid rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:linear-gradient(to bottom,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover,a.cke_dialog_tab:focus{background:#ebebeb;background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus{background:#ededed;background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:4px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:linear-gradient(to bottom,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button_ok.cke_disabled{border-color:#7d9f51;background:#8dad62;background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3d271),to(#8dad62));background-image:-webkit-linear-gradient(top,#b3d271,#8dad62);background-image:-o-linear-gradient(top,#b3d271,#8dad62);background-image:linear-gradient(to bottom,#b3d271,#8dad62);background-image:-moz-linear-gradient(top,#b3d271,#8dad62);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#B3D271',endColorstr='#8DAD62')}a.cke_dialog_ui_button_ok.cke_disabled span{color:#e0e8d1}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok.cke_disabled:focus,a.cke_dialog_ui_button_ok.cke_disabled:active{border-color:#6f8c49}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono/dialog_ie.css b/static/ckeditor/ckeditor/skins/moono/dialog_ie.css new file mode 100644 index 0000000000..75dd7c5986 --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono/dialog_ie.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border-top:2px solid rgba(102,102,102,0.2);border-right:2px solid rgba(102,102,102,0.2);border-bottom:2px solid rgba(102,102,102,0.2);border-left:2px solid rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:linear-gradient(to bottom,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover,a.cke_dialog_tab:focus{background:#ebebeb;background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus{background:#ededed;background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:4px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:linear-gradient(to bottom,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button_ok.cke_disabled{border-color:#7d9f51;background:#8dad62;background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3d271),to(#8dad62));background-image:-webkit-linear-gradient(top,#b3d271,#8dad62);background-image:-o-linear-gradient(top,#b3d271,#8dad62);background-image:linear-gradient(to bottom,#b3d271,#8dad62);background-image:-moz-linear-gradient(top,#b3d271,#8dad62);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#B3D271',endColorstr='#8DAD62')}a.cke_dialog_ui_button_ok.cke_disabled span{color:#e0e8d1}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok.cke_disabled:focus,a.cke_dialog_ui_button_ok.cke_disabled:active{border-color:#6f8c49}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono/dialog_ie7.css b/static/ckeditor/ckeditor/skins/moono/dialog_ie7.css new file mode 100644 index 0000000000..7ce23f78b9 --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono/dialog_ie7.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border-top:2px solid rgba(102,102,102,0.2);border-right:2px solid rgba(102,102,102,0.2);border-bottom:2px solid rgba(102,102,102,0.2);border-left:2px solid rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:linear-gradient(to bottom,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover,a.cke_dialog_tab:focus{background:#ebebeb;background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus{background:#ededed;background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:4px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:linear-gradient(to bottom,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button_ok.cke_disabled{border-color:#7d9f51;background:#8dad62;background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3d271),to(#8dad62));background-image:-webkit-linear-gradient(top,#b3d271,#8dad62);background-image:-o-linear-gradient(top,#b3d271,#8dad62);background-image:linear-gradient(to bottom,#b3d271,#8dad62);background-image:-moz-linear-gradient(top,#b3d271,#8dad62);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#B3D271',endColorstr='#8DAD62')}a.cke_dialog_ui_button_ok.cke_disabled span{color:#e0e8d1}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok.cke_disabled:focus,a.cke_dialog_ui_button_ok.cke_disabled:active{border-color:#6f8c49}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}.cke_dialog_title{zoom:1}.cke_dialog_footer{border-top:1px solid #bfbfbf}.cke_dialog_footer_buttons{position:static}.cke_dialog_footer_buttons a.cke_dialog_ui_button{vertical-align:top}.cke_dialog .cke_resizer_ltr{padding-left:4px}.cke_dialog .cke_resizer_rtl{padding-right:4px}.cke_dialog_ui_input_text,.cke_dialog_ui_input_password,.cke_dialog_ui_input_textarea,.cke_dialog_ui_input_select{padding:0!important}.cke_dialog_ui_checkbox_input,.cke_dialog_ui_ratio_input,.cke_btn_reset,.cke_btn_locked,.cke_btn_unlocked{border:1px solid transparent!important} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono/dialog_ie8.css b/static/ckeditor/ckeditor/skins/moono/dialog_ie8.css new file mode 100644 index 0000000000..6fb36f1290 --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono/dialog_ie8.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border-top:2px solid rgba(102,102,102,0.2);border-right:2px solid rgba(102,102,102,0.2);border-bottom:2px solid rgba(102,102,102,0.2);border-left:2px solid rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:linear-gradient(to bottom,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover,a.cke_dialog_tab:focus{background:#ebebeb;background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus{background:#ededed;background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:4px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:linear-gradient(to bottom,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button_ok.cke_disabled{border-color:#7d9f51;background:#8dad62;background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3d271),to(#8dad62));background-image:-webkit-linear-gradient(top,#b3d271,#8dad62);background-image:-o-linear-gradient(top,#b3d271,#8dad62);background-image:linear-gradient(to bottom,#b3d271,#8dad62);background-image:-moz-linear-gradient(top,#b3d271,#8dad62);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#B3D271',endColorstr='#8DAD62')}a.cke_dialog_ui_button_ok.cke_disabled span{color:#e0e8d1}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok.cke_disabled:focus,a.cke_dialog_ui_button_ok.cke_disabled:active{border-color:#6f8c49}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{display:block} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono/dialog_iequirks.css b/static/ckeditor/ckeditor/skins/moono/dialog_iequirks.css new file mode 100644 index 0000000000..c1cad55638 --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono/dialog_iequirks.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_dialog{visibility:visible}.cke_dialog_body{z-index:1;background:#eaeaea;border:1px solid #b2b2b2;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_dialog strong{font-weight:bold}.cke_dialog_title{font-weight:bold;font-size:13px;cursor:move;position:relative;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #999;padding:6px 10px;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_dialog_spinner{border-radius:50%;width:12px;height:12px;overflow:hidden;text-indent:-9999em;border-top:2px solid rgba(102,102,102,0.2);border-right:2px solid rgba(102,102,102,0.2);border-bottom:2px solid rgba(102,102,102,0.2);border-left:2px solid rgba(102,102,102,1);-webkit-animation:dialog_spinner 1s infinite linear;animation:dialog_spinner 1s infinite linear}.cke_browser_ie8 .cke_dialog_spinner,.cke_browser_ie9 .cke_dialog_spinner{background:url(images/spinner.gif) center top no-repeat;width:16px;height:16px;border:0}@-webkit-keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes dialog_spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.cke_dialog_contents{background-color:#fff;overflow:auto;padding:15px 10px 5px 10px;margin-top:30px;border-top:1px solid #bfbfbf;border-radius:0 0 3px 3px}.cke_dialog_contents_body{overflow:auto;padding:17px 10px 5px 10px;margin-top:22px}.cke_dialog_footer{text-align:right;position:relative;border:0;outline:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;border-radius:0 0 2px 2px;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_rtl .cke_dialog_footer{text-align:left}.cke_hc .cke_dialog_footer{outline:0;border-top:1px solid #fff}.cke_dialog .cke_resizer{margin-top:22px}.cke_dialog .cke_resizer_rtl{margin-left:5px}.cke_dialog .cke_resizer_ltr{margin-right:5px}.cke_dialog_tabs{height:24px;display:inline-block;margin:5px 0 0;position:absolute;z-index:2;left:10px}.cke_rtl .cke_dialog_tabs{right:10px}a.cke_dialog_tab{height:16px;padding:4px 8px;margin-right:3px;display:inline-block;cursor:pointer;line-height:16px;outline:0;color:#595959;border:1px solid #bfbfbf;border-radius:3px 3px 0 0;background:#d4d4d4;background-image:linear-gradient(to bottom,#fafafa,#ededed);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#fafafa',endColorstr='#ededed')}.cke_rtl a.cke_dialog_tab{margin-right:0;margin-left:3px}a.cke_dialog_tab:hover,a.cke_dialog_tab:focus{background:#ebebeb;background:linear-gradient(to bottom,#ebebeb 0,#dfdfdf 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb',endColorstr='#dfdfdf',GradientType=0)}a.cke_dialog_tab_selected{background:#fff;color:#383838;border-bottom-color:#fff;cursor:default;filter:none}a.cke_dialog_tab_selected:hover,a.cke_dialog_tab_selected:focus{background:#ededed;background:linear-gradient(to bottom,#ededed 0,#fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed',endColorstr='#ffffff',GradientType=0)}.cke_hc a.cke_dialog_tab:hover,.cke_hc a.cke_dialog_tab:focus,.cke_hc a.cke_dialog_tab_selected{border:3px solid;padding:2px 6px}a.cke_dialog_tab_disabled{color:#bababa;cursor:default}.cke_single_page .cke_dialog_tabs{display:none}.cke_single_page .cke_dialog_contents{padding-top:5px;margin-top:0;border-top:0}a.cke_dialog_close_button{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:4px;z-index:5;opacity:.8;filter:alpha(opacity = 80)}.cke_dialog_close_button:hover{opacity:1;filter:alpha(opacity = 100)}.cke_hidpi .cke_dialog_close_button{background-image:url(images/hidpi/close.png);background-size:16px}.cke_dialog_close_button span{display:none}.cke_hc .cke_dialog_close_button span{display:inline;cursor:pointer;font-weight:bold;position:relative;top:3px}.cke_ltr .cke_dialog_close_button{right:5px}.cke_rtl .cke_dialog_close_button{left:6px}.cke_dialog_close_button{top:4px}div.cke_disabled .cke_dialog_ui_labeled_content div *{background-color:#ddd;cursor:default}.cke_dialog_ui_vbox table,.cke_dialog_ui_hbox table{margin:auto}.cke_dialog_ui_vbox_child{padding:5px 0}.cke_dialog_ui_hbox{width:100%}.cke_dialog_ui_hbox_first,.cke_dialog_ui_hbox_child,.cke_dialog_ui_hbox_last{vertical-align:top}.cke_ltr .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_ui_hbox_child{padding-right:10px}.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_child{padding-left:10px}.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_ltr .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-right:5px}.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_footer_buttons .cke_dialog_ui_hbox_child{padding-left:5px;padding-right:0}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:1px solid}textarea.cke_dialog_ui_input_textarea{overflow:auto;resize:none}input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_textarea{background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:4px 6px;outline:0;width:100%;*width:95%;box-sizing:border-box;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}input.cke_dialog_ui_input_text:hover,input.cke_dialog_ui_input_password:hover,textarea.cke_dialog_ui_input_textarea:hover{border:1px solid #aeb3b9;border-top-color:#a0a6ad}input.cke_dialog_ui_input_text:focus,input.cke_dialog_ui_input_password:focus,textarea.cke_dialog_ui_input_textarea:focus,select.cke_dialog_ui_input_select:focus{outline:0;border:1px solid #139ff7;border-top-color:#1392e9}a.cke_dialog_ui_button{display:inline-block;*display:inline;*zoom:1;padding:4px 0;margin:0;text-align:center;color:#333;vertical-align:middle;cursor:pointer;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}span.cke_dialog_ui_button{padding:0 10px}a.cke_dialog_ui_button:hover{border-color:#9e9e9e;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}a.cke_dialog_ui_button:focus,a.cke_dialog_ui_button:active{border-color:#969696;outline:0;box-shadow:0 0 6px rgba(0,0,0,.4) inset}.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button:focus,.cke_hc a.cke_dialog_ui_button:active{border:3px solid;padding-top:1px;padding-bottom:1px}.cke_hc a.cke_dialog_ui_button:hover span,.cke_hc a.cke_dialog_ui_button:focus span,.cke_hc a.cke_dialog_ui_button:active span{padding-left:10px;padding-right:10px}.cke_dialog_footer_buttons a.cke_dialog_ui_button span{color:inherit;font-size:12px;font-weight:bold;line-height:18px;padding:0 12px}a.cke_dialog_ui_button_ok{color:#fff;text-shadow:0 -1px 0 #55830c;border-color:#62a60a #62a60a #4d9200;background:#69b10b;background-image:linear-gradient(to bottom,#9ad717,#69b10b);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#9ad717',endColorstr='#69b10b')}a.cke_dialog_ui_button_ok:hover{border-color:#5b9909 #5b9909 #478500;background:#88be14;background:linear-gradient(to bottom,#88be14 0,#5d9c0a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#88be14',endColorstr='#5d9c0a',GradientType=0)}a.cke_dialog_ui_button_ok.cke_disabled{border-color:#7d9f51;background:#8dad62;background-image:-webkit-gradient(linear,0 0,0 100%,from(#b3d271),to(#8dad62));background-image:-webkit-linear-gradient(top,#b3d271,#8dad62);background-image:-o-linear-gradient(top,#b3d271,#8dad62);background-image:linear-gradient(to bottom,#b3d271,#8dad62);background-image:-moz-linear-gradient(top,#b3d271,#8dad62);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#B3D271',endColorstr='#8DAD62')}a.cke_dialog_ui_button_ok.cke_disabled span{color:#e0e8d1}a.cke_dialog_ui_button span{text-shadow:0 1px 0 #fff}a.cke_dialog_ui_button_ok span{text-shadow:0 -1px 0 #55830c}span.cke_dialog_ui_button{cursor:pointer}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active,a.cke_dialog_ui_button_cancel:focus,a.cke_dialog_ui_button_cancel:active{border-width:2px;padding:3px 0}a.cke_dialog_ui_button_ok:focus,a.cke_dialog_ui_button_ok:active{border-color:#568c0a}a.cke_dialog_ui_button_ok.cke_disabled:focus,a.cke_dialog_ui_button_ok.cke_disabled:active{border-color:#6f8c49}a.cke_dialog_ui_button_ok:focus span,a.cke_dialog_ui_button_ok:active span,a.cke_dialog_ui_button_cancel:focus span,a.cke_dialog_ui_button_cancel:active span{padding:0 11px}.cke_dialog_footer_buttons{display:inline-table;margin:5px;width:auto;position:relative;vertical-align:middle}div.cke_dialog_ui_input_select{display:table}select.cke_dialog_ui_input_select{height:25px;line-height:25px;background-color:#fff;border:1px solid #c9cccf;border-top-color:#aeb3b9;padding:3px 3px 3px 6px;outline:0;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15) inset}.cke_dialog_ui_input_file{width:100%;height:25px}.cke_hc .cke_dialog_ui_labeled_content input:focus,.cke_hc .cke_dialog_ui_labeled_content select:focus,.cke_hc .cke_dialog_ui_labeled_content textarea:focus{outline:1px dotted}.cke_dialog .cke_dark_background{background-color:#dedede}.cke_dialog .cke_light_background{background-color:#ebebeb}.cke_dialog .cke_centered{text-align:center}.cke_dialog a.cke_btn_reset{float:right;background:url(images/refresh.png) top left no-repeat;width:16px;height:16px;border:1px none;font-size:1px}.cke_hidpi .cke_dialog a.cke_btn_reset{background-size:16px;background-image:url(images/hidpi/refresh.png)}.cke_rtl .cke_dialog a.cke_btn_reset{float:left}.cke_dialog a.cke_btn_locked,.cke_dialog a.cke_btn_unlocked{float:left;width:16px;height:16px;background-repeat:no-repeat;border:none 1px;font-size:1px}.cke_dialog a.cke_btn_locked .cke_icon{display:none}.cke_rtl .cke_dialog a.cke_btn_locked,.cke_rtl .cke_dialog a.cke_btn_unlocked{float:right}.cke_dialog a.cke_btn_locked{background-image:url(images/lock.png)}.cke_dialog a.cke_btn_unlocked{background-image:url(images/lock-open.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked,.cke_hidpi .cke_dialog a.cke_btn_locked{background-size:16px}.cke_hidpi .cke_dialog a.cke_btn_locked{background-image:url(images/hidpi/lock.png)}.cke_hidpi .cke_dialog a.cke_btn_unlocked{background-image:url(images/hidpi/lock-open.png)}.cke_dialog .cke_btn_over{border:outset 1px;cursor:pointer}.cke_dialog .ImagePreviewBox{border:2px ridge black;overflow:scroll;height:200px;width:300px;padding:2px;background-color:white}.cke_dialog .ImagePreviewBox table td{white-space:normal}.cke_dialog .ImagePreviewLoader{position:absolute;white-space:normal;overflow:hidden;height:160px;width:230px;margin:2px;padding:2px;opacity:.9;filter:alpha(opacity = 90);background-color:#e4e4e4}.cke_dialog .FlashPreviewBox{white-space:normal;border:2px ridge black;overflow:auto;height:160px;width:390px;padding:2px;background-color:white}.cke_dialog .cke_pastetext{width:346px;height:170px}.cke_dialog .cke_pastetext textarea{width:340px;height:170px;resize:none}.cke_dialog iframe.cke_pasteframe{width:346px;height:130px;background-color:white;border:1px solid #aeb3b9;border-radius:3px}.cke_dialog .cke_hand{cursor:pointer}.cke_disabled{color:#a0a0a0}.cke_dialog_body .cke_label{display:none}.cke_dialog_body label{display:inline;margin-bottom:auto;cursor:default}.cke_dialog_body label.cke_required{font-weight:bold}a.cke_smile{overflow:hidden;display:block;text-align:center;padding:.3em 0}a.cke_smile img{vertical-align:middle}a.cke_specialchar{cursor:inherit;display:block;height:1.25em;padding:.2em .3em;text-align:center}a.cke_smile,a.cke_specialchar{border:1px solid transparent}a.cke_smile:hover,a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:hover,a.cke_specialchar:focus,a.cke_specialchar:active{background:#fff;outline:0}a.cke_smile:hover,a.cke_specialchar:hover{border-color:#888}a.cke_smile:focus,a.cke_smile:active,a.cke_specialchar:focus,a.cke_specialchar:active{border-color:#139ff7}.cke_dialog_contents a.colorChooser{display:block;margin-top:6px;margin-left:10px;width:80px}.cke_rtl .cke_dialog_contents a.colorChooser{margin-right:10px}.cke_dialog_ui_checkbox_input:focus,.cke_dialog_ui_radio_input:focus,.cke_btn_over{outline:1px dotted #696969}.cke_iframe_shim{display:block;position:absolute;top:0;left:0;z-index:-1;filter:alpha(opacity = 0);width:100%;height:100%}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{padding-right:2px}.cke_rtl div.cke_dialog_ui_input_text,.cke_rtl div.cke_dialog_ui_input_password{padding-left:2px}.cke_rtl div.cke_dialog_ui_input_text{padding-right:1px}.cke_rtl .cke_dialog_ui_vbox_child,.cke_rtl .cke_dialog_ui_hbox_child,.cke_rtl .cke_dialog_ui_hbox_first,.cke_rtl .cke_dialog_ui_hbox_last{padding-right:2px!important}.cke_hc .cke_dialog_title,.cke_hc .cke_dialog_footer,.cke_hc a.cke_dialog_tab,.cke_hc a.cke_dialog_ui_button,.cke_hc a.cke_dialog_ui_button:hover,.cke_hc a.cke_dialog_ui_button_ok,.cke_hc a.cke_dialog_ui_button_ok:hover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_hc div.cke_dialog_ui_input_text,.cke_hc div.cke_dialog_ui_input_password,.cke_hc div.cke_dialog_ui_input_textarea,.cke_hc div.cke_dialog_ui_input_select,.cke_hc div.cke_dialog_ui_input_file{border:0}.cke_dialog_footer{filter:""} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono/editor.css b/static/ckeditor/ckeditor/skins/moono/editor.css new file mode 100644 index 0000000000..3a27eaff8d --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono/editor.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}a.cke_button_on{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);border-radius:2px;box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;border-radius:3px;text-align:center;opacity:.95;filter:alpha(opacity = 95);box-shadow:2px 2px 3px 0 rgba(50,50,50,0.3);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_button__about_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -144px !important;}.cke_button__bidiltr_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -168px !important;}.cke_button__bidirtl_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -192px !important;}.cke_button__blockquote_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -216px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -240px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -264px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -288px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -312px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -336px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -360px !important;}.cke_button__bgcolor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -384px !important;}.cke_button__textcolor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -408px !important;}.cke_rtl .cke_button__templates_icon, .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -432px !important;}.cke_ltr .cke_button__templates_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -456px !important;}.cke_button__creatediv_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -480px !important;}.cke_rtl .cke_button__find_icon, .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -504px !important;}.cke_ltr .cke_button__find_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -528px !important;}.cke_button__replace_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -552px !important;}.cke_button__flash_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -576px !important;}.cke_button__button_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -600px !important;}.cke_button__checkbox_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -624px !important;}.cke_button__form_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -648px !important;}.cke_button__hiddenfield_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -672px !important;}.cke_button__imagebutton_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -696px !important;}.cke_button__radio_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -720px !important;}.cke_rtl .cke_button__select_icon, .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -744px !important;}.cke_ltr .cke_button__select_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -768px !important;}.cke_rtl .cke_button__textarea_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -792px !important;}.cke_ltr .cke_button__textarea_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -816px !important;}.cke_rtl .cke_button__textfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -840px !important;}.cke_ltr .cke_button__textfield_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -864px !important;}.cke_button__horizontalrule_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -888px !important;}.cke_button__iframe_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -912px !important;}.cke_button__image_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -936px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -960px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -984px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1008px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1032px !important;}.cke_button__smiley_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1056px !important;}.cke_button__justifyblock_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1080px !important;}.cke_button__justifycenter_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1104px !important;}.cke_button__justifyleft_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1128px !important;}.cke_button__justifyright_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1152px !important;}.cke_button__language_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1176px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1200px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1224px !important;}.cke_button__link_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1248px !important;}.cke_button__unlink_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1272px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1296px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1320px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1344px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1368px !important;}.cke_button__maximize_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1392px !important;}.cke_rtl .cke_button__newpage_icon, .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1416px !important;}.cke_ltr .cke_button__newpage_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1440px !important;}.cke_rtl .cke_button__pagebreak_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1464px !important;}.cke_ltr .cke_button__pagebreak_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1488px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1512px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1536px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1560px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1584px !important;}.cke_rtl .cke_button__preview_icon, .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1608px !important;}.cke_ltr .cke_button__preview_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1632px !important;}.cke_button__print_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1656px !important;}.cke_button__removeformat_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1680px !important;}.cke_button__save_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1704px !important;}.cke_button__selectall_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1728px !important;}.cke_rtl .cke_button__showblocks_icon, .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1752px !important;}.cke_ltr .cke_button__showblocks_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1776px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1800px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1824px !important;}.cke_button__specialchar_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1848px !important;}.cke_button__scayt_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1872px !important;}.cke_button__table_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1896px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1920px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1944px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1968px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1992px !important;}.cke_button__spellchecker_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -2016px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidiltr_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidirtl_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__templates_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_hidpi .cke_button__creatediv_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__find_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__replace_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_button__flash_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_button__button_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_button__checkbox_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_button__form_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__hiddenfield_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_hidpi .cke_button__imagebutton_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_button__radio_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__select_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textarea_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__iframe_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_button__smiley_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1056px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyblock_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1080px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifycenter_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1104px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyleft_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1128px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyright_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1152px !important;background-size: 16px !important;}.cke_hidpi .cke_button__language_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1176px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1200px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1224px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1248px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1272px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1296px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1320px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1344px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1368px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1392px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__newpage_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1416px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1440px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1464px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1488px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1512px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1536px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1560px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1584px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__preview_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1608px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1632px !important;background-size: 16px !important;}.cke_hidpi .cke_button__print_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1656px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1680px !important;background-size: 16px !important;}.cke_hidpi .cke_button__save_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1704px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1728px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__showblocks_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1752px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1776px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1800px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1824px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1848px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1872px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1896px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1920px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1944px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1968px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1992px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -2016px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono/editor_gecko.css b/static/ckeditor/ckeditor/skins/moono/editor_gecko.css new file mode 100644 index 0000000000..000488ac5d --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono/editor_gecko.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}a.cke_button_on{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);border-radius:2px;box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;border-radius:3px;text-align:center;opacity:.95;filter:alpha(opacity = 95);box-shadow:2px 2px 3px 0 rgba(50,50,50,0.3);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}.cke_bottom{padding-bottom:3px}.cke_combo_text{margin-bottom:-1px;margin-top:1px}.cke_button__about_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -144px !important;}.cke_button__bidiltr_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -168px !important;}.cke_button__bidirtl_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -192px !important;}.cke_button__blockquote_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -216px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -240px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -264px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -288px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -312px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -336px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -360px !important;}.cke_button__bgcolor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -384px !important;}.cke_button__textcolor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -408px !important;}.cke_rtl .cke_button__templates_icon, .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -432px !important;}.cke_ltr .cke_button__templates_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -456px !important;}.cke_button__creatediv_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -480px !important;}.cke_rtl .cke_button__find_icon, .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -504px !important;}.cke_ltr .cke_button__find_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -528px !important;}.cke_button__replace_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -552px !important;}.cke_button__flash_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -576px !important;}.cke_button__button_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -600px !important;}.cke_button__checkbox_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -624px !important;}.cke_button__form_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -648px !important;}.cke_button__hiddenfield_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -672px !important;}.cke_button__imagebutton_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -696px !important;}.cke_button__radio_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -720px !important;}.cke_rtl .cke_button__select_icon, .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -744px !important;}.cke_ltr .cke_button__select_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -768px !important;}.cke_rtl .cke_button__textarea_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -792px !important;}.cke_ltr .cke_button__textarea_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -816px !important;}.cke_rtl .cke_button__textfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -840px !important;}.cke_ltr .cke_button__textfield_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -864px !important;}.cke_button__horizontalrule_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -888px !important;}.cke_button__iframe_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -912px !important;}.cke_button__image_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -936px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -960px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -984px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1008px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1032px !important;}.cke_button__smiley_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1056px !important;}.cke_button__justifyblock_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1080px !important;}.cke_button__justifycenter_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1104px !important;}.cke_button__justifyleft_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1128px !important;}.cke_button__justifyright_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1152px !important;}.cke_button__language_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1176px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1200px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1224px !important;}.cke_button__link_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1248px !important;}.cke_button__unlink_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1272px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1296px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1320px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1344px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1368px !important;}.cke_button__maximize_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1392px !important;}.cke_rtl .cke_button__newpage_icon, .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1416px !important;}.cke_ltr .cke_button__newpage_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1440px !important;}.cke_rtl .cke_button__pagebreak_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1464px !important;}.cke_ltr .cke_button__pagebreak_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1488px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1512px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1536px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1560px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1584px !important;}.cke_rtl .cke_button__preview_icon, .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1608px !important;}.cke_ltr .cke_button__preview_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1632px !important;}.cke_button__print_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1656px !important;}.cke_button__removeformat_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1680px !important;}.cke_button__save_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1704px !important;}.cke_button__selectall_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1728px !important;}.cke_rtl .cke_button__showblocks_icon, .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1752px !important;}.cke_ltr .cke_button__showblocks_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1776px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1800px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1824px !important;}.cke_button__specialchar_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1848px !important;}.cke_button__scayt_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1872px !important;}.cke_button__table_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1896px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1920px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1944px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1968px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1992px !important;}.cke_button__spellchecker_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -2016px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidiltr_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidirtl_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__templates_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_hidpi .cke_button__creatediv_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__find_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__replace_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_button__flash_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_button__button_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_button__checkbox_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_button__form_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__hiddenfield_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_hidpi .cke_button__imagebutton_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_button__radio_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__select_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textarea_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__iframe_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_button__smiley_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1056px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyblock_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1080px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifycenter_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1104px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyleft_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1128px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyright_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1152px !important;background-size: 16px !important;}.cke_hidpi .cke_button__language_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1176px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1200px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1224px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1248px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1272px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1296px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1320px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1344px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1368px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1392px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__newpage_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1416px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1440px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1464px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1488px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1512px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1536px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1560px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1584px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__preview_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1608px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1632px !important;background-size: 16px !important;}.cke_hidpi .cke_button__print_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1656px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1680px !important;background-size: 16px !important;}.cke_hidpi .cke_button__save_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1704px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1728px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__showblocks_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1752px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1776px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1800px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1824px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1848px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1872px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1896px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1920px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1944px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1968px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1992px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -2016px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono/editor_ie.css b/static/ckeditor/ckeditor/skins/moono/editor_ie.css new file mode 100644 index 0000000000..977ce708d0 --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono/editor_ie.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}a.cke_button_on{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);border-radius:2px;box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;border-radius:3px;text-align:center;opacity:.95;filter:alpha(opacity = 95);box-shadow:2px 2px 3px 0 rgba(50,50,50,0.3);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_button__about_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -144px !important;}.cke_button__bidiltr_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -168px !important;}.cke_button__bidirtl_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -192px !important;}.cke_button__blockquote_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -216px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -240px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -264px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -288px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -312px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -336px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -360px !important;}.cke_button__bgcolor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -384px !important;}.cke_button__textcolor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -408px !important;}.cke_rtl .cke_button__templates_icon, .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -432px !important;}.cke_ltr .cke_button__templates_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -456px !important;}.cke_button__creatediv_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -480px !important;}.cke_rtl .cke_button__find_icon, .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -504px !important;}.cke_ltr .cke_button__find_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -528px !important;}.cke_button__replace_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -552px !important;}.cke_button__flash_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -576px !important;}.cke_button__button_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -600px !important;}.cke_button__checkbox_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -624px !important;}.cke_button__form_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -648px !important;}.cke_button__hiddenfield_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -672px !important;}.cke_button__imagebutton_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -696px !important;}.cke_button__radio_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -720px !important;}.cke_rtl .cke_button__select_icon, .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -744px !important;}.cke_ltr .cke_button__select_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -768px !important;}.cke_rtl .cke_button__textarea_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -792px !important;}.cke_ltr .cke_button__textarea_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -816px !important;}.cke_rtl .cke_button__textfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -840px !important;}.cke_ltr .cke_button__textfield_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -864px !important;}.cke_button__horizontalrule_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -888px !important;}.cke_button__iframe_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -912px !important;}.cke_button__image_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -936px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -960px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -984px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1008px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1032px !important;}.cke_button__smiley_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1056px !important;}.cke_button__justifyblock_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1080px !important;}.cke_button__justifycenter_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1104px !important;}.cke_button__justifyleft_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1128px !important;}.cke_button__justifyright_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1152px !important;}.cke_button__language_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1176px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1200px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1224px !important;}.cke_button__link_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1248px !important;}.cke_button__unlink_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1272px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1296px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1320px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1344px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1368px !important;}.cke_button__maximize_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1392px !important;}.cke_rtl .cke_button__newpage_icon, .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1416px !important;}.cke_ltr .cke_button__newpage_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1440px !important;}.cke_rtl .cke_button__pagebreak_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1464px !important;}.cke_ltr .cke_button__pagebreak_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1488px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1512px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1536px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1560px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1584px !important;}.cke_rtl .cke_button__preview_icon, .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1608px !important;}.cke_ltr .cke_button__preview_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1632px !important;}.cke_button__print_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1656px !important;}.cke_button__removeformat_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1680px !important;}.cke_button__save_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1704px !important;}.cke_button__selectall_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1728px !important;}.cke_rtl .cke_button__showblocks_icon, .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1752px !important;}.cke_ltr .cke_button__showblocks_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1776px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1800px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1824px !important;}.cke_button__specialchar_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1848px !important;}.cke_button__scayt_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1872px !important;}.cke_button__table_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1896px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1920px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1944px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1968px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1992px !important;}.cke_button__spellchecker_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -2016px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidiltr_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidirtl_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__templates_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_hidpi .cke_button__creatediv_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__find_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__replace_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_button__flash_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_button__button_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_button__checkbox_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_button__form_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__hiddenfield_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_hidpi .cke_button__imagebutton_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_button__radio_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__select_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textarea_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__iframe_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_button__smiley_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1056px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyblock_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1080px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifycenter_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1104px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyleft_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1128px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyright_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1152px !important;background-size: 16px !important;}.cke_hidpi .cke_button__language_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1176px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1200px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1224px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1248px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1272px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1296px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1320px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1344px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1368px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1392px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__newpage_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1416px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1440px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1464px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1488px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1512px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1536px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1560px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1584px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__preview_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1608px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1632px !important;background-size: 16px !important;}.cke_hidpi .cke_button__print_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1656px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1680px !important;background-size: 16px !important;}.cke_hidpi .cke_button__save_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1704px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1728px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__showblocks_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1752px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1776px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1800px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1824px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1848px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1872px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1896px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1920px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1944px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1968px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1992px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -2016px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono/editor_ie7.css b/static/ckeditor/ckeditor/skins/moono/editor_ie7.css new file mode 100644 index 0000000000..3617c250ef --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono/editor_ie7.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}a.cke_button_on{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);border-radius:2px;box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;border-radius:3px;text-align:center;opacity:.95;filter:alpha(opacity = 95);box-shadow:2px 2px 3px 0 rgba(50,50,50,0.3);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_button,.cke_rtl .cke_button *,.cke_rtl .cke_combo,.cke_rtl .cke_combo *,.cke_rtl .cke_path_item,.cke_rtl .cke_path_item *,.cke_rtl .cke_path_empty{float:none}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_combo_button,.cke_rtl .cke_combo_button *,.cke_rtl .cke_button,.cke_rtl .cke_button_icon{display:inline-block;vertical-align:top}.cke_toolbox{display:inline-block;padding-bottom:5px;height:100%}.cke_rtl .cke_toolbox{padding-bottom:0}.cke_toolbar{margin-bottom:5px}.cke_rtl .cke_toolbar{margin-bottom:0}.cke_toolgroup{height:26px}.cke_toolgroup,.cke_combo{position:relative}a.cke_button{float:none;vertical-align:top}.cke_toolbar_separator{display:inline-block;float:none;vertical-align:top;background-color:#c0c0c0}.cke_toolbox_collapser .cke_arrow{margin-top:0}.cke_toolbox_collapser .cke_arrow{border-width:4px}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{border-width:3px}.cke_rtl .cke_button_arrow{padding-top:8px;margin-right:2px}.cke_rtl .cke_combo_inlinelabel{display:table-cell;vertical-align:middle}.cke_menubutton{display:block;height:24px}.cke_menubutton_inner{display:block;position:relative}.cke_menubutton_icon{height:16px;width:16px}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:inline-block}.cke_menubutton_label{width:auto;vertical-align:top;line-height:24px;height:24px;margin:0 10px 0 0}.cke_menuarrow{width:5px;height:6px;padding:0;position:absolute;right:8px;top:10px;background-position:0 0}.cke_rtl .cke_menubutton_icon{position:absolute;right:0;top:0}.cke_rtl .cke_menubutton_label{float:right;clear:both;margin:0 24px 0 10px}.cke_hc .cke_rtl .cke_menubutton_label{margin-right:0}.cke_rtl .cke_menuarrow{left:8px;right:auto;background-position:0 -24px}.cke_hc .cke_menuarrow{top:5px;padding:0 5px}.cke_rtl input.cke_dialog_ui_input_text,.cke_rtl input.cke_dialog_ui_input_password{position:relative}.cke_wysiwyg_div{padding-top:0!important;padding-bottom:0!important}.cke_button__about_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -144px !important;}.cke_button__bidiltr_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -168px !important;}.cke_button__bidirtl_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -192px !important;}.cke_button__blockquote_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -216px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -240px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -264px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -288px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -312px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -336px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -360px !important;}.cke_button__bgcolor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -384px !important;}.cke_button__textcolor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -408px !important;}.cke_rtl .cke_button__templates_icon, .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -432px !important;}.cke_ltr .cke_button__templates_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -456px !important;}.cke_button__creatediv_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -480px !important;}.cke_rtl .cke_button__find_icon, .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -504px !important;}.cke_ltr .cke_button__find_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -528px !important;}.cke_button__replace_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -552px !important;}.cke_button__flash_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -576px !important;}.cke_button__button_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -600px !important;}.cke_button__checkbox_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -624px !important;}.cke_button__form_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -648px !important;}.cke_button__hiddenfield_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -672px !important;}.cke_button__imagebutton_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -696px !important;}.cke_button__radio_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -720px !important;}.cke_rtl .cke_button__select_icon, .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -744px !important;}.cke_ltr .cke_button__select_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -768px !important;}.cke_rtl .cke_button__textarea_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -792px !important;}.cke_ltr .cke_button__textarea_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -816px !important;}.cke_rtl .cke_button__textfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -840px !important;}.cke_ltr .cke_button__textfield_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -864px !important;}.cke_button__horizontalrule_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -888px !important;}.cke_button__iframe_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -912px !important;}.cke_button__image_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -936px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -960px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -984px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1008px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1032px !important;}.cke_button__smiley_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1056px !important;}.cke_button__justifyblock_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1080px !important;}.cke_button__justifycenter_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1104px !important;}.cke_button__justifyleft_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1128px !important;}.cke_button__justifyright_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1152px !important;}.cke_button__language_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1176px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1200px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1224px !important;}.cke_button__link_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1248px !important;}.cke_button__unlink_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1272px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1296px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1320px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1344px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1368px !important;}.cke_button__maximize_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1392px !important;}.cke_rtl .cke_button__newpage_icon, .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1416px !important;}.cke_ltr .cke_button__newpage_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1440px !important;}.cke_rtl .cke_button__pagebreak_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1464px !important;}.cke_ltr .cke_button__pagebreak_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1488px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1512px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1536px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1560px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1584px !important;}.cke_rtl .cke_button__preview_icon, .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1608px !important;}.cke_ltr .cke_button__preview_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1632px !important;}.cke_button__print_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1656px !important;}.cke_button__removeformat_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1680px !important;}.cke_button__save_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1704px !important;}.cke_button__selectall_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1728px !important;}.cke_rtl .cke_button__showblocks_icon, .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1752px !important;}.cke_ltr .cke_button__showblocks_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1776px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1800px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1824px !important;}.cke_button__specialchar_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1848px !important;}.cke_button__scayt_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1872px !important;}.cke_button__table_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1896px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1920px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1944px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1968px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1992px !important;}.cke_button__spellchecker_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -2016px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidiltr_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidirtl_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__templates_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_hidpi .cke_button__creatediv_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__find_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__replace_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_button__flash_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_button__button_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_button__checkbox_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_button__form_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__hiddenfield_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_hidpi .cke_button__imagebutton_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_button__radio_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__select_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textarea_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__iframe_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_button__smiley_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1056px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyblock_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1080px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifycenter_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1104px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyleft_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1128px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyright_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1152px !important;background-size: 16px !important;}.cke_hidpi .cke_button__language_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1176px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1200px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1224px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1248px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1272px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1296px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1320px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1344px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1368px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1392px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__newpage_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1416px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1440px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1464px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1488px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1512px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1536px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1560px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1584px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__preview_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1608px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1632px !important;background-size: 16px !important;}.cke_hidpi .cke_button__print_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1656px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1680px !important;background-size: 16px !important;}.cke_hidpi .cke_button__save_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1704px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1728px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__showblocks_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1752px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1776px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1800px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1824px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1848px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1872px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1896px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1920px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1944px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1968px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1992px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -2016px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono/editor_ie8.css b/static/ckeditor/ckeditor/skins/moono/editor_ie8.css new file mode 100644 index 0000000000..225dbf1628 --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono/editor_ie8.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}a.cke_button_on{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);border-radius:2px;box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;border-radius:3px;text-align:center;opacity:.95;filter:alpha(opacity = 95);box-shadow:2px 2px 3px 0 rgba(50,50,50,0.3);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_toolbox_collapser .cke_arrow{border-width:4px}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{border-width:3px}.cke_toolbox_collapser .cke_arrow{margin-top:0}.cke_button__about_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -144px !important;}.cke_button__bidiltr_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -168px !important;}.cke_button__bidirtl_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -192px !important;}.cke_button__blockquote_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -216px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -240px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -264px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -288px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -312px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -336px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -360px !important;}.cke_button__bgcolor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -384px !important;}.cke_button__textcolor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -408px !important;}.cke_rtl .cke_button__templates_icon, .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -432px !important;}.cke_ltr .cke_button__templates_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -456px !important;}.cke_button__creatediv_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -480px !important;}.cke_rtl .cke_button__find_icon, .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -504px !important;}.cke_ltr .cke_button__find_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -528px !important;}.cke_button__replace_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -552px !important;}.cke_button__flash_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -576px !important;}.cke_button__button_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -600px !important;}.cke_button__checkbox_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -624px !important;}.cke_button__form_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -648px !important;}.cke_button__hiddenfield_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -672px !important;}.cke_button__imagebutton_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -696px !important;}.cke_button__radio_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -720px !important;}.cke_rtl .cke_button__select_icon, .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -744px !important;}.cke_ltr .cke_button__select_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -768px !important;}.cke_rtl .cke_button__textarea_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -792px !important;}.cke_ltr .cke_button__textarea_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -816px !important;}.cke_rtl .cke_button__textfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -840px !important;}.cke_ltr .cke_button__textfield_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -864px !important;}.cke_button__horizontalrule_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -888px !important;}.cke_button__iframe_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -912px !important;}.cke_button__image_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -936px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -960px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -984px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1008px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1032px !important;}.cke_button__smiley_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1056px !important;}.cke_button__justifyblock_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1080px !important;}.cke_button__justifycenter_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1104px !important;}.cke_button__justifyleft_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1128px !important;}.cke_button__justifyright_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1152px !important;}.cke_button__language_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1176px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1200px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1224px !important;}.cke_button__link_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1248px !important;}.cke_button__unlink_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1272px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1296px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1320px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1344px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1368px !important;}.cke_button__maximize_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1392px !important;}.cke_rtl .cke_button__newpage_icon, .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1416px !important;}.cke_ltr .cke_button__newpage_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1440px !important;}.cke_rtl .cke_button__pagebreak_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1464px !important;}.cke_ltr .cke_button__pagebreak_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1488px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1512px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1536px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1560px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1584px !important;}.cke_rtl .cke_button__preview_icon, .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1608px !important;}.cke_ltr .cke_button__preview_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1632px !important;}.cke_button__print_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1656px !important;}.cke_button__removeformat_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1680px !important;}.cke_button__save_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1704px !important;}.cke_button__selectall_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1728px !important;}.cke_rtl .cke_button__showblocks_icon, .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1752px !important;}.cke_ltr .cke_button__showblocks_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1776px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1800px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1824px !important;}.cke_button__specialchar_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1848px !important;}.cke_button__scayt_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1872px !important;}.cke_button__table_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1896px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1920px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1944px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1968px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1992px !important;}.cke_button__spellchecker_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -2016px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidiltr_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidirtl_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__templates_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_hidpi .cke_button__creatediv_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__find_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__replace_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_button__flash_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_button__button_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_button__checkbox_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_button__form_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__hiddenfield_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_hidpi .cke_button__imagebutton_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_button__radio_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__select_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textarea_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__iframe_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_button__smiley_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1056px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyblock_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1080px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifycenter_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1104px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyleft_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1128px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyright_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1152px !important;background-size: 16px !important;}.cke_hidpi .cke_button__language_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1176px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1200px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1224px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1248px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1272px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1296px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1320px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1344px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1368px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1392px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__newpage_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1416px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1440px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1464px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1488px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1512px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1536px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1560px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1584px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__preview_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1608px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1632px !important;background-size: 16px !important;}.cke_hidpi .cke_button__print_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1656px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1680px !important;background-size: 16px !important;}.cke_hidpi .cke_button__save_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1704px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1728px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__showblocks_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1752px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1776px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1800px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1824px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1848px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1872px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1896px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1920px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1944px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1968px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1992px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -2016px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono/editor_iequirks.css b/static/ckeditor/ckeditor/skins/moono/editor_iequirks.css new file mode 100644 index 0000000000..cee201a54d --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono/editor_iequirks.css @@ -0,0 +1,5 @@ +/* +Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. +For licensing, see LICENSE.md or http://ckeditor.com/license +*/ +.cke_reset{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none}.cke_reset_all,.cke_reset_all *,.cke_reset_all a,.cke_reset_all textarea{margin:0;padding:0;border:0;background:transparent;text-decoration:none;width:auto;height:auto;vertical-align:baseline;box-sizing:content-box;position:static;transition:none;border-collapse:collapse;font:normal normal normal 12px Arial,Helvetica,Tahoma,Verdana,Sans-Serif;color:#000;text-align:left;white-space:nowrap;cursor:auto;float:none}.cke_reset_all .cke_rtl *{text-align:right}.cke_reset_all iframe{vertical-align:inherit}.cke_reset_all textarea{white-space:pre-wrap}.cke_reset_all textarea,.cke_reset_all input[type="text"],.cke_reset_all input[type="password"]{cursor:text}.cke_reset_all textarea[disabled],.cke_reset_all input[type="text"][disabled],.cke_reset_all input[type="password"][disabled]{cursor:default}.cke_reset_all fieldset{padding:10px;border:2px groove #e0dfe3}.cke_reset_all select{box-sizing:border-box}.cke_reset_all table{table-layout:auto}.cke_chrome{display:block;border:1px solid #b6b6b6;padding:0;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_inner{display:block;-webkit-touch-callout:none;background:#fff;padding:0}.cke_float{border:0}.cke_float .cke_inner{padding-bottom:0}.cke_top,.cke_contents,.cke_bottom{display:block;overflow:hidden}.cke_top{border-bottom:1px solid #b6b6b6;padding:6px 8px 2px;white-space:normal;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_float .cke_top{border:1px solid #b6b6b6;border-bottom-color:#999}.cke_bottom{padding:6px 8px 2px;position:relative;border-top:1px solid #bfbfbf;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#ebebeb,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ebebeb',endColorstr='#cfd1cf')}.cke_browser_ios .cke_contents{overflow-y:auto;-webkit-overflow-scrolling:touch}.cke_resizer{width:0;height:0;overflow:hidden;width:0;height:0;overflow:hidden;border-width:10px 10px 0 0;border-color:transparent #666 transparent transparent;border-style:dashed solid dashed dashed;font-size:0;vertical-align:bottom;margin-top:6px;margin-bottom:2px;box-shadow:0 1px 0 rgba(255,255,255,.3)}.cke_hc .cke_resizer{font-size:15px;width:auto;height:auto;border-width:0}.cke_resizer_ltr{cursor:se-resize;float:right;margin-right:-4px}.cke_resizer_rtl{border-width:10px 0 0 10px;border-color:transparent transparent transparent #a5a5a5;border-style:dashed dashed dashed solid;cursor:sw-resize;float:left;margin-left:-4px;right:auto}.cke_wysiwyg_div{display:block;height:100%;overflow:auto;padding:0 8px;outline-style:none;box-sizing:border-box}.cke_panel{visibility:visible;width:120px;height:100px;overflow:hidden;background-color:#fff;border:1px solid #b6b6b6;border-bottom-color:#999;border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.15)}.cke_menu_panel{padding:0;margin:0}.cke_combopanel{width:150px;height:170px}.cke_panel_frame{width:100%;height:100%;font-size:12px;overflow:auto;overflow-x:hidden}.cke_panel_container{overflow-y:auto;overflow-x:hidden}.cke_panel_list{list-style-type:none;margin:3px;padding:0;white-space:nowrap}.cke_panel_listItem{margin:0;padding-bottom:1px}.cke_panel_listItem a{padding:3px 4px;display:block;border:1px solid #fff;color:inherit!important;text-decoration:none;overflow:hidden;text-overflow:ellipsis;border-radius:2px}* html .cke_panel_listItem a{width:100%;color:#000}*:first-child+html .cke_panel_listItem a{color:#000}.cke_panel_listItem.cke_selected a{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_panel_listItem a:hover,.cke_panel_listItem a:focus,.cke_panel_listItem a:active{border-color:#dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_hc .cke_panel_listItem a{border-style:none}.cke_hc .cke_panel_listItem a:hover,.cke_hc .cke_panel_listItem a:focus,.cke_hc .cke_panel_listItem a:active{border:2px solid;padding:1px 2px}.cke_panel_grouptitle{cursor:default;font-size:11px;font-weight:bold;white-space:nowrap;margin:0;padding:4px 6px;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.75);border-bottom:1px solid #b6b6b6;border-radius:2px 2px 0 0;box-shadow:0 1px 0 #fff inset;background:#cfd1cf;background-image:linear-gradient(to bottom,#f5f5f5,#cfd1cf);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f5f5f5',endColorstr='#cfd1cf')}.cke_panel_listItem p,.cke_panel_listItem h1,.cke_panel_listItem h2,.cke_panel_listItem h3,.cke_panel_listItem h4,.cke_panel_listItem h5,.cke_panel_listItem h6,.cke_panel_listItem pre{margin-top:0;margin-bottom:0}.cke_colorblock{padding:3px;font-size:11px;font-family:'Microsoft Sans Serif',Tahoma,Arial,Verdana,Sans-Serif}.cke_colorblock,.cke_colorblock a{text-decoration:none;color:#000}span.cke_colorbox{width:10px;height:10px;border:#808080 1px solid;float:left}.cke_rtl span.cke_colorbox{float:right}a.cke_colorbox{border:#fff 1px solid;padding:2px;float:left;width:12px;height:12px}.cke_rtl a.cke_colorbox{float:right}a:hover.cke_colorbox,a:focus.cke_colorbox,a:active.cke_colorbox{border:#b6b6b6 1px solid;background-color:#e5e5e5}a.cke_colorauto,a.cke_colormore{border:#fff 1px solid;padding:2px;display:block;cursor:pointer}a:hover.cke_colorauto,a:hover.cke_colormore,a:focus.cke_colorauto,a:focus.cke_colormore,a:active.cke_colorauto,a:active.cke_colormore{border:#b6b6b6 1px solid;background-color:#e5e5e5}.cke_toolbar{float:left}.cke_rtl .cke_toolbar{float:right}.cke_toolgroup{float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_hc .cke_toolgroup{border:0;margin-right:10px;margin-bottom:10px}.cke_rtl .cke_toolgroup{float:right;margin-left:6px;margin-right:0}a.cke_button{display:inline-block;height:18px;padding:4px 6px;outline:0;cursor:default;float:left;border:0}.cke_ltr .cke_button:last-child,.cke_rtl .cke_button:first-child{border-radius:0 2px 2px 0}.cke_ltr .cke_button:first-child,.cke_rtl .cke_button:last-child{border-radius:2px 0 0 2px}.cke_rtl .cke_button{float:right}.cke_hc .cke_button{border:1px solid black;padding:3px 5px;margin:-2px 4px 0 -2px}a.cke_button_on{box-shadow:0 1px 5px rgba(0,0,0,.6) inset,0 1px 0 rgba(0,0,0,.2);background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc a.cke_button_disabled:hover,.cke_hc a.cke_button_disabled:focus,.cke_hc a.cke_button_disabled:active{border-width:3px;padding:1px 3px}.cke_button_disabled .cke_button_icon{opacity:.3}.cke_hc .cke_button_disabled{opacity:.5}a.cke_button_on:hover,a.cke_button_on:focus,a.cke_button_on:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}a.cke_button_off:hover,a.cke_button_off:focus,a.cke_button_off:active,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{box-shadow:0 0 1px rgba(0,0,0,.3) inset;background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_button_icon{cursor:inherit;background-repeat:no-repeat;margin-top:1px;width:16px;height:16px;float:left;display:inline-block}.cke_rtl .cke_button_icon{float:right}.cke_hc .cke_button_icon{display:none}.cke_button_label{display:none;padding-left:3px;margin-top:1px;line-height:17px;vertical-align:middle;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5)}.cke_rtl .cke_button_label{padding-right:3px;padding-left:0;float:right}.cke_hc .cke_button_label{padding:0;display:inline-block;font-size:12px}.cke_button_arrow{display:inline-block;margin:8px 0 0 1px;width:0;height:0;cursor:default;vertical-align:top;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_rtl .cke_button_arrow{margin-right:5px;margin-left:0}.cke_hc .cke_button_arrow{font-size:10px;margin:3px -2px 0 3px;width:auto;border:0}.cke_toolbar_separator{float:left;background-color:#c0c0c0;background-color:rgba(0,0,0,.2);margin:5px 2px 0;height:18px;width:1px;box-shadow:1px 0 1px rgba(255,255,255,.5)}.cke_rtl .cke_toolbar_separator{float:right;box-shadow:-1px 0 1px rgba(255,255,255,.1)}.cke_hc .cke_toolbar_separator{width:0;border-left:1px solid;margin:1px 5px 0 0}.cke_toolbar_break{display:block;clear:left}.cke_rtl .cke_toolbar_break{clear:right}a.cke_toolbox_collapser{width:12px;height:11px;float:right;margin:11px 0 0;font-size:0;cursor:default;text-align:center;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_toolbox_collapser:hover{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc')}.cke_toolbox_collapser.cke_toolbox_collapser_min{margin:0 2px 4px}.cke_rtl .cke_toolbox_collapser{float:left}.cke_toolbox_collapser .cke_arrow{display:inline-block;height:0;width:0;font-size:0;margin-top:1px;border-left:3px solid transparent;border-right:3px solid transparent;border-bottom:3px solid #474747;border-top:3px solid transparent}.cke_toolbox_collapser.cke_toolbox_collapser_min .cke_arrow{margin-top:4px;border-bottom-color:transparent;border-top-color:#474747}.cke_hc .cke_toolbox_collapser .cke_arrow{font-size:8px;width:auto;border:0;margin-top:0;margin-right:2px}.cke_menubutton{display:block}.cke_menuitem span{cursor:default}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#d3d3d3;display:block}.cke_hc .cke_menubutton{padding:2px}.cke_hc .cke_menubutton:hover,.cke_hc .cke_menubutton:focus,.cke_hc .cke_menubutton:active{border:2px solid;padding:0}.cke_menubutton_inner{display:table-row}.cke_menubutton_icon,.cke_menubutton_label,.cke_menuarrow{display:table-cell}.cke_menubutton_icon{background-color:#d7d8d7;opacity:.70;filter:alpha(opacity=70);padding:4px}.cke_hc .cke_menubutton_icon{height:16px;width:0;padding:4px 0}.cke_menubutton:hover .cke_menubutton_icon,.cke_menubutton:focus .cke_menubutton_icon,.cke_menubutton:active .cke_menubutton_icon{background-color:#d0d2d0}.cke_menubutton_disabled:hover .cke_menubutton_icon,.cke_menubutton_disabled:focus .cke_menubutton_icon,.cke_menubutton_disabled:active .cke_menubutton_icon{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_label{padding:0 5px;background-color:transparent;width:100%;vertical-align:middle}.cke_menubutton_disabled .cke_menubutton_label{opacity:.3;filter:alpha(opacity=30)}.cke_menubutton_on{border:1px solid #dedede;background-color:#f2f2f2;box-shadow:0 0 2px rgba(0,0,0,.1) inset}.cke_menubutton_on .cke_menubutton_icon{padding-right:3px}.cke_menubutton:hover,.cke_menubutton:focus,.cke_menubutton:active{background-color:#eff0ef}.cke_panel_frame .cke_menubutton_label{display:none}.cke_menuseparator{background-color:#d3d3d3;height:1px;filter:alpha(opacity=70);opacity:.70}.cke_menuarrow{background-image:url(images/arrow.png);background-position:0 10px;background-repeat:no-repeat;padding:0 5px}.cke_rtl .cke_menuarrow{background-position:5px -13px;background-repeat:no-repeat}.cke_menuarrow span{display:none}.cke_hc .cke_menuarrow span{vertical-align:middle;display:inline}.cke_combo{display:inline-block;float:left}.cke_rtl .cke_combo{float:right}.cke_hc .cke_combo{margin-top:-2px}.cke_combo_label{display:none;float:left;line-height:26px;vertical-align:top;margin-right:5px}.cke_rtl .cke_combo_label{float:right;margin-left:5px;margin-right:0}a.cke_combo_button{cursor:default;display:inline-block;float:left;margin:0 6px 5px 0;border:1px solid #a6a6a6;border-bottom-color:#979797;border-radius:3px;box-shadow:0 1px 0 rgba(255,255,255,.5),0 0 2px rgba(255,255,255,.15) inset,0 1px 0 rgba(255,255,255,.15) inset;background:#e4e4e4;background-image:linear-gradient(to bottom,#fff,#e4e4e4);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#ffffff',endColorstr='#e4e4e4')}.cke_combo_off a.cke_combo_button:hover,.cke_combo_off a.cke_combo_button:focus{background:#ccc;background-image:linear-gradient(to bottom,#f2f2f2,#ccc);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#f2f2f2',endColorstr='#cccccc');outline:0}.cke_combo_off a.cke_combo_button:active,.cke_combo_on a.cke_combo_button{border:1px solid #777;box-shadow:0 1px 0 rgba(255,255,255,.5),0 1px 5px rgba(0,0,0,.6) inset;background:#b5b5b5;background-image:linear-gradient(to bottom,#aaa,#cacaca);filter:progid:DXImageTransform.Microsoft.gradient(gradientType=0,startColorstr='#aaaaaa',endColorstr='#cacaca')}.cke_combo_on a.cke_combo_button:hover,.cke_combo_on a.cke_combo_button:focus,.cke_combo_on a.cke_combo_button:active{box-shadow:0 1px 6px rgba(0,0,0,.7) inset,0 1px 0 rgba(0,0,0,.2)}.cke_rtl .cke_combo_button{float:right;margin-left:5px;margin-right:0}.cke_hc a.cke_combo_button{padding:3px}.cke_hc .cke_combo_on a.cke_combo_button,.cke_hc .cke_combo_off a.cke_combo_button:hover,.cke_hc .cke_combo_off a.cke_combo_button:focus,.cke_hc .cke_combo_off a.cke_combo_button:active{border-width:3px;padding:1px}.cke_combo_text{line-height:26px;padding-left:10px;text-overflow:ellipsis;overflow:hidden;float:left;cursor:default;color:#474747;text-shadow:0 1px 0 rgba(255,255,255,.5);width:60px}.cke_rtl .cke_combo_text{float:right;text-align:right;padding-left:0;padding-right:10px}.cke_hc .cke_combo_text{line-height:18px;font-size:12px}.cke_combo_open{cursor:default;display:inline-block;font-size:0;height:19px;line-height:17px;margin:1px 7px 1px;width:5px}.cke_hc .cke_combo_open{height:12px}.cke_combo_arrow{cursor:default;margin:11px 0 0;float:left;height:0;width:0;font-size:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:3px solid #474747}.cke_hc .cke_combo_arrow{font-size:10px;width:auto;border:0;margin-top:3px}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{opacity:.3}.cke_path{float:left;margin:-2px 0 2px}a.cke_path_item,span.cke_path_empty{display:inline-block;float:left;padding:3px 4px;margin-right:2px;cursor:default;text-decoration:none;outline:0;border:0;color:#4c4c4c;text-shadow:0 1px 0 #fff;font-weight:bold;font-size:11px}.cke_rtl .cke_path,.cke_rtl .cke_path_item,.cke_rtl .cke_path_empty{float:right}a.cke_path_item:hover,a.cke_path_item:focus,a.cke_path_item:active{background-color:#bfbfbf;color:#333;text-shadow:0 1px 0 rgba(255,255,255,.5);border-radius:2px;box-shadow:0 0 4px rgba(0,0,0,.5) inset,0 1px 0 rgba(255,255,255,.5)}.cke_hc a.cke_path_item:hover,.cke_hc a.cke_path_item:focus,.cke_hc a.cke_path_item:active{border:2px solid;padding:1px 2px}.cke_button__source_label,.cke_button__sourcedialog_label{display:inline}.cke_combo__fontsize .cke_combo_text{width:30px}.cke_combopanel__fontsize{width:120px}textarea.cke_source{font-family:'Courier New',Monospace;font-size:small;background-color:#fff;white-space:pre-wrap;border:0;padding:0;margin:0;display:block}.cke_wysiwyg_frame,.cke_wysiwyg_div{background-color:#fff}.cke_notifications_area{pointer-events:none}.cke_notification{pointer-events:auto;position:relative;margin:10px;width:300px;color:white;border-radius:3px;text-align:center;opacity:.95;filter:alpha(opacity = 95);box-shadow:2px 2px 3px 0 rgba(50,50,50,0.3);-webkit-animation:fadeIn .7s;animation:fadeIn .7s}.cke_notification_message a{color:#12306f}@-webkit-keyframes fadeIn{from{opacity:.4}to{opacity:.95}}@keyframes fadeIn{from{opacity:.4}to{opacity:.95}}.cke_notification_success{background:#72b572;border:1px solid #63a563}.cke_notification_warning{background:#c83939;border:1px solid #902b2b}.cke_notification_info{background:#2e9ad0;border:1px solid #0f74a8}.cke_notification_info span.cke_notification_progress{background-color:#0f74a8;display:block;padding:0;margin:0;height:100%;overflow:hidden;position:absolute;z-index:1}.cke_notification_message{position:relative;margin:4px 23px 3px;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:18px;z-index:4;text-overflow:ellipsis;overflow:hidden}.cke_notification_close{background-image:url(images/close.png);background-repeat:no-repeat;background-position:50%;position:absolute;cursor:pointer;text-align:center;height:20px;width:20px;top:1px;right:1px;padding:0;margin:0;z-index:5;opacity:.6;filter:alpha(opacity = 60)}.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_notification_close span{display:none}.cke_notification_warning a.cke_notification_close{opacity:.8;filter:alpha(opacity = 80)}.cke_notification_warning a.cke_notification_close:hover{opacity:1;filter:alpha(opacity = 100)}.cke_chrome{visibility:inherit}.cke_voice_label{display:none}legend.cke_voice_label{display:none}a.cke_button_disabled,a.cke_button_disabled:hover,a.cke_button_disabled:focus,a.cke_button_disabled:active{filter:alpha(opacity = 30)}.cke_button_disabled .cke_button_icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#00ffffff,endColorstr=#00ffffff)}.cke_button_off:hover,.cke_button_off:focus,.cke_button_off:active{filter:alpha(opacity = 100)}.cke_combo_disabled .cke_combo_inlinelabel,.cke_combo_disabled .cke_combo_open{filter:alpha(opacity = 30)}.cke_toolbox_collapser{border:1px solid #a6a6a6}.cke_toolbox_collapser .cke_arrow{margin-top:1px}.cke_hc .cke_top,.cke_hc .cke_bottom,.cke_hc .cke_combo_button,.cke_hc a.cke_combo_button:hover,.cke_hc a.cke_combo_button:focus,.cke_hc .cke_toolgroup,.cke_hc .cke_button_on,.cke_hc a.cke_button_off:hover,.cke_hc a.cke_button_off:focus,.cke_hc a.cke_button_off:active,.cke_hc .cke_toolbox_collapser,.cke_hc .cke_toolbox_collapser:hover,.cke_hc .cke_panel_grouptitle{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.cke_top,.cke_contents,.cke_bottom{width:100%}.cke_button_arrow{font-size:0}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_button,.cke_rtl .cke_button *,.cke_rtl .cke_combo,.cke_rtl .cke_combo *,.cke_rtl .cke_path_item,.cke_rtl .cke_path_item *,.cke_rtl .cke_path_empty{float:none}.cke_rtl .cke_toolgroup,.cke_rtl .cke_toolbar_separator,.cke_rtl .cke_combo_button,.cke_rtl .cke_combo_button *,.cke_rtl .cke_button,.cke_rtl .cke_button_icon{display:inline-block;vertical-align:top}.cke_rtl .cke_button_icon{float:none}.cke_resizer{width:10px}.cke_source{white-space:normal}.cke_bottom{position:static}.cke_colorbox{font-size:0}.cke_button__about_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -0px !important;}.cke_button__bold_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -24px !important;}.cke_button__italic_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -48px !important;}.cke_button__strike_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -72px !important;}.cke_button__subscript_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -96px !important;}.cke_button__superscript_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -120px !important;}.cke_button__underline_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -144px !important;}.cke_button__bidiltr_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -168px !important;}.cke_button__bidirtl_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -192px !important;}.cke_button__blockquote_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -216px !important;}.cke_rtl .cke_button__copy_icon, .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -240px !important;}.cke_ltr .cke_button__copy_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -264px !important;}.cke_rtl .cke_button__cut_icon, .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -288px !important;}.cke_ltr .cke_button__cut_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -312px !important;}.cke_rtl .cke_button__paste_icon, .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -336px !important;}.cke_ltr .cke_button__paste_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -360px !important;}.cke_button__bgcolor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -384px !important;}.cke_button__textcolor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -408px !important;}.cke_rtl .cke_button__templates_icon, .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -432px !important;}.cke_ltr .cke_button__templates_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -456px !important;}.cke_button__creatediv_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -480px !important;}.cke_rtl .cke_button__find_icon, .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -504px !important;}.cke_ltr .cke_button__find_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -528px !important;}.cke_button__replace_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -552px !important;}.cke_button__flash_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -576px !important;}.cke_button__button_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -600px !important;}.cke_button__checkbox_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -624px !important;}.cke_button__form_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -648px !important;}.cke_button__hiddenfield_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -672px !important;}.cke_button__imagebutton_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -696px !important;}.cke_button__radio_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -720px !important;}.cke_rtl .cke_button__select_icon, .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -744px !important;}.cke_ltr .cke_button__select_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -768px !important;}.cke_rtl .cke_button__textarea_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -792px !important;}.cke_ltr .cke_button__textarea_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -816px !important;}.cke_rtl .cke_button__textfield_icon, .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -840px !important;}.cke_ltr .cke_button__textfield_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -864px !important;}.cke_button__horizontalrule_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -888px !important;}.cke_button__iframe_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -912px !important;}.cke_button__image_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -936px !important;}.cke_rtl .cke_button__indent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -960px !important;}.cke_ltr .cke_button__indent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -984px !important;}.cke_rtl .cke_button__outdent_icon, .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1008px !important;}.cke_ltr .cke_button__outdent_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1032px !important;}.cke_button__smiley_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1056px !important;}.cke_button__justifyblock_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1080px !important;}.cke_button__justifycenter_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1104px !important;}.cke_button__justifyleft_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1128px !important;}.cke_button__justifyright_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1152px !important;}.cke_button__language_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1176px !important;}.cke_rtl .cke_button__anchor_icon, .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1200px !important;}.cke_ltr .cke_button__anchor_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1224px !important;}.cke_button__link_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1248px !important;}.cke_button__unlink_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1272px !important;}.cke_rtl .cke_button__bulletedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1296px !important;}.cke_ltr .cke_button__bulletedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1320px !important;}.cke_rtl .cke_button__numberedlist_icon, .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1344px !important;}.cke_ltr .cke_button__numberedlist_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1368px !important;}.cke_button__maximize_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1392px !important;}.cke_rtl .cke_button__newpage_icon, .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1416px !important;}.cke_ltr .cke_button__newpage_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1440px !important;}.cke_rtl .cke_button__pagebreak_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1464px !important;}.cke_ltr .cke_button__pagebreak_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1488px !important;}.cke_rtl .cke_button__pastetext_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1512px !important;}.cke_ltr .cke_button__pastetext_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1536px !important;}.cke_rtl .cke_button__pastefromword_icon, .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1560px !important;}.cke_ltr .cke_button__pastefromword_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1584px !important;}.cke_rtl .cke_button__preview_icon, .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1608px !important;}.cke_ltr .cke_button__preview_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1632px !important;}.cke_button__print_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1656px !important;}.cke_button__removeformat_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1680px !important;}.cke_button__save_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1704px !important;}.cke_button__selectall_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1728px !important;}.cke_rtl .cke_button__showblocks_icon, .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1752px !important;}.cke_ltr .cke_button__showblocks_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1776px !important;}.cke_rtl .cke_button__source_icon, .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1800px !important;}.cke_ltr .cke_button__source_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1824px !important;}.cke_button__specialchar_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1848px !important;}.cke_button__scayt_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1872px !important;}.cke_button__table_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1896px !important;}.cke_rtl .cke_button__redo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1920px !important;}.cke_ltr .cke_button__redo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1944px !important;}.cke_rtl .cke_button__undo_icon, .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1968px !important;}.cke_ltr .cke_button__undo_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -1992px !important;}.cke_button__spellchecker_icon {background: url(icons.png?t=b47abaf) no-repeat 0 -2016px !important;}.cke_hidpi .cke_button__about_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -0px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bold_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -24px !important;background-size: 16px !important;}.cke_hidpi .cke_button__italic_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -48px !important;background-size: 16px !important;}.cke_hidpi .cke_button__strike_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -72px !important;background-size: 16px !important;}.cke_hidpi .cke_button__subscript_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -96px !important;background-size: 16px !important;}.cke_hidpi .cke_button__superscript_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -120px !important;background-size: 16px !important;}.cke_hidpi .cke_button__underline_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -144px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidiltr_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -168px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bidirtl_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -192px !important;background-size: 16px !important;}.cke_hidpi .cke_button__blockquote_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -216px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__copy_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__copy_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -240px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__copy_icon,.cke_ltr.cke_hidpi .cke_button__copy_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -264px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__cut_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__cut_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -288px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__cut_icon,.cke_ltr.cke_hidpi .cke_button__cut_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -312px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__paste_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__paste_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -336px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__paste_icon,.cke_ltr.cke_hidpi .cke_button__paste_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -360px !important;background-size: 16px !important;}.cke_hidpi .cke_button__bgcolor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -384px !important;background-size: 16px !important;}.cke_hidpi .cke_button__textcolor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -408px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__templates_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__templates_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -432px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__templates_icon,.cke_ltr.cke_hidpi .cke_button__templates_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -456px !important;background-size: 16px !important;}.cke_hidpi .cke_button__creatediv_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -480px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__find_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__find_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -504px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__find_icon,.cke_ltr.cke_hidpi .cke_button__find_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -528px !important;background-size: 16px !important;}.cke_hidpi .cke_button__replace_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -552px !important;background-size: 16px !important;}.cke_hidpi .cke_button__flash_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -576px !important;background-size: 16px !important;}.cke_hidpi .cke_button__button_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -600px !important;background-size: 16px !important;}.cke_hidpi .cke_button__checkbox_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -624px !important;background-size: 16px !important;}.cke_hidpi .cke_button__form_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -648px !important;background-size: 16px !important;}.cke_hidpi .cke_button__hiddenfield_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -672px !important;background-size: 16px !important;}.cke_hidpi .cke_button__imagebutton_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -696px !important;background-size: 16px !important;}.cke_hidpi .cke_button__radio_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -720px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__select_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__select_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -744px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__select_icon,.cke_ltr.cke_hidpi .cke_button__select_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -768px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textarea_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textarea_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -792px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textarea_icon,.cke_ltr.cke_hidpi .cke_button__textarea_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -816px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__textfield_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__textfield_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -840px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__textfield_icon,.cke_ltr.cke_hidpi .cke_button__textfield_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -864px !important;background-size: 16px !important;}.cke_hidpi .cke_button__horizontalrule_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -888px !important;background-size: 16px !important;}.cke_hidpi .cke_button__iframe_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -912px !important;background-size: 16px !important;}.cke_hidpi .cke_button__image_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -936px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__indent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__indent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -960px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__indent_icon,.cke_ltr.cke_hidpi .cke_button__indent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -984px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__outdent_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__outdent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1008px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__outdent_icon,.cke_ltr.cke_hidpi .cke_button__outdent_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1032px !important;background-size: 16px !important;}.cke_hidpi .cke_button__smiley_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1056px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyblock_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1080px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifycenter_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1104px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyleft_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1128px !important;background-size: 16px !important;}.cke_hidpi .cke_button__justifyright_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1152px !important;background-size: 16px !important;}.cke_hidpi .cke_button__language_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1176px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__anchor_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__anchor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1200px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__anchor_icon,.cke_ltr.cke_hidpi .cke_button__anchor_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1224px !important;background-size: 16px !important;}.cke_hidpi .cke_button__link_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1248px !important;background-size: 16px !important;}.cke_hidpi .cke_button__unlink_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1272px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__bulletedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1296px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__bulletedlist_icon,.cke_ltr.cke_hidpi .cke_button__bulletedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1320px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__numberedlist_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1344px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__numberedlist_icon,.cke_ltr.cke_hidpi .cke_button__numberedlist_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1368px !important;background-size: 16px !important;}.cke_hidpi .cke_button__maximize_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1392px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__newpage_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__newpage_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1416px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__newpage_icon,.cke_ltr.cke_hidpi .cke_button__newpage_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1440px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pagebreak_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1464px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pagebreak_icon,.cke_ltr.cke_hidpi .cke_button__pagebreak_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1488px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastetext_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1512px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastetext_icon,.cke_ltr.cke_hidpi .cke_button__pastetext_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1536px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__pastefromword_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1560px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__pastefromword_icon,.cke_ltr.cke_hidpi .cke_button__pastefromword_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1584px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__preview_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__preview_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1608px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__preview_icon,.cke_ltr.cke_hidpi .cke_button__preview_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1632px !important;background-size: 16px !important;}.cke_hidpi .cke_button__print_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1656px !important;background-size: 16px !important;}.cke_hidpi .cke_button__removeformat_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1680px !important;background-size: 16px !important;}.cke_hidpi .cke_button__save_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1704px !important;background-size: 16px !important;}.cke_hidpi .cke_button__selectall_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1728px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__showblocks_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1752px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__showblocks_icon,.cke_ltr.cke_hidpi .cke_button__showblocks_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1776px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__source_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__source_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1800px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__source_icon,.cke_ltr.cke_hidpi .cke_button__source_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1824px !important;background-size: 16px !important;}.cke_hidpi .cke_button__specialchar_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1848px !important;background-size: 16px !important;}.cke_hidpi .cke_button__scayt_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1872px !important;background-size: 16px !important;}.cke_hidpi .cke_button__table_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1896px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__redo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__redo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1920px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__redo_icon,.cke_ltr.cke_hidpi .cke_button__redo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1944px !important;background-size: 16px !important;}.cke_rtl.cke_hidpi .cke_button__undo_icon, .cke_hidpi .cke_mixed_dir_content .cke_rtl .cke_button__undo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1968px !important;background-size: 16px !important;}.cke_hidpi .cke_ltr .cke_button__undo_icon,.cke_ltr.cke_hidpi .cke_button__undo_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -1992px !important;background-size: 16px !important;}.cke_hidpi .cke_button__spellchecker_icon {background: url(icons_hidpi.png?t=b47abaf) no-repeat 0 -2016px !important;background-size: 16px !important;} \ No newline at end of file diff --git a/static/ckeditor/ckeditor/skins/moono/icons.png b/static/ckeditor/ckeditor/skins/moono/icons.png new file mode 100644 index 0000000000..eaefc17a10 Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono/icons.png differ diff --git a/static/ckeditor/ckeditor/skins/moono/icons_hidpi.png b/static/ckeditor/ckeditor/skins/moono/icons_hidpi.png new file mode 100644 index 0000000000..6e103c05f1 Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono/icons_hidpi.png differ diff --git a/static/ckeditor/ckeditor/skins/moono/images/arrow.png b/static/ckeditor/ckeditor/skins/moono/images/arrow.png new file mode 100644 index 0000000000..d72b5f3b88 Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono/images/arrow.png differ diff --git a/static/ckeditor/ckeditor/skins/moono/images/close.png b/static/ckeditor/ckeditor/skins/moono/images/close.png new file mode 100644 index 0000000000..6a04ab5275 Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono/images/close.png differ diff --git a/static/ckeditor/ckeditor/skins/moono/images/hidpi/close.png b/static/ckeditor/ckeditor/skins/moono/images/hidpi/close.png new file mode 100644 index 0000000000..e406c2c35b Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono/images/hidpi/close.png differ diff --git a/static/ckeditor/ckeditor/skins/moono/images/hidpi/lock-open.png b/static/ckeditor/ckeditor/skins/moono/images/hidpi/lock-open.png new file mode 100644 index 0000000000..edbd12f3bd Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono/images/hidpi/lock-open.png differ diff --git a/static/ckeditor/ckeditor/skins/moono/images/hidpi/lock.png b/static/ckeditor/ckeditor/skins/moono/images/hidpi/lock.png new file mode 100644 index 0000000000..1b87bbb7a1 Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono/images/hidpi/lock.png differ diff --git a/static/ckeditor/ckeditor/skins/moono/images/hidpi/refresh.png b/static/ckeditor/ckeditor/skins/moono/images/hidpi/refresh.png new file mode 100644 index 0000000000..c6c2b86e6d Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono/images/hidpi/refresh.png differ diff --git a/static/ckeditor/ckeditor/skins/moono/images/lock-open.png b/static/ckeditor/ckeditor/skins/moono/images/lock-open.png new file mode 100644 index 0000000000..04769877aa Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono/images/lock-open.png differ diff --git a/static/ckeditor/ckeditor/skins/moono/images/lock.png b/static/ckeditor/ckeditor/skins/moono/images/lock.png new file mode 100644 index 0000000000..c5a14400d5 Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono/images/lock.png differ diff --git a/static/ckeditor/ckeditor/skins/moono/images/refresh.png b/static/ckeditor/ckeditor/skins/moono/images/refresh.png new file mode 100644 index 0000000000..1ff63c3090 Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono/images/refresh.png differ diff --git a/static/ckeditor/ckeditor/skins/moono/images/spinner.gif b/static/ckeditor/ckeditor/skins/moono/images/spinner.gif new file mode 100644 index 0000000000..d898d41fa7 Binary files /dev/null and b/static/ckeditor/ckeditor/skins/moono/images/spinner.gif differ diff --git a/static/ckeditor/ckeditor/skins/moono/readme.md b/static/ckeditor/ckeditor/skins/moono/readme.md new file mode 100644 index 0000000000..fc9a544955 --- /dev/null +++ b/static/ckeditor/ckeditor/skins/moono/readme.md @@ -0,0 +1,49 @@ +"Moono" Skin +==================== + +This skin has been chosen for the **default skin** of CKEditor 4.x, elected from the CKEditor +[skin contest](http://ckeditor.com/blog/new_ckeditor_4_skin) and further shaped by +the CKEditor team. "Moono" is maintained by the core developers. + +For more information about skins, please check the [CKEditor Skin SDK](http://docs.cksource.com/CKEditor_4.x/Skin_SDK) +documentation. + +Features +------------------- +"Moono" is a monochromatic skin, which offers a modern look coupled with gradients and transparency. +It comes with the following features: + +- Chameleon feature with brightness, +- high-contrast compatibility, +- graphics source provided in SVG. + +Directory Structure +------------------- + +CSS parts: +- **editor.css**: the main CSS file. It's simply loading several other files, for easier maintenance, +- **mainui.css**: the file contains styles of entire editor outline structures, +- **toolbar.css**: the file contains styles of the editor toolbar space (top), +- **richcombo.css**: the file contains styles of the rich combo ui elements on toolbar, +- **panel.css**: the file contains styles of the rich combo drop-down, it's not loaded +until the first panel open up, +- **elementspath.css**: the file contains styles of the editor elements path bar (bottom), +- **menu.css**: the file contains styles of all editor menus including context menu and button drop-down, +it's not loaded until the first menu open up, +- **dialog.css**: the CSS files for the dialog UI, it's not loaded until the first dialog open, +- **reset.css**: the file defines the basis of style resets among all editor UI spaces, +- **preset.css**: the file defines the default styles of some UI elements reflecting the skin preference, +- **editor_XYZ.css** and **dialog_XYZ.css**: browser specific CSS hacks. + +Other parts: +- **skin.js**: the only JavaScript part of the skin that registers the skin, its browser specific files and its icons and defines the Chameleon feature, +- **icons/**: contains all skin defined icons, +- **images/**: contains a fill general used images, +- **dev/**: contains SVG source of the skin icons. + +License +------- + +Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. + +For licensing, see LICENSE.md or [http://ckeditor.com/license](http://ckeditor.com/license) diff --git a/static/ckeditor/ckeditor/styles.js b/static/ckeditor/ckeditor/styles.js new file mode 100644 index 0000000000..f43bfaf19c --- /dev/null +++ b/static/ckeditor/ckeditor/styles.js @@ -0,0 +1,137 @@ +/** + * Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. + * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license + */ + +// This file contains style definitions that can be used by CKEditor plugins. +// +// The most common use for it is the "stylescombo" plugin which shows the Styles drop-down +// list containing all styles in the editor toolbar. Other plugins, like +// the "div" plugin, use a subset of the styles for their features. +// +// If you do not have plugins that depend on this file in your editor build, you can simply +// ignore it. Otherwise it is strongly recommended to customize this file to match your +// website requirements and design properly. +// +// For more information refer to: https://ckeditor.com/docs/ckeditor4/latest/guide/dev_styles.html#style-rules + +CKEDITOR.stylesSet.add( 'default', [ + /* Block styles */ + + // These styles are already available in the "Format" drop-down list ("format" plugin), + // so they are not needed here by default. You may enable them to avoid + // placing the "Format" combo in the toolbar, maintaining the same features. + /* + { name: 'Paragraph', element: 'p' }, + { name: 'Heading 1', element: 'h1' }, + { name: 'Heading 2', element: 'h2' }, + { name: 'Heading 3', element: 'h3' }, + { name: 'Heading 4', element: 'h4' }, + { name: 'Heading 5', element: 'h5' }, + { name: 'Heading 6', element: 'h6' }, + { name: 'Preformatted Text',element: 'pre' }, + { name: 'Address', element: 'address' }, + */ + + { name: 'Italic Title', element: 'h2', styles: { 'font-style': 'italic' } }, + { name: 'Subtitle', element: 'h3', styles: { 'color': '#aaa', 'font-style': 'italic' } }, + { + name: 'Special Container', + element: 'div', + styles: { + padding: '5px 10px', + background: '#eee', + border: '1px solid #ccc' + } + }, + + /* Inline styles */ + + // These are core styles available as toolbar buttons. You may opt enabling + // some of them in the Styles drop-down list, removing them from the toolbar. + // (This requires the "stylescombo" plugin.) + /* + { name: 'Strong', element: 'strong', overrides: 'b' }, + { name: 'Emphasis', element: 'em' , overrides: 'i' }, + { name: 'Underline', element: 'u' }, + { name: 'Strikethrough', element: 'strike' }, + { name: 'Subscript', element: 'sub' }, + { name: 'Superscript', element: 'sup' }, + */ + + { name: 'Marker', element: 'span', attributes: { 'class': 'marker' } }, + + { name: 'Big', element: 'big' }, + { name: 'Small', element: 'small' }, + { name: 'Typewriter', element: 'tt' }, + + { name: 'Computer Code', element: 'code' }, + { name: 'Keyboard Phrase', element: 'kbd' }, + { name: 'Sample Text', element: 'samp' }, + { name: 'Variable', element: 'var' }, + + { name: 'Deleted Text', element: 'del' }, + { name: 'Inserted Text', element: 'ins' }, + + { name: 'Cited Work', element: 'cite' }, + { name: 'Inline Quotation', element: 'q' }, + + { name: 'Language: RTL', element: 'span', attributes: { 'dir': 'rtl' } }, + { name: 'Language: LTR', element: 'span', attributes: { 'dir': 'ltr' } }, + + /* Object styles */ + + { + name: 'Styled Image (left)', + element: 'img', + attributes: { 'class': 'left' } + }, + + { + name: 'Styled Image (right)', + element: 'img', + attributes: { 'class': 'right' } + }, + + { + name: 'Compact Table', + element: 'table', + attributes: { + cellpadding: '5', + cellspacing: '0', + border: '1', + bordercolor: '#ccc' + }, + styles: { + 'border-collapse': 'collapse' + } + }, + + { name: 'Borderless Table', element: 'table', styles: { 'border-style': 'hidden', 'background-color': '#E6E6FA' } }, + { name: 'Square Bulleted List', element: 'ul', styles: { 'list-style-type': 'square' } }, + + /* Widget styles */ + + { name: 'Clean Image', type: 'widget', widget: 'image', attributes: { 'class': 'image-clean' } }, + { name: 'Grayscale Image', type: 'widget', widget: 'image', attributes: { 'class': 'image-grayscale' } }, + + { name: 'Featured Snippet', type: 'widget', widget: 'codeSnippet', attributes: { 'class': 'code-featured' } }, + + { name: 'Featured Formula', type: 'widget', widget: 'mathjax', attributes: { 'class': 'math-featured' } }, + + { name: '240p', type: 'widget', widget: 'embedSemantic', attributes: { 'class': 'embed-240p' }, group: 'size' }, + { name: '360p', type: 'widget', widget: 'embedSemantic', attributes: { 'class': 'embed-360p' }, group: 'size' }, + { name: '480p', type: 'widget', widget: 'embedSemantic', attributes: { 'class': 'embed-480p' }, group: 'size' }, + { name: '720p', type: 'widget', widget: 'embedSemantic', attributes: { 'class': 'embed-720p' }, group: 'size' }, + { name: '1080p', type: 'widget', widget: 'embedSemantic', attributes: { 'class': 'embed-1080p' }, group: 'size' }, + + // Adding space after the style name is an intended workaround. For now, there + // is no option to create two styles with the same name for different widget types. See https://dev.ckeditor.com/ticket/16664. + { name: '240p ', type: 'widget', widget: 'embed', attributes: { 'class': 'embed-240p' }, group: 'size' }, + { name: '360p ', type: 'widget', widget: 'embed', attributes: { 'class': 'embed-360p' }, group: 'size' }, + { name: '480p ', type: 'widget', widget: 'embed', attributes: { 'class': 'embed-480p' }, group: 'size' }, + { name: '720p ', type: 'widget', widget: 'embed', attributes: { 'class': 'embed-720p' }, group: 'size' }, + { name: '1080p ', type: 'widget', widget: 'embed', attributes: { 'class': 'embed-1080p' }, group: 'size' } + +] ); + diff --git a/static/ckeditor/ckeditor/vendor/promise.js b/static/ckeditor/ckeditor/vendor/promise.js new file mode 100644 index 0000000000..c4d99120dc --- /dev/null +++ b/static/ckeditor/ckeditor/vendor/promise.js @@ -0,0 +1,13 @@ +(function(v,w){"object"===typeof exports&&"undefined"!==typeof module?module.exports=w():"function"===typeof define&&define.amd?define(w):v.ES6Promise=w()})(this,function(){function v(a){return"function"===typeof a}function w(){return function(){return process.nextTick(n)}}function R(){return"undefined"!==typeof B?function(){B(n)}:C()}function S(){var a=0,b=new J(n),c=document.createTextNode("");b.observe(c,{characterData:!0});return function(){c.data=a=++a%2}}function T(){var a=new MessageChannel; +a.port1.onmessage=n;return function(){return a.port2.postMessage(0)}}function C(){var a=setTimeout;return function(){return a(n,1)}}function n(){for(var a=0;a)[^>]*$|^#([\w-]+)$/, + // Is it a simple selector + isSimple = /^.[^:#\[\.,]*$/; + +jQuery.fn = jQuery.prototype = { + init: function( selector, context ) { + // Make sure that a selection was provided + selector = selector || document; + + // Handle $(DOMElement) + if ( selector.nodeType ) { + this[0] = selector; + this.length = 1; + this.context = selector; + return this; + } + // Handle HTML strings + if ( typeof selector === "string" ) { + // Are we dealing with HTML string or an ID? + var match = quickExpr.exec( selector ); + + // Verify a match, and that no context was specified for #id + if ( match && (match[1] || !context) ) { + + // HANDLE: $(html) -> $(array) + if ( match[1] ) + selector = jQuery.clean( [ match[1] ], context ); + + // HANDLE: $("#id") + else { + var elem = document.getElementById( match[3] ); + + // Handle the case where IE and Opera return items + // by name instead of ID + if ( elem && elem.id != match[3] ) + return jQuery().find( selector ); + + // Otherwise, we inject the element directly into the jQuery object + var ret = jQuery( elem || [] ); + ret.context = document; + ret.selector = selector; + return ret; + } + + // HANDLE: $(expr, [context]) + // (which is just equivalent to: $(content).find(expr) + } else + return jQuery( context ).find( selector ); + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( jQuery.isFunction( selector ) ) + return jQuery( document ).ready( selector ); + + // Make sure that old selector state is passed along + if ( selector.selector && selector.context ) { + this.selector = selector.selector; + this.context = selector.context; + } + + return this.setArray(jQuery.isArray( selector ) ? + selector : + jQuery.makeArray(selector)); + }, + + // Start with an empty selector + selector: "", + + // The current version of jQuery being used + jquery: "1.3.2", + + // The number of elements contained in the matched element set + size: function() { + return this.length; + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + return num === undefined ? + + // Return a 'clean' array + Array.prototype.slice.call( this ) : + + // Return just the object + this[ num ]; + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems, name, selector ) { + // Build a new jQuery matched element set + var ret = jQuery( elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + ret.context = this.context; + + if ( name === "find" ) + ret.selector = this.selector + (this.selector ? " " : "") + selector; + else if ( name ) + ret.selector = this.selector + "." + name + "(" + selector + ")"; + + // Return the newly-formed element set + return ret; + }, + + // Force the current matched set of elements to become + // the specified array of elements (destroying the stack in the process) + // You should use pushStack() in order to do this, but maintain the stack + setArray: function( elems ) { + // Resetting the length to 0, then using the native Array push + // is a super-fast way to populate an object with array-like properties + this.length = 0; + Array.prototype.push.apply( this, elems ); + + return this; + }, + + // Execute a callback for every element in the matched set. + // (You can seed the arguments with an array of args, but this is + // only used internally.) + each: function( callback, args ) { + return jQuery.each( this, callback, args ); + }, + + // Determine the position of an element within + // the matched set of elements + index: function( elem ) { + // Locate the position of the desired element + return jQuery.inArray( + // If it receives a jQuery object, the first element is used + elem && elem.jquery ? elem[0] : elem + , this ); + }, + + attr: function( name, value, type ) { + var options = name; + + // Look for the case where we're accessing a style value + if ( typeof name === "string" ) + if ( value === undefined ) + return this[0] && jQuery[ type || "attr" ]( this[0], name ); + + else { + options = {}; + options[ name ] = value; + } + + // Check to see if we're setting style values + return this.each(function(i){ + // Set all the styles + for ( name in options ) + jQuery.attr( + type ? + this.style : + this, + name, jQuery.prop( this, options[ name ], type, i, name ) + ); + }); + }, + + css: function( key, value ) { + // ignore negative width and height values + if ( (key == 'width' || key == 'height') && parseFloat(value) < 0 ) + value = undefined; + return this.attr( key, value, "curCSS" ); + }, + + text: function( text ) { + if ( typeof text !== "object" && text != null ) + return this.empty().append( (this[0] && this[0].ownerDocument || document).createTextNode( text ) ); + + var ret = ""; + + jQuery.each( text || this, function(){ + jQuery.each( this.childNodes, function(){ + if ( this.nodeType != 8 ) + ret += this.nodeType != 1 ? + this.nodeValue : + jQuery.fn.text( [ this ] ); + }); + }); + + return ret; + }, + + wrapAll: function( html ) { + if ( this[0] ) { + // The elements to wrap the target around + var wrap = jQuery( html, this[0].ownerDocument ).clone(); + + if ( this[0].parentNode ) + wrap.insertBefore( this[0] ); + + wrap.map(function(){ + var elem = this; + + while ( elem.firstChild ) + elem = elem.firstChild; + + return elem; + }).append(this); + } + + return this; + }, + + wrapInner: function( html ) { + return this.each(function(){ + jQuery( this ).contents().wrapAll( html ); + }); + }, + + wrap: function( html ) { + return this.each(function(){ + jQuery( this ).wrapAll( html ); + }); + }, + + append: function() { + return this.domManip(arguments, true, function(elem){ + if (this.nodeType == 1) + this.appendChild( elem ); + }); + }, + + prepend: function() { + return this.domManip(arguments, true, function(elem){ + if (this.nodeType == 1) + this.insertBefore( elem, this.firstChild ); + }); + }, + + before: function() { + return this.domManip(arguments, false, function(elem){ + this.parentNode.insertBefore( elem, this ); + }); + }, + + after: function() { + return this.domManip(arguments, false, function(elem){ + this.parentNode.insertBefore( elem, this.nextSibling ); + }); + }, + + end: function() { + return this.prevObject || jQuery( [] ); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: [].push, + sort: [].sort, + splice: [].splice, + + find: function( selector ) { + if ( this.length === 1 ) { + var ret = this.pushStack( [], "find", selector ); + ret.length = 0; + jQuery.find( selector, this[0], ret ); + return ret; + } else { + return this.pushStack( jQuery.unique(jQuery.map(this, function(elem){ + return jQuery.find( selector, elem ); + })), "find", selector ); + } + }, + + clone: function( events ) { + // Do the clone + var ret = this.map(function(){ + if ( !jQuery.support.noCloneEvent && !jQuery.isXMLDoc(this) ) { + // IE copies events bound via attachEvent when + // using cloneNode. Calling detachEvent on the + // clone will also remove the events from the orignal + // In order to get around this, we use innerHTML. + // Unfortunately, this means some modifications to + // attributes in IE that are actually only stored + // as properties will not be copied (such as the + // the name attribute on an input). + var html = this.outerHTML; + if ( !html ) { + var div = this.ownerDocument.createElement("div"); + div.appendChild( this.cloneNode(true) ); + html = div.innerHTML; + } + + return jQuery.clean([html.replace(/ jQuery\d+="(?:\d+|null)"/g, "").replace(/^\s*/, "")])[0]; + } else + return this.cloneNode(true); + }); + + // Copy the events from the original to the clone + if ( events === true ) { + var orig = this.find("*").andSelf(), i = 0; + + ret.find("*").andSelf().each(function(){ + if ( this.nodeName !== orig[i].nodeName ) + return; + + var events = jQuery.data( orig[i], "events" ); + + for ( var type in events ) { + for ( var handler in events[ type ] ) { + jQuery.event.add( this, type, events[ type ][ handler ], events[ type ][ handler ].data ); + } + } + + i++; + }); + } + + // Return the cloned set + return ret; + }, + + filter: function( selector ) { + return this.pushStack( + jQuery.isFunction( selector ) && + jQuery.grep(this, function(elem, i){ + return selector.call( elem, i ); + }) || + + jQuery.multiFilter( selector, jQuery.grep(this, function(elem){ + return elem.nodeType === 1; + }) ), "filter", selector ); + }, + + closest: function( selector ) { + var pos = jQuery.expr.match.POS.test( selector ) ? jQuery(selector) : null, + closer = 0; + + return this.map(function(){ + var cur = this; + while ( cur && cur.ownerDocument ) { + if ( pos ? pos.index(cur) > -1 : jQuery(cur).is(selector) ) { + jQuery.data(cur, "closest", closer); + return cur; + } + cur = cur.parentNode; + closer++; + } + }); + }, + + not: function( selector ) { + if ( typeof selector === "string" ) + // test special case where just one selector is passed in + if ( isSimple.test( selector ) ) + return this.pushStack( jQuery.multiFilter( selector, this, true ), "not", selector ); + else + selector = jQuery.multiFilter( selector, this ); + + var isArrayLike = selector.length && selector[selector.length - 1] !== undefined && !selector.nodeType; + return this.filter(function() { + return isArrayLike ? jQuery.inArray( this, selector ) < 0 : this != selector; + }); + }, + + add: function( selector ) { + return this.pushStack( jQuery.unique( jQuery.merge( + this.get(), + typeof selector === "string" ? + jQuery( selector ) : + jQuery.makeArray( selector ) + ))); + }, + + is: function( selector ) { + return !!selector && jQuery.multiFilter( selector, this ).length > 0; + }, + + hasClass: function( selector ) { + return !!selector && this.is( "." + selector ); + }, + + val: function( value ) { + if ( value === undefined ) { + var elem = this[0]; + + if ( elem ) { + if( jQuery.nodeName( elem, 'option' ) ) + return (elem.attributes.value || {}).specified ? elem.value : elem.text; + + // We need to handle select boxes special + if ( jQuery.nodeName( elem, "select" ) ) { + var index = elem.selectedIndex, + values = [], + options = elem.options, + one = elem.type == "select-one"; + + // Nothing was selected + if ( index < 0 ) + return null; + + // Loop through all the selected options + for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) { + var option = options[ i ]; + + if ( option.selected ) { + // Get the specifc value for the option + value = jQuery(option).val(); + + // We don't need an array for one selects + if ( one ) + return value; + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + } + + // Everything else, we just grab the value + return (elem.value || "").replace(/\r/g, ""); + + } + + return undefined; + } + + if ( typeof value === "number" ) + value += ''; + + return this.each(function(){ + if ( this.nodeType != 1 ) + return; + + if ( jQuery.isArray(value) && /radio|checkbox/.test( this.type ) ) + this.checked = (jQuery.inArray(this.value, value) >= 0 || + jQuery.inArray(this.name, value) >= 0); + + else if ( jQuery.nodeName( this, "select" ) ) { + var values = jQuery.makeArray(value); + + jQuery( "option", this ).each(function(){ + this.selected = (jQuery.inArray( this.value, values ) >= 0 || + jQuery.inArray( this.text, values ) >= 0); + }); + + if ( !values.length ) + this.selectedIndex = -1; + + } else + this.value = value; + }); + }, + + html: function( value ) { + return value === undefined ? + (this[0] ? + this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g, "") : + null) : + this.empty().append( value ); + }, + + replaceWith: function( value ) { + return this.after( value ).remove(); + }, + + eq: function( i ) { + return this.slice( i, +i + 1 ); + }, + + slice: function() { + return this.pushStack( Array.prototype.slice.apply( this, arguments ), + "slice", Array.prototype.slice.call(arguments).join(",") ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map(this, function(elem, i){ + return callback.call( elem, i, elem ); + })); + }, + + andSelf: function() { + return this.add( this.prevObject ); + }, + + domManip: function( args, table, callback ) { + if ( this[0] ) { + var fragment = (this[0].ownerDocument || this[0]).createDocumentFragment(), + scripts = jQuery.clean( args, (this[0].ownerDocument || this[0]), fragment ), + first = fragment.firstChild; + + if ( first ) + for ( var i = 0, l = this.length; i < l; i++ ) + callback.call( root(this[i], first), this.length > 1 || i > 0 ? + fragment.cloneNode(true) : fragment ); + + if ( scripts ) + jQuery.each( scripts, evalScript ); + } + + return this; + + function root( elem, cur ) { + return table && jQuery.nodeName(elem, "table") && jQuery.nodeName(cur, "tr") ? + (elem.getElementsByTagName("tbody")[0] || + elem.appendChild(elem.ownerDocument.createElement("tbody"))) : + elem; + } + } +}; + +// Give the init function the jQuery prototype for later instantiation +jQuery.fn.init.prototype = jQuery.fn; + +function evalScript( i, elem ) { + if ( elem.src ) + jQuery.ajax({ + url: elem.src, + async: false, + dataType: "script" + }); + + else + jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" ); + + if ( elem.parentNode ) + elem.parentNode.removeChild( elem ); +} + +function now(){ + return +new Date; +} + +jQuery.extend = jQuery.fn.extend = function() { + // copy reference to target object + var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + target = arguments[1] || {}; + // skip the boolean and the target + i = 2; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !jQuery.isFunction(target) ) + target = {}; + + // extend jQuery itself if only one argument is passed + if ( length == i ) { + target = this; + --i; + } + + for ( ; i < length; i++ ) + // Only deal with non-null/undefined values + if ( (options = arguments[ i ]) != null ) + // Extend the base object + for ( var name in options ) { + var src = target[ name ], copy = options[ name ]; + + // Prevent never-ending loop + if ( target === copy ) + continue; + + // Recurse if we're merging object values + if ( deep && copy && typeof copy === "object" && !copy.nodeType ) + target[ name ] = jQuery.extend( deep, + // Never move original objects, clone them + src || ( copy.length != null ? [ ] : { } ) + , copy ); + + // Don't bring in undefined values + else if ( copy !== undefined ) + target[ name ] = copy; + + } + + // Return the modified object + return target; +}; + +// exclude the following css properties to add px +var exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i, + // cache defaultView + defaultView = document.defaultView || {}, + toString = Object.prototype.toString; + +jQuery.extend({ + noConflict: function( deep ) { + window.$ = _$; + + if ( deep ) + window.jQuery = _jQuery; + + return jQuery; + }, + + // See test/unit/core.js for details concerning isFunction. + // Since version 1.3, DOM methods and functions like alert + // aren't supported. They return false on IE (#2968). + isFunction: function( obj ) { + return toString.call(obj) === "[object Function]"; + }, + + isArray: function( obj ) { + return toString.call(obj) === "[object Array]"; + }, + + // check if an element is in a (or is an) XML document + isXMLDoc: function( elem ) { + return elem.nodeType === 9 && elem.documentElement.nodeName !== "HTML" || + !!elem.ownerDocument && jQuery.isXMLDoc( elem.ownerDocument ); + }, + + // Evalulates a script in a global context + globalEval: function( data ) { + if ( data && /\S/.test(data) ) { + // Inspired by code by Andrea Giammarchi + // http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html + var head = document.getElementsByTagName("head")[0] || document.documentElement, + script = document.createElement("script"); + + script.type = "text/javascript"; + if ( jQuery.support.scriptEval ) + script.appendChild( document.createTextNode( data ) ); + else + script.text = data; + + // Use insertBefore instead of appendChild to circumvent an IE6 bug. + // This arises when a base node is used (#2709). + head.insertBefore( script, head.firstChild ); + head.removeChild( script ); + } + }, + + nodeName: function( elem, name ) { + return elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase(); + }, + + // args is for internal usage only + each: function( object, callback, args ) { + var name, i = 0, length = object.length; + + if ( args ) { + if ( length === undefined ) { + for ( name in object ) + if ( callback.apply( object[ name ], args ) === false ) + break; + } else + for ( ; i < length; ) + if ( callback.apply( object[ i++ ], args ) === false ) + break; + + // A special, fast, case for the most common use of each + } else { + if ( length === undefined ) { + for ( name in object ) + if ( callback.call( object[ name ], name, object[ name ] ) === false ) + break; + } else + for ( var value = object[0]; + i < length && callback.call( value, i, value ) !== false; value = object[++i] ){} + } + + return object; + }, + + prop: function( elem, value, type, i, name ) { + // Handle executable functions + if ( jQuery.isFunction( value ) ) + value = value.call( elem, i ); + + // Handle passing in a number to a CSS property + return typeof value === "number" && type == "curCSS" && !exclude.test( name ) ? + value + "px" : + value; + }, + + className: { + // internal only, use addClass("class") + add: function( elem, classNames ) { + jQuery.each((classNames || "").split(/\s+/), function(i, className){ + if ( elem.nodeType == 1 && !jQuery.className.has( elem.className, className ) ) + elem.className += (elem.className ? " " : "") + className; + }); + }, + + // internal only, use removeClass("class") + remove: function( elem, classNames ) { + if (elem.nodeType == 1) + elem.className = classNames !== undefined ? + jQuery.grep(elem.className.split(/\s+/), function(className){ + return !jQuery.className.has( classNames, className ); + }).join(" ") : + ""; + }, + + // internal only, use hasClass("class") + has: function( elem, className ) { + return elem && jQuery.inArray( className, (elem.className || elem).toString().split(/\s+/) ) > -1; + } + }, + + // A method for quickly swapping in/out CSS properties to get correct calculations + swap: function( elem, options, callback ) { + var old = {}; + // Remember the old values, and insert the new ones + for ( var name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + callback.call( elem ); + + // Revert the old values + for ( var name in options ) + elem.style[ name ] = old[ name ]; + }, + + css: function( elem, name, force, extra ) { + if ( name == "width" || name == "height" ) { + var val, props = { position: "absolute", visibility: "hidden", display:"block" }, which = name == "width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ]; + + function getWH() { + val = name == "width" ? elem.offsetWidth : elem.offsetHeight; + + if ( extra === "border" ) + return; + + jQuery.each( which, function() { + if ( !extra ) + val -= parseFloat(jQuery.curCSS( elem, "padding" + this, true)) || 0; + if ( extra === "margin" ) + val += parseFloat(jQuery.curCSS( elem, "margin" + this, true)) || 0; + else + val -= parseFloat(jQuery.curCSS( elem, "border" + this + "Width", true)) || 0; + }); + } + + if ( elem.offsetWidth !== 0 ) + getWH(); + else + jQuery.swap( elem, props, getWH ); + + return Math.max(0, Math.round(val)); + } + + return jQuery.curCSS( elem, name, force ); + }, + + curCSS: function( elem, name, force ) { + var ret, style = elem.style; + + // We need to handle opacity special in IE + if ( name == "opacity" && !jQuery.support.opacity ) { + ret = jQuery.attr( style, "opacity" ); + + return ret == "" ? + "1" : + ret; + } + + // Make sure we're using the right name for getting the float value + if ( name.match( /float/i ) ) + name = styleFloat; + + if ( !force && style && style[ name ] ) + ret = style[ name ]; + + else if ( defaultView.getComputedStyle ) { + + // Only "float" is needed here + if ( name.match( /float/i ) ) + name = "float"; + + name = name.replace( /([A-Z])/g, "-$1" ).toLowerCase(); + + var computedStyle = defaultView.getComputedStyle( elem, null ); + + if ( computedStyle ) + ret = computedStyle.getPropertyValue( name ); + + // We should always get a number back from opacity + if ( name == "opacity" && ret == "" ) + ret = "1"; + + } else if ( elem.currentStyle ) { + var camelCase = name.replace(/\-(\w)/g, function(all, letter){ + return letter.toUpperCase(); + }); + + ret = elem.currentStyle[ name ] || elem.currentStyle[ camelCase ]; + + // From the awesome hack by Dean Edwards + // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 + + // If we're not dealing with a regular pixel number + // but a number that has a weird ending, we need to convert it to pixels + if ( !/^\d+(px)?$/i.test( ret ) && /^\d/.test( ret ) ) { + // Remember the original values + var left = style.left, rsLeft = elem.runtimeStyle.left; + + // Put in the new values to get a computed value out + elem.runtimeStyle.left = elem.currentStyle.left; + style.left = ret || 0; + ret = style.pixelLeft + "px"; + + // Revert the changed values + style.left = left; + elem.runtimeStyle.left = rsLeft; + } + } + + return ret; + }, + + clean: function( elems, context, fragment ) { + context = context || document; + + // !context.createElement fails in IE with an error but returns typeof 'object' + if ( typeof context.createElement === "undefined" ) + context = context.ownerDocument || context[0] && context[0].ownerDocument || document; + + // If a single string is passed in and it's a single tag + // just do a createElement and skip the rest + if ( !fragment && elems.length === 1 && typeof elems[0] === "string" ) { + var match = /^<(\w+)\s*\/?>$/.exec(elems[0]); + if ( match ) + return [ context.createElement( match[1] ) ]; + } + + var ret = [], scripts = [], div = context.createElement("div"); + + jQuery.each(elems, function(i, elem){ + if ( typeof elem === "number" ) + elem += ''; + + if ( !elem ) + return; + + // Convert html string into DOM nodes + if ( typeof elem === "string" ) { + // Fix "XHTML"-style tags in all browsers + elem = elem.replace(/(<(\w+)[^>]*?)\/>/g, function(all, front, tag){ + return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i) ? + all : + front + ">"; + }); + + // Trim whitespace, otherwise indexOf won't work as expected + var tags = elem.replace(/^\s+/, "").substring(0, 10).toLowerCase(); + + var wrap = + // option or optgroup + !tags.indexOf("", "" ] || + + !tags.indexOf("", "" ] || + + tags.match(/^<(thead|tbody|tfoot|colg|cap)/) && + [ 1, "", "
      " ] || + + !tags.indexOf("", "" ] || + + // matched above + (!tags.indexOf("", "" ] || + + !tags.indexOf("", "" ] || + + // IE can't serialize and ' + //~ console.log(states + ' (' + key + '): ' + text.substring(start).replace(/\n/g, '\\n')); + var division = match.index + (key == 'php_halt2' ? match[0].length : 0); + var s = text.substring(start, division); + + // highlight children + var prev_state = states[states.length - 2]; + if ((state == 'att_quo' || state == 'att_apo' || state == 'att_val') && (prev_state == 'att_js' || prev_state == 'att_css' || /^\s*javascript:/i.test(s))) { // javascript: - easy but without own state //! should be checked only in %URI; + child_states.unshift(prev_state == 'att_css' ? 'css_pro' : 'js'); + s_states = this.highlight_states(child_states, this.html_entity_decode(s), true, (state == 'att_apo' ? this.htmlspecialchars_apo : (state == 'att_quo' ? this.htmlspecialchars_quo : this.htmlspecialchars_quo_apo))); + } else if (state == 'css_js' || state == 'cnf_phpini') { + child_states.unshift(state.substr(4)); + s_states = this.highlight_states(child_states, s, true); + } else if ((state == 'php_quo' || state == 'php_apo') && (prev_state == 'php_sql' || prev_state == 'php_sqlite' || prev_state == 'php_pgsql' || prev_state == 'php_phpini')) { + child_states.unshift(prev_state.substr(4)); + s_states = this.highlight_states(child_states, this.stripslashes(s), true, (state == 'php_apo' ? this.addslashes_apo : this.addslashes_quo)); + } else if (key == 'php_halt2') { + child_states.unshift('htm'); + s_states = this.highlight_states(child_states, s, true); + } else if ((state == 'apo' || state == 'quo') && prev_state == 'js_write') { + child_states.unshift('htm'); + s_states = this.highlight_states(child_states, s, true); + } else if (((state == 'php_quo' || state == 'php_apo') && prev_state == 'php_echo') || (state == 'php_eot2' && states[states.length - 3] == 'php_echo')) { + var i; + for (i=states.length; i--; ) { + prev_state = states[i]; + if (prev_state.substring(0, 3) != 'php' && prev_state != 'att_quo' && prev_state != 'att_apo' && prev_state != 'att_val') { + break; + } + prev_state = ''; + } + var f = (state == 'php_eot2' ? this.addslashes : (state == 'php_apo' ? this.addslashes_apo : this.addslashes_quo)); + s = this.stripslashes(s); + if (prev_state == 'att_js' || prev_state == 'att_css') { + var g = (states[i+1] == 'att_quo' ? this.htmlspecialchars_quo : (states[i+1] == 'att_apo' ? this.htmlspecialchars_apo : this.htmlspecialchars_quo_apo)); + child_states.unshift(prev_state == 'att_js' ? 'js' : 'css_pro'); + s_states = this.highlight_states(child_states, this.html_entity_decode(s), true, function (string) { return f(g(string)); }); + } else if (prev_state && child_states) { + child_states.unshift(prev_state); + s_states = this.highlight_states(child_states, s, true, f); + } else { + s = this.htmlspecialchars(s); + s_states = [ (escape ? escape(s) : s), (isNaN(+key) || !/^(att_js|att_css|css_js|js_write|php_sql|php_sqlite|php_pgsql|php_echo|php_phpini)$/.test(state) || /^(js_write|php_echo|php_sql|php_sqlite|php_pgsql|php_phpini|css_js)$/.test(prev_state) ? child_states : [ ]) ]; + } + } else { + s = this.htmlspecialchars(s); + s_states = [ (escape ? escape(s) : s), (isNaN(+key) || !/^(att_js|att_css|css_js|js_write|php_sql|php_sqlite|php_pgsql|php_echo|php_phpini)$/.test(state) || /^(js_write|php_echo|php_sql|php_sqlite|php_pgsql|php_phpini|css_js)$/.test(prev_state) ? child_states : [ ]) ]; // reset child states when escaping construct + } + s = s_states[0]; + child_states = s_states[1]; + s = this.keywords_links(state, s); + ret.push(s); + + s = text.substring(division, match.index + match[0].length); + s = (m.length < 3 ? (s ? '' + this.htmlspecialchars(escape ? escape(s) : s) + '' : '') : (m[1] ? '' + this.htmlspecialchars(escape ? escape(m[1]) : m[1]) + '' : '') + this.htmlspecialchars(escape ? escape(m[2]) : m[2]) + (m[3] ? '' + this.htmlspecialchars(escape ? escape(m[3]) : m[3]) + '' : '')); + if (isNaN(+key)) { + if (this.links && this.links[key] && m[2]) { + if (/^tag/.test(key)) { + this.last_tag = m[2].toUpperCase(); + } + var link = (/^tag/.test(key) && !/^(ins|del)$/i.test(m[2]) ? m[2].toUpperCase() : m[2].toLowerCase()); + var k_link = ''; + var att_mapping = { + 'align-APPLET': 'IMG', 'align-IFRAME': 'IMG', 'align-INPUT': 'IMG', 'align-OBJECT': 'IMG', + 'align-COL': 'TD', 'align-COLGROUP': 'TD', 'align-TBODY': 'TD', 'align-TFOOT': 'TD', 'align-TH': 'TD', 'align-THEAD': 'TD', 'align-TR': 'TD', + 'border-OBJECT': 'IMG', + 'cite-BLOCKQUOTE': 'Q', + 'cite-DEL': 'INS', + 'color-BASEFONT': 'FONT', + 'face-BASEFONT': 'FONT', + 'height-TD': 'TH', + 'height-OBJECT': 'IMG', + 'longdesc-IFRAME': 'FRAME', + 'name-TEXTAREA': 'BUTTON', + 'name-IFRAME': 'FRAME', + 'name-OBJECT': 'INPUT', + 'src-IFRAME': 'FRAME', + 'type-LINK': 'A', + 'width-OBJECT': 'IMG', + 'width-TD': 'TH' + }; + var att_tag = (att_mapping[link + '-' + this.last_tag] ? att_mapping[link + '-' + this.last_tag] : this.last_tag); + for (var k in this.links[key]) { + if (key == 'att' && this.links[key][k].test(link + '-' + att_tag)) { + link += '-' + att_tag; + k_link = k; + break; + } else if (this.links[key][k].test(m[2])) { + k_link = k; + if (key != 'att') { + break; + } + } + } + if (k_link) { + s = (m[1] ? '' + this.htmlspecialchars(escape ? escape(m[1]) : m[1]) + '' : ''); + s += '' + this.htmlspecialchars(escape ? escape(m[2]) : m[2]) + ''; + s += (m[3] ? '' + this.htmlspecialchars(escape ? escape(m[3]) : m[3]) + '' : ''); + } + } + ret.push('', s); + states.push(key); + if (state == 'php_eot') { + tr.php_eot2[2] = new RegExp('(\n)(' + match[1] + ')(;?\n)'); + regexps.php_eot2 = this.build_regexp((match[2] == "'" ? { 2: tr.php_eot2[2] } : tr.php_eot2)); + } else if (state == 'sql_eot') { + tr.sql_eot2[2] = new RegExp('\\$' + text.substring(start, match.index) + '\\$'); + regexps.sql_eot2 = this.build_regexp(tr.sql_eot2); + } + } else if (states.length <= key) { + return [ 'out of states' ]; + } else { + ret.push(s); + for (var i=0; i < key; i++) { + ret.push(''); + states.pop(); + } + } + start = regexps[state].lastIndex; + state = states[states.length - 1]; + regexps[state].lastIndex = start; + continue loop; + } + } + return [ 'regexp not found' ]; + } + ret.push(this.keywords_links(state, this.htmlspecialchars(text.substring(start)))); + for (var i=1; i < states.length; i++) { + ret.push(''); + } + states.shift(); + return [ ret.join(''), states ]; + }, + + htmlspecialchars: function (string) { + return string.replace(/&/g, '&').replace(//g, '>'); + }, + + htmlspecialchars_quo: function (string) { + return jush.htmlspecialchars(string).replace(/"/g, '"'); // jush - this.htmlspecialchars_quo is passed as reference + }, + + htmlspecialchars_apo: function (string) { + return jush.htmlspecialchars(string).replace(/'/g, '''); + }, + + htmlspecialchars_quo_apo: function (string) { + return jush.htmlspecialchars_quo(string).replace(/'/g, '''); + }, + + html_entity_decode: function (string) { + return string.replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/&#(?:([0-9]+)|x([0-9a-f]+));/gi, function (str, p1, p2) { //! named entities + return String.fromCharCode(p1 ? p1 : parseInt(p2, 16)); + }).replace(/&/g, '&'); + }, + + addslashes: function (string) { + return string.replace(/\\/g, '\\$&'); + }, + + addslashes_apo: function (string) { + return string.replace(/[\\']/g, '\\$&'); + }, + + addslashes_quo: function (string) { + return string.replace(/[\\"]/g, '\\$&'); + }, + + stripslashes: function (string) { + return string.replace(/\\([\\"'])/g, '$1'); + } +}; + +jush.urls = { + // $key stands for key in jush.links.class, $val stands for found string + tag: 'http://www.w3.org/TR/html4/$key.html#edef-$val', + tag_css: 'http://www.w3.org/TR/html4/$key.html#edef-$val', + tag_js: 'http://www.w3.org/TR/html4/$key.html#edef-$val', + att: 'http://www.w3.org/TR/html4/$key.html#adef-$val', + att_css: 'http://www.w3.org/TR/html4/$key.html#adef-$val', + att_js: 'http://www.w3.org/TR/html4/$key.html#adef-$val', + css_val: 'http://www.w3.org/TR/CSS21/$key.html#propdef-$val', + css_at: 'http://www.w3.org/TR/CSS21/$key', + js_write: 'http://developer.mozilla.org/En/docs/DOM/$key.$val', + php_new: 'http://www.php.net/$key.$val', + php_sql: 'http://www.php.net/$key.$val', + php_sqlite: 'http://www.php.net/$key.$val', + php_pgsql: 'http://www.php.net/$key.$val', + php_echo: 'http://www.php.net/$key.$val', + php_phpini: 'http://www.php.net/$key.$val', + php_halt: 'http://www.php.net/$key.halt-compiler', + cnf_php: 'http://www.php.net/$key', + cnf_phpini: 'http://www.php.net/configuration.changes#$key', + + // [0] is base, other elements correspond to () in jush.links2, $key stands for text of selected element, $1 stands for found string + php: [ 'http://www.php.net/$key', + 'function.$1', 'control-structures.alternative-syntax', 'control-structures.$1', 'control-structures.do.while', 'control-structures.foreach', 'control-structures.switch', 'language.functions#functions.user-defined', 'language.oop', 'language.constants.predefined', 'language.exceptions', 'language.oop5.$1', 'language.oop5.basic#language.oop5.basic.$1', 'language.oop5.cloning', 'language.oop5.constants', 'language.oop5.interfaces', 'language.oop5.visibility', 'language.operators.logical', 'language.variables.scope#language.variables.scope.$1', 'language.namespaces', + 'function.$1', + 'function.socket-get-option', 'function.socket-set-option' + ], + phpini: [ 'http://www.php.net/$key', + 'features.safe-mode#ini.$1', 'ini.core#ini.$1', 'apache.configuration#ini.$1', 'apc.configuration#ini.$1', 'apd.configuration#ini.$1', 'bc.configuration#ini.$1', 'com.configuration#ini.$1', 'datetime.configuration#ini.$1', 'dbx.configuration#ini.$1', 'errorfunc.configuration#ini.$1', 'exif.configuration#ini.$1', 'expect.configuration#ini.$1', 'filesystem.configuration#ini.$1', 'ibase.configuration#ini.$1', 'ibm-db2.configuration#ini.$1', 'ifx.configuration#ini.$1', 'image.configuration#ini.image.jpeg-ignore-warning', 'info.configuration#ini.$1', 'mail.configuration#ini.$1', 'mail.configuration#ini.smtp', 'maxdb.configuration#ini.$1', 'mbstring.configuration#ini.$1', 'mime-magic.configuration#ini.$1', 'misc.configuration#ini.$1', 'misc.configuration#ini.syntax-highlighting', 'msql.configuration#ini.$1', 'mysql.configuration#ini.$1', 'mysqli.configuration#ini.$1', 'network.configuration#ini.$1', 'nsapi.configuration#ini.$1', 'oci8.configuration#ini.$1', 'outcontrol.configuration#ini.$1', 'pcre.configuration#ini.$1', 'pdo-odbc.configuration#ini.$1', 'pgsql.configuration#ini.$1', 'runkit.configuration#ini.$1', 'session.configuration#ini.$1', 'soap.configuration#ini.$1', 'sqlite.configuration#ini.$1', 'sybase.configuration#ini.$1', 'tidy.configuration#ini.$1', 'unicode.configuration#ini.$1', 'odbc.configuration#ini.$1', 'zlib.configuration#ini.$1' + ], + py: [ 'http://docs.python.org/lib/$key.html', + 'browser-controllers', 'built-in-funcs', 'csv-contents', 'ctypes-foreign-functions', 'ctypes-function-prototypes', 'ctypes-utility-functions', 'curses-functions', 'cursespanel-functions', 'decimal-decimal', 'defaultdict-objects', 'deque-objects', 'doctest-basic-api', 'doctest-debugging', 'doctest-options', 'doctest-unittest-api', 'elementtree-functions', 'inspect-classes-functions', 'inspect-source', 'inspect-stack', 'inspect-types', 'itertools-functions', 'logging-config-api', 'module--winreg', 'module-Bastion', 'module-aifc', 'module-al', 'module-anydbm', 'module-array', 'module-asyncore', 'module-atexit', 'module-audioop', 'module-base64', 'module-binascii', 'module-binhex', 'module-bisect', 'module-bsddb', 'module-calendar', 'module-cd', 'module-cgitb', 'module-cmath', 'module-code', 'module-codecs', 'module-codeop', 'module-colorsys', 'module-commands', 'module-compileall', 'module-compiler', 'module-compiler.visitor', 'module-contextlib', 'module-copyreg', 'module-crypt', 'module-curses.ascii', 'module-curses.textpad', 'module-curses.wrapper', 'module-dbhash', 'module-dbm', 'module-difflib', 'module-dircache', 'module-dis', 'module-dl', 'module-dumbdbm', 'module-email.charset', 'module-email.encoders', 'module-email.header', 'module-email.iterators', 'module-email.utils', 'module-encodings.idna', 'module-fcntl', 'module-filecmp', 'module-fileinput', 'module-fm', 'module-fnmatch', 'module-fpectl', 'module-fpformat', 'module-functools', 'module-gc', 'module-gdbm', 'module-getopt', 'module-getpass', 'module-gl', 'module-glob', 'module-gopherlib', 'module-grp', 'module-gzip', 'module-heapq', 'module-hmac', 'module-hotshot.stats', 'module-imageop', 'module-imaplib', 'module-imgfile', 'module-imghdr', 'module-imp', 'module-jpeg', 'module-keyword', 'module-linecache', 'module-locale', 'module-logging', 'module-mailcap', 'module-marshal', 'module-math', 'module-md5', 'module-mimetools', 'module-mimetypes', 'module-mimify', 'module-mmap', 'module-modulefinder', 'module-msilib', 'module-new', 'module-nis', 'module-operator', 'module-os.path', 'module-ossaudiodev', 'module-pdb', 'module-pickletools', 'module-pkgutil', 'module-popen2', 'module-posixfile', 'module-pprint', 'module-profile', 'module-pty', 'module-pwd', 'module-pyclbr', 'module-pycompile', 'module-quopri', 'module-random', 'module-readline', 'module-repr', 'module-rfc822', 'module-rgbimg', 'module-runpy', 'module-select', 'module-sha', 'module-shelve', 'module-shlex', 'module-shutil', 'module-signal', 'module-sndhdr', 'module-socket', 'module-spwd', 'module-stat', 'module-stringprep', 'module-struct', 'module-sunau', 'module-sunaudiodev', 'module-sys', 'module-syslog', 'module-tabnanny', 'module-tarfile', 'module-tempfile', 'module-termios', 'module-test.testsupport', 'module-textwrap', 'module-thread', 'module-threading', 'module-time', 'module-token', 'module-tokenize', 'module-traceback', 'module-tty', 'module-turtle', 'module-unicodedata', 'module-urllib', 'module-urllib2', 'module-urlparse', 'module-uu', 'module-uuid', 'module-wave', 'module-weakref', 'module-webbrowser', 'module-whichdb', 'module-winsound', 'module-wsgiref.simpleserver', 'module-wsgiref.util', 'module-wsgiref.validate', 'module-xml.dom.minidom', 'module-xml.dom.pulldom', 'module-xml.parsers.expat', 'module-xml.sax', 'module-xml.sax.saxutils', 'module-zipfile', 'module-zlib', 'msvcrt-console', 'msvcrt-files', 'msvcrt-other', 'node150', 'node217', 'node304', 'node317', 'node41', 'node42', 'node442', 'node443', 'node444', 'node445', 'node446', 'node447', 'node46', 'node522', 'node523', 'node530', 'node553', 'node563', 'node634', 'node635', 'node658', 'node686', 'node732', 'node733', 'node860', 'node861', 'node862', 'node908', 'non-essential-built-in-funcs', 'os-fd-ops', 'os-file-dir', 'os-miscfunc', 'os-newstreams', 'os-path', 'os-process', 'os-procinfo', 'sqlite3-Module-Contents', 'unittest-contents', 'warning-functions' + ], + sql: [ 'http://dev.mysql.com/doc/mysql/en/$key', + '$1.html', 'commit.html', 'savepoints.html', 'lock-tables.html', + 'numeric-type-overview.html', 'date-and-time-type-overview.html', 'string-type-overview.html', + 'comparison-operators.html#operator_$1', 'comparison-operators.html#function_$1', 'any-in-some-subqueries.html', 'row-subqueries.html', 'group-by-modifiers.html', 'string-comparison-functions.html#operator_$1', 'logical-operators.html#operator_$1', 'control-flow-functions.html#operator_$1', 'arithmetic-functions.html#operator_$1', 'cast-functions.html#operator_$1', + '', // keywords without link + 'comparison-operators.html#function_$1', 'control-flow-functions.html#function_$1', 'string-functions.html#function_$1', 'string-comparison-functions.html#function_$1', 'mathematical-functions.html#function_$1', 'date-and-time-functions.html#function_$1', 'cast-functions.html#function_$1', 'xml-functions.html#function_$1', 'bit-functions.html#function_$1', 'encryption-functions.html#function_$1', 'information-functions.html#function_$1', 'miscellaneous-functions.html#function_$1', 'group-by-functions.html#function_$1', + 'fulltext-search.html#$1' + ], + sqlite: [ 'http://www.sqlite.org/$key', + 'lang_$1.html', 'pragma.html', 'lang_createvtab.html', 'lang_transaction.html', + 'lang_createindex.html', 'lang_createtable.html', 'lang_createtrigger.html', 'lang_createview.html', 'lang_expr.html#$1', + 'lang_expr.html#corefunctions', 'cvstrac/wiki?p=DateAndTimeFunctions#$1', 'lang_expr.html#aggregatefunctions' + ], + pgsql: [ 'http://www.postgresql.org/docs/8.2/static/$key', + 'sql-$1.html', 'sql-$1.html', 'sql-alteropclass.html', 'sql-createopclass.html', 'sql-dropopclass.html', + 'functions-datetime.html', 'functions-info.html', 'functions-logical.html', 'functions-comparison.html', 'functions-matching.html', 'functions-conditional.html', 'functions-subquery.html', + 'functions-math.html', 'functions-string.html', 'functions-binarystring.html', 'functions-formatting.html', 'functions-datetime.html', 'functions-geometry.html', 'functions-net.html', 'functions-sequence.html', 'functions-array.html', 'functions-aggregate.html', 'functions-srf.html', 'functions-info.html', 'functions-admin.html' + ], + cnf: [ 'http://httpd.apache.org/docs/2.2/mod/$key.html#$1', + 'beos', 'core', 'mod_actions', 'mod_alias', 'mod_auth_basic', 'mod_auth_digest', 'mod_authn_alias', 'mod_authn_anon', 'mod_authn_dbd', 'mod_authn_dbm', 'mod_authn_default', 'mod_authn_file', 'mod_authnz_ldap', 'mod_authz_dbm', 'mod_authz_default', 'mod_authz_groupfile', 'mod_authz_host', 'mod_authz_owner', 'mod_authz_user', 'mod_autoindex', 'mod_cache', 'mod_cern_meta', 'mod_cgi', 'mod_cgid', 'mod_dav', 'mod_dav_fs', 'mod_dav_lock', 'mod_dbd', 'mod_deflate', 'mod_dir', 'mod_disk_cache', 'mod_dumpio', 'mod_echo', 'mod_env', 'mod_example', 'mod_expires', 'mod_ext_filter', 'mod_file_cache', 'mod_filter', 'mod_headers', 'mod_charset_lite', 'mod_ident', 'mod_imagemap', 'mod_include', 'mod_info', 'mod_isapi', 'mod_ldap', 'mod_log_config', 'mod_log_forensic', 'mod_mem_cache', 'mod_mime', 'mod_mime_magic', 'mod_negotiation', 'mod_nw_ssl', 'mod_proxy', 'mod_rewrite', 'mod_setenvif', 'mod_so', 'mod_speling', 'mod_ssl', 'mod_status', 'mod_substitute', 'mod_suexec', 'mod_userdir', 'mod_usertrack', 'mod_version', 'mod_vhost_alias', 'mpm_common', 'mpm_netware', 'mpm_winnt', 'prefork' + ], + js: [ 'http://developer.mozilla.org/En/$key', + 'Core_JavaScript_1.5_Reference/Global_Objects/$1', + 'Core_JavaScript_1.5_Reference/Global_Properties/$1', + 'Core_JavaScript_1.5_Reference/Global_Functions/$1', + 'Core_JavaScript_1.5_Reference/Statements/$1', + 'Core_JavaScript_1.5_Reference/Statements/do...while', + 'Core_JavaScript_1.5_Reference/Statements/if...else', + 'Core_JavaScript_1.5_Reference/Statements/try...catch', + 'Core_JavaScript_1.5_Reference/Operators/Special_Operators/$1_Operator', + 'DOM/document.$1', 'DOM/element.$1', 'DOM/event.$1', 'DOM/form.$1', 'DOM/table.$1', 'DOM/window.$1', + 'Core_JavaScript_1.5_Reference/Global_Objects/Array/$1', + 'Core_JavaScript_1.5_Reference/Global_Objects/Date/$1', + 'Core_JavaScript_1.5_Reference/Global_Objects/Function/$1', + 'Core_JavaScript_1.5_Reference/Global_Objects/Number/$1', + 'Core_JavaScript_1.5_Reference/Global_Objects/RegExp/$1', + 'Core_JavaScript_1.5_Reference/Global_Objects/String/$1' + ] +}; + +jush.links = { + tag: { + 'interact/forms': /^(button|fieldset|form|input|isindex|label|legend|optgroup|option|select|textarea)$/i, + 'interact/scripts': /^(noscript)$/i, + 'present/frames': /^(frame|frameset|iframe|noframes)$/i, + 'present/graphics': /^(b|basefont|big|center|font|hr|i|s|small|strike|tt|u)$/i, + 'struct/dirlang': /^(bdo)$/i, + 'struct/global': /^(address|body|div|h1|h2|h3|h4|h5|h6|head|html|meta|span|title)$/i, + 'struct/links': /^(a|base|link)$/i, + 'struct/lists': /^(dd|dir|dl|dt|li|menu|ol|ul)$/i, + 'struct/objects': /^(applet|area|img|map|object|param)$/i, + 'struct/tables': /^(caption|col|colgroup|table|tbody|td|tfoot|th|thead|tr)$/i, + 'struct/text': /^(abbr|acronym|blockquote|br|cite|code|del|dfn|em|ins|kbd|p|pre|q|samp|strong|sub|sup|var)$/i + }, + tag_css: { 'present/styles': /^(style)$/i }, + tag_js: { 'interact/scripts': /^(script)$/i }, + att_css: { 'present/styles': /^(style)$/i }, + att_js: { 'interact/scripts': /^(onblur|onchange|onclick|ondblclick|onfocus|onkeydown|onkeypress|onkeyup|onload|onload|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|onreset|onselect|onsubmit|onunload|onunload)$/i }, + att: { + 'interact/forms': /^(accept-charset|accept|accesskey|action|align-LEGEND|checked|cols-TEXTAREA|disabled|enctype|for|label-OPTION|label-OPTGROUP|maxlength|method|multiple|name-BUTTON|name-SELECT|name-FORM|name-INPUT|prompt|readonly|readonly|rows-TEXTAREA|selected|size-INPUT|size-SELECT|src|tabindex|type-INPUT|type-BUTTON|value-INPUT|value-OPTION|value-BUTTON)$/i, + 'interact/scripts': /^(defer|language|src-SCRIPT|type-SCRIPT)$/i, + 'present/frames': /^(cols-FRAMESET|frameborder|height-IFRAME|longdesc-FRAME|marginheight|marginwidth|name-FRAME|noresize|rows-FRAMESET|scrolling|src-FRAME|target|width-IFRAME)$/i, + 'present/graphics': /^(align-HR|align|bgcolor|bgcolor|bgcolor|bgcolor|clear|color-FONT|face-FONT|noshade|size-HR|size-FONT|size-BASEFONT|width-HR)$/i, + 'present/styles': /^(media|media|type-STYLE)$/i, + 'struct/dirlang': /^(dir|dir-BDO|lang)$/i, + 'struct/global': /^(alink|background|class|content|http-equiv|id|link|name-META|profile|scheme|text|title|version|vlink)$/i, + 'struct/links': /^(charset|href|href-BASE|hreflang|name-A|rel|rev|type-A)$/i, + 'struct/lists': /^(compact|start|type-LI|type-OL|type-UL|value-LI)$/i, + 'struct/objects': /^(align-IMG|alt|alt|alt|archive-APPLET|archive-OBJECT|border-IMG|classid|code|codebase-OBJECT|codebase-APPLET|codetype|coords|coords|data|declare|height-IMG|height-APPLET|hspace|ismap|longdesc-IMG|name-APPLET|name-IMG|name-MAP|name-PARAM|nohref|object|shape|shape|src-IMG|standby|type-OBJECT|type-PARAM|usemap|value-PARAM|valuetype|vspace|width-IMG|width-APPLET)$/i, + 'struct/tables': /^(abbr|align-CAPTION|align-TABLE|align-TD|axis|border-TABLE|cellpadding|cellspacing|char|charoff|colspan|frame|headers|height-TH|nowrap|rowspan|rules|scope|span-COL|span-COLGROUP|summary|valign|width-TABLE|width-TH|width-COL|width-COLGROUP)$/i, + 'struct/text': /^(cite-Q|cite-INS|datetime|width-PRE)$/i + }, + css_val: { + 'aural': /^(azimuth|cue-after|cue-before|cue|elevation|pause-after|pause-before|pause|pitch-range|pitch|play-during|richness|speak-header|speak-numeral|speak-punctuation|speak|speech-rate|stress|voice-family|volume)$/i, + 'box': /^(border(?:-top|-right|-bottom|-left)?(?:-color|-style|-width)?|margin(?:-top|-right|-bottom|-left)?|padding(?:-top|-right|-bottom|-left)?)$/i, + 'colors': /^(background-attachment|background-color|background-image|background-position|background-repeat|background|color)$/i, + 'fonts': /^(font-family|font-size|font-style|font-variant|font-weight|font)$/i, + 'generate': /^(content|counter-increment|counter-reset|list-style-image|list-style-position|list-style-type|list-style|quotes)$/i, + 'page': /^(orphans|page-break-after|page-break-before|page-break-inside|widows)$/i, + 'tables': /^(border-collapse|border-spacing|caption-side|empty-cells|table-layout)$/i, + 'text': /^(letter-spacing|text-align|text-decoration|text-indent|text-transform|white-space|word-spacing)$/i, + 'ui': /^(cursor|outline-color|outline-style|outline-width|outline)$/i, + 'visudet': /^(height|line-height|max-height|max-width|min-height|min-width|vertical-align|width)$/i, + 'visufx': /^(clip|overflow|visibility)$/i, + 'visuren': /^(bottom|clear|direction|display|float|left|position|right|top|unicode-bidi|z-index)$/i + }, + css_at: { + 'page.html#page-box': /^page$/i, + 'media.html#at-media-rule': /^media$/i, + 'cascade.html#at-import': /^import$/i + }, + js_write: { 'document': /^(write|writeln)$/ }, + php_new: { 'language.oop5.basic#language.oop5.basic': /^new$/i }, + php_sql: { 'function': new RegExp('^' + jush.sql_function + '$', 'i') }, + php_sqlite: { 'function': new RegExp('^' + jush.sqlite_function + '$', 'i') }, + php_pgsql: { 'function': new RegExp('^' + jush.pgsql_function + '$', 'i') }, + php_phpini: { 'function': /^(ini_get|ini_set)$/i }, + php_echo: { 'function': /^(echo|print)$/i }, + php_halt: { 'function': /^__halt_compiler$/i }, + cnf_php: { 'configuration.file': /.+/ }, + cnf_phpini: { 'configuration.changes.apache': /.+/ } +}; + +// last () is used as delimiter +jush.links2 = { + php: /\b((?:exit|die|return|(?:include|require)(?:_once)?|(end(?:for|foreach|if|switch|while|declare))|(break|continue|declare|else|elseif|for|foreach|if|switch|while|goto)|(do)|(as)|(case|default)|(function)|(var)|(__(?:CLASS|FILE|FUNCTION|LINE|METHOD|DIR|NAMESPACE)__)|(catch|throw|try)|(abstract|final)|(class|extends)|(clone)|(const)|(implements|interface)|(private|protected|public)|(and|x?or)|(global|static)|(namespace|use))\b|((?:a(?:cosh?|ddc?slashes|ggregat(?:e(?:_(?:methods(?:_by_(?:list|regexp))?|properties(?:_by_(?:list|regexp))?|info))?|ion_info)|p(?:ache_(?:get(?:_(?:modules|version)|env)|re(?:s(?:et_timeout|ponse_headers)|quest_headers)|(?:child_termina|no)te|lookup_uri|setenv)|d_(?:c(?:(?:allstac|lun|roa)k|ontinue)|dump_(?:function_table|(?:persistent|regular)_resources)|set_(?:s(?:ession(?:_trace)?|ocket_session_trace)|pprof_trace)|breakpoint|echo|get_active_symbols))|r(?:ray(?:_(?:c(?:h(?:ange_key_case|unk)|o(?:mbine|unt_values))|diff(?:_(?:u(?:assoc|key)|assoc|key))?|f(?:il(?:l|ter)|lip)|intersect(?:_(?:u(?:assoc|key)|assoc|key))?|key(?:_exist)?s|m(?:erge(?:_recursive)?|ap|ultisort)|p(?:ad|op|ush)|r(?:e(?:duc|vers)e|and)|s(?:earch|hift|p?lice|um)|u(?:diff(?:_u?assoc)?|intersect(?:_u?assoc)?|n(?:ique|shift))|walk(?:_recursive)?|values))?|sort)|s(?:inh?|pell_(?:check(?:_raw)?|new|suggest)|sert(?:_options)?|cii2ebcdic|ort)|tan[2h]?|bs)|b(?:ase(?:64_(?:de|en)code|_convert|name)|c(?:m(?:od|ul)|ompiler_(?:write_(?:f(?:unction(?:s_from_file)?|ile|ooter)|c(?:lass|onstant)|(?:exe_foot|head)er)|load(?:_exe)?|parse_class|read)|pow(?:mod)?|s(?:cale|qrt|ub)|add|comp|div)|in(?:d(?:_textdomain_codeset|ec|textdomain)|2hex)|z(?:c(?:lose|ompress)|err(?:no|(?:o|st)r)|decompress|flush|open|read|write))|c(?:al(?:_(?:days_in_month|(?:from|to)_jd|info)|l_user_(?:func(?:_array)?|method(?:_array)?))|cvs_(?:a(?:dd|uth)|co(?:mmand|unt)|d(?:elet|on)e|re(?:port|turn|verse)|s(?:ale|tatus)|init|lookup|new|textvalue|void)|h(?:eckd(?:ate|nsrr)|o(?:p|wn)|r(?:oot)?|dir|grp|mod|unk_split)|l(?:ass(?:_(?:exis|(?:implem|par)en)ts|kit_(?:method_(?:re(?:defin|mov|nam)e|add|copy)|import))|ose(?:dir|log)|earstatcache)|o(?:m(?:_(?:get(?:_active_object)?|i(?:nvoke|senum)|load(?:_typelib)?|pr(?:op(?:[gs]e|pu)t|int_typeinfo)|addref|create_guid|event_sink|message_pump|release|set)|pact)?|n(?:nection_(?:aborted|status|timeout)|vert_(?:uu(?:de|en)code|cyr_string)|stant)|sh?|unt(?:_chars)?|py)|pdf_(?:a(?:dd_(?:annotation|outline)|rc)|c(?:l(?:ose(?:path(?:_(?:fill_)?stroke)?)?|ip)|ircle|ontinue_text|urveto)|fi(?:ll(?:_stroke)?|nalize(?:_page)?)|o(?:pen|utput_buffer)|p(?:age_init|lace_inline_image)|r(?:e(?:ct|store)|otate(?:_text)?|(?:lin|mov)eto)|s(?:ave(?:_to_file)?|et(?:_(?:c(?:har_spacing|reator|urrent_page)|font(?:_(?:directories|map_file))?|t(?:ext_(?:r(?:endering|ise)|matrix|pos)|itle)|action_url|(?:horiz_scal|lead|word_spac)ing|(?:keyword|viewer_preference)s|page_animation|subject)|gray(?:_(?:fill|stroke))?|line(?:cap|join|width)|rgbcolor(?:_(?:fill|stroke))?|dash|(?:fla|miterlimi)t)|how(?:_xy)?|tr(?:ingwidth|oke)|cale)|t(?:ext|ranslate)|(?:begin|end)_text|global_set_document_limits|import_jpeg|(?:lin|mov)eto|newpath)|r(?:ack_(?:c(?:heck|losedict)|getlastmessage|opendict)|c32|eate_function|ypt)|type_(?:al(?:num|pha)|p(?:rin|unc)t|cntrl|x?digit|graph|(?:low|upp)er|space)|ur(?:l_(?:c(?:los|opy_handl)e|e(?:rr(?:no|or)|xec)|multi_(?:in(?:fo_read|it)|(?:(?:add|remove)_handl|clos)e|exec|(?:getconten|selec)t)|getinfo|(?:ini|setop)t|version)|rent)|y(?:bercash_(?:base64_(?:de|en)code|(?:de|en)cr)|rus_(?:c(?:lose|onnect)|authenticate|(?:un)?bind|query))|eil)|d(?:ate(?:_sun(?:rise|set))?|b(?:a(?:_(?:f(?:etch|irstkey)|op(?:en|timize)|(?:clos|delet|replac)e|(?:exist|handler)s|(?:inser|key_spli|lis)t|nextkey|popen|sync)|se_(?:c(?:los|reat)e|get_(?:record(?:_with_names)?|header_info)|num(?:fiel|recor)ds|(?:add|(?:delet|replac)e)_record|open|pack))|m(?:f(?:etch|irstkey)|(?:clos|delet|replac)e|exists|insert|nextkey|open)|plus_(?:a(?:dd|ql)|c(?:(?:hdi|ur)r|lose)|err(?:code|no)|f(?:i(?:nd|rst)|ree(?:(?:all|r)locks|lock)|lush)|get(?:lock|unique)|l(?:ast|ockrel)|r(?:c(?:r(?:t(?:exact|like)|eate)|hperm)|es(?:olve|torepos)|keys|open|query|rename|secindex|unlink|zap)|s(?:etindex(?:bynumber)?|avepos|ql)|t(?:cl|remove)|u(?:n(?:do(?:prepare)?|lockrel|select)|pdate)|x(?:un)?lockrel|info|next|open|prev)|x_(?:c(?:o(?:mpare|nnect)|lose)|e(?:rror|scape_string)|fetch_row|query|sort)|list)|cn?gettext|e(?:bug(?:_(?:(?:print_)?backtrace|zval_dump)|ger_o(?:ff|n))|c(?:bin|hex|oct)|fine(?:_syslog_variables|d)?|aggregate|g2rad)|i(?:o_(?:s(?:eek|tat)|t(?:csetattr|runcate)|(?:clos|writ)e|fcntl|open|read)|r(?:name)?|sk(?:_(?:free|total)_space|freespace))|n(?:s_(?:get_(?:mx|record)|check_record)|gettext)|o(?:m(?:xml_(?:open_(?:file|mem)|x(?:slt_stylesheet(?:_(?:doc|file))?|mltree)|new_doc|version)|_import_simplexml)|tnet(?:_load)?|ubleval)|gettext|l)|e(?:a(?:ster_da(?:te|ys)|ch)|r(?:eg(?:i(?:_replace)?|_replace)?|ror_(?:lo|reportin)g)|scapeshell(?:arg|cmd)|x(?:if_(?:t(?:agname|humbnail)|imagetype|read_data)|p(?:lode|m1)?|t(?:ension_loaded|ract)|ec)|bcdic2ascii|mpty|nd|val|zmlm_hash)|f(?:am_(?:c(?:ancel_monitor|lose)|monitor_(?:collection|directory|file)|next_event|open|pending|(?:resume|suspend)_monitor)|bsql_(?:a(?:ffected_rows|utocommit)|c(?:lo(?:b_siz|s)e|o(?:mmi|nnec)t|reate_(?:[bc]lo|d)b|hange_user)|d(?:ata(?:base(?:_password)?|_seek)|b_(?:query|status)|rop_db)|err(?:no|or)|f(?:etch_(?:a(?:rray|ssoc)|field|lengths|object|row)|ield_(?:t(?:abl|yp)e|flags|len|name|seek)|ree_result)|list_(?:db|field|table)s|n(?:um_(?:field|row)s|ext_result)|p(?:assword|connect)|r(?:e(?:ad_[bc]lob|sult)|ollback)|s(?:e(?:t_(?:lob_mode|password|transaction)|lect_db)|t(?:art|op)_db)|(?:blob_siz|(?:host|table|user)nam)e|get_autostart_info|insert_id|query|warnings)|df_(?:add_(?:doc_javascript|template)|c(?:los|reat)e|e(?:rr(?:no|or)|num_values)|get_(?:a(?:p|ttachment)|f(?:ile|lags)|v(?:alue|ersion)|encoding|opt|status)|open(?:_string)?|s(?:ave(?:_string)?|et_(?:f(?:ile|lags)|o(?:n_import_javascri)?pt|s(?:tatus|ubmit_form_action)|v(?:alue|ersion)|ap|encoding|javascript_action|target_frame))|header|next_field_name|remove_item)|get(?:c(?:sv)?|ss?)|ile(?:_(?:exis|(?:ge|pu)t_conten)ts|p(?:ro(?:_(?:field(?:count|(?:nam|typ)e|width)|r(?:etrieve|owcount)))?|erms)|(?:[acm]tim|inod|siz|typ)e|group|owner)?|l(?:o(?:atval|ck|or)|ush)|p(?:ut(?:csv|s)|assthru|rintf)|r(?:e(?:a|nchtoj)d|ibidi_log2vis)|s(?:canf|eek|ockopen|tat)|t(?:p_(?:c(?:h(?:dir|mod)|dup|lose|onnect)|f(?:ge|pu)t|get(?:_option)?|m(?:dtm|kdir)|n(?:b_(?:f(?:ge|pu)t|continue|(?:ge|pu)t)|list)|p(?:asv|ut|wd)|r(?:aw(?:list)?|ename|mdir)|s(?:i[tz]e|et_option|sl_connect|ystype)|(?:allo|exe)c|delete|login|quit)|ell|ok|runcate)|unc(?:_(?:get_args?|num_args)|tion_exists)|(?:clos|writ)e|eof|(?:flus|nmatc)h|mod|open)|g(?:et(?:_(?:c(?:lass(?:_(?:method|var)s)?|(?:fg_va|urrent_use)r)|de(?:clared_(?:class|interfac)es|fined_(?:constant|function|var)s)|h(?:eaders|tml_translation_table)|include(?:_path|d_files)|m(?:agic_quotes_(?:gpc|runtime)|eta_tags)|re(?:quired_files|source_type)|browser|(?:extension_func|loaded_extension|object_var|parent_clas)s)|hostby(?:namel?|addr)|m(?:y(?:[gpu]id|inode)|xrr)|protobyn(?:ame|umber)|r(?:andmax|usage)|servby(?:name|port)|t(?:ext|imeofday|ype)|allheaders|(?:cw|lastmo)d|(?:dat|imagesiz)e|env|opt)|m(?:p_(?:a(?:bs|[dn]d)|c(?:lrbit|mp|om)|div(?:_(?:qr?|r)|exact)?|gcd(?:ext)?|in(?:(?:i|ver)t|tval)|m(?:od|ul)|p(?:o(?:wm?|pcount)|(?:erfect_squar|rob_prim)e)|s(?:can[01]|qrt(?:rem)?|etbit|ign|trval|ub)|(?:fac|hamdis)t|jacobi|legendre|neg|x?or|random)|(?:dat|(?:mk|strf)tim)e)|z(?:c(?:lose|ompress)|e(?:ncode|of)|get(?:ss?|c)|p(?:assthru|uts)|re(?:a|win)d|(?:(?:(?:de|in)fla|wri)t|fil)e|open|seek|tell|uncompress)|d_info|lob|regoriantojd)|h(?:e(?:ader(?:s_(?:lis|sen)t)?|brevc?|xdec)|ighlight_(?:file|string)|t(?:ml(?:_entity_decode|(?:entitie|specialchar)s)|tp_build_query)|w(?:_(?:a(?:pi_(?:attribute|(?:conten|objec)t)|rray2objrec)|c(?:h(?:ildren(?:obj)?|angeobject)|onnect(?:ion_info)?|lose|p)|d(?:oc(?:byanchor(?:obj)?|ument_(?:s(?:etcontent|ize)|attributes|bodytag|content))|eleteobject|ummy)|e(?:rror(?:msg)?|dittext)|get(?:an(?:chors(?:obj)?|dlock)|child(?:coll(?:obj)?|doccoll(?:obj)?)|object(?:byquery(?:coll(?:obj)?|obj)?)?|parents(?:obj)?|re(?:mote(?:children)?|llink)|srcbydestobj|text|username)|i(?:n(?:s(?:ert(?:anchors|(?:documen|objec)t)|coll|doc)|collections|fo)|dentify)|m(?:apid|odifyobject|v)|o(?:bjrec2array|utput_document)|p(?:connec|ipedocumen)t|s(?:etlinkroo|ta)t|(?:(?:free|new)_documen|roo)t|unlock|who)|api_hgcsp)|ypot)|i(?:base_(?:a(?:dd_user|ffected_rows)|b(?:lob_(?:c(?:ancel|(?:los|reat)e)|i(?:mport|nfo)|add|echo|get|open)|ackup)|c(?:o(?:mmit(?:_ret)?|nnect)|lose)|d(?:b_info|elete_user|rop_db)|e(?:rr(?:code|msg)|xecute)|f(?:etch_(?:assoc|object|row)|ree_(?:event_handler|query|result)|ield_info)|m(?:aintain_db|odify_user)|n(?:um_(?:field|param)s|ame_result)|p(?:aram_info|connect|repare)|r(?:ollback(?:_ret)?|estore)|se(?:rv(?:ice_(?:at|de)tach|er_info)|t_event_handler)|t(?:imefmt|rans)|gen_id|query|wait_event)|conv(?:_(?:mime_(?:decode(?:_headers)?|encode)|s(?:tr(?:len|r?pos)|et_encoding|ubstr)|get_encoding))?|d(?:3_(?:get_(?:frame_(?:long|short)_name|genre_(?:id|list|name)|tag|version)|(?:remove|set)_tag)|ate)|fx(?:_(?:b(?:lobinfile_mode|yteasvarchar)|c(?:o(?:nnect|py_blob)|reate_(?:blob|char)|lose)|error(?:msg)?|f(?:ield(?:properti|typ)es|ree_(?:blob|char|result)|etch_row)|get(?:_(?:blob|char)|sqlca)|nu(?:m_(?:field|row)s|llformat)|p(?:connect|repare)|update_(?:blob|char)|affected_rows|do|htmltbl_result|query|textasvarchar)|us_(?:c(?:los|reat)e_slob|(?:(?:fre|writ)e|open|read|seek|tell)_slob))|m(?:a(?:ge(?:_type_to_(?:extension|mime_type)|a(?:lphablending|ntialias|rc)|c(?:har(?:up)?|o(?:lor(?:a(?:llocate(?:alpha)?|t)|closest(?:alpha|hwb)?|exact(?:alpha)?|resolve(?:alpha)?|s(?:et|forindex|total)|deallocate|match|transparent)|py(?:merge(?:gray)?|res(?:ampl|iz)ed)?)|reate(?:from(?:g(?:d(?:2(?:part)?)?|if)|x[bp]m|(?:jpe|(?:p|stri)n)g|wbmp)|truecolor)?)|d(?:ashedline|estroy)|f(?:il(?:l(?:ed(?:arc|(?:ellips|rectangl)e|polygon)|toborder)?|ter)|ont(?:height|width)|t(?:bbox|text))|g(?:d2?|ammacorrect|if)|i(?:nterlace|struecolor)|l(?:(?:ayereffec|oadfon)t|ine)|p(?:s(?:e(?:ncode|xtend)font|bbox|(?:(?:copy|free|load|slant)fon|tex)t)|alettecopy|ng|olygon)|r(?:ectangl|otat)e|s(?:et(?:t(?:hickness|ile)|brush|pixel|style)|tring(?:up)?|avealpha|[xy])|t(?:tf(?:bbox|text)|ruecolortopalette|ypes)|2?wbmp|ellipse|jpeg|xbm)|p_(?:a(?:lerts|ppend)|b(?:ody(?:struct)?|ase64|inary)|c(?:l(?:earflag_full|ose)|heck|reatemailbox)|delete(?:mailbox)?|e(?:rrors|xpunge)|fetch(?:_overview|body|header|structure)|get(?:_quota(?:root)?|acl|mailboxes|subscribed)|header(?:info|s)?|l(?:ist(?:s(?:can|ubscribed)|mailbox)?|ast_error|sub)|m(?:ail(?:_(?:co(?:mpose|py)|move)|boxmsginfo)?|ime_header_decode|sgno)|num_(?:msg|recent)|r(?:e(?:namemailbox|open)|fc822_(?:parse_(?:adrlist|headers)|write_address))|s(?:e(?:t(?:_quota|(?:ac|flag_ful)l)|arch)|canmailbox|ort|tatus|ubscribe)|t(?:hread|imeout)|u(?:n(?:delet|subscrib)e|tf(?:7_(?:de|en)code|8)|id)|(?:8bi|qprin)t|open|ping))|p(?:lode|ort_request_variables))|n(?:et_(?:ntop|pton)|gres_(?:c(?:o(?:mmi|nnec)t|lose)|f(?:etch_(?:array|object|row)|ield_(?:n(?:am|ullabl)e|length|precision|(?:scal|typ)e))|num_(?:field|row)s|(?:autocommi|pconnec)t|query|rollback)|i_(?:alter|get_all|restore)|t(?:erface_exists|val)|_array)|p(?:tc(?:embed|parse)|2long)|rcg_(?:i(?:gnore_(?:add|del)|(?:nvit|s_conn_aliv)e)|l(?:ist|(?:ookup_format_message|user)s)|n(?:ick(?:name_(?:un)?escape)?|ames|otice)|p(?:ar|connec)t|set_(?:current|(?:fil|on_di)e)|who(?:is)?|(?:(?:channel_m|html_enc)od|get_usernam)e|disconnect|(?:eval_ecmascript_param|register_format_message)s|(?:fetch_error_)?msg|join|kick|oper|topic)|s(?:_(?:a(?:rray)?|d(?:ir|ouble)|f(?:i(?:l|nit)e|loat)|in(?:t(?:eger)?|finite)|l(?:ink|ong)|n(?:u(?:ll|meric)|an)|re(?:a(?:dable|l)|source)|s(?:calar|oap_fault|tring|ubclass_of)|write?able|bool|(?:(?:call|execut)ab|uploaded_fi)le|object)|set)|(?:gnore_user_abor|terator_coun)t)|j(?:ava_last_exception_(?:clear|get)|d(?:to(?:j(?:ewish|ulian)|french|gregorian|unix)|dayofweek|monthname)|(?:ewish|ulian)tojd|oin|peg2wbmp)|k(?:ey|r?sort)|l(?:dap_(?:c(?:o(?:mpare|nnect|unt_entries)|lose)|d(?:elete|n2ufn)|e(?:rr(?:(?:2st|o)r|no)|xplode_dn)|f(?:irst_(?:(?:attribut|referenc)e|entry)|ree_result)|get_(?:values(?:_len)?|(?:attribut|entri)es|(?:d|optio)n)|mod(?:_(?:add|del|replace)|ify)|next_(?:(?:attribut|referenc)e|entry)|parse_re(?:ference|sult)|re(?:ad|name)|s(?:e(?:t_(?:option|rebind_proc)|arch)|asl_bind|ort|tart_tls)|8859_to_t61|(?:ad|(?:un)?bin)d|list|t61_to_8859)|i(?:nk(?:info)?|st)|o(?:cal(?:econv|time)|g(?:1[0p])?|ng2ip)|zf_(?:(?:de)?compress|optimized_for)|cg_value|evenshtein|stat|trim)|m(?:a(?:il(?:parse_(?:msg_(?:extract_part(?:_file)?|get_(?:part(?:_data)?|structure)|parse(?:_file)?|(?:creat|fre)e)|determine_best_xfer_encoding|rfc822_parse_addresses|stream_encode|uudecode_all))?|x)|b_(?:convert_(?:case|encoding|kana|variables)|de(?:code_(?:mimeheader|numericentity)|tect_(?:encoding|order))|e(?:ncode_(?:mimeheader|numericentity)|reg(?:_(?:search(?:_(?:get(?:po|reg)s|init|(?:(?:set)?po|reg)s))?|match|replace)|i(?:_replace)?)?)|http_(?:in|out)put|l(?:anguage|ist_encodings)|p(?:arse_str|referred_mime_name)|regex_(?:encoding|set_options)|s(?:tr(?:to(?:low|upp)er|cut|(?:im)?width|len|r?pos)|ubst(?:r(?:_count)?|itute_character)|end_mail|plit)|get_info|internal_encoding|output_handler)|c(?:al_(?:c(?:lose|reate_calendar)|d(?:a(?:te_(?:compare|valid)|y(?:_of_(?:week|year)|s_in_month))|elete_(?:calendar|event))|e(?:vent_(?:set_(?:c(?:ategory|lass)|recur_(?:monthly_[mw]day|(?:dai|week|year)ly|none)|alarm|description|end|start|title)|add_attribute|init)|xpunge)|fetch_(?:current_stream_)?event|list_(?:alarm|event)s|re(?:name_calendar|open)|s(?:nooze|tore_event)|append_event|(?:is_leap|week_of)_year|next_recurrence|p?open|time_valid)|rypt_(?:c(?:bc|fb|reate_iv)|e(?:nc(?:_(?:get_(?:(?:(?:algorithm|mode)s_nam|(?:block|iv|key)_siz)e|supported_key_sizes)|is_block_(?:algorithm(?:_mode)?|mode)|self_test)|rypt)|cb)|ge(?:neric(?:_(?:(?:de)?init|end))?|t_(?:(?:block|iv|key)_siz|cipher_nam)e)|list_(?:algorithm|mode)s|module_(?:get_(?:algo_(?:block|key)_size|supported_key_sizes)|is_block_(?:algorithm(?:_mode)?|mode)|close|open|self_test)|decrypt|ofb)|ve_(?:adduser(?:arg)?|c(?:h(?:eckstatus|(?:k|ng)pwd)|o(?:nnect(?:ionerror)?|mpleteauthorizations))|d(?:e(?:l(?:ete(?:response|trans|usersetup)|user)|stroy(?:conn|engine))|isableuser)|e(?:dit|nable)user|g(?:et(?:c(?:ell(?:bynum)?|ommadelimited)|user(?:arg|param)|header)|[fu]t|l)|i(?:nit(?:conn|engine|usersetup)|scommadelimited)|list(?:stat|user)s|m(?:axconntimeout|onitor)|num(?:column|row)s|p(?:reauth(?:completion)?|arsecommadelimited|ing)|re(?:turn(?:code|status)?|sponseparam)|s(?:et(?:ssl(?:_files)?|t(?:imeout|le)|blocking|dropfile|ip)|ale)|t(?:ext_(?:c(?:ode|v)|avs)|rans(?:action(?:a(?:uth|vs)|i(?:d|tem)|batch|cv|(?:ssen|tex)t)|inqueue|new|param|send))|u(?:b|wait)|v(?:erify(?:connection|sslcert)|oid)|bt|(?:forc|overrid)e|qc))|d(?:5(?:_file)?|ecrypt_generic)|e(?:m(?:cache_debug|ory_get_usage)|t(?:aphone|hod_exists))|hash(?:_(?:get_(?:block_siz|hash_nam)e|count|keygen_s2k))?|i(?:n(?:g_(?:set(?:cubicthreshold|scale)|useswfversion))?|(?:crotim|me_content_typ)e)|k(?:dir|time)|o(?:ney_format|ve_uploaded_file)|s(?:ession_(?:c(?:o(?:nnec|un)t|reate)|d(?:estroy|isconnect)|get(?:_(?:array|data))?|l(?:ist(?:var)?|ock)|set(?:_(?:array|data))?|un(?:iq|lock)|find|inc|plugin|randstr|timeout)|g_(?:re(?:ceiv|move_queu)e|s(?:e(?:nd|t_queue)|tat_queue)|get_queue)|ql(?:_(?:c(?:reate_?db|lose|onnect)|d(?:b(?:_query|name)|ata_seek|rop_db)|f(?:etch_(?:array|field|object|row)|ield(?:_(?:t(?:abl|yp)e|flags|len|name|seek)|t(?:abl|yp)e|flags|len|name)|ree_result)|list_(?:db|field|table)s|num(?:_(?:field|row)s|(?:field|row)s)|re(?:gcase|sult)|affected_rows|error|pconnect|query|select_db|tablename))?|sql_(?:c(?:lose|onnect)|f(?:etch_(?:a(?:rray|ssoc)|batch|field|object|row)|ield_(?:length|(?:nam|typ)e|seek)|ree_(?:resul|statemen)t)|g(?:et_last_message|uid_string)|min_(?:error|message)_severity|n(?:um_(?:field|row)s|ext_result)|r(?:esult|ows_affected)|bind|data_seek|execute|(?:ini|pconnec)t|query|select_db))|t_(?:getrandmax|s?rand)|uscat_(?:g(?:et|ive)|setup(?:_net)?|close)|ysql(?:_(?:c(?:l(?:ient_encoding|ose)|hange_user|onnect|reate_db)|d(?:ata_seek|b_name|rop_db)|e(?:rr(?:no|or)|scape_string)|f(?:etch_(?:a(?:rray|ssoc)|field|lengths|object|row)|ield_(?:t(?:abl|yp)e|flags|len|name|seek)|ree_result)|get_(?:(?:clien|hos)t|proto|server)_info|in(?:fo|sert_id)|list_(?:db|field|(?:process|tabl)e)s|num_(?:field|row)s|p(?:connect|ing)|re(?:al_escape_string|sult)|s(?:elect_db|tat)|t(?:ablename|hread_id)|affected_rows)|i_(?:a(?:ffected_rows|utocommit)|bind_(?:param|result)|c(?:ha(?:nge_user|racter_set_name)|l(?:ient_encoding|ose)|o(?:nnect(?:_err(?:no|or))?|mmit))|d(?:isable_r(?:eads_from_master|pl_parse)|ata_seek|ebug|ump_debug_info)|e(?:nable_r(?:eads_from_master|pl_parse)|rr(?:no|or)|mbedded_connect|scape_string|xecute)|f(?:etch(?:_(?:a(?:rray|ssoc)|field(?:_direct|s)?|lengths|object|row))?|ield_(?:count|seek|tell)|ree_result)|get_(?:client_(?:info|version)|server_(?:info|version)|(?:host|proto)_info|metadata)|in(?:fo|it|sert_id)|n(?:um_(?:field|row)s|ext_result)|p(?:aram_count|ing|repare)|r(?:e(?:al_(?:connect|escape_string)|port)|pl_p(?:arse_enabled|robe)|ollback)|s(?:e(?:rver_(?:end|init)|lect_db|nd_long_data|t_opt)|t(?:mt_(?:bind_(?:param|result)|e(?:rr(?:no|or)|xecute)|f(?:etch|ree_result)|res(?:et|ult_metadata)|s(?:end_long_data|qlstate|tore_result)|(?:affected|num)_rows|close|data_seek|(?:ini|param_coun)t)|(?:a|ore_resul)t)|qlstate|sl_set)|thread_(?:id|safe)|kill|(?:more_result|option)s|(?:use_resul|warning_coun)t)))|n(?:at(?:case)?sort|curses_(?:a(?:dd(?:ch(?:n?str)?|n?str)|ttr(?:o(?:ff|n)|set)|ssume_default_colors)|b(?:kgd(?:set)?|o(?:rder|ttom_panel)|audrate|eep)|c(?:l(?:rto(?:bot|eol)|ear)|olor_(?:conten|se)t|an_change_color|break|urs_set)|d(?:e(?:f(?:_(?:prog|shell)_mode|ine_key)|l(?:_panel|ay_output|ch|(?:etel|wi)n))|oupdate)|e(?:cho(?:char)?|rase(?:char)?|nd)|f(?:l(?:ash|ushinp)|ilter)|get(?:m(?:axyx|ouse)|ch|yx)|h(?:a(?:s_(?:i[cl]|colors|key)|lfdelay)|ide_panel|line)|i(?:n(?:it(?:_(?:colo|pai)r)?|s(?:ch|(?:del|ert)ln|s?tr)|ch)|sendwin)|k(?:ey(?:ok|pad)|illchar)|m(?:o(?:use(?:_trafo|interval|mask)|ve(?:_panel)?)|v(?:add(?:ch(?:n?str)?|n?str)|(?:cu|waddst)r|(?:del|get|in)ch|[hv]line)|eta)|n(?:ew(?:_panel|pad|win)|o(?:cbreak|echo|nl|qiflush|raw)|apms|l)|p(?:a(?:nel_(?:above|(?:bel|wind)ow)|ir_content)|(?:nout)?refresh|utp)|r(?:e(?:set(?:_(?:prog|shell)_mode|ty)|fresh|place_panel)|aw)|s(?:cr(?:_(?:dump|(?:ini|se)t|restore)|l)|lk_(?:attr(?:o(?:ff|n)|set)?|c(?:lea|olo)r|re(?:fresh|store)|(?:ini|se)t|(?:noutrefres|touc)h)|ta(?:nd(?:end|out)|rt_color)|avetty|how_panel)|t(?:erm(?:attrs|name)|imeout|op_panel|ypeahead)|u(?:nget(?:ch|mouse)|se_(?:e(?:nv|xtended_names)|default_colors)|pdate_panels)|v(?:idattr|line)|w(?:a(?:dd(?:ch|str)|ttr(?:o(?:ff|n)|set))|c(?:lear|olor_set)|mo(?:use_trafo|ve)|stand(?:end|out)|border|(?:eras|[hv]lin)e|(?:getc|(?:nout)?refres)h)|longname|qiflush)|l(?:2br|_langinfo)|otes_(?:c(?:reate_(?:db|note)|opy_db)|mark_(?:un)?read|body|drop_db|(?:find_no|nav_crea)te|header_info|list_msgs|search|unread|version)|sapi_(?:re(?:quest|sponse)_headers|virtual)|(?:(?:gett)?ex|umber_forma)t)|o(?:b_(?:end_(?:clean|flush)|g(?:et_(?:c(?:lean|ontents)|le(?:ngth|vel)|flush|status)|zhandler)|i(?:conv_handler|mplicit_flush)|clean|flush|list_handlers|start|tidyhandler)|c(?:i(?:_(?:c(?:o(?:mmi|nnec)t|ancel|lose)|e(?:rror|xecute)|f(?:etch(?:_(?:a(?:ll|rray|ssoc)|object|row))?|ield_(?:s(?:cal|iz)e|type(?:_raw)?|is_null|name|precision)|ree_statement)|lob_(?:copy|is_equal)|n(?:ew_(?:c(?:o(?:llection|nnect)|ursor)|descriptor)|um_(?:field|row)s)|p(?:a(?:rs|ssword_chang)e|connect)|r(?:esult|ollback)|s(?:e(?:rver_version|t_prefetch)|tatement_type)|(?:bind|define)_by_name|internal_debug)|c(?:o(?:l(?:l(?:a(?:ssign(?:elem)?|ppend)|(?:getele|tri)m|max|size)|umn(?:s(?:cal|iz)e|type(?:raw)?|isnull|name|precision))|mmit)|ancel|loselob)|e(?:rror|xecute)|f(?:etch(?:into|statement)?|ree(?:c(?:ollection|ursor)|desc|statement))|lo(?:go(?:ff|n)|adlob)|n(?:ew(?:c(?:ollection|ursor)|descriptor)|logon|umcols)|p(?:arse|logon)|r(?:o(?:llback|wcount)|esult)|s(?:avelob(?:file)?|e(?:rverversion|tprefetch)|tatementtype)|write(?:lobtofile|temporarylob)|(?:bind|define)byname|internaldebug)|tdec)|dbc_(?:c(?:lose(?:_all)?|o(?:lumn(?:privilege)?s|(?:mmi|nnec)t)|ursor)|d(?:ata_source|o)|e(?:rror(?:msg)?|xec(?:ute)?)|f(?:etch_(?:array|into|object|row)|ield_(?:n(?:ame|um)|(?:le|precisio)n|(?:scal|typ)e)|oreignkeys|ree_result)|n(?:um_(?:field|row)s|ext_result)|p(?:r(?:ocedure(?:column)?s|epare|imarykeys)|connect)|r(?:esult(?:_all)?|ollback)|s(?:etoption|(?:pecialcolumn|tatistic)s)|table(?:privilege)?s|autocommit|binmode|gettypeinfo|longreadlen)|pen(?:al_(?:buffer_(?:d(?:ata|estroy)|create|get|loadwav)|context_(?:c(?:reate|urrent)|destroy|process|suspend)|device_(?:close|open)|listener_[gs]et|s(?:ource_(?:p(?:ause|lay)|s(?:et|top)|create|destroy|get|rewind)|tream))|ssl_(?:csr_(?:export(?:_to_file)?|new|sign)|get_p(?:rivate|ublic)key|p(?:k(?:cs7_(?:(?:de|en)crypt|sign|verify)|ey_(?:export(?:_to_file)?|get_p(?:rivate|ublic)|new))|rivate_(?:de|en)crypt|ublic_(?:de|en)crypt)|s(?:eal|ign)|x509_(?:check(?:_private_key|purpose)|export(?:_to_file)?|(?:fre|pars)e|read)|error_string|(?:free_ke|verif)y|open)|dir|log)|r(?:a_(?:c(?:o(?:lumn(?:nam|siz|typ)e|mmit(?:o(?:ff|n))?)|lose)|e(?:rror(?:code)?|xec)|fetch(?:_into)?|logo(?:ff|n)|num(?:col|row)s|p(?:arse|logon)|bind|do|(?:getcolum|ope)n|rollback)|d)|utput_(?:add_rewrite_var|reset_rewrite_vars)|v(?:er(?:load|ride_function)|rimos_(?:c(?:o(?:mmi|nnec)t|lose|ursor)|exec(?:ute)?|f(?:etch_(?:into|row)|ield_(?:n(?:ame|um)|len|type)|ree_result)|num_(?:field|row)s|r(?:esult(?:_all)?|ollback)|longreadlen|prepare)))|p(?:a(?:rse(?:_(?:ini_file|str|url)|kit_(?:compile_(?:file|string)|func_arginfo))|ck|ssthru|thinfo)|c(?:ntl_(?:s(?:etpriority|ignal)|w(?:ait(?:pid)?|if(?:s(?:ignal|topp)ed|exited)|exitstatus|(?:stop|term)sig)|alarm|exec|fork|getpriority)|lose)|df_(?:a(?:dd_(?:l(?:aunch|ocal)link|annotation|(?:bookmar|(?:pdf|web)lin)k|(?:not|outlin)e|thumbnail)|rcn?|ttach_file)|begin_(?:pa(?:ge|ttern)|template)|c(?:l(?:ose(?:_(?:pdi(?:_page)?|image)|path(?:_(?:fill_)?stroke)?)?|ip)|on(?:ca|tinue_tex)t|ircle|urveto)|end(?:_(?:pa(?:ge|ttern)|template)|path)|fi(?:ll(?:_stroke)?|ndfont)|get_(?:font(?:(?:nam|siz)e)?|image_(?:height|width)|m(?:aj|in)orversion|p(?:di_(?:parameter|value)|arameter)|buffer|value)|m(?:akespotcolor|oveto)|open(?:_(?:image(?:_file)?|p(?:di(?:_page)?|ng)|ccitt|(?:fil|memory_imag)e|(?:gi|tif)f|jpeg))?|place_(?:im|pdi_p)age|r(?:e(?:ct|store)|otate)|s(?:et(?:_(?:border_(?:color|dash|style)|info(?:_(?:(?:auth|creat)or|keywords|subject|title))?|text_(?:r(?:endering|ise)|matrix|pos)|(?:(?:char|word)_spac|horiz_scal|lead)ing|duration|font|parameter|value)|f(?:la|on)t|gray(?:_(?:fill|stroke))?|line(?:cap|join|width)|m(?:atrix|iterlimit)|rgbcolor(?:_(?:fill|stroke))?|color|(?:poly)?dash)|how(?:_(?:boxed|xy))?|tr(?:ingwidth|oke)|(?:av|cal)e|kew)|(?:dele|transla)te|initgraphics|lineto|new)|f(?:pro_(?:process(?:_raw)?|cleanup|init|version)|sockopen)|g_(?:c(?:l(?:ient_encoding|ose)|o(?:n(?:nect(?:ion_(?:busy|reset|status))?|vert)|py_(?:from|to))|ancel_query)|d(?:bnam|elet)e|e(?:scape_(?:bytea|string)|nd_copy)|f(?:etch_(?:a(?:ll|rray|ssoc)|r(?:esult|ow)|object)|ield_(?:n(?:ame|um)|is_null|prtlen|(?:siz|typ)e)|ree_result)|get_(?:notify|pid|result)|l(?:ast_(?:error|notice|oid)|o_(?:c(?:los|reat)e|read(?:_all)?|(?:ex|im)port|open|(?:see|unlin)k|tell|write))|num_(?:field|row)s|p(?:arameter_status|(?:connec|or)t|ing|ut_line)|result_(?:s(?:eek|tatus)|error)|se(?:lect|t_client_encoding)|t(?:race|ty)|u(?:n(?:escape_bytea|trace)|pdate)|(?:affected_row|option)s|(?:hos|inser)t|meta_data|version)|hp(?:_(?:s(?:tr(?:eam_(?:c(?:a(?:n_ca)?st|lose(?:dir)?|opy_to_(?:me|strea)m)|f(?:ilter_(?:un)?register_factory|open_(?:t(?:emporary_|mp)file|from_file)|lush)|get[cs]|is(?:_persistent)?|open(?:_wrapper(?:_(?:as_file|ex))?|dir)|re(?:ad(?:dir)?|winddir)|s(?:ock_open_(?:(?:from_socke|hos)t|unix)|tat(?:_path)?|eek)|eof|(?:make_seekabl|writ)e|passthru|tell)|ip_whitespace)|api_name)|un(?:ame|register_url_stream_wrapper)|check_syntax|ini_scanned_files|logo_guid|register_url_stream_wrapper)|credits|info|version)|o(?:s(?:ix_(?:get(?:e[gu]id|g(?:r(?:gid|nam|oups)|id)|p(?:g(?:id|rp)|w(?:nam|uid)|p?id)|_last_error|(?:cw|[su]i)d|login|rlimit)|s(?:et(?:e[gu]id|(?:p?g|[su])id)|trerror)|t(?:imes|tyname)|ctermid|isatty|kill|mkfifo|uname))?|pen|w)|r(?:e(?:g_(?:match(?:_all)?|replace(?:_callback)?|grep|quote|split)|v)|int(?:er_(?:c(?:reate_(?:brush|dc|font|pen)|lose)|d(?:elete_(?:brush|dc|font|pen)|raw_(?:r(?:ectangle|oundrect)|bmp|chord|(?:elips|lin|pi)e|text))|end_(?:doc|page)|l(?:is|ogical_fontheigh)t|s(?:e(?:lect_(?:brush|font|pen)|t_option)|tart_(?:doc|page))|abort|(?:get_optio|ope)n|write)|_r|f)|oc_(?:(?:clos|nic|terminat)e|get_status|open))|spell_(?:add_to_(?:personal|session)|c(?:onfig_(?:d(?:ata|ict)_dir|r(?:epl|untogether)|(?:creat|ignor|mod)e|(?:persona|save_rep)l)|heck|lear_session)|new(?:_(?:config|personal))?|s(?:(?:ave_wordli|ugge)s|tore_replacemen)t)|i|ng2wbmp|utenv)|q(?:dom_(?:error|tree)|uote(?:d_printable_decode|meta))|r(?:a(?:n(?:d|ge)|r_(?:close|(?:entry_ge|lis)t|open)|wurl(?:de|en)code|d2deg)|e(?:a(?:d(?:lin(?:e(?:_(?:c(?:allback_(?:handler_(?:install|remove)|read_char)|lear_history|ompletion_function)|re(?:ad_histor|displa)y|(?:add|list|write)_history|info|on_new_line))?|k)|_exif_data|dir|(?:gz)?file)|lpath)|code(?:_(?:file|string))?|gister_(?:shutdown|tick)_function|name(?:_function)?|s(?:tore_(?:e(?:rror|xception)_handler|include_path)|et)|wind(?:dir)?|turn)|mdir|ound|sort|trim)|s(?:e(?:m_(?:re(?:leas|mov)e|acquire|get)|s(?:am_(?:co(?:mmi|nnec)t|di(?:agnostic|sconnect)|e(?:rrormsg|xecimm)|f(?:etch_(?:r(?:esult|ow)|array)|ield_(?:array|name)|ree_result)|se(?:ek_row|ttransaction)|(?:affected_row|num_field)s|query|rollback)|sion_(?:c(?:ache_(?:expire|limiter)|ommit)|de(?:code|stroy)|i(?:s_registere)?d|reg(?:enerate_id|ister)|s(?:et_(?:cookie_params|save_handler)|ave_path|tart)|un(?:register|set)|(?:encod|(?:module_)?nam|write_clos)e|get_cookie_params))|t(?:_(?:e(?:rror|xception)_handler|file_buffer|include_path|magic_quotes_runtime|time_limit)|(?:(?:raw)?cooki|local|typ)e)|rialize)|h(?:a1(?:_file)?|m(?:_(?:remove(?:_var)?|(?:at|de)tach|(?:ge|pu)t_var)|op_(?:(?:clos|(?:dele|wri)t|siz)e|open|read))|ell_exec|(?:ow_sourc|uffl)e)|i(?:m(?:plexml_(?:load_(?:file|string)|import_dom)|ilar_text)|nh?|zeof)|nmp(?:_(?:get_(?:quick_print|valueretrieval)|set_(?:(?:enum|oid_numeric|quick)_print|valueretrieval)|read_mib)|get(?:next)?|walk(?:oid)?|realwalk|set)|o(?:cket_(?:c(?:l(?:ear_error|ose)|reate(?:_(?:listen|pair))?|onnect)|get(?:_(?:option|status)|(?:peer|sock)name)|l(?:ast_error|isten)|re(?:cv(?:from)?|ad)|s(?:e(?:nd(?:to)?|t_(?:block(?:ing)?|nonblock|option|timeout)|lect)|hutdown|trerror)|accept|bind|write)|rt|undex)|p(?:l(?:iti?|_classes)|rintf)|q(?:l(?:ite_(?:c(?:reate_(?:aggregate|function)|hanges|lose|olumn|urrent)|e(?:rror|scape)_string|f(?:etch_(?:a(?:ll|rray)|s(?:ingle|tring)|column_types|object)|actory|ield_name)|has_(?:more|prev)|l(?:ast_(?:error|insert_rowid)|ib(?:encoding|version))|n(?:um_(?:field|row)s|ext)|p(?:open|rev)|udf_(?:de|en)code_binary|busy_timeout|open|rewind|seek)|_regcase)|rt)|s(?:h2_(?:auth_(?:p(?:assword|ubkey_file)|none)|f(?:etch_stream|ingerprint)|s(?:cp_(?:recv|send)|ftp(?:_(?:r(?:e(?:a(?:dlink|lpath)|name)|mdir)|s(?:tat|ymlink)|lstat|mkdir|unlink))?|hell)|connect|exec|methods_negotiated|tunnel)|canf)|t(?:r(?:_(?:r(?:ep(?:eat|lace)|ot13)|s(?:huffle|plit)|ireplace|pad|word_count)|c(?:(?:asec)?mp|hr|oll|spn)|eam_(?:co(?:ntext_(?:get_(?:default|options)|set_(?:option|params)|create)|py_to_stream)|filter_(?:re(?:gister|move)|(?:ap|pre)pend)|get_(?:(?:(?:conten|transpor)t|(?:filt|wrapp)er)s|line|meta_data)|s(?:e(?:t_(?:blocking|timeout|write_buffer)|lect)|ocket_(?:se(?:ndto|rver)|(?:accep|clien)t|enable_crypto|get_name|pair|recvfrom))|wrapper_(?:re(?:gister|store)|unregister)|register_wrapper)|i(?:p(?:_tag|c?slashe|o)s|str)|n(?:atc(?:asec)?mp|c(?:asec)?mp)|p(?:brk|os|time)|r(?:chr|ev|i?pos)|s(?:pn|tr)|t(?:o(?:k|(?:low|upp)er|time)|r)|ftime|len|val)|at)|ubstr(?:_(?:co(?:mpare|unt)|replace))?|wf(?:_(?:a(?:ction(?:g(?:oto(?:frame|label)|eturl)|p(?:lay|revframe)|s(?:ettarget|top)|(?:next|waitfor)frame|togglequality)|dd(?:buttonrecord|color))|define(?:bitmap|(?:fon|rec|tex)t|line|poly)|end(?:s(?:hape|ymbol)|(?:butt|doacti)on)|font(?:s(?:ize|lant)|tracking)|get(?:f(?:ontinfo|rame)|bitmapinfo)|l(?:abelframe|ookat)|m(?:odifyobject|ulcolor)|o(?:rtho2?|ncondition|penfile)|p(?:o(?:larview|pmatrix|sround)|erspective|laceobject|ushmatrix)|r(?:emoveobject|otate)|s(?:etf(?:ont|rame)|h(?:ape(?:curveto3?|fill(?:bitmap(?:clip|tile)|off|solid)|line(?:solid|to)|arc|moveto)|owframe)|tart(?:s(?:hape|ymbol)|(?:butt|doacti)on)|cale)|t(?:extwidth|ranslate)|closefile|nextid|viewport)|b(?:utton(?:_keypress)?|itmap)|f(?:ill|ont)|mo(?:rph|vie)|s(?:hap|prit)e|text(?:field)?|action|displayitem|gradient)|y(?:base_(?:c(?:lose|onnect)|d(?:ata_seek|eadlock_retry_count)|f(?:etch_(?:a(?:rray|ssoc)|field|object|row)|ield_seek|ree_result)|min_(?:client|(?:erro|serve)r|message)_severity|num_(?:field|row)s|se(?:lect_db|t_message_handler)|affected_rows|get_last_message|(?:pconnec|resul)t|(?:unbuffered_)?query)|s(?:log|tem)|mlink)|candir|leep|rand)|t(?:anh?|e(?:mpnam|xtdomain)|i(?:dy_(?:c(?:lean_repair|onfig_count)|get(?:_(?:h(?:tml(?:_ver)?|ead)|r(?:elease|oot)|body|config|error_buffer|output|status)|opt)|is_x(?:ht)?ml|parse_(?:file|string)|re(?:pair_(?:file|string)|set_config)|s(?:et(?:_encoding|opt)|ave_config)|(?:access|error|warning)_count|diagnose|load_config)|me(?:_nanosleep)?)|o(?:ken_(?:get_all|name)|uch)|ri(?:gger_error|m)|cpwrap_check|mpfile)|u(?:c(?:first|words)|dm_(?:a(?:lloc_agent(?:_array)?|dd_search_limit|pi_version)|c(?:at_(?:list|path)|heck_(?:charset|stored)|l(?:ear_search_limits|ose_stored)|rc32)|err(?:no|or)|f(?:ree_(?:agent|ispell_data|res)|ind)|get_(?:res_(?:field|param)|doc_count)|hash32|load_ispell_data|open_stored|set_agent_param)|n(?:i(?:qi|xtoj)d|se(?:rialize|t)|(?:lin|pac)k|register_tick_function)|rl(?:de|en)code|s(?:er_error|leep|ort)|tf8_(?:de|en)code|[ak]sort|mask)|v(?:ar(?:_(?:dump|export)|iant(?:_(?:a(?:bs|[dn]d)|c(?:as?t|mp)|d(?:ate_(?:from|to)_timestamp|iv)|i(?:div|mp|nt)|m(?:od|ul)|n(?:eg|ot)|s(?:et(?:_type)?|ub)|eqv|fix|get_type|x?or|pow|round))?)|p(?:opmail_(?:a(?:dd_(?:alias_domain(?:_ex)?|domain(?:_ex)?|user)|lias_(?:del(?:_domain)?|get(?:_all)?|add)|uth_user)|del_(?:domain(?:_ex)?|user)|error|passwd|set_user_quota)|rintf)|ersion_compare|[fs]printf|irtual)|w(?:32api_(?:in(?:it_dtype|voke_function)|deftype|register_function|set_call_method)|ddx_(?:packet_(?:end|start)|serialize_va(?:lue|rs)|add_vars|deserialize)|ordwrap)|x(?:attr_(?:s(?:et|upported)|(?:ge|lis)t|remove)|diff_(?:file_(?:diff(?:_binary)?|patch(?:_binary)?|merge3)|string_(?:diff(?:_binary)?|patch(?:_binary)?|merge3))|ml(?:_(?:get_(?:current_(?:byte_index|(?:column|line)_number)|error_code)|parse(?:r_(?:create(?:_ns)?|free|[gs]et_option)|_into_struct)?|set_(?:e(?:lement|nd_namespace_decl|xternal_entity_ref)_handler|(?:character_data|default|(?:notation|start_namespace|unparsed_entity)_decl|processing_instruction)_handler|object)|error_string)|rpc_(?:decode(?:_request)?|encode(?:_request)?|se(?:rver_(?:c(?:all_method|reate)|register_(?:introspection_callback|method)|add_introspection_data|destroy)|t_type)|get_type|is_fault|parse_method_descriptions))|p(?:ath_(?:eval(?:_expression)?|new_context)|tr_(?:eval|new_context))|sl(?:_xsltprocessor_(?:re(?:gister_php_functions|move_parameter)|transform_to_(?:doc|uri|xml)|[gs]et_parameter|(?:has_exslt_suppor|import_styleshee)t)|t_(?:backend_(?:info|name|version)|err(?:no|or)|set(?:_(?:e(?:ncoding|rror_handler)|s(?:ax_handlers?|cheme_handlers?)|base|log|object)|opt)|(?:creat|fre)e|getopt|process)))|y(?:az_(?:c(?:cl_(?:conf|parse)|lose|onnect)|e(?:rr(?:no|or)|(?:lemen|s_resul)t)|r(?:ange|ecord)|s(?:c(?:an(?:_result)?|hema)|e(?:arch|t_option)|ort|yntax)|addinfo|database|get_option|hits|itemorder|(?:presen|wai)t)|p_(?:err(?:_string|no)|ma(?:ster|tch)|all|(?:ca|firs|nex)t|get_default_domain|order))|z(?:end_(?:logo_guid|version)|ip_(?:entry_(?:c(?:ompress(?:edsize|ionmethod)|lose)|(?:filesiz|nam)e|open|read)|close|open|read)|lib_get_coding_type))|(socket_getopt)|(socket_setopt))(\s*(?:\(|$)))/gi, // collisions - while + phpini: /\b(disable_classes|disable_functions|open_basedir|safe_mode_allowed_env_vars|safe_mode_exec_dir|safe_mode_gid|safe_mode_include_dir|safe_mode_protected_env_vars|safe_mode|(allow_call_time_pass_reference|always_populate_raw_post_data|arg_separator\.input|arg_separator\.output|asp_tags|auto_append_file|auto_globals_jit|auto_prepend_file|cgi\.fix_pathinfo|cgi\.force_redirect|cgi\.check_shebang_line|cgi\.redirect_status_env|cgi\.rfc2616_headers|default_charset|default_mimetype|doc_root|expose_php|extension_dir|fastcgi\.impersonate|file_uploads|include_path|memory_limit|post_max_size|precision|register_argc_argv|register_globals|register_long_arrays|short_open_tag|sql\.safe_mode|upload_max_filesize|upload_tmp_dir|user_dir|variables_order|y2k_compliance|zend\.ze1_compatibility_mode)|(engine|child_terminate|last_modified|xbithack)|(apc\.cache_by_default|apc\.enable_cli|apc\.enabled|apc\.file_update_protection|apc\.filters|apc\.gc_ttl|apc\.mmap_file_mask|apc\.num_files_hint|apc\.optimization|apc\.shm_segments|apc\.shm_size|apc\.slam_defense|apc\.ttl)|(apd\.dumpdir|apd\.statement_tracing)|(bcmath\.scale)|(com\.allow_dcom|com\.autoregister_casesensitive|com\.autoregister_typelib|com\.autoregister_verbose|com\.code_page|com\.typelib_file)|(date\.default_latitude|date\.default_longitude|date\.sunrise_zenith|date\.sunset_zenith|date\.timezone)|(dbx\.colnames_case)|(display_errors|display_startup_errors|docref_ext|docref_root|error_append_string|error_log|error_prepend_string|error_reporting|html_errors|ignore_repeated_errors|ignore_repeated_source|log_errors_max_len|log_errors|report_memleaks|track_errors)|(exif\.decode_jis_intel|exif\.decode_jis_motorola|exif\.decode_unicode_intel|exif\.decode_unicode_motorola|exif\.encode_jis|exif\.encode_unicode)|(expect\.logfile|expect\.loguser|expect\.timeout)|(allow_url_fopen|allow_url_include|auto_detect_line_endings|default_socket_timeout|from|user_agent)|(ibase\.allow_persistent|ibase\.dateformat|ibase\.default_db|ibase\.default_charset|ibase\.default_password|ibase\.default_user|ibase\.max_links|ibase\.max_persistent|ibase\.timeformat|ibase\.timestampformat)|(ibm_db2\.binmode|ibm_db2\.instance_name)|(ifx\.allow_persistent|ifx\.blobinfile|ifx\.byteasvarchar|ifx\.default_host|ifx\.default_password|ifx\.default_user|ifx\.charasvarchar|ifx\.max_links|ifx\.max_persistent|ifx\.nullformat|ifx\.textasvarchar)|(gd.jpeg_ignore_warning)|(assert\.active|assert\.bail|assert\.callback|assert\.quiet_eval|assert\.warning|enable_dl|magic_quotes_gpc|magic_quotes_runtime|max_execution_time|max_input_nesting_level|max_input_time)|(sendmail_from|sendmail_path|smtp_port)|(SMTP)|(maxdb\.default_db|maxdb\.default_host|maxdb\.default_pw|maxdb\.default_user|maxdb\.long_readlen)|(mbstring\.detect_order|mbstring\.encoding_translation|mbstring\.func_overload|mbstring\.http_input|mbstring\.http_output|mbstring\.internal_encoding|mbstring\.language|mbstring\.substitute_character)|(mime_magic\.debug|mime_magic\.magicfile)|(browscap|ignore_user_abort)|(highlight.bg|highlight.comment|highlight.default|highlight.html|highlight.keyword|highlight.string)|(msql\.allow_persistent|msql\.max_links|msql\.max_persistent)|(mysql\.allow_persistent|mysql\.connect_timeout|mysql\.default_host|mysql\.default_password|mysql\.default_port|mysql\.default_socket|mysql\.default_user|mysql\.max_links|mysql\.max_persistent|mysql\.trace_mode)|(mysqli\.default_host|mysqli\.default_port|mysqli\.default_pw|mysqli\.default_socket|mysqli\.default_user|mysqli\.max_links)|(define_syslog_variables)|(nsapi\.read_timeout)|(oci8\.default_prefetch|oci8\.max_persistent|oci8\.old_oci_close_semantics|oci8\.persistent_timeout|oci8\.ping_interval|oci8\.privileged_connect|oci8\.statement_cache_size)|(implicit_flush|output_buffering|output_handler)|(pcre\.backtrack_limit|pcre\.recursion_limit)|(pdo_odbc\.connection_pooling|pdo_odbc\.db2_instance_name)|(pgsql\.allow_persistent|pgsql\.auto_reset_persistent|pgsql\.ignore_notice|pgsql\.log_notice|pgsql\.max_links|pgsql\.max_persistent)|(runkit\.superglobal)|(session\.auto_start|session\.bug_compat_42|session\.bug_compat_warn|session\.cache_expire|session\.cache_limiter|session\.cookie_domain|session\.cookie_httponly|session\.cookie_lifetime|session\.cookie_path|session\.cookie_secure|session\.entropy_file|session\.entropy_length|session\.gc_divisor|session\.gc_maxlifetime|session\.gc_probability|session\.hash_bits_per_character|session\.hash_function|session\.name|session\.referer_check|session\.save_handler|session\.save_path|session\.serialize_handler|session\.use_cookies|session\.use_only_cookies|session\.use_trans_sid|url_rewriter\.tags)|(soap\.wsdl_cache_dir|soap\.wsdl_cache_enabled|soap\.wsdl_cache_limit|soap\.wsdl_cache_ttl)|(sqlite\.assoc_case)|(magic_quotes_sybase|sybase\.allow_persistent|sybase\.compatability_mode|sybase\.max_links|sybase\.max_persistent|sybase\.min_error_severity|sybase\.min_message_severity|sybct\.allow_persistent|sybct\.deadlock_retry_count|sybct\.hostname|sybct\.login_timeout|sybct\.max_links|sybct\.max_persistent|sybct\.min_client_severity|sybct\.min_server_severity|sybct\.timeout)|(tidy\.clean_output|tidy\.default_config)|(unicode\.output_encoding)|(odbc.allow_persistent|odbc.default_db|odbc.default_pw|odbc.default_user|odbc.defaultbinmode|odbc.defaultlrl|odbc.check_persistent|odbc.max_links|odbc.max_persistent)|(zlib\.output_compression_level|zlib\.output_compression|zlib\.output_handler))\b/g, + py: /\b(open|open_new|open_new_tab|(__import__|abs|all|any|basestring|bool|callable|chr|classmethod|cmp|compile|complex|delattr|dict|dir|divmod|enumerate|eval|execfile|file|filter|float|frozenset|getattr|globals|hasattr|hash|help|hex|id|input|int|isinstance|issubclass|iter|len|list|locals|long|map|max|min|object|oct|open|ord|pow|property|range|raw_input|reduce|reload|repr|reversed|round|set|setattr|slice|sorted|staticmethod|str|sum|super|tuple|type|type|unichr|unicode|vars|xrange|zip)|(reader|writer|register_dialect|unregister_dialect|get_dialect|list_dialects|field_size_limit)|(callable)|(CFUNCTYPE|WINFUNCTYPE|PYFUNCTYPE|prototype|prototype|prototype|prototype)|(addressof|alignment|byref|cast|create_string_buffer|create_unicode_buffer|DllCanUnloadNow|DllGetClassObject|FormatError|GetLastError|memmove|memset|POINTER|pointer|resize|set_conversion_mode|sizeof|string_at|WinError|wstring_at)|(baudrate|beep|can_change_color|cbreak|color_content|color_pair|curs_set|def_prog_mode|def_shell_mode|delay_output|doupdate|echo|endwin|erasechar|filter|flash|flushinp|getmouse|getsyx|getwin|has_colors|has_ic|has_il|has_key|halfdelay|init_color|init_pair|initscr|isendwin|keyname|killchar|longname|meta|mouseinterval|mousemask|napms|newpad|newwin|nl|nocbreak|noecho|nonl|noqiflush|noraw|pair_content|pair_number|putp|qiflush|raw|reset_prog_mode|reset_shell_mode|setsyx|setupterm|start_color|termattrs|termname|tigetflag|tigetnum|tigetstr|tparm|typeahead|unctrl|ungetch|ungetmouse|use_env|use_default_colors)|(bottom_panel|new_panel|top_panel|update_panels)|(getcontext|setcontext|localcontext)|(defaultdict)|(deque)|(testfile|testmod|run_docstring_examples)|(script_from_examples|testsource|debug|debug_src)|(register_optionflag)|(DocFileSuite|DocTestSuite|set_unittest_reportflags)|(Comment|dump|Element|fromstring|iselement|iterparse|parse|ProcessingInstruction|SubElement|tostring|XML|XMLID)|(getclasstree|getargspec|getargvalues|formatargspec|formatargvalues|getmro)|(getdoc|getcomments|getfile|getmodule|getsourcefile|getsourcelines|getsource)|(getframeinfo|getouterframes|getinnerframes|currentframe|stack|trace)|(getmembers|getmoduleinfo|getmodulename|ismodule|isclass|ismethod|isfunction|istraceback|isframe|iscode|isbuiltin|isroutine|ismethoddescriptor|isdatadescriptor|isgetsetdescriptor|ismemberdescriptor)|(chain|count|cycle|dropwhile|groupby|ifilter|ifilterfalse|imap|islice|izip|repeat|starmap|takewhile|tee)|(fileConfig|listen|stopListening)|(CloseKey|ConnectRegistry|CreateKey|DeleteKey|DeleteValue|EnumKey|EnumValue|FlushKey|RegLoadKey|OpenKey|OpenKeyEx|QueryInfoKey|QueryValue|QueryValueEx|SaveKey|SetValue|SetValueEx)|(Bastion)|(open)|(openport|newconfig|queryparams|getparams|setparams)|(open)|(array)|(loop)|(register)|(add|adpcm2lin|alaw2lin|avg|avgpp|bias|cross|findfactor|findfit|findmax|getsample|lin2adpcm|lin2alaw|lin2lin|lin2ulaw|minmax|max|maxpp|mul|ratecv|reverse|rms|tomono|tostereo|ulaw2lin)|(b64encode|b64decode|standard_b64encode|standard_b64decode|urlsafe_b64encode|urlsafe_b64decode|b32encode|b32decode|b16encode|b16decode|decode|decodestring|encode|encodestring)|(a2b_uu|b2a_uu|a2b_base64|b2a_base64|a2b_qp|b2a_qp|a2b_hqx|rledecode_hqx|rlecode_hqx|b2a_hqx|crc_hqx|crc32|b2a_hex|hexlify|a2b_hex|unhexlify)|(binhex|hexbin)|(bisect_left|bisect_right|bisect|insort_left|insort_right|insort)|(hashopen|btopen|rnopen)|(setfirstweekday|firstweekday|isleap|leapdays|weekday|weekheader|monthrange|monthcalendar|prmonth|month|prcal|calendar|timegm)|(createparser|msftoframe|open)|(enable|handler)|(acos|acosh|asin|asinh|atan|atanh|cos|cosh|exp|log|log10|sin|sinh|sqrt|tan|tanh)|(interact|compile_command)|(register|lookup|getencoder|getdecoder|getincrementalencoder|getincrementaldecoder|getreader|getwriter|register_error|lookup_error|strict_errors|replace_errors|ignore_errors|xmlcharrefreplace_errors_errors|backslashreplace_errors_errors|open|EncodedFile|iterencode|iterdecode)|(compile_command)|(rgb_to_yiq|yiq_to_rgb|rgb_to_hls|hls_to_rgb|rgb_to_hsv|hsv_to_rgb)|(getstatusoutput|getoutput|getstatus)|(compile_dir|compile_path)|(parse|parseFile|walk|compile|compileFile)|(walk)|(contextmanager|nested|closing)|(constructor|pickle)|(crypt)|(isalnum|isalpha|isascii|isblank|iscntrl|isdigit|isgraph|islower|isprint|ispunct|isspace|isupper|isxdigit|isctrl|ismeta|ascii|ctrl|alt|unctrl)|(rectangle)|(wrapper)|(open)|(open)|(__init__|make_file|make_table|context_diff|get_close_matches|ndiff|restore|unified_diff|IS_LINE_JUNK|IS_CHARACTER_JUNK)|(reset|listdir|opendir|annotate)|(dis|distb|disassemble|disco)|(open)|(open)|(add_charset|add_alias|add_codec)|(encode_quopri|encode_base64|encode_7or8bit|encode_noop)|(decode_header|make_header)|(body_line_iterator|typed_subpart_iterator|_structure)|(quote|unquote|parseaddr|formataddr|getaddresses|parsedate|parsedate_tz|mktime_tz|formatdate|make_msgid|decode_rfc2231|encode_rfc2231|collapse_rfc2231_value|decode_params)|(nameprep|ToASCII|ToUnicode)|(fcntl|ioctl|flock|lockf)|(cmp|cmpfiles)|(input|filename|fileno|lineno|filelineno|isfirstline|isstdin|nextfile|close|hook_compressed|hook_encoded)|(init|findfont|enumerate|prstr|setpath|fontpath|scalefont|setfont|getfontname|getcomment|getfontinfo|getstrwidth)|(fnmatch|fnmatchcase|filter)|(turnon_sigfpe|turnoff_sigfpe)|(fix|sci)|(partial|update_wrapper|wraps)|(enable|disable|isenabled|collect|set_debug|get_debug|get_objects|set_threshold|get_count|get_threshold|get_referrers|get_referents)|(open|firstkey|nextkey|reorganize|sync)|(getopt|gnu_getopt)|(getpass|getuser)|(varray|nvarray|vnarray|nurbssurface|nurbscurve|pwlcurve|pick|select|endpick|endselect)|(glob|iglob)|(send_selector|send_query)|(getgrgid|getgrnam|getgrall)|(open)|(heappush|heappop|heapify|heapreplace|nlargest|nsmallest)|(new)|(load)|(crop|scale|tovideo|grey2mono|dither2mono|mono2grey|grey2grey4|grey2grey2|dither2grey2|grey42grey|grey22grey)|(Internaldate2tuple|Int2AP|ParseFlags|Time2Internaldate)|(getsizes|read|readscaled|ttob|write)|(what)|(get_magic|get_suffixes|find_module|load_module|new_module|lock_held|acquire_lock|release_lock|init_builtin|init_frozen|is_builtin|is_frozen|load_compiled|load_dynamic|load_source)|(compress|decompress|setoption)|(iskeyword)|(getline|clearcache|checkcache)|(setlocale|localeconv|nl_langinfo|getdefaultlocale|getlocale|getpreferredencoding|normalize|resetlocale|strcoll|strxfrm|format|format_string|currency|str|atof|atoi)|(getLogger|getLoggerClass|debug|info|warning|error|critical|exception|log|disable|addLevelName|getLevelName|makeLogRecord|basicConfig|shutdown|setLoggerClass)|(findmatch|getcaps)|(dump|load|dumps|loads)|(ceil|fabs|floor|fmod|frexp|ldexp|modf|exp|log|log10|pow|sqrt|acos|asin|atan|atan2|cos|hypot|sin|tan|degrees|radians|cosh|sinh|tanh)|(new|md5)|(choose_boundary|decode|encode|copyliteral|copybinary)|(guess_type|guess_all_extensions|guess_extension|init|read_mime_types|add_type)|(mimify|unmimify|mime_decode_header|mime_encode_header)|(mmap|mmap)|(AddPackagePath|ReplacePackage)|(FCICreate|UUIDCreate|OpenDatabase|CreateRecord|init_database|add_data|add_tables|add_stream|gen_uuid)|(instance|instancemethod|function|code|module|classobj)|(match|cat|maps|get_default_domain)|(lt|le|eq|ne|ge|gt|__lt__|__le__|__eq__|__ne__|__ge__|__gt__|not_|__not__|truth|is_|is_not|abs|__abs__|add|__add__|and_|__and__|div|__div__|floordiv|__floordiv__|inv|invert|__inv__|__invert__|lshift|__lshift__|mod|__mod__|mul|__mul__|neg|__neg__|or_|__or__|pos|__pos__|pow|__pow__|rshift|__rshift__|sub|__sub__|truediv|__truediv__|xor|__xor__|index|__index__|concat|__concat__|contains|__contains__|countOf|delitem|__delitem__|delslice|__delslice__|getitem|__getitem__|getslice|__getslice__|indexOf|repeat|__repeat__|sequenceIncludes|setitem|__setitem__|setslice|__setslice__|iadd|__iadd__|iand|__iand__|iconcat|__iconcat__|idiv|__idiv__|ifloordiv|__ifloordiv__|ilshift|__ilshift__|imod|__imod__|imul|__imul__|ior|__ior__|ipow|__ipow__|irepeat|__irepeat__|irshift|__irshift__|isub|__isub__|itruediv|__itruediv__|ixor|__ixor__|isCallable|isMappingType|isNumberType|isSequenceType|attrgetter|itemgetter)|(abspath|basename|commonprefix|dirname|exists|lexists|expanduser|expandvars|getatime|getmtime|getctime|getsize|isabs|isfile|isdir|islink|ismount|join|normcase|normpath|realpath|samefile|sameopenfile|samestat|split|splitdrive|splitext|splitunc|walk)|(open|openmixer)|(run|runeval|runcall|set_trace|post_mortem|pm)|(dis|genops)|(extend_path)|(popen2|popen3|popen4)|(open|fileopen|lock|flags|dup|dup2|file)|(pformat|pprint|isreadable|isrecursive|saferepr)|(run|runctx)|(fork|openpty|spawn)|(getpwuid|getpwnam|getpwall)|(readmodule|readmodule_ex)|(compile|main)|(decode|encode|decodestring|encodestring)|(seed|getstate|setstate|jumpahead|getrandbits|randrange|randint|choice|shuffle|sample|random|uniform|betavariate|expovariate|gammavariate|gauss|lognormvariate|normalvariate|vonmisesvariate|paretovariate|weibullvariate|whseed)|(parse_and_bind|get_line_buffer|insert_text|read_init_file|read_history_file|write_history_file|clear_history|get_history_length|set_history_length|get_current_history_length|get_history_item|remove_history_item|replace_history_item|redisplay|set_startup_hook|set_pre_input_hook|set_completer|get_completer|get_begidx|get_endidx|set_completer_delims|get_completer_delims|add_history)|(repr)|(quote|unquote|parseaddr|dump_address_pair|parsedate|parsedate_tz|mktime_tz)|(sizeofimage|longimagedata|longstoimage|ttob)|(run_module)|(poll|select)|(new)|(open)|(split)|(copyfile|copyfileobj|copymode|copystat|copy|copy2|copytree|rmtree|move)|(alarm|getsignal|pause|signal)|(what|whathdr)|(getaddrinfo|getfqdn|gethostbyname|gethostbyname_ex|gethostname|gethostbyaddr|getnameinfo|getprotobyname|getservbyname|getservbyport|socket|ssl|socketpair|fromfd|ntohl|ntohs|htonl|htons|inet_aton|inet_ntoa|inet_pton|inet_ntop|getdefaulttimeout|setdefaulttimeout)|(getspnam|getspall)|(S_ISDIR|S_ISCHR|S_ISBLK|S_ISREG|S_ISFIFO|S_ISLNK|S_ISSOCK|S_IMODE|S_IFMT)|(in_table_a1|in_table_b1|map_table_b2|map_table_b3|in_table_c11|in_table_c12|in_table_c11_c12|in_table_c21|in_table_c22|in_table_c21_c22|in_table_c3|in_table_c4|in_table_c5|in_table_c6|in_table_c7|in_table_c8|in_table_c9|in_table_d1|in_table_d2)|(pack|unpack|calcsize)|(open|openfp)|(open)|(_current_frames|displayhook|excepthook|exc_info|exc_clear|exit|getcheckinterval|getdefaultencoding|getdlopenflags|getfilesystemencoding|getrefcount|getrecursionlimit|_getframe|getwindowsversion|setcheckinterval|setdefaultencoding|setdlopenflags|setprofile|setrecursionlimit|settrace|settscdump)|(syslog|openlog|closelog|setlogmask)|(check|tokeneater)|(open|is_tarfile)|(TemporaryFile|NamedTemporaryFile|mkstemp|mkdtemp|mktemp|gettempdir|gettempprefix)|(tcgetattr|tcsetattr|tcsendbreak|tcdrain|tcflush|tcflow)|(forget|is_resource_enabled|requires|findfile|run_unittest|run_suite)|(wrap|fill|dedent)|(start_new_thread|interrupt_main|exit|allocate_lock|get_ident|stack_size)|(activeCount|Condition|currentThread|enumerate|Event|Lock|RLock|Semaphore|BoundedSemaphore|settrace|setprofile|stack_size)|(asctime|clock|ctime|gmtime|localtime|mktime|sleep|strftime|strptime|time|tzset)|(ISTERMINAL|ISNONTERMINAL|ISEOF)|(generate_tokens|tokenize|untokenize)|(print_tb|print_exception|print_exc|format_exc|print_last|print_stack|extract_tb|extract_stack|format_list|format_exception_only|format_exception|format_tb|format_stack|tb_lineno)|(setraw|setcbreak)|(degrees|radians|setup|title|done|reset|clear|tracer|speed|delay|forward|backward|left|right|up|down|width|color|color|color|write|fill|begin_fill|end_fill|circle|goto|goto|towards|heading|setheading|position|setx|sety|window_width|window_height|demo)|(lookup|name|decimal|digit|numeric|category|bidirectional|combining|east_asian_width|mirrored|decomposition|normalize)|(urlopen|urlretrieve|urlcleanup|quote|quote_plus|unquote|unquote_plus|urlencode|pathname2url|url2pathname)|(urlopen|install_opener|build_opener)|(urlparse|urlunparse|urlsplit|urlunsplit|urljoin|urldefrag)|(encode|decode)|(getnode|uuid1|uuid3|uuid4|uuid5)|(open|openfp)|(proxy|getweakrefcount|getweakrefs)|(open|open_new|open_new_tab|get|register)|(whichdb)|(Beep|PlaySound|MessageBeep)|(make_server|demo_app)|(guess_scheme|request_uri|application_uri|shift_path_info|setup_testing_defaults|is_hop_by_hop)|(validator)|(parse|parseString)|(parse|parseString)|(ErrorString|ParserCreate)|(make_parser|parse|parseString)|(escape|unescape|quoteattr|prepare_input_source)|(is_zipfile)|(adler32|compress|compressobj|crc32|decompress|decompressobj)|(kbhit|getch|getche|putch|ungetch)|(locking|setmode|open_osfhandle|get_osfhandle)|(heapmin)|(message_from_string|message_from_file)|(registerDOMImplementation|getDOMImplementation)|(compress|decompress)|(dump|load|dumps|loads)|(capwords|maketrans)|(atof|atoi|atol|capitalize|expandtabs|find|rfind|index|rindex|count|lower|split|rsplit|splitfields|join|joinfields|lstrip|rstrip|strip|swapcase|translate|upper|ljust|rjust|center|zfill|replace)|(architecture|machine|node|platform|processor|python_build|python_compiler|python_version|python_version_tuple|release|system|system_alias|version|uname)|(java_ver)|(win32_ver)|(popen)|(mac_ver)|(dist|libc_ver)|(compile|search|match|split|findall|finditer|sub|subn|escape)|(getrlimit|setrlimit)|(getrusage|getpagesize)|(call|check_call)|(find_prefix_at_end)|(parse|parse_qs|parse_qsl|parse_multipart|parse_header|test|print_environ|print_form|print_directory|print_environ_usage|escape)|(fileno|handle_request|serve_forever|finish_request|get_request|handle_error|process_request|server_activate|server_bind|verify_request)|(finish|handle|setup)|(boolean|dumps|loads)|(Tcl)|(bindtextdomain|bind_textdomain_codeset|textdomain|gettext|lgettext|dgettext|ldgettext|ngettext|lngettext|dngettext|ldngettext)|(find|translation|install)|(expr|suite|sequence2ast|tuple2ast)|(ast2list|ast2tuple|compileast)|(isexpr|issuite)|(make_form|do_forms|check_forms|set_event_call_back|set_graphics_mode|get_rgbmode|show_message|show_question|show_choice|show_input|show_file_selector|get_directory|get_pattern|get_filename|qdevice|unqdevice|isqueued|qtest|qread|qreset|qenter|get_mouse|tie|color|mapcolor|getmcolor)|(apply|buffer|coerce|intern)|(close|dup|dup2|fdatasync|fpathconf|fstat|fstatvfs|fsync|ftruncate|isatty|lseek|open|openpty|pipe|read|tcgetpgrp|tcsetpgrp|ttyname|write)|(access|chdir|fchdir|getcwd|getcwdu|chroot|chmod|chown|lchown|link|listdir|lstat|mkfifo|mknod|major|minor|makedev|mkdir|makedirs|pathconf|readlink|remove|removedirs|rename|renames|rmdir|stat|stat_float_times|statvfs|symlink|tempnam|tmpnam|unlink|utime|walk)|(urandom)|(fdopen|popen|tmpfile|popen2|popen3|popen4)|(confstr|getloadavg|sysconf)|(abort|execl|execle|execlp|execlpe|execv|execve|execvp|execvpe|_exit|fork|forkpty|kill|killpg|nice|plock|popen|popen2|popen3|popen4|spawnl|spawnle|spawnlp|spawnlpe|spawnv|spawnve|spawnvp|spawnvpe|startfile|system|times|wait|waitpid|wait3|wait4|WCOREDUMP|WIFCONTINUED|WIFSTOPPED|WIFSIGNALED|WIFEXITED|WEXITSTATUS|WSTOPSIG|WTERMSIG)|(chdir|fchdir|getcwd|ctermid|getegid|geteuid|getgid|getgroups|getlogin|getpgid|getpgrp|getpid|getppid|getuid|getenv|putenv|setegid|seteuid|setgid|setgroups|setpgrp|setpgid|setreuid|setregid|getsid|setsid|setuid|strerror|umask|uname|unsetenv)|(connect|register_converter|register_adapter|complete_statement|enable_callback_tracebacks)|(main)|(warn|warn_explicit|showwarning|formatwarning|filterwarnings|simplefilter|resetwarnings))\b/g, // lot of collisions + sql: /\b(ALTER\s+DATABASE|ALTER\s+EVENT|ALTER\s+LOGFILE\s+GROUP|ALTER\s+SERVER|ALTER\s+TABLE|ALTER\s+TABLESPACE|ALTER\s+VIEW|ANALYZE\s+TABLE|BACKUP\s+TABLE|CACHE\s+INDEX|CHANGE\s+MASTER\s+TO|CHECK\s+TABLE|CHECKSUM\s+TABLE|CREATE\s+DATABASE|CREATE\s+EVENT|CREATE\s+FUNCTION|CREATE\s+INDEX|CREATE\s+LOGFILE\s+GROUP|CREATE\s+SERVER|CREATE\s+TABLE|CREATE\s+TABLESPACE|CREATE\s+TRIGGER|CREATE\s+USER|CREATE\s+VIEW|DELETE|DESCRIBE|DO|DROP\s+DATABASE|DROP\s+EVENT|DROP\s+FUNCTION|DROP\s+INDEX|DROP\s+LOGFILE\s+GROUP|DROP\s+SERVER|DROP\s+TABLE|DROP\s+TABLESPACE|DROP\s+TRIGGER|DROP\s+USER|DROP\s+VIEW|EXPLAIN|FLUSH|GRANT|HANDLER|HELP|INSERT|INSERT\s+DELAYED|INSTALL\s+PLUGIN|JOIN|KILL|LOAD\s+DATA\s+FROM\s+MASTER|OPTIMIZE\s+TABLE|PURGE\s+MASTER\s+LOGS|RENAME\s+DATABASE|RENAME\s+TABLE|RENAME\s+USER|REPAIR\s+TABLE|REPLACE|RESET\s+MASTER|RESET\s+SLAVE|RESTORE\s+TABLE|REVOKE|SELECT|SET\s+PASSWORD|SET\s+TRANSACTION|SHOW\s+AUTHORS|SHOW\s+BINARY\s+LOGS|SHOW\s+BINLOG\s+EVENTS|SHOW\s+CHARACTER\s+SET|SHOW\s+COLLATION|SHOW\s+COLUMNS|SHOW\s+CONTRIBUTORS|SHOW\s+CREATE\s+DATABASE|SHOW\s+CREATE\s+TABLE|SHOW\s+CREATE\s+VIEW|SHOW\s+DATABASES|SHOW\s+ENGINE|SHOW\s+ENGINES|SHOW\s+ERRORS|SHOW\s+GRANTS|SHOW\s+INDEX|SHOW\s+MASTER\s+STATUS|SHOW\s+OPEN\s+TABLES|SHOW\s+PLUGINS|SHOW\s+PRIVILEGES|SHOW\s+PROCESSLIST|SHOW\s+SCHEDULER\s+STATUS|SHOW\s+SLAVE\s+HOSTS|SHOW\s+SLAVE\s+STATUS|SHOW\s+STATUS|SHOW\s+TABLE\s+STATUS|SHOW\s+TABLES|SHOW\s+TRIGGERS|SHOW\s+VARIABLES|SHOW\s+WARNINGS|SHOW|START\s+SLAVE|STOP\s+SLAVE|TRUNCATE|UNINSTALL\s+PLUGIN|UNION|UPDATE|USE|(START\s+TRANSACTION|COMMIT|ROLLBACK)|(SAVEPOINT|ROLLBACK\s+TO\s+SAVEPOINT)|((?:UN)?LOCK\s+TABLES?)|(bit|tinyint|bool|boolean|smallint|mediumint|int|integer|bigint|float|double\s+precision|double|real|decimal|dec|numeric|fixed)|(date|datetime|timestamp|time|year)|(char|varchar|binary|varbinary|tinyblob|tinytext|blob|text|mediumblob|mediumtext|longblob|longtext|enum)|(IS|IS\s+NULL)|(BETWEEN|NOT\s+BETWEEN|IN|NOT\s+IN)|(ANY|SOME)|(ROW)|(WITH\s+ROLLUP)|(LIKE|NOT\s+LIKE|NOT\s+REGEXP|REGEXP)|(NOT|AND|OR|XOR)|(CASE)|(DIV)|(BINARY)|(ACCESSIBLE|ADD|ALL|ALTER|ANALYZE|AND|AS|ASC|ASENSITIVE|BEFORE|BETWEEN|BIGINT|BINARY|BLOB|BOTH|BY|CALL|CASCADE|CASE|CHANGE|CHAR|CHARACTER|CHECK|COLLATE|COLUMN|CONDITION|CONSTRAINT|CONTINUE|CONVERT|CREATE|CROSS|CURRENT_DATE|CURRENT_TIME|CURRENT_TIMESTAMP|CURRENT_USER|CURSOR|DATABASE|DATABASES|DAY_HOUR|DAY_MICROSECOND|DAY_MINUTE|DAY_SECOND|DEC|DECIMAL|DECLARE|DEFAULT|DELAYED|DELETE|DESC|DESCRIBE|DETERMINISTIC|DISTINCT|DISTINCTROW|DIV|DOUBLE|DROP|DUAL|EACH|ELSE|ELSEIF|ENCLOSED|ESCAPED|EXISTS|EXIT|EXPLAIN|FALSE|FETCH|FLOAT|FLOAT4|FLOAT8|FOR|FORCE|FOREIGN|FROM|FULLTEXT|GRANT|GROUP|HAVING|HIGH_PRIORITY|HOUR_MICROSECOND|HOUR_MINUTE|HOUR_SECOND|IF|IGNORE|IN|INDEX|INFILE|INNER|INOUT|INSENSITIVE|INSERT|INT|INT1|INT2|INT3|INT4|INT8|INTEGER|INTERVAL|INTO|IS|ITERATE|JOIN|KEY|KEYS|KILL|LEADING|LEAVE|LEFT|LIKE|LIMIT|LINEAR|LINES|LOAD|LOCALTIME|LOCALTIMESTAMP|LOCK|LONG|LONGBLOB|LONGTEXT|LOOP|LOW_PRIORITY|MASTER_SSL_VERIFY_SERVER_CERT|MATCH|MEDIUMBLOB|MEDIUMINT|MEDIUMTEXT|MIDDLEINT|MINUTE_MICROSECOND|MINUTE_SECOND|MOD|MODIFIES|NATURAL|NOT|NO_WRITE_TO_BINLOG|NULL|NUMERIC|ON|OPTIMIZE|OPTION|OPTIONALLY|OR|ORDER|OUT|OUTER|OUTFILE|PRECISION|PRIMARY|PROCEDURE|PURGE|RANGE|READ|READS|READ_WRITE|REAL|REFERENCES|REGEXP|RELEASE|RENAME|REPEAT|REPLACE|REQUIRE|RESTRICT|RETURN|REVOKE|RIGHT|RLIKE|SCHEMA|SCHEMAS|SECOND_MICROSECOND|SELECT|SENSITIVE|SEPARATOR|SET|SHOW|SMALLINT|SPATIAL|SPECIFIC|SQL|SQLEXCEPTION|SQLSTATE|SQLWARNING|SQL_BIG_RESULT|SQL_CALC_FOUND_ROWS|SQL_SMALL_RESULT|SSL|STARTING|STRAIGHT_JOIN|TABLE|TERMINATED|THEN|TINYBLOB|TINYINT|TINYTEXT|TO|TRAILING|TRIGGER|TRUE|UNDO|UNION|UNIQUE|UNLOCK|UNSIGNED|UPDATE|USAGE|USE|USING|UTC_DATE|UTC_TIME|UTC_TIMESTAMP|VALUES|VARBINARY|VARCHAR|VARCHARACTER|VARYING|WHEN|WHERE|WHILE|WITH|WRITE|XOR|YEAR_MONTH|ZEROFILL))\b|\b(coalesce|greatest|isnull|interval|least|(if|ifnull|nullif)|(ascii|bin|bit_length|char|char_length|character_length|concat|concat_ws|conv|elt|export_set|field|find_in_set|format|hex|insert|instr|lcase|left|length|load_file|locate|lower|lpad|ltrim|make_set|mid|oct|octet_length|ord|position|quote|repeat|replace|reverse|right|rpad|rtrim|soundex|sounds_like|space|substring|substring_index|trim|ucase|unhex|upper)|(strcmp)|(abs|acos|asin|atan|atan2|ceil|ceiling|cos|cot|crc32|degrees|exp|floor|ln|log|log2|log10|mod|pi|pow|power|radians|rand|round|sign|sin|sqrt|tan|truncate)|(adddate|addtime|convert_tz|curdate|current_date|curtime|current_time|current_timestamp|date|datediff|date_add|date_format|date_sub|day|dayname|dayofmonth|dayofweek|dayofyear|extract|from_days|from_unixtime|get_format|hour|last_day|localtime|localtimestamp|makedate|maketime|microsecond|minute|month|monthname|now|period_add|period_diff|quarter|second|sec_to_time|str_to_date|subdate|subtime|sysdate|time|timediff|timestamp|timestampadd|timestampdiff|time_format|time_to_sec|to_days|unix_timestamp|utc_date|utc_time|utc_timestamp|week|weekday|weekofyear|year|yearweek)|(cast)|(extractvalue|updatexml)|(bit_count)|(aes_encrypt|aes_decrypt|compress|decode|encode|des_decrypt|des_encrypt|encrypt|md5|old_password|password|sha|sha1|uncompress|uncompressed_length)|(benchmark|charset|coercibility|collation|connection_id|current_user|database|found_rows|last_insert_id|row_count|schema|session_user|system_user|user|version)|(default|get_lock|inet_aton|inet_ntoa|is_free_lock|is_used_lock|master_pos_wait|name_const|release_lock|sleep|uuid|values)|(avg|bit_and|bit_or|bit_xor|count|count_distinct|group_concat|min|max|std|stddev|stddev_pop|stddev_samp|sum|var_pop|var_samp|variance)|(match|against))(\s*\()/gi, //! allow modifiers - e.g. ALTER(?: IGNORE)? TABLE, collisions - binary, set, values, like, date, timestamp, time, year, char + sqlite: /\b(ALTER\s+TABLE|ANALYZE|ATTACH|COPY|DELETE|DETACH|DROP\s+INDEX|DROP\s+TABLE|DROP\s+TRIGGER|DROP\s+VIEW|EXPLAIN|INSERT|CONFLICT|REINDEX|REPLACE|SELECT|UPDATE|TRANSACTION|VACUUM|(PRAGMA)|(CREATE\s+VIRTUAL\s+TABLE)|(BEGIN|COMMIT|ROLLBACK)|(CREATE(?:\s+UNIQUE)?\s+INDEX)|(CREATE(?:\s+TEMP|\s+TEMPORARY)?\s+TABLE)|(CREATE(?:\s+TEMP|\s+TEMPORARY)?\s+TRIGGER)|(CREATE(?:\s+TEMP|\s+TEMPORARY)?\s+VIEW)|(like|glob|regexp|match|escape|isnull|isnotnull|between|exists|case|when|then|else|cast|collate|in|and|or|not))\b|\b(abs|coalesce|glob|ifnull|hex|last_insert_rowid|length|like|load_extension|lower|nullif|quote|random|randomblob|round|soundex|sqlite_version|substr|typeof|upper|(date|time|datetime|julianday|strftime)|(avg|count|max|min|sum|total))(\s*\()/gi, // collisions - min, max, end, like, glob + pgsql: /\b(COMMIT\s+PREPARED|DROP\s+OWNED|PREPARE\s+TRANSACTION|REASSIGN\s+OWNED|RELEASE\s+SAVEPOINT|ROLLBACK\s+PREPARED|ROLLBACK\s+TO|SET\s+CONSTRAINTS|SET\s+ROLE|SET\s+SESSION\s+AUTHORIZATION|SET\s+TRANSACTION|START\s+TRANSACTION|(ABORT|ALTER\s+AGGREGATE|ALTER\s+CONVERSION|ALTER\s+DATABASE|ALTER\s+DOMAIN|ALTER\s+FUNCTION|ALTER\s+GROUP|ALTER\s+INDEX|ALTER\s+LANGUAGE|ALTER\s+OPERATOR|ALTER\s+ROLE|ALTER\s+SCHEMA|ALTER\s+SEQUENCE|ALTER\s+TABLE|ALTER\s+TABLESPACE|ALTER\s+TRIGGER|ALTER\s+TYPE|ALTER\s+USER|ANALYZE|BEGIN|CHECKPOINT|CLOSE|CLUSTER|COMMENT|COMMIT|COPY|CREATE\s+AGGREGATE|CREATE\s+CAST|CREATE\s+CONSTRAINT|CREATE\s+CONVERSION|CREATE\s+DATABASE|CREATE\s+DOMAIN|CREATE\s+FUNCTION|CREATE\s+GROUP|CREATE\s+INDEX|CREATE\s+LANGUAGE|CREATE\s+OPERATOR|CREATE\s+ROLE|CREATE\s+RULE|CREATE\s+SCHEMA|CREATE\s+SEQUENCE|CREATE\s+TABLE|CREATE\s+TABLE\s+AS|CREATE\s+TABLESPACE|CREATE\s+TRIGGER|CREATE\s+TYPE|CREATE\s+USER|CREATE\s+VIEW|DEALLOCATE|DECLARE|DELETE|DROP\s+AGGREGATE|DROP\s+CAST|DROP\s+CONVERSION|DROP\s+DATABASE|DROP\s+DOMAIN|DROP\s+FUNCTION|DROP\s+GROUP|DROP\s+INDEX|DROP\s+LANGUAGE|DROP\s+OPERATOR|DROP\s+ROLE|DROP\s+RULE|DROP\s+SCHEMA|DROP\s+SEQUENCE|DROP\s+TABLE|DROP\s+TABLESPACE|DROP\s+TRIGGER|DROP\s+TYPE|DROP\s+USER|DROP\s+VIEW|END|EXECUTE|EXPLAIN|FETCH|GRANT|INSERT|LISTEN|LOAD|LOCK|MOVE|NOTIFY|PREPARE|REINDEX|RESET|REVOKE|ROLLBACK|SAVEPOINT|SELECT|SELECT\s+INTO|SET|SHOW|TRUNCATE|UNLISTEN|UPDATE|VACUUM|VALUES)|(ALTER\s+OPERATOR\s+CLASS)|(CREATE\s+OPERATOR\s+CLASS)|(DROP\s+OPERATOR\s+CLASS)|(current_date|current_time|current_timestamp|localtime|localtimestamp|AT\s+TIME\s+ZONE)|(current_user|session_user|user)|(AND|NOT|OR)|(BETWEEN)|(LIKE|SIMILAR\s+TO)|(CASE|WHEN|THEN|ELSE)|(EXISTS|IN|ANY|SOME|ALL))\b|\b(abs|cbrt|ceil|ceiling|degrees|exp|floor|ln|log|mod|pi|power|radians|random|round|setseed|sign|sqrt|trunc|width_bucket|acos|asin|atan|atan2|cos|cot|sin|tan|(bit_length|char_length|convert|lower|octet_length|overlay|position|substring|trim|upper|ascii|btrim|chr|decode|encode|initcap|length|lpad|ltrim|md5|pg_client_encoding|quote_ident|quote_literal|regexp_replace|repeat|replace|rpad|rtrim|split_part|strpos|substr|to_ascii|to_hex|translate)|(get_bit|get_byte|set_bit|set_byte|md5)|(to_char|to_date|to_number|to_timestamp)|(age|clock_timestamp|date_part|date_trunc|extract|isfinite|justify_days|justify_hours|justify_interval|now|statement_timestamp|timeofday|transaction_timestamp)|(area|center|diameter|height|isclosed|isopen|npoints|pclose|popen|radius|width|box|circle|lseg|path|point|polygon)|(abbrev|broadcast|family|host|hostmask|masklen|netmask|network|set_masklen|text|trunc)|(currval|nextval|setval)|(array_append|array_cat|array_dims|array_lower|array_prepend|array_to_string|array_upper|string_to_array)|(avg|bit_and|bit_or|bool_and|bool_or|count|every|max|min|sum|corr|covar_pop|covar_samp|regr_avgx|regr_avgy|regr_count|regr_intercept|regr_r2|regr_slope|regr_sxx|regr_sxy|regr_syy|stddev|stddev_pop|stddev_samp|variance|var_pop|var_samp)|(generate_series)|(current_database|current_schema|current_schemas|inet_client_addr|inet_client_port|inet_server_addr|inet_server_port|pg_my_temp_schema|pg_is_other_temp_schema|pg_postmaster_start_time|version|has_database_privilege|has_function_privilege|has_language_privilege|has_schema_privilege|has_table_privilege|has_tablespace_privilege|pg_has_role|pg_conversion_is_visible|pg_function_is_visible|pg_operator_is_visible|pg_opclass_is_visible|pg_table_is_visible|pg_type_is_visible|format_type|pg_get_constraintdef|pg_get_expr|pg_get_indexdef|pg_get_ruledef|pg_get_serial_sequence|pg_get_triggerdef|pg_get_userbyid|pg_get_viewdef|pg_tablespace_databases|col_description|obj_description|shobj_description)|(current_setting|set_config|pg_cancel_backend|pg_reload_conf|pg_rotate_logfile|pg_start_backup|pg_stop_backup|pg_switch_xlog|pg_current_xlog_location|pg_current_xlog_insert_location|pg_xlogfile_name_offset|pg_xlogfile_name|pg_column_size|pg_database_size|pg_relation_size|pg_size_pretty|pg_tablespace_size|pg_total_relation_size|pg_ls_dir|pg_read_file|pg_stat_file|pg_advisory_lock|pg_advisory_lock_shared|pg_try_advisory_lock|pg_try_advisory_lock_shared|pg_advisory_unlock|pg_advisory_unlock_shared|pg_advisory_unlock_all))(\s*\()/gi, // collisions: IN, ANY, SOME, ALL (array), trunc, md5, abbrev + cnf: /\b(MaxRequestsPerThread|(AcceptFilter|AcceptPathInfo|AccessFileName|AddDefaultCharset|AddOutputFilterByType|AllowEncodedSlashes|AllowOverride|AuthName|AuthType|CGIMapExtension|ContentDigest|DefaultType|Directory|DirectoryMatch|DocumentRoot|EnableMMAP|EnableSendfile|ErrorDocument|ErrorLog|FileETag|Files|FilesMatch|ForceType|HostnameLookups|IfDefine|IfModule|Include|KeepAlive|KeepAliveTimeout|Limit|LimitExcept|LimitInternalRecursion|LimitRequestBody|LimitRequestFields|LimitRequestFieldSize|LimitRequestLine|LimitXMLRequestBody|Location|LocationMatch|LogLevel|MaxKeepAliveRequests|NameVirtualHost|Options|Require|RLimitCPU|RLimitMEM|RLimitNPROC|Satisfy|ScriptInterpreterSource|ServerAdmin|ServerAlias|ServerName|ServerPath|ServerRoot|ServerSignature|ServerTokens|SetHandler|SetInputFilter|SetOutputFilter|TimeOut|TraceEnable|UseCanonicalName|UseCanonicalPhysicalPort|VirtualHost)|(Action|Script)|(Alias|AliasMatch|Redirect|RedirectMatch|RedirectPermanent|RedirectTemp|ScriptAlias|ScriptAliasMatch)|(AuthBasicAuthoritative|AuthBasicProvider)|(AuthDigestAlgorithm|AuthDigestDomain|AuthDigestNcCheck|AuthDigestNonceFormat|AuthDigestNonceLifetime|AuthDigestProvider|AuthDigestQop|AuthDigestShmemSize)|(AuthnProviderAlias)|(Anonymous|Anonymous_LogEmail|Anonymous_MustGiveEmail|Anonymous_NoUserID|Anonymous_VerifyEmail)|(AuthDBDUserPWQuery|AuthDBDUserRealmQuery)|(AuthDBMType|AuthDBMUserFile)|(AuthDefaultAuthoritative)|(AuthUserFile)|(AuthLDAPBindDN|AuthLDAPBindPassword|AuthLDAPCharsetConfig|AuthLDAPCompareDNOnServer|AuthLDAPDereferenceAliases|AuthLDAPGroupAttribute|AuthLDAPGroupAttributeIsDN|AuthLDAPRemoteUserAttribute|AuthLDAPRemoteUserIsDN|AuthLDAPUrl|AuthzLDAPAuthoritative)|(AuthDBMGroupFile|AuthzDBMAuthoritative|AuthzDBMType)|(AuthzDefaultAuthoritative)|(AuthGroupFile|AuthzGroupFileAuthoritative)|(Allow|Deny|Order)|(AuthzOwnerAuthoritative)|(AuthzUserAuthoritative)|(AddAlt|AddAltByEncoding|AddAltByType|AddDescription|AddIcon|AddIconByEncoding|AddIconByType|DefaultIcon|HeaderName|IndexHeadInsert|IndexIgnore|IndexOptions|IndexOrderDefault|IndexStyleSheet|ReadmeName)|(CacheDefaultExpire|CacheDisable|CacheEnable|CacheIgnoreCacheControl|CacheIgnoreHeaders|CacheIgnoreNoLastMod|CacheIgnoreQueryString|CacheLastModifiedFactor|CacheMaxExpire|CacheStoreNoStore|CacheStorePrivate)|(MetaDir|MetaFiles|MetaSuffix)|(ScriptLog|ScriptLogBuffer|ScriptLogLength)|(ScriptSock)|(Dav|DavDepthInfinity|DavMinTimeout)|(DavLockDB)|(DavGenericLockDB)|(DBDExptime|DBDKeep|DBDMax|DBDMin|DBDParams|DBDPersist|DBDPrepareSQL|DBDriver)|(DeflateBufferSize|DeflateCompressionLevel|DeflateFilterNote|DeflateMemLevel|DeflateWindowSize)|(DirectoryIndex|DirectorySlash)|(CacheDirLength|CacheDirLevels|CacheMaxFileSize|CacheMinFileSize|CacheRoot)|(DumpIOInput|DumpIOLogLevel|DumpIOOutput)|(ProtocolEcho)|(PassEnv|SetEnv|UnsetEnv)|(Example)|(ExpiresActive|ExpiresByType|ExpiresDefault)|(ExtFilterDefine|ExtFilterOptions)|(CacheFile|MMapFile)|(FilterChain|FilterDeclare|FilterProtocol|FilterProvider|FilterTrace)|(Header|RequestHeader)|(CharsetDefault|CharsetOptions|CharsetSourceEnc)|(IdentityCheck|IdentityCheckTimeout)|(ImapBase|ImapDefault|ImapMenu)|(SSIEnableAccess|SSIEndTag|SSIErrorMsg|SSIStartTag|SSITimeFormat|SSIUndefinedEcho|XBitHack)|(AddModuleInfo)|(ISAPIAppendLogToErrors|ISAPIAppendLogToQuery|ISAPICacheFile|ISAPIFakeAsync|ISAPILogNotSupported|ISAPIReadAheadBuffer)|(LDAPCacheEntries|LDAPCacheTTL|LDAPConnectionTimeout|LDAPOpCacheEntries|LDAPOpCacheTTL|LDAPSharedCacheFile|LDAPSharedCacheSize|LDAPTrustedClientCert|LDAPTrustedGlobalCert|LDAPTrustedMode|LDAPVerifyServerCert)|(BufferedLogs|CookieLog|CustomLog|LogFormat|TransferLog)|(ForensicLog)|(MCacheMaxObjectCount|MCacheMaxObjectSize|MCacheMaxStreamingBuffer|MCacheMinObjectSize|MCacheRemovalAlgorithm|MCacheSize)|(AddCharset|AddEncoding|AddHandler|AddInputFilter|AddLanguage|AddOutputFilter|AddType|DefaultLanguage|ModMimeUsePathInfo|MultiviewsMatch|RemoveCharset|RemoveEncoding|RemoveHandler|RemoveInputFilter|RemoveLanguage|RemoveOutputFilter|RemoveType|TypesConfig)|(MimeMagicFile)|(CacheNegotiatedDocs|ForceLanguagePriority|LanguagePriority)|(NWSSLTrustedCerts|NWSSLUpgradeable|SecureListen)|(AllowCONNECT|BalancerMember|NoProxy|Proxy|ProxyBadHeader|ProxyBlock|ProxyDomain|ProxyErrorOverride|ProxyFtpDirCharset|ProxyIOBufferSize|ProxyMatch|ProxyMaxForwards|ProxyPass|ProxyPassInterpolateEnv|ProxyPassMatch|ProxyPassReverse|ProxyPassReverseCookieDomain|ProxyPassReverseCookiePath|ProxyPreserveHost|ProxyReceiveBufferSize|ProxyRemote|ProxyRemoteMatch|ProxyRequests|ProxySet|ProxyStatus|ProxyTimeout|ProxyVia)|(RewriteBase|RewriteCond|RewriteEngine|RewriteLock|RewriteLog|RewriteLogLevel|RewriteMap|RewriteOptions|RewriteRule)|(BrowserMatch|BrowserMatchNoCase|SetEnvIf|SetEnvIfNoCase)|(LoadFile|LoadModule)|(CheckCaseOnly|CheckSpelling)|(SSLCACertificateFile|SSLCACertificatePath|SSLCADNRequestFile|SSLCADNRequestPath|SSLCARevocationFile|SSLCARevocationPath|SSLCertificateChainFile|SSLCertificateFile|SSLCertificateKeyFile|SSLCipherSuite|SSLCryptoDevice|SSLEngine|SSLHonorCipherOrder|SSLMutex|SSLOptions|SSLPassPhraseDialog|SSLProtocol|SSLProxyCACertificateFile|SSLProxyCACertificatePath|SSLProxyCARevocationFile|SSLProxyCARevocationPath|SSLProxyCipherSuite|SSLProxyEngine|SSLProxyMachineCertificateFile|SSLProxyMachineCertificatePath|SSLProxyProtocol|SSLProxyVerify|SSLProxyVerifyDepth|SSLRandomSeed|SSLRequire|SSLRequireSSL|SSLSessionCache|SSLSessionCacheTimeout|SSLUserName|SSLVerifyClient|SSLVerifyDepth)|(ExtendedStatus|SeeRequestTail)|(Substitute)|(SuexecUserGroup)|(UserDir)|(CookieDomain|CookieExpires|CookieName|CookieStyle|CookieTracking)|(IfVersion)|(VirtualDocumentRoot|VirtualDocumentRootIP|VirtualScriptAlias|VirtualScriptAliasIP)|(AcceptMutex|ChrootDir|CoreDumpDirectory|EnableExceptionHook|GracefulShutdownTimeout|Group|Listen|ListenBackLog|LockFile|MaxClients|MaxMemFree|MaxRequestsPerChild|MaxSpareThreads|MinSpareThreads|PidFile|ReceiveBufferSize|ScoreBoardFile|SendBufferSize|ServerLimit|StartServers|StartThreads|ThreadLimit|ThreadsPerChild|ThreadStackSize|User)|(MaxThreads)|(Win32DisableAcceptEx)|(MaxSpareServers|MinSpareServers))\b/g, + js: /\b(String\.fromCharCode|Date\.(?:parse|UTC)|Math\.(?:E|LN2|LN10|LOG2E|LOG10E|PI|SQRT1_2|SQRT2|abs|acos|asin|atan|atan2|ceil|cos|exp|floor|log|max|min|pow|random|round|sin|sqrt|tan)|Array|Boolean|Date|Error|Function|JavaArray|JavaClass|JavaObject|JavaPackage|Math|Number|Object|Packages|RegExp|String|(Infinity|NaN|undefined)|(decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|isNaN|parseFloat|parseInt)|(break|continue|for|function|return|switch|throw|var|while|with)|(do)|(if|else)|(try|catch|finally)|(delete|in|instanceof|new|this|typeof|void)|(alinkColor|anchors|applets|bgColor|body|characterSet|compatMode|contentType|cookie|defaultView|designMode|doctype|documentElement|domain|embeds|fgColor|forms|height|images|implementation|lastModified|linkColor|links|plugins|popupNode|referrer|styleSheets|title|tooltipNode|URL|vlinkColor|width|clear|createAttribute|createDocumentFragment|createElement|createElementNS|createEvent|createNSResolver|createRange|createTextNode|createTreeWalker|evaluate|execCommand|getElementById|getElementsByName|importNode|loadOverlay|queryCommandEnabled|queryCommandIndeterm|queryCommandState|queryCommandValue|write|writeln)|(attributes|childNodes|className|clientHeight|clientLeft|clientTop|clientWidth|dir|firstChild|id|innerHTML|lang|lastChild|length|localName|name|namespaceURI|nextSibling|nodeName|nodeType|nodeValue|offsetHeight|offsetLeft|offsetParent|offsetTop|offsetWidth|ownerDocument|parentNode|prefix|previousSibling|scrollHeight|scrollLeft|scrollTop|scrollWidth|style|tabIndex|tagName|textContent|addEventListener|appendChild|blur|click|cloneNode|dispatchEvent|focus|getAttribute|getAttributeNS|getAttributeNode|getAttributeNodeNS|getElementsByTagName|getElementsByTagNameNS|hasAttribute|hasAttributeNS|hasAttributes|hasChildNodes|insertBefore|item|normalize|removeAttribute|removeAttributeNS|removeAttributeNode|removeChild|removeEventListener|replaceChild|scrollIntoView|setAttribute|setAttributeNS|setAttributeNode|setAttributeNodeNS|supports|onblur|onchange|onclick|ondblclick|onfocus|onkeydown|onkeypress|onkeyup|onmousedown|onmousemove|onmouseout|onmouseover|onmouseup|onresize)|(altKey|bubbles|button|cancelBubble|cancelable|clientX|clientY|ctrlKey|currentTarget|detail|eventPhase|explicitOriginalTarget|isChar|layerX|layerY|metaKey|originalTarget|pageX|pageY|relatedTarget|screenX|screenY|shiftKey|target|timeStamp|type|view|which|initEvent|initKeyEvent|initMouseEvent|initUIEvent|stopPropagation|preventDefault)|(elements|length|name|acceptCharset|action|enctype|encoding|method|submit|reset)|(caption|tHead|tFoot|rows|tBodies|align|bgColor|border|cellPadding|cellSpacing|frame|rules|summary|width|createTHead|deleteTHead|createTFoot|deleteTFoot|createCaption|deleteCaption|insertRow|deleteRow)|(content|closed|controllers|crypto|defaultStatus|directories|document|frameElement|frames|history|innerHeight|innerWidth|length|location|locationbar|menubar|name|navigator|opener|outerHeight|outerWidth|pageXOffset|pageYOffset|parent|personalbar|pkcs11|screen|availTop|availLeft|availHeight|availWidth|colorDepth|height|left|pixelDepth|top|width|scrollbars|scrollMaxX|scrollMaxY|scrollX|scrollY|self|sidebar|status|statusbar|toolbar|window|alert|atob|back|btoa|captureEvents|clearInterval|clearTimeout|close|confirm|dump|escape|find|forward|getAttention|getComputedStyle|getSelection|home|moveBy|moveTo|open|openDialog|print|prompt|releaseEvents|resizeBy|resizeTo|scroll|scrollBy|scrollByLines|scrollByPages|scrollTo|setInterval|setTimeout|sizeToContent|stop|unescape|updateCommands|onabort|onclose|ondragdrop|onerror|onload|onpaint|onreset|onscroll|onselect|onsubmit|onunload))\b|\b(pop|push|reverse|shift|sort|splice|unshift|concat|join|slice|(getDate|getDay|getFullYear|getHours|getMilliseconds|getMinutes|getMonth|getSeconds|getTime|getTimezoneOffset|getUTCDate|getUTCDay|getUTCFullYear|getUTCHours|getUTCMilliseconds|getUTCMinutes|getUTCMonth|getUTCSeconds|setDate|setFullYear|setHours|setMilliseconds|setMinutes|setMonth|setSeconds|setTime|setUTCDate|setUTCFullYear|setUTCHours|setUTCMilliseconds|setUTCMinutes|setUTCMonth|setUTCSeconds|toDateString|toLocaleDateString|toLocaleTimeString|toTimeString|toUTCString)|(apply|call)|(toExponential|toFixed|toPrecision)|(exec|test)|(charAt|charCodeAt|concat|indexOf|lastIndexOf|localeCompare|match|replace|search|slice|split|substr|substring|toLocaleLowerCase|toLocaleUpperCase|toLowerCase|toUpperCase))(\s*\()/g // collisions: bgColor, height, width,length, name +}; diff --git a/static/css/about.css b/static/css/about.css index ab7bf9de86..74fff70b96 100644 --- a/static/css/about.css +++ b/static/css/about.css @@ -1,288 +1,316 @@ * { - box-sizing: border-box; + box-sizing: border-box; } -html, body{ - margin: 0; - height: 100%; - background-color: #F3F3F3; - font-family: "Roboto",Arial,sans-serif; +html, +body { + margin: 0; + height: 100%; + background-color: #f3f3f3; + font-family: "Roboto", Arial, sans-serif; } -h1, h2, h5 { - font-family: "Palanquin",Arial,sans-serif; - font-weight: 500; +h1, +h2, +h5 { + font-family: "Palanquin", Arial, sans-serif; + font-weight: 500; } /* Header */ header { - position: fixed; - z-index: 100; - width: 100%; - height: 50px; - padding: 10px; - color: #253340; - background-color: rgba(252, 252, 252, .95); - border-bottom: 1px solid #DDD; - transition: background-color .3s, border .3s; + position: fixed; + z-index: 10; + width: 100%; + height: 50px; + padding: 10px; + color: #253340; + background-color: rgba(252, 252, 252, 0.95); + border-bottom: 1px solid #ddd; + transition: background-color 0.3s, border 0.3s; } header.down { - background-color: transparent; - border-bottom: 1px solid transparent; + background-color: transparent; + border-bottom: 1px solid transparent; } header h1 { - float: left; - font-size: 26px; - line-height: 30px; - margin: 0 10px 0; + color: #34495e; + float: left; + font-size: 26px; + line-height: 30px; + margin: 0 10px 0; } #semesterly-logo { - height: 32px; - float: left; + height: 32px; + float: left; } header nav { - float: right; - font-weight: 600; - font-size: 16px; - line-height: 30px; - height: 30px; + float: right; + font-weight: 600; + font-size: 16px; + line-height: 30px; + height: 30px; } header nav a, header nav a:link, header nav a:active, header nav a:visited { - margin-right: 10px; - color: rgb(37, 51, 64); - text-decoration: none; - transition: color .2s; + margin-right: 10px; + color: rgb(37, 51, 64); + text-decoration: none; + transition: color 0.2s; } header nav a:hover { - color: #3498DB; + color: #3498db; } /* Page Content */ #page { - width: 100%; - padding-top: 50px; - background-color: #F3F3F3; + width: 100%; + padding-top: 50px; + background-color: #f3f3f3; } /* Before Hero */ #pre { - width: 100%; - padding: 25px; - background-color: #F3F3F3; - position: relative; - text-align: center; + width: 100%; + padding: 25px; + background-color: #f3f3f3; + position: relative; + text-align: center; } #pre h1 { - font-size: 48px; + font-size: 48px; +} +@media (max-width: 700px) { + #pre h1 { + font-size: 30px; + } +} +@media (max-width: 470px) { + #pre h1 { + font-size: 20px; + margin-top: 30px; + } } -@media(max-width: 700px) {#pre h1 {font-size: 30px;} } -@media(max-width: 470px) {#pre h1 {font-size: 20px; margin-top: 30px;} } /* After Hero */ #post { - width: 100%; - padding: 25px; - background-color: #F3F3F3; - position: relative; - text-align: center; + width: 100%; + padding: 25px; + background-color: #f3f3f3; + position: relative; + text-align: center; } #post h2 { - font-size: 30px; + font-size: 30px; +} +@media (max-width: 700px) { + #pre h1 { + font-size: 25px; + } +} +@media (max-width: 470px) { + #pre h1 { + font-size: 20px; + margin-top: 30px; + } } -@media(max-width: 700px) {#pre h1 {font-size: 25px;} } -@media(max-width: 470px) {#pre h1 {font-size: 20px; margin-top: 30px;} } - /* Hero */ #hero { - width: 100%; - padding: 250px; - background-color: #F3F3F3; - background-image: url(/static/img/splash/about_bg.jpg); - background-size: cover; - background-position: center; - position: relative; + width: 100%; + padding: 250px; + background-color: #f3f3f3; + background-image: url(/static/img/splash/about_bg.jpg); + background-size: cover; + background-position: center; + position: relative; } #hero h2 { - color: white; - font-size: 30px; - line-height: 40px; - padding-left: 50px; - padding-right: 50px; -} - @media(max-width: 1170px) {#hero h2 {font-size: 22px; line-height: 30px;}} - @media(max-width: 980px) {#hero h2 {font-size: 25px; line-height: 23px;}} - @media(max-width: 776px) {#hero h2 {font-size: 15px; line-height: 20px; - padding-left: 30px; padding-right: 30px;}} + color: white; + font-size: 30px; + line-height: 40px; + padding-left: 50px; + padding-right: 50px; +} +@media (max-width: 1170px) { + #hero h2 { + font-size: 22px; + line-height: 30px; + } +} +@media (max-width: 980px) { + #hero h2 { + font-size: 25px; + line-height: 23px; + } +} +@media (max-width: 776px) { + #hero h2 { + font-size: 15px; + line-height: 20px; + padding-left: 30px; + padding-right: 30px; + } +} /* Hero */ #hero { - width: 100%; - padding: 250px; - background-color: #F3F3F3; - background-image: url(/static/img/splash/about_bg.jpg); - background-size: cover; - position: relative; + width: 100%; + padding: 250px; + background-color: #f3f3f3; + background-image: url(/static/img/splash/about_bg.jpg); + background-size: cover; + position: relative; } .about { - padding-top: 10px; + padding-top: 10px; } .about h2 { - font-size: 42px; - line-height: 50px; - font-weight: 300; - margin: 20px 0 0; - color: #666; + font-size: 42px; + line-height: 50px; + font-weight: 300; + margin: 20px 0 0; + color: #666; } .about h3 { - font-size: 18px; - font-weight: 400; - color: #222; - margin: 10px auto 0; - max-width: 700px; - line-height: 24px; + font-size: 18px; + font-weight: 400; + color: #222; + margin: 10px auto 0; + max-width: 700px; + line-height: 24px; } .about h5 { - font-size: 16px; - font-weight: 100; - margin: 0; - text-transform: uppercase; - letter-spacing: 0.2em; - color: #555; - padding: 20px; + font-size: 16px; + font-weight: 100; + margin: 0; + text-transform: uppercase; + letter-spacing: 0.2em; + color: #555; + padding: 20px; } #learn { - position: relative; - text-align: center; + position: relative; + text-align: center; } .mission { - padding: 120px 0; - font-size: 0; - border-bottom: 1px solid #ddd; - position: relative; + padding: 120px 0; + font-size: 0; + border-bottom: 1px solid #ddd; + position: relative; } #hero .member { - width: 100%; - height: 180px; + width: 100%; + height: 180px; } .member { - padding: 4%; + padding: 4%; } .circular { - width: 100%; - height: auto; - padding-bottom: 100%; - border-radius: 50%; - background-size: cover; + width: 100%; + height: auto; + padding-bottom: 100%; + border-radius: 50%; + background-size: cover; } .name { - font-weight: normal; - margin-top: 5%; -} -@media(max-width: 1134px) { - .long-name { - white-space: nowrap; - margin-left: 0%; - } -} -@media(max-width: 980px) { - .long-name { - white-space: nowrap; - margin-left: -10%; - } -} -@media(max-width: 800px) { - .long-name { - white-space: nowrap; - margin-left: -20%; - } -} -@media(max-width: 766px) { - .long-name { - white-space: nowrap; - margin-left: 0%; - } + font-weight: normal; + white-space: nowrap; + margin-top: 5%; +} +@media (max-width: 1134px) { + .long-name { + white-space: nowrap; + margin-left: 0%; + } +} +@media (max-width: 980px) { + .long-name { + white-space: nowrap; + margin-left: -10%; + } +} +@media (max-width: 800px) { + .long-name { + white-space: nowrap; + margin-left: -20%; + } +} +@media (max-width: 766px) { + .long-name { + white-space: nowrap; + margin-left: 0%; + } } footer { - background-color: #253340; - padding: 40px 0 10px; + background-color: #253340; + padding: 40px 0 10px; } footer ul { - list-style-type: none; - padding: 0 0 40px 0; - margin: 0; + list-style-type: none; + padding: 0 0 40px 0; + margin: 0; } footer ul li { - margin: 10px 0; + margin: 10px 0; } -footer ul li a, -footer ul li a:link, -footer ul li a:active, +footer ul li a, +footer ul li a:link, +footer ul li a:active, footer ul li a:visited { - color: #ddd; - font-size: 14px; - text-decoration: none; + color: #ddd; + font-size: 14px; + text-decoration: none; } footer ul li a:hover { - text-decoration: underline; + text-decoration: underline; } footer ul li a i { - width: 24px; - height: 24px; - text-align: center; - border-radius: 100%; - margin-right: 5px; + width: 24px; + height: 24px; + text-align: center; + border-radius: 100%; + margin-right: 5px; } footer ul li a i.fa-facebook { - line-height: 24px; - background-color: #3b5998; + line-height: 24px; + background-color: #3b5998; } footer ul li a i.fa-at { - line-height: 24px; - background-color: #409036; + line-height: 24px; + background-color: #409036; } -footer h6 { - text-align: center; - font-size: 10px; - color: #777; - margin: 0; +footer ul li a i.fa-bookmark { + line-height: 24px; + background-color: #808080; } - -@media(max-width: 776px) { -<<<<<<< HEAD - footer li { - text-align: center; - } +footer ul li a i.fa-lock { + line-height: 24px; + background-color: #808080; } - -@media(max-width: 445px) { - header h1 { - display: none; - } -<<<<<<< HEAD -} -@media(max-width: 776px) { - #hero h2 { - font-size: 40px; - } -======= ->>>>>>> 9da9a06e6842efa6069c9ca824c88f9e557aadec - footer li { - text-align: center; - } +footer h6 { + text-align: center; + font-size: 10px; + color: #777; + margin: 0; } -@media(max-width: 445px) { - header h1 { - display: none; - } -======= ->>>>>>> 295d91836b887ad08e379466515d7f6b9e21c380 -} \ No newline at end of file +@media (max-width: 445px) { + header h1 { + display: none; + } +} +@media (max-width: 776px) { + #hero h2 { + font-size: 40px; + } + footer li { + text-align: center; + } +} diff --git a/static/css/analytics/analytics.css b/static/css/analytics/analytics.css index 72bc6a31d8..125133d9a8 100644 --- a/static/css/analytics/analytics.css +++ b/static/css/analytics/analytics.css @@ -5,3 +5,8 @@ h1 { padding:25px; margin-bottom:20px; } + +#chart-wrapper { + width: 80%; + margin: 0 auto; +} \ No newline at end of file diff --git a/static/css/course-page.css b/static/css/course-page.css index 128668916f..8908a18647 100644 --- a/static/css/course-page.css +++ b/static/css/course-page.css @@ -294,7 +294,7 @@ header h1 { background-color: #fff; border: 1px solid #E8E8E8; box-shadow: 0 2px 10px rgba(0,0,0,.2); - z-index: 100; + z-index: 10; display: none; } #social-dropdown.down { diff --git a/static/css/full-calendar.min.css b/static/css/full-calendar.min.css deleted file mode 100644 index cf0e48e7ca..0000000000 --- a/static/css/full-calendar.min.css +++ /dev/null @@ -1,5 +0,0 @@ -/*! - * FullCalendar v2.6.1 Stylesheet - * Docs & License: http://fullcalendar.io/ - * (c) 2015 Adam Shaw - */.fc{direction:ltr;text-align:left}.fc-rtl{text-align:right}body .fc{font-size:1em}.fc-unthemed .fc-divider,.fc-unthemed .fc-popover,.fc-unthemed .fc-row,.fc-unthemed tbody,.fc-unthemed td,.fc-unthemed th,.fc-unthemed thead{border-color:#ddd}.fc-unthemed .fc-popover{background-color:#fff}.fc-unthemed .fc-divider,.fc-unthemed .fc-popover .fc-header{background:#eee}.fc-unthemed .fc-popover .fc-header .fc-close{color:#666}.fc-unthemed .fc-today{background:#fcf8e3}.fc-highlight{background:#bce8f1;opacity:.3;filter:alpha(opacity=30)}.fc-bgevent{background:#8fdf82;opacity:.3;filter:alpha(opacity=30)}.fc-nonbusiness{background:#d7d7d7}.fc-icon{display:inline-block;width:1em;height:1em;line-height:1em;font-size:1em;text-align:center;overflow:hidden;font-family:"Courier New",Courier,monospace;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fc-icon:after{position:relative;margin:0 -1em}.fc-icon-left-single-arrow:after{content:"\02039";font-weight:700;font-size:200%;top:-7%;left:3%}.fc-icon-right-single-arrow:after{content:"\0203A";font-weight:700;font-size:200%;top:-7%;left:-3%}.fc-icon-left-double-arrow:after{content:"\000AB";font-size:160%;top:-7%}.fc-icon-right-double-arrow:after{content:"\000BB";font-size:160%;top:-7%}.fc-icon-left-triangle:after{content:"\25C4";font-size:125%;top:3%;left:-2%}.fc-icon-right-triangle:after{content:"\25BA";font-size:125%;top:3%;left:2%}.fc-icon-down-triangle:after{content:"\25BC";font-size:125%;top:2%}.fc-icon-x:after{content:"\000D7";font-size:200%;top:6%}.fc button{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;height:2.1em;padding:0 .6em;font-size:1em;white-space:nowrap;cursor:pointer}.fc button::-moz-focus-inner{margin:0;padding:0}.fc-state-default{border:1px solid}.fc-state-default.fc-corner-left{border-top-left-radius:4px;border-bottom-left-radius:4px}.fc-state-default.fc-corner-right{border-top-right-radius:4px;border-bottom-right-radius:4px}.fc button .fc-icon{position:relative;top:-.05em;margin:0 .2em;vertical-align:middle}.fc-state-default{background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}.fc-state-active,.fc-state-disabled,.fc-state-down,.fc-state-hover{color:#333;background-color:#e6e6e6}.fc-state-hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.fc-state-active,.fc-state-down{background-color:#ccc;background-image:none;box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.fc-state-disabled{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);box-shadow:none}.fc-button-group{display:inline-block}.fc .fc-button-group>*{float:left;margin:0 0 0 -1px}.fc .fc-button-group>:first-child{margin-left:0}.fc-popover{position:absolute;box-shadow:0 2px 6px rgba(0,0,0,.15)}.fc-popover .fc-header{padding:2px 4px}.fc-popover .fc-header .fc-title{margin:0 2px}.fc-popover .fc-header .fc-close{cursor:pointer}.fc-ltr .fc-popover .fc-header .fc-title,.fc-rtl .fc-popover .fc-header .fc-close{float:left}.fc-ltr .fc-popover .fc-header .fc-close,.fc-rtl .fc-popover .fc-header .fc-title{float:right}.fc-unthemed .fc-popover{border-width:1px;border-style:solid}.fc-unthemed .fc-popover .fc-header .fc-close{font-size:.9em;margin-top:2px}.fc-popover>.ui-widget-header+.ui-widget-content{border-top:0}.fc-divider{border-style:solid;border-width:1px}hr.fc-divider{height:0;margin:0;padding:0 0 0px;border-width:1px 0}.fc-clear{clear:both}.fc-bg,.fc-bgevent-skeleton,.fc-helper-skeleton,.fc-highlight-skeleton{position:absolute;top:0;left:0;right:0}.fc-bg{bottom:0}.fc-bg table{height:100%}.fc table{width:100%;table-layout:fixed;border-collapse:collapse;border-spacing:0;font-size:1em}.fc th{text-align:center}.fc td,.fc th{border-style:solid;border-width:1px;padding:0;vertical-align:top}.fc td.fc-today{border-style:double}.fc .fc-row{border-style:solid;border-width:0}.fc-row table{border-left:0 hidden transparent;border-right:0 hidden transparent;border-bottom:0 hidden transparent}.fc-row:first-child table{border-top:0 hidden transparent}.fc-row{position:relative}.fc-row .fc-bg{z-index:1}.fc-row .fc-bgevent-skeleton,.fc-row .fc-highlight-skeleton{bottom:0}.fc-row .fc-bgevent-skeleton table,.fc-row .fc-highlight-skeleton table{height:100%}.fc-row .fc-bgevent-skeleton td,.fc-row .fc-highlight-skeleton td{border-color:transparent}.fc-row .fc-bgevent-skeleton{z-index:2}.fc-row .fc-highlight-skeleton{z-index:3}.fc-row .fc-content-skeleton{position:relative;z-index:4;padding-bottom:2px}.fc-row .fc-helper-skeleton{z-index:5}.fc-row .fc-content-skeleton td,.fc-row .fc-helper-skeleton td{background:0 0;border-color:transparent;border-bottom:0}.fc-row .fc-content-skeleton tbody td,.fc-row .fc-helper-skeleton tbody td{border-top:0}.fc-scroller{overflow-y:scroll;overflow-x:hidden}.fc-scroller>*{position:relative;width:100%;overflow:hidden}.fc-event{position:relative;display:block;font-size:.85em;line-height:1.3;border-radius:1px;background-color:#36D7B7;font-weight:400}.fc-event,.fc-event:hover,.ui-widget .fc-event{color:#fff;text-decoration:none}.fc-event.fc-draggable,.fc-event[href]{cursor:pointer}.fc-not-allowed,.fc-not-allowed .fc-event{cursor:not-allowed}.fc-event .fc-bg{z-index:1;background:#fff;opacity:.25;filter:alpha(opacity=25)}.fc-event .fc-content{position:relative;z-index:2}.fc-event .fc-resizer{position:absolute;z-index:3}.fc-ltr .fc-h-event.fc-not-start,.fc-rtl .fc-h-event.fc-not-end{margin-left:0;border-left-width:0;padding-left:1px;border-top-left-radius:0;border-bottom-left-radius:0}.fc-ltr .fc-h-event.fc-not-end,.fc-rtl .fc-h-event.fc-not-start{margin-right:0;border-right-width:0;padding-right:1px;border-top-right-radius:0;border-bottom-right-radius:0}.fc-h-event .fc-resizer{top:-1px;bottom:-1px;left:-1px;right:-1px;width:5px}.fc-ltr .fc-h-event .fc-start-resizer,.fc-ltr .fc-h-event .fc-start-resizer:after,.fc-ltr .fc-h-event .fc-start-resizer:before,.fc-rtl .fc-h-event .fc-end-resizer,.fc-rtl .fc-h-event .fc-end-resizer:after,.fc-rtl .fc-h-event .fc-end-resizer:before{right:auto;cursor:w-resize}.fc-ltr .fc-h-event .fc-end-resizer,.fc-ltr .fc-h-event .fc-end-resizer:after,.fc-ltr .fc-h-event .fc-end-resizer:before,.fc-rtl .fc-h-event .fc-start-resizer,.fc-rtl .fc-h-event .fc-start-resizer:after,.fc-rtl .fc-h-event .fc-start-resizer:before{left:auto;cursor:e-resize}.fc-day-grid-event{margin:1px 2px 0;padding:0 1px}.fc-day-grid-event .fc-content{white-space:nowrap;overflow:hidden}.fc-day-grid-event .fc-time{font-weight:700}.fc-day-grid-event .fc-resizer{left:-3px;right:-3px;width:7px}a.fc-more{margin:1px 3px;font-size:.85em;cursor:pointer;text-decoration:none}a.fc-more:hover{text-decoration:underline}.fc-limited{display:none}.fc-day-grid .fc-row{z-index:1}.fc-more-popover{z-index:2;width:220px}.fc-more-popover .fc-event-container{padding:10px}.fc-now-indicator{position:absolute;border:0 solid red}.fc-toolbar{text-align:center;margin-bottom:0em}.fc-toolbar .fc-left{float:left}.fc-toolbar .fc-right{float:right}.fc-toolbar .fc-center{display:inline-block}.fc .fc-toolbar>*>*{float:left;margin-left:.75em}.fc .fc-toolbar>*>:first-child{margin-left:0}.fc-toolbar h2{margin:0}.fc-toolbar button{position:relative}.fc-toolbar .fc-state-hover,.fc-toolbar .ui-state-hover{z-index:2}.fc-toolbar .fc-state-down{z-index:3}.fc-toolbar .fc-state-active,.fc-toolbar .ui-state-active{z-index:4}.fc-toolbar button:focus{z-index:5}.fc-view-container *,.fc-view-container :after,.fc-view-container :before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fc-view,.fc-view>table{position:relative;z-index:1}.fc-basicDay-view .fc-content-skeleton,.fc-basicWeek-view .fc-content-skeleton{padding-top:1px;padding-bottom:1em}.fc-basic-view .fc-body .fc-row{min-height:4em}.fc-row.fc-rigid{overflow:hidden}.fc-row.fc-rigid .fc-content-skeleton{position:absolute;top:0;left:0;right:0}.fc-basic-view .fc-day-number,.fc-basic-view .fc-week-number{padding:0 2px}.fc-basic-view td.fc-day-number,.fc-basic-view td.fc-week-number span{padding-top:2px;padding-bottom:2px}.fc-basic-view .fc-week-number{text-align:center}.fc-basic-view .fc-week-number span{display:inline-block;min-width:1.25em}.fc-ltr .fc-basic-view .fc-day-number{text-align:right}.fc-rtl .fc-basic-view .fc-day-number{text-align:left}.fc-day-number.fc-other-month{opacity:.3;filter:alpha(opacity=30)}.fc-agenda-view .fc-day-grid{position:relative;z-index:2}.fc-agenda-view .fc-day-grid .fc-row{min-height:3em}.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton{padding-top:1px;padding-bottom:1em}.fc .fc-axis{vertical-align:middle;padding:0 4px;white-space:nowrap}.fc-ltr .fc-axis{text-align:right}.fc-rtl .fc-axis{text-align:left}.ui-widget td.fc-axis{font-weight:400}.fc-time-grid,.fc-time-grid-container{position:relative;z-index:1}.fc-time-grid{min-height:100%}.fc-time-grid table{border:0 hidden transparent}.fc-time-grid>.fc-bg{z-index:1}.fc-time-grid .fc-slats,.fc-time-grid>hr{position:relative;z-index:2}.fc-time-grid .fc-content-col{position:relative}.fc-time-grid .fc-content-skeleton{position:absolute;z-index:3;top:0;left:0;right:0}.fc-time-grid .fc-business-container{position:relative;z-index:1}.fc-time-grid .fc-bgevent-container{position:relative;z-index:2}.fc-time-grid .fc-highlight-container{z-index:3}.fc-time-grid .fc-event-container{position:relative;z-index:4}.fc-time-grid .fc-now-indicator-line{z-index:5}.fc-time-grid .fc-helper-container{position:relative;z-index:6}.fc-time-grid .fc-slats td{height:1.5em;border-bottom:0}.fc-time-grid .fc-slats .fc-minor td{border-top-style:dotted}.fc-time-grid .fc-slats .ui-widget-content{background:0 0}.fc-time-grid .fc-highlight-container{position:relative}.fc-time-grid .fc-highlight{position:absolute;left:0;right:0}.fc-ltr .fc-time-grid .fc-event-container{margin:0 2px 0 2px}.fc-rtl .fc-time-grid .fc-event-container{margin:0 2px 0 2.5%}.fc-time-grid .fc-bgevent,.fc-time-grid .fc-event{position:absolute;z-index:1}.fc-time-grid .fc-bgevent{left:0;right:0}.fc-v-event.fc-not-start{border-top-width:0;padding-top:1px;border-top-left-radius:0;border-top-right-radius:0}.fc-v-event.fc-not-end{border-bottom-width:0;padding-bottom:1px;border-bottom-left-radius:0;border-bottom-right-radius:0}.fc-time-grid-event{overflow:hidden}.fc-time-grid-event .fc-time,.fc-time-grid-event .fc-title{padding:0 1px}.fc-time-grid-event .fc-time{font-size:.8em;white-space:nowrap}.fc-time-grid-event.fc-short .fc-content{white-space:nowrap}.fc-time-grid-event.fc-short .fc-time,.fc-time-grid-event.fc-short .fc-title{display:inline-block;vertical-align:top}.fc-time-grid-event.fc-short .fc-time span{display:none}.fc-time-grid-event.fc-short .fc-time:before{content:attr(data-start)}.fc-time-grid-event.fc-short .fc-time:after{content:"\000A0-\000A0"}.fc-time-grid-event.fc-short .fc-title{font-size:.85em;padding:0}.fc-time-grid-event .fc-resizer{left:0;right:0;bottom:0;height:8px;overflow:hidden;line-height:8px;font-size:11px;font-family:monospace;text-align:center;cursor:s-resize}.fc-time-grid-event .fc-resizer:after{content:"="}.fc-time-grid .fc-now-indicator-line{border-top-width:1px;left:0;right:0}.fc-time-grid .fc-now-indicator-arrow{margin-top:-5px}.fc-ltr .fc-time-grid .fc-now-indicator-arrow{left:0;border-width:5px 0 5px 6px;border-top-color:transparent;border-bottom-color:transparent}.fc-rtl .fc-time-grid .fc-now-indicator-arrow{right:0;border-width:5px 6px 5px 0;border-top-color:transparent;border-bottom-color:transparent} \ No newline at end of file diff --git a/static/css/load.css b/static/css/load.css index 46882878e7..f08bb88a2d 100644 --- a/static/css/load.css +++ b/static/css/load.css @@ -83,7 +83,7 @@ text-align: center; font-size: 10px; position:absolute; - z-index:10000; + z-index:11; top:0; right: 10%; } diff --git a/static/css/notice.css b/static/css/notice.css index d556ce8a81..f074137535 100644 --- a/static/css/notice.css +++ b/static/css/notice.css @@ -7,7 +7,7 @@ padding-top: 60px; padding-bottom: 20px; margin: auto; - background-color; #F3F3F3; + background-color: #F3F3F3; text-align: justify; line-height: 1.4; } diff --git a/static/css/press.css b/static/css/press.css index 9f31c8151f..a9c2f38e9c 100644 --- a/static/css/press.css +++ b/static/css/press.css @@ -17,7 +17,7 @@ h1, h2, h5 { /* Header */ header { position: fixed; - z-index: 100; + z-index: 10; width: 100%; height: 50px; padding: 10px; @@ -31,6 +31,7 @@ header.down { border-bottom: 1px solid transparent; } header h1 { + color: #34495E; float: left; font-size: 26px; line-height: 30px; @@ -166,6 +167,10 @@ header nav a:hover { filter: grayscale(100%); } +.author:hover { + filter: none; +} + #hub { width: 7.8%; } @@ -317,6 +322,14 @@ footer ul li a i.fa-at { line-height: 24px; background-color: #409036; } +footer ul li a i.fa-bookmark { + line-height: 24px; + background-color: #808080; +} +footer ul li a i.fa-lock { + line-height: 24px; + background-color: #808080; +} footer h6 { text-align: center; font-size: 10px; @@ -331,9 +344,10 @@ footer h6 { } @media(max-width: 766px) { -/* .article-link { - border: 10px solid #F3F3F3; - }*/ + .article-link { + max-width: 100%; + height: auto; + } .article { padding: 20px 0px; } diff --git a/static/css/splash.css b/static/css/splash.css index 5eb8cb091b..4173fffc28 100644 --- a/static/css/splash.css +++ b/static/css/splash.css @@ -17,7 +17,7 @@ h1, h2, h5 { /* Header */ header { position: fixed; - z-index: 100; + z-index: 10; width: 100%; height: 50px; padding: 10px; @@ -34,7 +34,12 @@ header h1 { float: left; font-size: 26px; line-height: 30px; - margin: 0 10px 0; + margin: 0 5px 0 10px; +} +header p { + float: left; + margin: 5px 0 0 0; + line-height: 28px; } #semesterly-logo { height: 32px; @@ -65,6 +70,11 @@ header nav a .fa { .desktop-nav { display: block; } +header nav a:last-child{ + position: absolute; + right: 0; + margin-right: 11%; +} .mobile-nav { display: none; position: relative; @@ -89,7 +99,7 @@ header nav a .fa { background-color: #fff; border: 1px solid #E8E8E8; box-shadow: 0 2px 10px rgba(0,0,0,.2); - z-index: 100; + z-index: 10; display: none; } .mobile-nav.open .nav-dropdown { @@ -103,7 +113,7 @@ header nav a .fa { z-index: 1; height: 0; width: 0; - transform: rotate(0deg); + transform: rotate(0deg); } .open .tip-down { transform: rotate(180deg); @@ -222,7 +232,7 @@ header nav a .fa { background-size: cover; background-position: top center; background-repeat: no-repeat; - background-image: url(/static/img/splash/ChromeMockup.png); + background-image: url(/static/img/splash/ChromeMockup2021.png); } @@ -285,7 +295,7 @@ header nav a .fa { .tutorial { padding: 120px 0; font-size: 0; - border-bottom: 1px solid #ddd; + border-top: 1px solid #ddd; position: relative; } .tutorial:last-child { @@ -363,6 +373,14 @@ header nav a .fa { margin: 10px auto 0; max-width: 700px; } +.tutorial-btn { + font-size: 16px; + line-height: 24px; + font-weight: 400; + color: #777; + padding: 5px 40px; + margin: 10px 0 0 0; +} #mobile { background-color: #ddd; padding: 80px 0 0; @@ -433,9 +451,9 @@ footer ul { footer ul li { margin: 10px 0; } -footer ul li a, -footer ul li a:link, -footer ul li a:active, +footer ul li a, +footer ul li a:link, +footer ul li a:active, footer ul li a:visited { color: #ddd; font-size: 14px; @@ -459,6 +477,14 @@ footer ul li a i.fa-at { line-height: 24px; background-color: #409036; } +footer ul li a i.fa-bookmark { + line-height: 24px; + background-color: #808080; +} +footer ul li a i.fa-lock { + line-height: 24px; + background-color: #808080; +} footer h6 { text-align: center; font-size: 10px; @@ -499,6 +525,10 @@ footer h6 { filter: grayscale(100%); } +.author:hover { + filter: none; +} + #hub { width: 7.8%; } @@ -575,7 +605,7 @@ footer h6 { #hero { padding: 50px 0 0; } - #hero h2, + #hero h2, #hero h4, #hero ul { padding: 0 20px 0 0; @@ -584,7 +614,7 @@ footer h6 { @media(max-width: 920px) { .reason h2 { - font-size: 36px; + font-size: 36px; } .reason-text { padding-top: 0; @@ -596,7 +626,7 @@ footer h6 { border-bottom: 1px solid #aaa; text-align: center; } - #hero h2, + #hero h2, #hero h4, #hero ul { padding: 0 40px; @@ -631,7 +661,7 @@ footer h6 { .mobile { display: block; } - .desktop, + .desktop, .desktop.tutorial-text { display: none; } @@ -648,7 +678,7 @@ footer h6 { } } @media(max-width: 445px) { - #hero h2, + #hero h2, #hero h4, #hero ul { padding: 0 15px; diff --git a/static/css/student/profile.css b/static/css/student/profile.css index dc53a51ac2..b93f36e0b8 100644 --- a/static/css/student/profile.css +++ b/static/css/student/profile.css @@ -15,7 +15,7 @@ h1, h2, h5 { /* Header */ header { position: fixed; - z-index: 100; + z-index: 10; width: 100%; height: 50px; padding: 10px; @@ -29,6 +29,7 @@ header.down { border-bottom: 1px solid transparent; } header h1 { + color: #34495E; float: left; font-size: 26px; line-height: 30px; @@ -83,7 +84,7 @@ desktop-nav { background-color: #fff; border: 1px solid #E8E8E8; box-shadow: 0 2px 10px rgba(0,0,0,.2); - z-index: 100; + z-index: 10; display: none; } .mobile-nav.open .nav-dropdown { diff --git a/static/css/timetable/base/colors.scss b/static/css/timetable/base/colors.scss index 1f954703c0..bd677d4d04 100644 --- a/static/css/timetable/base/colors.scss +++ b/static/css/timetable/base/colors.scss @@ -2,19 +2,22 @@ $primary-navy: #34495e; $navy-light: #375b80; $navy-transparent-0: rgba(52, 73, 94, 0); $navy-transparent-100: rgba(52, 73, 94, 1); -$navy-transparent-14: rgba(90, 200, 251, .14); -$navy-transparent-20: rgba(63, 81, 181, .2); +$navy-transparent-14: rgba(90, 200, 251, 0.14); +$navy-transparent-20: rgba(63, 81, 181, 0.2); $confirm-green: #1abc9c; $confirm-green-hover: #16ad8f; $confirm-green-darker: #12ab8d; $confirm-green-darkest: #0e8870; $confirm-green-alt: #42a770; +$save-course-blue: #344d87; +$save-course-hover-blue: #485b88; $red-dark: #963838; $red: #d21616; $pink: #fd7473; $yellow: #d29842; $green: #0aa98a; +$green-dark: #59bea0; $green-light: #27ae60; $green-bright: #4ad187; $blue: #3895db; @@ -30,7 +33,7 @@ $friend: #53e997; $facebook: #3b5998; $facebook-dark: #2b406e; $facebook-view: #4080ff; -$facebook-5: rgba(59, 89, 152, .5); +$facebook-5: rgba(59, 89, 152, 0.5); // amazon $amazon: #f90; @@ -67,20 +70,28 @@ $gdee2ff: #dee2ff; $gebf5ff: #ebf5ff; $gf5faff: #f5faff; -$black-very-transparent: rgba(0, 0, 0, .06); -$black-very-transparent-off: rgba(0, 0, 0, .075); -$black-transparent-1: rgba(0, 0, 0, .1); -$black-transparent-15: rgba(0, 0, 0, .15); -$black-transparent-2: rgba(0, 0, 0, .2); -$black-transparent-25: rgba(0, 0, 0, .25); -$black-transparent-3: rgba(0, 0, 0, .3); -$black-transparent-5: rgba(0, 0, 0, .5); -$black-transparent-8: rgba(0, 0, 0, .8); +// dark-mode +$gdark111: #5a5d64; +$gdark222: #73767e; +$gdark333: #e5e5e5; +$gdark444: #c5c3c3; +$bdark111: #a8c9e8; + +$black-very-transparent: rgba(0, 0, 0, 0.06); +$black-very-transparent-off: rgba(0, 0, 0, 0.075); +$black-transparent-1: rgba(0, 0, 0, 0.1); +$black-transparent-15: rgba(0, 0, 0, 0.15); +$black-transparent-2: rgba(0, 0, 0, 0.2); +$black-transparent-25: rgba(0, 0, 0, 0.25); +$black-transparent-3: rgba(0, 0, 0, 0.3); +$black-transparent-5: rgba(0, 0, 0, 0.5); +$black-transparent-8: rgba(0, 0, 0, 0.8); $white-transparent-0: rgba(255, 255, 255, 0); -$white-transparent-9: rgba(255, 255, 255, .9); +$white-transparent-8: rgba(255, 255, 255, 0.8); +$white-transparent-9: rgba(255, 255, 255, 0.9); -$g188-transparent-4: rgba(188, 188, 188, .4); +$g188-transparent-4: rgba(188, 188, 188, 0.4); $switch-blue: #5ac8fb; @@ -88,8 +99,8 @@ $switch-blue: #5ac8fb; $react-select-red: #d0021b; $react-single-blue: #007eff; $react-single-blue-hover: #0071e6; -$react-select-navy-transparent: rgba(0, 126, 255, .1); -$react-select-navy-semi-transparent: rgba(0, 126, 255, .24); +$react-select-navy-transparent: rgba(0, 126, 255, 0.1); +$react-select-navy-semi-transparent: rgba(0, 126, 255, 0.24); $react-single-sky-blue: #c2e0ff; $react-single-sky-blue-hover: #d8eafd; @@ -97,3 +108,16 @@ $react-single-sky-blue-hover: #d8eafd; $spinner-blue: #114357; $spinner-purple: #826c75; $spinner-pink: #f29492; + +// Recolored colors +$dblue8: #1d1e22; +$dblue7: #2d2e32; +$dblue6: #3d3e42; +$dblue3: #4d5057; +$dblue2: #5a5d64; +$dblue1: #73767e; +$dblue075: #888d9b; +$dblue050: #9aa3bb; +$dblue0: #ceddeb; + +$dblue7-transparent: rgba(45, 46, 50, 0.8); diff --git a/static/css/timetable/base/themes.scss b/static/css/timetable/base/themes.scss new file mode 100644 index 0000000000..db83e81a62 --- /dev/null +++ b/static/css/timetable/base/themes.scss @@ -0,0 +1,222 @@ +/* + Variables to change color of components that have the same color. + This is created for convenience, as multiple components may have same colors. + */ + +// Light mode shared variables +$light-base-component-bg: $gfff; + +// Dark mode shared variables +$dark-base-component-bg: $dblue8; + +/* + Change the variables in the $theme below to change the themes. + + To change the colors by theme, use this function: + + @include theme() { + background-color: t('key'); + // or other css... + } + + Try to be as descriptive as possible when naming variables, ex) instead of sidebar, name it as sidebar-background. +*/ + +$themes: ( + // Light mode + light: + ( + background: $g808080, + bubble-text-color: $gfff, + code-snippet-background: $gf3f3f3, + color-scheme-type: light, + compare-timetable-slot: $g222, + confirm-button-background: $confirm-green, + confirm-button-hover: $confirm-green-hover, + course-modal-credits: $g999, + course-section-bubble-background: $gaaa, + course-section-bubble-border: $gfff, + custom-event-active-day-background: $gc4c4c4, + custom-event-inactive-day-background: $gf3f3f3, + dropdown-background: #fff, + dropdown-border: 1px solid $ge6e6e6, + dropdown-hover: $geee, + evaluation-background: $gfff, + ghost-card-course-title: $g222, + ghost-card-name: $g222, + github-follow-button-background-color: $geee, + github-follow-button-color: $g333, + github-follow-button-hover-color: $gddd, + lecture-section-background-hover: $geee, + lecture-section-background: $white-transparent-8, + main-bar-background: $light-base-component-bg, + main-calendar-border-color: #ddd, + modal-background: $gfff, + modal-border-color: $gddd, + modal-header-background: $gf3f3f3, + navicon-hamburger-background: $primary-navy, + reactions-background: $gf3f3f3, + reactions-count-background: $ge6e6e6, + row-button-hover-background-color: $gddd, + search-bar-background: #f2f3f5, + search-bar-box-shadow: rgba(0, 0, 0, 0.2), + search-bar-focused-background: $gfff, + search-bar-option-background-hover: #f1eeee, + search-bar-semester-picker-border: 1px solid $ge6e6e6, + search-bar-side-hover: #a5d5ff, + search-bar-side-text: $g777, + search-bar-side-trans50: $white-transparent-9, + search-bar-side: $gf3f3f3, + search-border: $gfff, + search-course-add-hover-text: $blue-light, + search-course-add-hover: #a6deff, + search-course-add-in-roster-hover: #56eccf, + search-course-add-in-roster: #2dd6b5, + search-course-save-background: #d7d7d7, + search-course-save-hover-text: $green-light, + search-course-save-hover: #7be68d, + search-course-save-in-roster-hover: #aec1ef, + search-course-save-in-roster: #97b0ea, + search-loader-background: "/static/img/search-results-loader-light.svg", + search-results-box-shadow: $black-transparent-2, + search-results-hover: $gf3f3f3, + share-link-clipboard-text: $gfff, + share-link-clipboard: #3895db, + share-link-shadow-1: rgba(0, 0, 0, 0.5), + share-link-shadow-2: rgba(0, 0, 0, 0.15), + share-link-text: $g222, + share-link-wrapper: $gddd, + short-course-background: $gfff, + sidebar-background: $light-base-component-bg, + sidebar-input-background: #f2f3f5, + sidebar-input-border: 1px solid $gfff, + sidebar-input-border_focus: 1px solid $blue-alt, + sidebar-input-border_hover: 1px solid $gddd, + switch-slide-after: $switch-blue, + switch-slide-before: $gddd, + text-color-hover: $primary-navy, + text-color-thin: $g777, + text-color: $primary-navy, + toolbar-icon-hover: $primary-navy, + // Use a filter to change the color of img elements (e.g., png icons) + toolbar-img-icon-hover-filter: invert(23%) sepia(55%) saturate(362%) + hue-rotate(169deg) brightness(96%) contrast(88%), + tooltip-background: $gfff, + top-bar-background: $light-base-component-bg, + top-bar-border-bottom: none, + tos-banner-background: $gfff, + tos-banner-border: $gddd, + tos-banner-close: $geee, + ), + // Dark Mode + dark: + ( + alert-danger-background: $red-dark, + background: $g808080, + bubble-text-color: $dblue0, + code-snippet-background: $dblue7, + color-scheme-type: dark, + compare-timetable-slot: $dblue0, + confirm-button-background: $green-dark, + confirm-button-hover: $confirm-green-darkest, + course-modal-credits: $dblue050, + course-section-bubble-background: $dblue3, + course-section-bubble-border: $dblue8, + custom-event-active-day-background: $dblue3, + custom-event-inactive-day-background: $dblue7, + dropdown-background: $g333, + dropdown-border: 1px solid $g333, + dropdown-hover: $dblue3, + evaluation-background: $dblue7, + ghost-card-course-title: $dblue0, + ghost-card-name: $dblue0, + github-follow-button-background-color: transparent, + github-follow-button-color: #d1ddeb, + github-follow-button-hover-color: $dblue6, + lecture-section-background-hover: $dblue7, + lecture-section-background: $dblue8, + main-bar-background: $dark-base-component-bg, + main-calendar-border-color: $dblue2, + modal-background: $dblue8, + modal-border-color: $dblue2, + modal-header-background: $dblue7, + navicon-hamburger-background: $dblue0, + reactions-background: $dblue7, + reactions-count-background: $dblue6, + row-button-hover-background-color: $dblue3, + search-bar-background: $dblue7, + search-bar-box-shadow: $dblue7, + search-bar-focused-background: $dblue8, + search-bar-option-background-hover: $dblue2, + search-bar-semester-picker-border: 1px solid $dblue2, + search-bar-side-hover: $dblue1, + search-bar-side-text: $gaaa, + search-bar-side-trans50: $dblue7-transparent, + search-bar-side: $dblue7, + search-border: $dblue8, + search-course-add-hover-text: $gbbb, + search-course-add-hover: $g777, + search-course-add-in-roster-hover: $confirm-green-darker, + search-course-add-in-roster: $confirm-green-darkest, + search-course-save-background: $g444, + search-course-save-hover-text: $gbbb, + search-course-save-hover: $g777, + search-course-save-in-roster-hover: $save-course-hover-blue, + search-course-save-in-roster: $save-course-blue, + search-loader-background: "/static/img/search-results-loader-dark.svg", + search-results-box-shadow: $dblue7, + search-results-hover: $dblue6, + share-link-clipboard-text: $dblue0, + share-link-clipboard: #155b91, + share-link-shadow-1: $g333, + share-link-shadow-2: $g444, + share-link-text: $dblue0, + share-link-wrapper: $dblue3, + short-course-background: $dblue8, + sidebar-background: $dark-base-component-bg, + sidebar-input-background: $dblue7, + sidebar-input-border: 1px solid $g222, + sidebar-input-border_focus: 1px solid $blue-alt, + sidebar-input-border_hover: 1px solid $dblue3, + switch-slide-after: $blue-dark, + switch-slide-before: $dblue6, + text-color-hover: white, + text-color-thin: $dblue075, + text-color: $dblue0, + toolbar-icon-hover: $dblue0, + // Use a filter to change color of img elements (e.g., png icons) + toolbar-img-icon-hover-filter: invert(91%) sepia(10%) saturate(390%) + hue-rotate(173deg) brightness(97%) contrast(89%), + tooltip-background: $dblue7, + top-bar-background: $dark-base-component-bg, + top-bar-border-bottom: 1px solid $dblue2, + tos-banner-background: $dblue7, + tos-banner-border: $dblue6, + tos-banner-close: $dblue7, + ) +); + +// Function for using the themes + +@mixin theme() { + @each $theme, $map in $themes { + .theme--#{$theme} & { + $theme-map: () !global; + @each $key, $submap in $map { + $value: map-get(map-get($themes, $theme), "#{$key}"); + $theme-map: map-merge( + $theme-map, + ( + $key: $value, + ) + ) !global; + } + @content; + $theme-map: null !global; + } + } +} + +@function t($key) { + @return map-get($theme-map, $key); +} diff --git a/static/css/timetable/framework/grid.scss b/static/css/timetable/framework/grid.scss index a77589cffd..8e4fdb3cff 100644 --- a/static/css/timetable/framework/grid.scss +++ b/static/css/timetable/framework/grid.scss @@ -11,7 +11,7 @@ width: 100%; } -@media ( min-width: 767px ){ +@media (min-width: 767px) { [class^="col-"] { float: left; } @@ -165,7 +165,7 @@ margin-left: 50%; } - .push-9 { + .push-9 { margin-left: 56.25%; } @@ -210,6 +210,8 @@ } .hr { - background-color: $g808080; + @include theme() { + background-color: t("background"); + } height: 1px; } diff --git a/static/css/timetable/framework/page_layout.scss b/static/css/timetable/framework/page_layout.scss index bce892f3a3..3f89f735db 100644 --- a/static/css/timetable/framework/page_layout.scss +++ b/static/css/timetable/framework/page_layout.scss @@ -2,6 +2,26 @@ html { height: 100%; } +h1, +h2, +h3, +h4, +h5, +h6, +p, +a, +span, +div, +input, +textarea, +th, +tr, +thead { + @include theme() { + color: t("text-color"); + } +} + h1, h2 { font-family: $font-primary; @@ -33,19 +53,22 @@ textarea { height: 100%; } -.side-bar { - background-color: $gfff; +@mixin side-bar { + @include theme() { + background-color: t("sidebar-background"); + color-scheme: t("color-scheme-type"); + } bottom: auto; height: 100%; left: calc(100% - 300px); overflow-y: auto; - padding: 20px 10px 70px 0; + padding: 20px 10px 70px 10px; position: absolute; top: 0; transform: translateX(0); - transition: transform .3s; + transition: transform 0.3s; width: 300px; - z-index: 99; + z-index: 9; &.full-cal { transform: translateX(100%); @@ -56,15 +79,29 @@ textarea { } } -.main-bar { +.side-bar { + @include side-bar; +} + +.side-bar-compare-timetable { + @include side-bar; + left: calc(100% - 600px); + width: 600px; +} + +@mixin main-bar { float: left; height: 100%; opacity: 1; - overflow-y: auto; - padding: 0 20px; - transition: width .3s, opacity .3s, visibility .3s; + overflow-y: hidden; + padding: 0 0 0 20px; + transition: width 0.3s, opacity 0.3s, visibility 0.3s; visibility: visible; width: calc(100% - 300px); + @include theme() { + background-color: t("main-bar-background"); + color-scheme: t("color-scheme-type"); + } &.full-cal { width: 100%; @@ -75,6 +112,18 @@ textarea { } } +.main-bar { + @include main-bar; +} + +.main-bar-compare-timetable { + @include main-bar; + width: calc(100% - 600px); + &.less-cal { + width: calc(100% - 600px); + } +} + .all-cols { bottom: 0; overflow-x: hidden; @@ -85,11 +134,14 @@ textarea { } .top-bar { - background-color: $gfff; + @include theme() { + background-color: t("top-bar-background"); + border-bottom: t("top-bar-border-bottom"); + } box-shadow: 0 0 12px $black-transparent-1, 0 0 1px $black-transparent-15; min-height: 50px; position: relative; - z-index: 1000; + z-index: 10; } .la-ball-clip-rotate-multiple { @@ -97,21 +149,21 @@ textarea { margin-right: 0; } -.show-exploration { +.show-advanced-search { cursor: pointer; height: 30px; position: absolute; right: -95px; top: 0; - transition: transform .3s; + transition: transform 0.3s; user-select: none; width: 85px; i { display: inline-block; - font-size: 22px; + font-size: 20px; line-height: 30px; - vertical-align: middle; + vertical-align: middle; } span { @@ -122,7 +174,7 @@ textarea { margin-left: 4px; padding: 3px 0; text-align: left; - vertical-align: middle; + vertical-align: middle; width: 60px; } } @@ -146,7 +198,7 @@ textarea { bottom: 0; left: 100%; overflow-y: auto; - padding: 10px 10px 100px; + padding: 10px 10px 100px 10px; position: fixed; top: 50px; transform: translateX(0%); @@ -163,13 +215,12 @@ textarea { } } - @media (max-width: 766px) { .main-bar { - padding: 10px; + padding: 10px 0px 10px 10px; } - .show-exploration { + .show-advanced-search { display: none; } } @@ -206,7 +257,7 @@ textarea { .fc-ltr { .fc-time-grid { .fc-event-container { - margin-left: .5%; + margin-left: 0.5%; } } } @@ -237,13 +288,15 @@ textarea { z-index: 3; span { - background-color: $primary-navy; + @include theme() { + background-color: t("navicon-hamburger-background"); + } display: block; height: 3px; position: absolute; right: 0; transform: translateY(-50%); - transition: width .3s; + transition: width 0.3s; &:nth-child(1) { top: 25%; @@ -272,12 +325,12 @@ textarea { } // End Navicon - li { &.footer-button { line-height: 22px; > a { + cursor: pointer; padding: 0 5px; &:hover { @@ -288,12 +341,16 @@ li { .footer-button--github { font-size: 13px; - color: $g333; - background-color: $geee; + @include theme() { + color: t("github-follow-button-color"); + background-color: t("github-follow-button-background-color"); + } border-radius: 3px; &:hover { text-decoration: none; - background-color: $gddd; + @include theme() { + background-color: t("github-follow-button-hover-color"); + } } i { margin: 0 3px; @@ -308,6 +365,7 @@ li { footer { background-color: transparent; + margin-bottom: 0px; .nav { margin: 5px 0; @@ -344,7 +402,7 @@ footer { margin: 5px 0; } -@media(max-width: 710px) { +@media (max-width: 710px) { .data-last-updated { float: none; text-align: center; diff --git a/static/css/timetable/main.scss b/static/css/timetable/main.scss index 4b997f9c3d..3050bec4be 100644 --- a/static/css/timetable/main.scss +++ b/static/css/timetable/main.scss @@ -1,10 +1,12 @@ // Base @import "base/colors"; @import "base/fonts"; +@import "base/themes.scss"; // Vendor @import "vendor/react-select"; @import "vendor/react_input_range"; +@import "vendor/full-calendar"; // Framework @import "framework/grid"; @@ -18,29 +20,29 @@ @import "modules/reactions"; @import "modules/share_link"; @import "modules/slot"; -@import "modules/textbooks"; @import "modules/tgl"; @import "modules/tooltip"; // Partials +@import "partials/compare_timetable_sidebar.scss"; @import "partials/course_modal"; +@import "partials/custom_event_modal.scss"; @import "partials/day_calendar"; -@import "partials/exploration_modal"; -@import "partials/final_exam_modal"; -@import "partials/integration-modal"; +@import "partials/advanced_search_modal"; @import "partials/peer_modal"; -@import "partials/preference-modal"; @import "partials/print_layout"; +@import "partials/rodal.scss"; @import "partials/save_calendar_modal"; @import "partials/search_bar"; @import "partials/side_bar"; @import "partials/side_scroller"; @import "partials/signup-modal"; @import "partials/social"; -@import "partials/textbook_modal"; @import "partials/timetable"; @import "partials/tos-banner"; @import "partials/tos-modal"; @import "partials/tut-modal"; +@import "partials/news_modal.scss"; @import "partials/user_acquisition_modal"; @import "partials/user_settings_modal"; +@import "partials/fallback"; diff --git a/static/css/timetable/modules/alert.scss b/static/css/timetable/modules/alert.scss index 2887d1a973..e428861fc3 100644 --- a/static/css/timetable/modules/alert.scss +++ b/static/css/timetable/modules/alert.scss @@ -4,14 +4,12 @@ position: fixed; right: 0; top: 14px; - z-index: 999999; + z-index: 99; .alert { align-items: center; - background-color: $g333; border-radius: 2px; box-shadow: 0 3px 12px 0 $black-transparent-3; - color: $gfff; display: flex; font-size: 11px; justify-content: space-between; @@ -54,7 +52,7 @@ &.scale-enter-active { transform: scale(1); - transition: transform 250ms cubic-bezier(0, 0, .5, 1.5); + transition: transform 250ms cubic-bezier(0, 0, 0.5, 1.5); } } @@ -68,7 +66,7 @@ } .fade-enter { - opacity: .1; + opacity: 0.1; &.fade-enter-active { opacity: 1; @@ -80,7 +78,7 @@ opacity: 1; &.fade-leave-active { - opacity: .1; + opacity: 0.1; transition: opacity 250ms ease-in; } } @@ -129,7 +127,7 @@ .close { &:hover { - opacity: .55; + opacity: 0.55; } .close-light { @@ -190,50 +188,43 @@ } } -.change-semester-alert { - .conflict-alert-btn { - padding-left: 5px; - padding-right: 5px; - width: 90%; - } -} +.delete-timetable-alert-btn { + background-color: $confirm-green; + border: 0; + border-bottom: 2px solid $confirm-green-darker; + box-shadow: inset 0 -2px $confirm-green-darker; + color: $gfff; + cursor: pointer; + height: 25px; + margin-top: 10px; + padding: 0; + position: relative; + text-align: center; + text-shadow: 0 1px 2px $black-transparent-25; + vertical-align: top; + width: 70%; -.enable-notification-alert { - h2 { - font-size: 16px; - margin: 0; + &:focus { + outline: none; } - .alert-extra { - font-size: 12px; - line-height: 12px; + &:active { + box-shadow: none; + outline: none; + top: 1px; } - .decline-notifications { - &, - &:link, - &:active, - &:visited { - color: $g999; - cursor: pointer; - display: block; - margin-top: 25px; - opacity: .77; - transition: opacity .3s; - } - - &:hover { - opacity: 1; - } + &:hover { + background-color: $confirm-green-hover; } } -.enable-notifications-alert-icon { - background: url("/static/img/alert/bell.png") center no-repeat; - background-size: contain; - height: 20px; - vertical-align: middle; - width: 20px; +.change-semester-alert { + .conflict-alert-btn { + padding-left: 5px; + padding-right: 5px; + width: 90%; + } } .friends-in-class-alert { @@ -315,7 +306,3 @@ font-size: 13px; } } - - - - diff --git a/static/css/timetable/modules/evaluation.scss b/static/css/timetable/modules/evaluation.scss index 6da96ba2d7..08ee43e7b3 100644 --- a/static/css/timetable/modules/evaluation.scss +++ b/static/css/timetable/modules/evaluation.scss @@ -1,11 +1,13 @@ .modal-entry { .eval-item { - background-color: $gfff; - border: 1px solid $gd4d4d4; + @include theme() { + background-color: t("evaluation-background"); + border: 1px solid t("modal-border-color"); + } display: inline-block; margin: 3px; text-align: center; - transition: width .3s; + transition: width 0.3s; } } @@ -36,7 +38,9 @@ .nav-item-active { .eval-item { - border: 1px solid $primary-navy; + @include theme() { + border: 1px solid t("toolbar-icon-hover"); + } } } @@ -128,7 +132,7 @@ width: 90px; } -.col-3-16 { +.col-4-16 { .star-ratings-sprite { margin-left: 50%; transform: translateX(-50%); diff --git a/static/css/timetable/modules/pagination.scss b/static/css/timetable/modules/pagination.scss index b95367382e..7edd78b933 100644 --- a/static/css/timetable/modules/pagination.scss +++ b/static/css/timetable/modules/pagination.scss @@ -29,8 +29,10 @@ } .sem-page { - background-color: $gaaa; - border: 5px solid $gfff; + @include theme() { + background-color: t("course-section-bubble-background"); + border: 5px solid t("course-section-bubble-border"); + } border-radius: 50%; color: transparent; cursor: pointer; @@ -54,9 +56,17 @@ &.active { background-color: $primary-navy; border: 5px solid $primary-navy; - color: $gfff; + span.section-bubble { + @include theme() { + color: t("bubble-text-color"); + } + } } + span.section-bubble { + color: transparent + } + span { left: 50%; position: absolute; diff --git a/static/css/timetable/modules/reactions.scss b/static/css/timetable/modules/reactions.scss index 0599efb595..afe2a83cc1 100644 --- a/static/css/timetable/modules/reactions.scss +++ b/static/css/timetable/modules/reactions.scss @@ -1,6 +1,8 @@ .reactions { - background-color: $gf3f3f3; - border: 1px solid $gd9d9d9; + @include theme() { + background-color: t("reactions-background"); + border: 1px solid t("main-calendar-border-color"); + } border-radius: 60px; display: inline-block; padding: 0 10px; @@ -12,19 +14,19 @@ margin: 0 2px; position: relative; text-align: center; - transition: all .5s cubic-bezier(.36, -0.64, .34, 1.76); - transition: transform .3s ease-out; + transition: all 0.5s cubic-bezier(0.36, -0.64, 0.34, 1.76); + transition: transform 0.3s ease-out; vertical-align: middle; width: 40px; &:hover.animate { transform: scale(1.2); - transition: transform .3s ease-out; + transition: transform 0.3s ease-out; } &:hover.no-animate { transform: scale(1.1); - transition: transform .3s ease-out; + transition: transform 0.3s ease-out; } .emoji { @@ -44,30 +46,31 @@ opacity: 0; perspective: 100px; transform: scale(1.2); - transition: transform .3s ease-out; + transition: transform 0.3s ease-out; } .swing.reaction.no-animate { opacity: 1; transform: none; - transition: transform .3s ease-out; + transition: transform 0.3s ease-out; } - .reactions-wrapper { text-align: center; width: 100%; } .emoji-count { - background-color: $ga1a1a1; + @include theme() { + background-color: t("reactions-count-background"); + } border-radius: 30%; bottom: 10px; color: $gfff; font-size: 14px; font-weight: 700; height: 16px; - opacity: .7; + opacity: 0.7; padding: 0 2px; position: absolute; right: 0; @@ -129,9 +132,11 @@ } .reaction-dropdown { - background-color: $ga1a1a1; + @include theme() { + color: t("text-color-thin"); + background-color: t("reactions-count-background"); + } border-radius: 8px; - color: $gfff; font-size: 10px; left: -15%; opacity: 0; @@ -157,20 +162,20 @@ } .reaction:hover .reaction-dropdown { - opacity: .8; + opacity: 0.8; transition: visibility 0s linear 0ms, opacity 300ms; visibility: visible; } @media (max-width: 810px) { - .reactions { + .reactions { .reaction { width: 34px; } } } @media (max-width: 355px) { - .reactions { + .reactions { .reaction { width: 29px; } diff --git a/static/css/timetable/modules/share_link.scss b/static/css/timetable/modules/share_link.scss index 172fec05ee..1a39b7dcb8 100644 --- a/static/css/timetable/modules/share_link.scss +++ b/static/css/timetable/modules/share_link.scss @@ -1,5 +1,8 @@ .share-course-link-wrapper { - background-color: $gf9f9f9; + @include theme() { + background-color: t("share-link-wrapper"); + box-shadow: 0px 2px 6px t("share-link-shadow-1"); + } border-radius: 2px; max-width: 250px; padding: 5px; @@ -7,23 +10,28 @@ right: 5px; top: 20px; z-index: 2; - box-shadow: 0 0 12px rgba(0, 0, 0, 0.5), 0 0 1px rgba(0, 0, 0, 0.15); display: inline-block; margin-top: 8px; font-size: 12px; - cursor:default; + cursor: default; .tip { + @include theme() { + border-color: transparent transparent t("share-link-wrapper"); + } right: 12px; top: -8px; - border-color: transparent transparent #f9f9f9; } .tip-border { right: 12px; top: -9px; - border-color: transparent transparent #f9f9f9; + @include theme() { + border-color: transparent transparent t("share-link-wrapper"); + } } .share-course-link { - color: $g222; + @include theme() { + color: t("share-link-text"); + } font-size: 14px; font-weight: 400; height: 25px; @@ -31,18 +39,19 @@ max-width: 240px; width: auto; cursor: text; - border: 1px solid $gddd; padding: 0 5px; } .clipboardBtn { text-align: center; - background-color: #3895db; + @include theme() { + background-color: t("share-link-clipboard"); + color: t("share-link-clipboard-text"); + } margin-top: 8px; padding: 3px 7px; font-size: 12px; border-radius: 3px; cursor: pointer; - color: $gfff; } .clipboardSuccess { background: grey; @@ -60,4 +69,4 @@ text-align: left; margin: 10px 4px 0; } -} \ No newline at end of file +} diff --git a/static/css/timetable/modules/slot.scss b/static/css/timetable/modules/slot.scss index 09f1faeea6..3d145c862d 100644 --- a/static/css/timetable/modules/slot.scss +++ b/static/css/timetable/modules/slot.scss @@ -4,46 +4,51 @@ color: $g222; cursor: pointer; font-size: 13px; - transition: color .3s, background-color .3s, width .3s, left .3s; + transition: color 0.3s, background-color 0.3s, width 0.3s, left 0.3s; &:hover { color: $g222; } + div { + span { + color: black; + } + } + .fa-times { cursor: pointer; - opacity: .75; + opacity: 0.75; position: absolute; right: 3.5px; top: 1px; - transition: transform .2s, opacity .2s; - z-index: 9999; + transition: transform 0.2s, opacity 0.2s; + z-index: 9; &:hover { opacity: 1; transform: scale(1.4); - z-index: 9999; + z-index: 9; } } .fa-lock, .fa-unlock { bottom: 5px; - opacity: .75; + opacity: 0.75; position: absolute; right: 5px; - transition: transform .2s, opacity .2s; - z-index: 9999; + transition: transform 0.2s, opacity 0.2s; + z-index: 9; &:hover { opacity: 1; transform: scale(1.4); - z-index: 9999; + z-index: 9; } } } - .slot-content { h3 { margin: 0; @@ -69,3 +74,19 @@ margin-left: 2px; } } + +.slot-shortCourseDates { + @include theme() { + background-color: t("short-course-background"); + color: t("text-color"); + } + font-size: 10px; + border-radius: 4px; + text-align: center; + width: 80%; + z-index: 10; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); +} diff --git a/static/css/timetable/modules/textbooks.scss b/static/css/timetable/modules/textbooks.scss deleted file mode 100644 index 6ecc978948..0000000000 --- a/static/css/timetable/modules/textbooks.scss +++ /dev/null @@ -1,78 +0,0 @@ -.tb-image-wrapper { - height: 140px; - overflow: hidden; - position: relative; - width: 95px; -} - -.textbook { - display: inline-block; - float: none; - padding: 5px; - text-align: center; - width: 95px; - - h4 { - -webkit-box-orient: vertical; - -webkit-line-clamp: 2; - color: $g555; - display: -webkit-box; - font-size: 11px; - font-weight: 500; - height: 25px; - margin: 0 0 2px; - overflow: hidden; - transition: color .3s ease; - - &:hover { - color: $textbook; - } - } - - h2 { - font-size: 12px; - font-weight: 500; - margin: 0 0 2px; - max-height: 84px; - overflow: hidden; - text-overflow: ellipsis; - } - - img { - padding: 4px; - position: relative; - top: 50%; - transform: translateY(-50%); - width: 90px; - } - - .required { - background-color: $textbook; - color: $gfff; - font-size: 12px; - position: relative; - top: -12px; - width: 60px; - z-index: 10; - - &::after { - border-color: $textbook transparent transparent $textbook; - border-style: solid; - border-width: 9px 4px; - content: " "; - margin-left: 4px; - position: absolute; - } - } - - .amazon-buy { - color: $primary-navy; - font-size: 11px; - font-style: italic; - font-weight: 600; - } -} - -.textbook-ctn { - display: inline-block; -} diff --git a/static/css/timetable/modules/tgl.scss b/static/css/timetable/modules/tgl.scss index 7d855ef7ce..86cd456690 100644 --- a/static/css/timetable/modules/tgl.scss +++ b/static/css/timetable/modules/tgl.scss @@ -220,11 +220,15 @@ } &::before { - background: #eceeef; + @include theme() { + background: t("switch-slide-before") + } } &::after { - background: #87CEEB; + @include theme() { + background: t("switch-slide-after") + } color: $gfff; left: -100px; } diff --git a/static/css/timetable/partials/advanced_search_modal.scss b/static/css/timetable/partials/advanced_search_modal.scss new file mode 100644 index 0000000000..eaa63c1b10 --- /dev/null +++ b/static/css/timetable/partials/advanced_search_modal.scss @@ -0,0 +1,569 @@ +// Advanced Search Modal Styles +.advanced-search-modal { + > div { + height: 100%; + outline: none; + width: 100%; + } + + .ms-friend { + float: left; + height: 30px; + margin: 0; + width: 30px; + } + + div { + transition: background-color 0.2s; + } + + &.trans + div, + &.trans > div { + background-color: transparent !important; + } +} + +.advanced-search-content { + @include theme() { + background-color: t("modal-background"); + } + height: 100%; + position: relative; + width: 100%; + + &.loading { + cursor: wait; + } +} + +@media (max-width: 766px) { + .advanced-search-modal, + .advanced-search-modal + div { + display: none; + } +} + +.advanced-search-modal.trans, +.trans .advanced-search-content, +.trans .advanced-search-content .advanced-search-modal-header, +.trans .advanced-search-content .advanced-search-modal-header input, +.trans .advanced-search-header, +.trans .adv-title h1, +.trans .advanced-search-header input, +.trans .advanced-search-close, +.trans h3.advanced-search-modal-header, +.trans h3.advanced-search-modal-header:after, +.trans h3.advanced-search-modal-header i, +.trans .advanced-search-body, +.trans .advanced-search-body p, +.trans .adv-modal .modal-content, +.trans .adv-modal .modal-content .modal-header, +.trans .adv-modal .modal-content .modal-header h1, +.trans .adv-modal .modal-content .modal-header h2, +.trans .adv-modal .modal-content .modal-header div, +.trans .adv-modal .modal-content .modal-body, +.trans .modal-body, +.trans .modal-body .credits h4, +.trans .adv-modal .modal-share, +.trans .adv-modal .modal-share i, +.trans .adv-modal .modal-add, +.trans .adv-modal .modal-add i, +.trans .adv-modal .modal-save, +.trans .adv-modal .modal-save i, +.trans .modal-module, +.trans h3.modal-module-header, +.trans h3.modal-module-header:after { + color: transparent; + background-color: transparent; + border-color: transparent; +} + +.trans .advanced-search-results, +.trans .adv-title, +.trans .modal-module, +.trans .time-selector, +.trans .modal-body .rating-module, +.trans .exp-filter-section, +.trans .modal-body p, +.trans .modal-body .modal-module-header { + opacity: 0; + visibility: hidden; +} + +.advanced-search-modal-header { + @include theme() { + background-color: t("modal-background"); + border-bottom: 1px solid t("modal-border-color"); + } + padding: 15px; + position: absolute; + width: 100%; + z-index: 1; + + input { + @include theme() { + border: 1px solid t("modal-border-color"); + } + font-size: 16px; + height: 30px; + line-height: 30px; + margin-right: 7px; + outline: 0; + padding: 0 10px; + width: 90%; + + &::-webkit-input-placeholder { + font-size: 14px; + line-height: 30px; + } + + &::-moz-placeholder { + font-size: 14px; + line-height: 30px; + } + + &:-ms-input-placeholder { + // IE 10+ + font-size: 14px; + line-height: 30px; + } + + &:-moz-placeholder { + // Firefox 18- + font-size: 14px; + line-height: 30px; + } + } +} + +.adv-title { + i { + display: inline-block; + font-size: 22px; + line-height: 30px; + margin-right: 5px; + vertical-align: middle; + } + + h1 { + @include theme() { + color: t("text-color-thin"); + } + display: inline-block; + font-size: 18px; + line-height: 30px; + margin: 0; + vertical-align: middle; + } +} + +/* Close Advanced Search Button */ +.advanced-search-close { + cursor: pointer; + height: 20px; + position: absolute; + right: 10px; + top: 5px; + transition: color 0.3s, transform 0.3s; + width: 20px; + + &:hover { + color: #ff4523; + transform: scale(1.2); + } + + i { + font-size: 20px; + line-height: 20px; + } +} + +// Share Button +.adv-modal { + .share-course-link-wrapper { + margin-right: 158px; + margin-top: 118px; + + .tip { + display: none; + } + + .tip-border { + right: 180px; + } + } +} + +.advanced-search-body { + height: 100%; + left: 0; + padding: 61px 0 0; + position: absolute; + top: 0; + width: 100%; + display: flex; + flex-direction: row; + align-items: start; + p { + @include theme() { + color: t("text-color-thin"); + } + font-size: 12px; + } + .subtitle div { + font-size: 12px; + } +} + +.advanced-search-header { + @include theme() { + color: t("text-color-thin"); + } + clear: both; + font-size: 14px; + font-weight: 200; + margin: 0; + padding: 10px 5px; + position: relative; + + &::after { + @include theme() { + background-color: t( + "modal-border-color" + ); // This actually controls the border color + } + bottom: 5px; + content: ""; + display: block; + height: 1px; + left: 0; + position: absolute; + width: 100%; + } + + i { + color: $g999; + cursor: pointer; + float: right; + transition: color 0.3s; + + &:hover { + color: #7e88dc; + } + + &.clear-all { + margin-right: 6px; + font-style: normal; + display: flex; + align-items: center; + } + } +} + +// Advanced Search Filters +.advanced-search-filters { + height: 100%; + overflow-y: auto; + padding: 15px; + + h6 { + border-radius: 3px; + font-size: 16px; + font-weight: 400; + margin: 0 0 3px; + padding: 5px; + + i { + cursor: pointer; + font-size: 14px; + margin-left: -5px; + margin-right: 3px; + transition: transform 0.3s, color 0.3s; + } + } + + .time-selector { + display: flex; + flex-direction: row; + justify-content: space-between; + align-items: baseline; + height: auto; + i { + cursor: pointer; + font-size: 14px; + margin-right: 10px; + transition: transform 0.3s, color 0.3s; + } + } + + i { + &:hover { + color: #ff4523; + transform: scale(1.1); + } + } + + .none-selected { + font-size: 14px; + margin-left: 0; + } +} + +.exp-filter-section { + padding: 0 0 20px; +} + +.selected-filter { + @include theme() { + border: solid 1px t("modal-border-color"); + } + border-radius: 5px; + padding: 0 5px 0 5px; + margin: 0 0 3px 5px; + width: auto; + display: flex; + flex-wrap: nowrap; + flex-direction: row; + justify-content: space-between; + align-items: flex-start; +} + +// Filter Out Pop +.filter-pop-out { + @include theme() { + background-color: t("modal-background"); + border: 1px solid t("modal-border-color"); + } + box-shadow: 0 2px 10px $black-transparent-2; + display: none; + left: 25%; + position: absolute; + top: 10px; + width: 200px; + z-index: 1; + + &.open { + display: block; + } + + input { + border: 0; + font-size: 16px; + line-height: 42px; + outline: 0; + padding: 0 5px 0 25px; + width: 100%; + } +} + +.fpo-list { + max-height: 400px; + overflow-y: auto; + padding: 0; + + ul { + margin: 0; + padding: 0; + } + + li { + @include theme() { + background-color: t("modal-background"); + } + cursor: pointer; + list-style-type: none; + padding: 0 5px 0 45px; + position: relative; + transition: background-color 0.3s; + + &:hover { + @include theme() { + background-color: t("search-results-hover"); + } + } + + &.loading { + cursor: wait; + } + } + + i { + display: inline-block; + left: 10px; + line-height: 42px; + position: absolute; + vertical-align: middle; + } + + h6 { + display: inline-block; + font-size: 14px; + line-height: 14px; + margin: 0; + padding: 14px 0; + vertical-align: middle; + } +} + +// Advanced Search Results +.advanced-search-results { + height: 100%; + opacity: 1; + overflow-y: auto; + padding: 15px; + visibility: visible; + + p { + padding-left: 10px; + } + + .extra-space { + height: 500px; + } +} + +.advanced-s-result { + @include theme() { + background-color: t("modal-background"); + } + cursor: pointer; + padding: 10px; + position: relative; + transition: background-color 0.3s; + + &:hover { + @include theme() { + background-color: t("search-results-hover"); + } + } + + h4 { + font-size: 14px; + margin: 0; + } + + h5 { + @include theme() { + color: t("text-color-thin"); + } + font-size: 12px; + font-weight: 400; + margin: 5px 0; + } +} + +.s-result-selected { + @include theme() { + background-color: t("search-results-hover"); + } +} + +// Advanced Course Content +.adv-modal { + height: 100%; + + .modal-content { + display: flex; + flex-direction: column; + } + + .modal-header { + @include theme() { + background-color: t("modal-header-background"); + } + padding: 20px 10px 30px; + + > .subtitle { + h2 { + padding: 0; + } + } + } + + h1 { + font-size: 22px; + padding: 0; + } + + h2 { + font-size: 14px; + padding: 0 20% 0 0; + } + + .modal-body { + padding-top: 20px; + @include theme() { + background-color: t("modal-background"); + } + } + + [class^="col-"] { + width: 100%; + padding: 20px 15px 0; + } + + .modal-share, + .modal-add, + .modal-save { + background-color: $primary-navy; + border-radius: 100%; + bottom: -34px; + cursor: pointer; + height: 60px; + position: absolute; + top: auto; + transform: translateX(-50%); + transition: background-color 0.3s; + width: 60px; + z-index: 1; + + i { + color: $gfff; + font-size: 24px; + line-height: 60px; + text-align: center; + width: 100%; + } + + &:hover { + transform: scale(1) translateX(-50%); + } + } + + .modal-share { + left: 25%; + + &:hover { + background-color: #5b99ce; + } + } + + .modal-save { + left: 50%; + + &:hover { + background-color: #5bce84; + } + } + + .modal-add { + left: 75%; + + &:hover { + background-color: #1858bb; + } + + &.on-active-timetable { + background-color: #2dd6b5; + + &:hover { + background-color: #56eccf; + } + } + } +} + +.input-range__label-container { + &::after { + content: none; + } +} diff --git a/static/css/timetable/partials/compare_timetable_sidebar.scss b/static/css/timetable/partials/compare_timetable_sidebar.scss new file mode 100644 index 0000000000..9ab0587964 --- /dev/null +++ b/static/css/timetable/partials/compare_timetable_sidebar.scss @@ -0,0 +1,75 @@ +@import "../framework/page_layout.scss"; + +.side-bar-compare-timetable { + @include side-bar; + left: calc(100% - 550px); + width: 550px; +} + +.main-bar-compare-timetable { + @include main-bar; + width: calc(100% - 550px); + &.less-cal { + width: calc(100% - 550px); + } +} + +.slots-rating { + display: flex; + flex-direction: row; + justify-content: space-around; +} + +.horizontal-bar { + border-top: 2px solid rgba(196, 196, 196, 1); + padding-top: 5px; + margin: 0 10px; +} + +.slots-comparison { + display: flex; + flex-direction: row; + justify-content: space-around; +} + +.slots-list { + display: flex; + flex-direction: column; + margin-bottom: 1rem; + width: 250px; +} + +.slots-separator { + border-left: 2px solid rgba(196, 196, 196, 1); + position: absolute; + left: 50%; + margin-left: -5px; + height: 80%; + top: 20px; + z-index: -1; +} + +.compare-timetable-exit { + position: absolute; + right: 0; + padding: 1rem; + margin-right: 10px; + cursor: pointer; +} + +.slots-title-wrapper { + margin-bottom: 10px; + display: flex; + flex-direction: row; + justify-content: space-around; +} + +.title-wrapper { + width: 50%; + margin-left: 20px; + margin-right: 20px; +} + +.slots-wrapper { + min-height: 80%; +} diff --git a/static/css/timetable/partials/course_modal.scss b/static/css/timetable/partials/course_modal.scss index 4b81587005..175e4275be 100644 --- a/static/css/timetable/partials/course_modal.scss +++ b/static/css/timetable/partials/course_modal.scss @@ -1,40 +1,45 @@ // Course Modal Styles .course-modal { - height: 85%; - max-height: 900px; - max-width: 1200px; - > div { - // using important to override boron default style - // can't declare in javascript either, cuz need hover - background-color: rgba(0,0,0,.8) !important; height: 100%; outline: none; - transition: background-color .2s; + transition: background-color 0.2s; width: 100%; } + div { - // using important to override boron default style - // can't declare in javascript either, cuz need hover - background-color: rgba(0,0,0,.8) !important; - transition: background-color .2s; + transition: background-color 0.2s; } &.trans + div, &.trans > div { - // using important to override boron default style - // can't declare in javascript either, cuz need hover background-color: transparent !important; } + + // Course Modal Content Styles + .modal-content { + @include theme() { + background-color: t("modal-background"); + } + border: 0; + border-radius: 0; + box-shadow: none; + display: flex; + flex-direction: column; + height: 100%; + transition: background-color 0.2s, color 0.2s; + width: 100%; + } } .course-modal.trans .modal-content, .course-modal.trans .modal-header, +.course-modal.trans .modal-header div, .course-modal.trans .modal-header h1, .course-modal.trans .modal-header h2, .course-modal.trans .modal-body p, .course-modal.trans .modal-body p a, +.course-modal.trans .modal-body .credits h3, .course-modal.trans .modal-body .credits h4, .course-modal.trans .modal-body .rating-module h4, .course-modal.trans .modal-body .modal-module { @@ -65,6 +70,49 @@ border-top-left-radius: 5px; } +.subtitle { + display: flex; + align-items: center; + margin: 6px; + > .areas { + display: flex; + > div { + border-radius: 25%; + } + } +} + +.bubble { + color: white; + text-align: center; + font-size: 16px; + margin-left: 5px; + padding: 2px 4px; + &.H { + background: rgba(255, 118, 118, 0.7); + } + + &.S { + background: rgba(64, 142, 169, 0.7); + } + + &.N { + background: rgba(177, 119, 199, 0.7); + } + + &.E { + background: rgba(37, 155, 130, 0.7); + } + + &.Q { + background: rgba(255, 212, 98, 0.7); + } + &.writing { + background: rgba(55, 89, 148, 0.7); + border-radius: 7px; + } +} + .course-modal .img-icon { left: 50%; position: absolute; @@ -95,33 +143,24 @@ width: 30px; } -// Course Modal Content Styles -.modal-content { - background-color: $gfff; - border: 0; - border-radius: 0; - box-shadow: none; - display: flex; - flex-direction: column; - height: 100%; - transition: background-color .2s, color .2s; - width: 100%; -} - .modal-header { - background-color: $gf3f3f3; - border-bottom: 1px solid $gddd; + @include theme() { + background-color: t("modal-header-background"); + border-bottom: 1px solid t("modal-border-color"); + } padding: 20px 10px 10px; position: relative; - transition: background-color .2s, color .2s; + transition: background-color 0.2s, color 0.2s; z-index: 11; h1 { - color: $primary-navy; + @include theme() { + color: t("text-color"); + } font-size: 36px; margin: 0; padding-right: 85px; - transition: color .2s; + transition: color 0.2s; } h2 { @@ -131,11 +170,10 @@ font-weight: 400; margin: 10px 0; padding-right: 15%; - transition: color .2s; + transition: color 0.2s; } } - // Course Modal Corner Actions .modal-close, .modal-share, @@ -146,7 +184,7 @@ opacity: 1; position: absolute; top: 5px; - transition: color .2s, transform .3s, opacity .2s, visibility .2s; + transition: color 0.2s, transform 0.3s, opacity 0.2s, visibility 0.2s; visibility: visible; width: 20px; @@ -160,7 +198,7 @@ right: 5px; &:hover { - color: #C0392B; + color: #c0392b; transform: scale(1.2); } } @@ -169,7 +207,7 @@ right: 30px; &:hover { - color: #5B99CE; + color: #5b99ce; transform: scale(1.2); } } @@ -191,7 +229,7 @@ right: 55px; &:hover { - color: #5BCE84; + color: #5bce84; transform: scale(1.2); } } @@ -206,7 +244,7 @@ opacity: 1; position: absolute; right: 10%; - transition: background-color .2s, opacity .2s, visibility .2s; + transition: background-color 0.2s, opacity 0.2s, visibility 0.2s; visibility: visible; width: 60px; z-index: 1; @@ -220,21 +258,21 @@ } &:hover { - background-color: #1858BB; + background-color: #1858bb; } &.in-roster { &:hover { - animation: pulsate .8s ease-out infinite; - background-color: #C0392B; + animation: pulsate 0.8s ease-out infinite; + background-color: #c0392b; } } &.on-active-timetable { - background-color: #2DD6B5; + background-color: #2dd6b5; &:hover { - background-color: #56ECCF; + background-color: #56eccf; } } } @@ -256,11 +294,11 @@ } } - // Course Modal Body .modal-body { flex: 1; overflow-y: auto; + overflow-x: hidden; width: 100%; [class^="col-"] { @@ -268,12 +306,11 @@ } p { - color: $g555; font-size: 16px; line-height: 22px; margin: 7px 0; padding: 0 5px; - transition: color .2s; + transition: color 0.2s; word-wrap: break-word; } @@ -290,22 +327,25 @@ line-height: 66px; margin: 0; text-align: center; + transition: color 0.3s; } h4 { - color: $g999; + @include theme() { + color: t("course-modal-credits"); + } font-size: 30px; font-weight: 200; line-height: 30px; margin: 0 auto 20px; text-align: center; - transition: color .3s; + transition: color 0.3s; } } .rating-module { opacity: 1; - transition: opacity .2s, visibility .2s; + transition: opacity 0.2s, visibility 0.2s; visibility: visible; h4 { @@ -314,7 +354,7 @@ font-weight: 400; margin: 0 auto 5px; text-align: center; - transition: color .2s; + transition: color 0.2s; } } @@ -330,7 +370,7 @@ cursor: pointer; position: relative; text-decoration: underline; - transition: color .3s; + transition: color 0.3s; } &:active, @@ -344,9 +384,7 @@ } .course-link-tip { - background-color: #FD7473; border-radius: 5px; - color: $g222; height: 60px; left: -10px; line-height: 20px; @@ -354,7 +392,7 @@ overflow: hidden; position: absolute; top: -10px; - transition: opacity .3s, visibility .3s; + transition: opacity 0.3s, visibility 0.3s; visibility: hidden; white-space: nowrap; z-index: 1; @@ -366,11 +404,13 @@ .course-link-content { padding: 10px; + span { + color: $g222; + } } } } - .modal-module-header { clear: both; color: $g777; @@ -379,46 +419,56 @@ margin: 0; padding: 10px 5px; position: relative; - transition: color .2s; + transition: color 0.2s; &::after { - background-color: $gddd; + @include theme() { + background-color: t("modal-border-color"); + } bottom: 5px; content: ""; display: block; height: 1px; left: 0; position: absolute; - transition: background-color .2s; + transition: background-color 0.2s; width: 100%; } small { - color: $g777; + @include theme() { + color: t("text-color-thin"); + } font-size: 11px; } } // Course Modal Sections .modal-section { - background-color: rgba(255,255,255,.8); + @include theme() { + background-color: t("lecture-section-background"); + } cursor: pointer; float: left; padding: 7px; position: relative; - transition: background-color .2s; + transition: background-color 0.2s; width: 50%; &:hover { - background-color: $geee; + @include theme() { + background-color: t("lecture-section-background-hover"); + } } - &:nth-child(2n+0) { + &:nth-child(2n + 0) { clear: both; } h4 { - color: $primary-navy; + @include theme() { + color: t("text-color"); + } font-size: 16px; font-weight: 400; line-height: 20px; @@ -439,7 +489,9 @@ } h5 { - color: $g777; + @include theme() { + color: t("text-color-thin"); + } font-size: 13px; font-weight: 400; line-height: 16px; @@ -447,7 +499,94 @@ } h6 { - color: $g777; + @include theme() { + color: t("text-color-thin"); + } + font-size: 10px; + font-weight: 400; + line-height: 14px; + margin: 0; + + .green { + color: $green; + } + + .yellow { + color: $yellow; + } + + .red { + color: $red; + } + } + + .fa-lock { + bottom: 7px; + font-size: 14px; + line-height: 20px; + opacity: 0; + position: absolute; + right: 7px; + text-align: center; + transition: opacity 0.3s, visibility 0.3s; + visibility: hidden; + width: 20px; + } +} + +.modal-section-hover { + @include theme() { + background-color: t("lecture-section-background-hover"); + } + cursor: pointer; + float: left; + padding: 7px; + position: relative; + transition: background-color 0.2s; + width: 50%; + + + &:nth-child(2n + 0) { + clear: both; + } + + h4 { + @include theme() { + color: t("text-color"); + } + font-size: 16px; + font-weight: 400; + line-height: 20px; + margin: 0; + + span { + display: inline-block; + margin-right: 3px; + vertical-align: middle; + } + + i { + display: inline-block; + font-size: 14px; + line-height: 20px; + vertical-align: middle; + } + } + + h5 { + @include theme() { + color: t("text-color-thin"); + } + font-size: 13px; + font-weight: 400; + line-height: 16px; + margin: 0; + } + + h6 { + @include theme() { + color: t("text-color-thin"); + } font-size: 10px; font-weight: 400; line-height: 14px; @@ -466,16 +605,15 @@ } } - .fa-lock { + .fa-lock { bottom: 7px; - color: $primary-navy; font-size: 14px; line-height: 20px; opacity: 0; position: absolute; right: 7px; text-align: center; - transition: opacity .3s, visibility .3s; + transition: opacity 0.3s, visibility 0.3s; visibility: hidden; width: 20px; } @@ -487,7 +625,7 @@ .modal-section .fa-calendar-check-o { opacity: 0; - transition: opacity .3s, visibility .3s; + transition: opacity 0.3s, visibility 0.3s; visibility: hidden; } @@ -581,44 +719,6 @@ margin-right: 4px; } -.academic-support { - li { - list-style-type: none; - padding-top: 5px; - padding-bottom: 5px; - } - - .integration-image { - background-position: center; - background-repeat: no-repeat; - background-size: contain; - float: left; - height: 22px; - margin-right: 5px; - width: 22px; - } - - h4 { - float: left; - font-size: 14px; - line-height: 22px; - margin: 0; - } - - a { - float: right; - font-size: 12px; - line-height: 22px; - } - - p { - clear: both; - font-size: 12px; - line-height: 14px; - padding: 5px 0 0; - } -} - @media (max-width: 766px) { .modal-header { h1 { @@ -654,11 +754,11 @@ h2 { font-size: 14px; } - } + } .modal-body { padding-top: 20px; - } + } .modal-add, .modal-share, @@ -671,7 +771,7 @@ position: absolute; top: auto; transform: translateX(-50%); - transition: background-color .3s; + transition: background-color 0.3s; width: 60px; z-index: 1; @@ -686,7 +786,7 @@ &:hover { transform: scale(1) translateX(-50%); } - } + } .modal-share { left: 25%; @@ -694,7 +794,7 @@ &:hover { background-color: #5b99ce; } - } + } .modal-save { left: 50%; @@ -702,13 +802,11 @@ &:hover { background-color: #5bce84; } - } + } .modal-add { left: 75%; - } - - + } } .capacity { @@ -774,20 +872,19 @@ float: none; margin: 5px 0 0; } - } - + } } @media (max-width: 801px) { .capacity__attention { font-size: 14px; - } + } } @media (max-width: 670px) { .capacity__attention { font-size: 13px; - } + } } .capacity__tracker-text { diff --git a/static/css/timetable/partials/custom_event_modal.scss b/static/css/timetable/partials/custom_event_modal.scss new file mode 100644 index 0000000000..457d15ee0b --- /dev/null +++ b/static/css/timetable/partials/custom_event_modal.scss @@ -0,0 +1,137 @@ +.modal-header { + padding-left: 2em; +} + +.edit-custom-event-form { + display: flex; + flex-direction: column; + gap: 1em; + + p { + padding: 0 2em; + margin: 0; + text-align: center; + color: red; + } +} + +.event-days { + display: flex; + flex-direction: row; + justify-content: space-around; + gap: 1em; + + button { + width: 35px; + height: 35px; + border-radius: 50%; + border-width: 0px; + @include theme() { + border-color: t("modal-border-color"); + } + } + + .active { + @include theme() { + background-color: t("custom-event-active-day-background"); + } + } + + .inactive { + @include theme() { + background-color: t("custom-event-inactive-day-background"); + } + } +} + +.event-form-items { + display: flex; + flex-direction: row; + justify-content: left; + padding: 1em 2em; + gap: 1em; +} + +.event-labels { + display: flex; + flex-direction: column; + justify-content: space-between; + gap: 1em; + + label { + display: block; + margin: 0; + } +} + +.event-text-inputs { + display: flex; + flex-direction: column; + flex-grow: 1; + justify-content: space-between; + gap: 1em; + + input { + height: 1em; + width: 100%; + padding: 15px 5px; + border-radius: 5px; + } +} + +.event-color-presets { + display: flex; + flex-direction: column; + gap: 5px; +} + +.event-color-preset-buttons { + display: flex; + flex-direction: row; + justify-content: space-around; + gap: 5px; + + button { + width: 20px; + height: 20px; + border-radius: 50%; + border-width: 0; + } +} + +.event-color-block { + width: 100%; + height: 45px; + border-radius: 5px; +} + +.event-color-picker .react-colorful { + position: absolute; + width: 390px; + top: 85px; + left: 13px; + @media (min-width: 768px) { + left: 174px; + } +} + +.save-button { + @include theme() { + background-color: t("confirm-button-background"); + } + width: 50%; + margin-left: auto; + margin-right: auto; + margin-bottom: 1em; + + span { + color: white; + font-size: 1.5em; + } + + &:hover { + @include theme() { + background-color: t("confirm-button-hover"); + } + } +} diff --git a/static/css/timetable/partials/day_calendar.scss b/static/css/timetable/partials/day_calendar.scss index 9393980efd..09cdfd2c92 100644 --- a/static/css/timetable/partials/day_calendar.scss +++ b/static/css/timetable/partials/day_calendar.scss @@ -15,7 +15,6 @@ float: left; font-size: 12px; line-height: 20px; - width: 20%; } .day-pills__wrapper { @@ -39,13 +38,8 @@ width: 100%; } - #nudgespotInappContainer { // sass-lint:disable-line id-name-format - display: none; - } - .calendar { .fc-toolbar { - background-color: $gf9f9f9; border-bottom: 0; border-color: transparent; margin-top: 0; @@ -58,7 +52,7 @@ border: 0; } - .fc .fc-toolbar>*>:first-child { + .fc .fc-toolbar > * > :first-child { margin-left: 8px; } @@ -83,12 +77,6 @@ width: 5px; } } - - .sem-pages { - .sem-page { - border: 5px solid $gf9f9f9; - } - } } .calendar { @@ -102,7 +90,7 @@ position: fixed; top: 20px; width: 100%; - z-index: 100; + z-index: 10; } } @@ -123,7 +111,7 @@ height: 10px; position: absolute; width: 10px; - z-index: 1000; + z-index: 10; } } } diff --git a/static/css/timetable/partials/exploration_modal.scss b/static/css/timetable/partials/exploration_modal.scss deleted file mode 100644 index 6ae0492638..0000000000 --- a/static/css/timetable/partials/exploration_modal.scss +++ /dev/null @@ -1,479 +0,0 @@ -// Exploration Modal Styles -.exploration-modal { - height: 85%; - max-height: 900px; - max-width: 1200px; - - > div { - height: 100%; - outline: none; - width: 100%; - } - - + div { - // using important to override boron default style - // can't declare in javascript either, cuz need hover - background-color: $black-transparent-8 !important; - transition: background-color .2s; - } - - &.trans + div { - // using important to override boron default style - // can't declare in javascript either, cuz need hover - background-color: transparent !important; - } - - .ms-friend { - float: left; - height: 30px; - margin: 0; - width: 30px; - } -} - -.exploration-content { - background: $gfff; - height: 100%; - position: relative; - width: 100%; -} - -@media (max-width: 766px) { - .exploration-modal, - .exploration-modal + div { - display: none; - } -} - -.exploration-modal.trans, -.trans .exploration-content, -.trans .exploration-header, -.trans .exp-title h1, -.trans .exploration-header input, -.trans .exploration-close, -.trans h3.exp-header, -.trans h3.exp-header:after, -.trans h3.exp-header i, -.trans .exploration-body p, -.trans .exp-modal .modal-header, -.trans .exp-modal .modal-header h1, -.trans .exp-modal .modal-header h2, -.trans .exp-modal .modal-content, -.trans .modal-body .credits h4, -.trans .exp-modal .modal-share, -.trans .exp-modal .modal-share i, -.trans .exp-modal .modal-add, -.trans .exp-modal .modal-add i, -.trans .exp-modal .modal-save, -.trans .exp-modal .modal-save i, -.trans .modal-module, -.trans h3.modal-module-header, -.trans h3.modal-module-header:after { - color: transparent; - background-color: transparent; - border-color: transparent; -} - -.trans .exp-search-results, -.trans .modal-module, -.trans .time-selector, -.trans .modal-body .rating-module, -.trans .modal-body .modal-module-header { - opacity: 0; - visibility: hidden; -} - -// Exploration Header -.exploration-header { - background-color: $geee; - border-bottom: 1px solid $gddd; - padding: 15px; - position: absolute; - width: 100%; - z-index: 1; - - input { - border: 1px solid $ge6e6e6; - font-size: 16px; - height: 30px; - line-height: 30px; - margin-right: 7px; - outline: 0; - padding: 0 10px; - width: 90%; - - &::-webkit-input-placeholder { - font-size: 14px; - line-height: 30px; - } - - &::-moz-placeholder { - font-size: 14px; - line-height: 30px; - } - - &:-ms-input-placeholder { // IE 10+ - font-size: 14px; - line-height: 30px; - } - - &:-moz-placeholder { // Firefox 18- - font-size: 14px; - line-height: 30px; - } - } -} - -.exp-title { - i { - display: inline-block; - font-size: 22px; - line-height: 30px; - margin-right: 5px; - vertical-align: middle; - } - - h1 { - color: $g777; - display: inline-block; - font-size: 18px; - line-height: 30px; - margin: 0; - vertical-align: middle; - } -} - -/* Close Exploration Button */ -.exploration-close { - color: $g777; - cursor: pointer; - height: 20px; - position: absolute; - right: 10px; - top: 5px; - transition: color .3s, transform .3s; - width: 20px; - - &:hover { - color: #ff4523; - transform: scale(1.2); - } - - i { - font-size: 20px; - line-height: 20px; - } -} - -// Share Button -.exp-modal { - .share-course-link-wrapper { - margin-right: 158px; - margin-top: 118px; - - .tip { - display: none; - } - - .tip-border { - right: 180px; - } - } -} - -// Exploration Body -.exploration-body { - height: 100%; - left: 0; - padding: 61px 0 0; - position: absolute; - top: 0; - width: 100%; - - p { - color: $g777; - font-size: 12px; - } -} - -.exp-header { - clear: both; - color: $g777; - font-size: 14px; - font-weight: 200; - margin: 0; - padding: 10px 5px; - position: relative; - - &::after { - background-color: $gddd; - bottom: 5px; - content: ""; - display: block; - height: 1px; - left: 0; - position: absolute; - width: 100%; - } - - i { - color: $g999; - cursor: pointer; - float: right; - transition: color .3s; - - &:hover { - color: #7E88DC; - } - } -} - -// Exploration Filters -.exp-filters { - height: 100%; - overflow-y: auto; - padding: 15px; - - h6 { - border-radius: 3px; - font-size: 16px; - font-weight: 400; - margin: 0 0 3px; - padding: 5px; - - i { - cursor: pointer; - font-size: 14px; - margin-left: -5px; - margin-right: 3px; - transition: transform .3s, color .3s; - } - } - - .time-selector { - i { - cursor: pointer; - font-size: 14px; - margin-right: 10px; - transition: transform .3s, color .3s; - } - } - - i { - &:hover { - color: #ff4523; - transform: scale(1.1); - } - } - - .none-selected { - font-size: 14px; - margin-left: 0; - } -} - - - -.exp-filter-section { - padding: 0 0 20px; -} - - -// Filter Out Pop -.filter-pop-out { - background-color: $gfff; - border: 1px solid $ge6e6e6; - box-shadow: 0 2px 10px $black-transparent-2; - display: none; - left: 25%; - position: absolute; - top: 10px; - width: 200px; - z-index: 1; - - &.open { - display: block; - } - - input { - border: 0; - font-size: 16px; - line-height: 42px; - outline: 0; - padding: 0 5px 0 25px; - width: 100%; - } -} - -.fpo-list { - max-height: 400px; - overflow-y: auto; - padding: 0; - - ul { - margin: 0; - padding: 0; - } - - li { - background-color: $gfff; - cursor: pointer; - list-style-type: none; - padding: 0 5px 0 45px; - position: relative; - transition: background-color .3s; - - &:hover { - background-color: $geee; - } - } - - i { - display: inline-block; - left: 10px; - line-height: 42px; - position: absolute; - vertical-align: middle; - } - - h6 { - display: inline-block; - font-size: 14px; - line-height: 14px; - margin: 0; - padding: 14px 0; - vertical-align: middle; - } -} - - -// Exploration Search Results -.exp-search-results { - height: 100%; - opacity: 1; - overflow-y: auto; - padding: 15px; - visibility: visible; - - p { - padding-left: 10px; - } -} - -.exp-s-result { - background-color: $gfff; - cursor: pointer; - padding: 10px; - position: relative; - transition: background-color .3s; - - &:hover { - background-color: $geee; - } - - h4 { - font-size: 14px; - margin: 0; - } - - h5 { - color: $g777; - font-size: 12px; - font-weight: 400; - margin: 5px 0; - } -} - -// Exploration Course Content -.exp-modal { - height: 100%; - - .modal-content { - display: flex; - flex-direction: column; - } - - .modal-header { - background-color: $gfff; - padding: 20px 10px 30px; - } - - h1 { - font-size: 22px; - padding: 0; - } - - h2 { - font-size: 14px; - padding: 0 20% 0 0; - } - - .modal-body { - padding-top: 20px; - } - - [class^="col-"] { - width: 100%; - padding: 20px 15px 0; - } - - .modal-share, - .modal-add, - .modal-save { - background-color: $primary-navy; - border-radius: 100%; - bottom: -34px; - cursor: pointer; - height: 60px; - position: absolute; - top: auto; - transform: translateX(-50%); - transition: background-color .3s; - width: 60px; - z-index: 1; - - i { - color: $gfff; - font-size: 24px; - line-height: 60px; - text-align: center; - width: 100%; - } - - &:hover { - transform: scale(1) translateX(-50%); - } - } - - .modal-share { - left: 25%; - - &:hover { - background-color: #5B99CE; - } - } - - .modal-save { - left: 50%; - - &:hover { - background-color: #5BCE84; - } - } - - .modal-add { - left: 75%; - - &:hover { - background-color: #1858BB; - } - - &.on-active-timetable { - background-color: #2DD6B5; - - &:hover { - background-color: #56ECCF; - } - } - } -} diff --git a/static/css/timetable/partials/fallback.scss b/static/css/timetable/partials/fallback.scss new file mode 100644 index 0000000000..797ecb5e33 --- /dev/null +++ b/static/css/timetable/partials/fallback.scss @@ -0,0 +1,25 @@ +.fallback-container { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + height: 100%; + + h2, + p { + color: #000; + } + + img { + width: 100%; + max-width: 350px; + } +} + +@media (max-width: 768px) { + .fallback-container { + img { + max-width: 200px; + } + } +} diff --git a/static/css/timetable/partials/feature-request-modal.scss b/static/css/timetable/partials/feature-request-modal.scss new file mode 100644 index 0000000000..e69de29bb2 diff --git a/static/css/timetable/partials/final_exam_modal.scss b/static/css/timetable/partials/final_exam_modal.scss deleted file mode 100644 index 26acd2c974..0000000000 --- a/static/css/timetable/partials/final_exam_modal.scss +++ /dev/null @@ -1,276 +0,0 @@ -// link in sidebar -.final-schedule-link { - cursor: pointer; -} - -// Overriding Default Modal Styles -.final-exam-modal { - max-height: 900px; - max-width: 1200px; - - &.is-mobile { - height: 75%; - } - - > div { - height: 100%; - outline: none; - width: 100%; - } - - .modal-header { - padding: 10px 10px 3px; - } - - // For the Slots in the Modal - .master-slot { - cursor: default; - - &.conflict { - clear: none; - float: left; - } - } - - .peer-card { - padding: 0; - } - - .peer-card-wrapper { - border: hidden; - box-shadow: none; - } - - .upsell { - h4 { - float: none; - font-weight: 400; - text-align: center; - } - - .disclaimer { - float: left; - } - - p { - color: $g555; - font-size: 16px; - line-height: 22px; - margin: 7px 0; - margin-bottom: 20px; - padding: 0 5px; - transition: color .2s; - word-wrap: break-word; - } - } - - .abnb-btn { - background-color: $facebook; - border-color: $facebook; - color: $gfff; - margin-top: 30px; - max-width: 300px; - - ~ .abnb-btn { - margin-top: 0; - } - - &.secondary { - > span { - color: $gfff; - font-weight: 300; - } - } - } - - .add-courses-button { - background-color: $gbbb; - border-color: $gbbb; - margin-bottom: 40px; - } -} - - -// Style the loader -.modal-content { - .final-exam__loader { - left: 50%; - position: absolute; - top: 50%; - transform: translate(-50%, -50%); - } - - .loader { - height: 90px; - width: 90px; - } -} - -.final-exam__loader-wrapper { - height: 350px; -} - -// Final Exams Modal -.final-exam-calendar-ctn { - padding: 30px; - width: 100%; - - &.mobile { - padding: 0 10px 20px; - } -} - -.final-exam-main { - float: left; - width: 80%; - - &.main-full { - width: 100%; - } -} - -.final-exam-sidebar { - float: left; - padding: 0 0 0 20px; - width: 20%; - - h3 { - padding-top: 0; - } -} - -@media (max-width: 766px) { - .final-exam-modal { - .modal-header { - padding: 10px 10px 3px; - } - - .master-slot-content { - h3 { - font-size: 12px; - } - } - } - - .final-exam-calendar-ctn { - padding: 30px 10px; - } - - .final-exam-main { - float: none; - width: 100%; - } - - .final-exam-sidebar { - padding: 20px 0 0; - width: 100%; - } -} - -// For Each Week -.final-exam-days-ctn { - display: flex; -} - -.final-exam-day { - border-bottom: 1px solid $gccc; - border-right: 1px solid $gccc; - min-height: 100px; - width: 14.27%; - - &:first-child { - border-left: 1px solid $gddd; - } -} - -.mobile .final-exam-day { // mobile styles - border: 0; - min-height: 0; - width: 100%; - min-width: 83px; -} - -.final-exam-modal .mobile .master-slot-content h3 { - font-size: 14px; -} - -.final-exam-calender-days { - h3 { - border-bottom: 3px solid $gddd; - border-right: 1px solid $gddd; - border-top: 1px solid $gddd; - float: left; - font-size: 15px; - font-weight: normal; - line-height: 25px; - margin: 0; - text-align: center; - width: 14.27%; - - &:first-child { - border-left: 1px solid $gddd; - } - - .day { - color: $g999; - display: inline-block; - } - - .date { - display: inline-block; - margin-left: 5px; - } - } -} - -@media (max-width: 766px) { - .final-exam-calender-days { - h3 { - line-height: 15px; - padding: 3px 0; - - .day { - display: block; - } - - .date { - display: block; - margin-left: 0; - } - } - } -} - -// Links in Modal -.modal-body { - .final-exam-disclaimer { - clear: both; - color: $gaaa; - font-size: 12px; - line-height: 18px; - padding: 5px 0 0; - - i { - margin-right: 3px; - } - - a { - color: $blue; - display: block; - text-decoration: underline; - } - } - - .mobile { - .final-exam-disclaimer { - margin-top: -10px; - padding: 0; - } - } -} - -.or-separator { - margin: 0 auto; - margin-bottom: 22px; - max-width: 500px; -} diff --git a/static/css/timetable/partials/integration-modal.scss b/static/css/timetable/partials/integration-modal.scss deleted file mode 100644 index 93c178d107..0000000000 --- a/static/css/timetable/partials/integration-modal.scss +++ /dev/null @@ -1,36 +0,0 @@ -.narrow-modal { - max-width: 500px; - overflow: auto; -} - -.integration-modal__wrapper { - padding: 20px; - - .switch-slide { - float: right; - margin: 0; - } - - h3 { - float: left; - font-size: 14px; - line-height: 30px; - margin: 0; - text-align: left; - } - - .button-wrapper { - padding-top: 20px; - text-align: center; - } -} - -.integration-logo { - background-position: center; - background-repeat: no-repeat; - background-size: contain; - height: 150px; - margin: 0 auto 20px; - max-width: 300px; - width: 100%; -} diff --git a/static/css/timetable/partials/news_modal.scss b/static/css/timetable/partials/news_modal.scss new file mode 100644 index 0000000000..56fbdcd566 --- /dev/null +++ b/static/css/timetable/partials/news_modal.scss @@ -0,0 +1,69 @@ +.news-modal { + .modal-header { + padding: 1em 2em; + h1 { + font-weight: bold; + } + } + + .news-body { + padding: 1em 2em; + + a { + color: $blue; + } + + h1 { + font-size: 2em; + margin: 0 0 0.5em 0; + font-weight: bold; + } + + h2 { + font-size: 1.75em; + margin: 0.5em 0 0.5em 0; + font-weight: bold; + } + + h3 { + font-size: 1.5em; + margin: 0.5em 0 0.5em 0; + font-weight: bold; + } + + h4 { + font-size: 1.3em; + margin: 0.5em 0 0.5em 0; + font-weight: bold; + } + + h5 { + font-size: 1.15em; + margin: 0.5em 0 0.5em 0; + font-weight: bold; + } + + h6 { + font-size: 1em; + margin: 0.5em 0 0.5em 0; + font-weight: bold; + } + + pre { + @include theme() { + background-color: t("code-snippet-background"); + } + border: 0; + border-radius: 3px; + padding: 1em; + margin: 1em 0; + overflow: auto; + font-size: 0.9em; + line-height: 1.5em; + } + + p { + margin: 0; + } + } +} diff --git a/static/css/timetable/partials/peer_modal.scss b/static/css/timetable/partials/peer_modal.scss index 40fc72c803..4baded04e9 100644 --- a/static/css/timetable/partials/peer_modal.scss +++ b/static/css/timetable/partials/peer_modal.scss @@ -1,14 +1,4 @@ .peer-modal { - height: 85%; - max-height: 900px; - max-width: 1200px; - - > div { - height: 100%; - outline: none; - width: 100%; - } - .img-icon { left: 50%; position: absolute; @@ -16,357 +6,346 @@ transform: translate(-50%, -50%); } - .modal-content { - background-color: $gf3f3f3; - height: 100%; - position: relative; - - .loader { - height: 90px; - width: 90px; - } + .loader { + height: 90px; + width: 90px; } -} -.pm-side-bar { - border-right: 1px solid $gddd; - height: 100%; - position: absolute; - width: 200px; - - p { - color: $g555; - font-size: 16px; - font-weight: 200; - line-height: 16px; - margin-bottom: 30px; - text-align: center; - width: 100%; + .content-wrapper { + height: 100%; + display: flex; } -} - -.pm-header { - clear: both; - height: 50px; - width: 100%; -} -.main-modal-wrapper { - background-color: $gf3f3f3; - height: 100%; - left: 200px; - padding: 20px 10px 20px 20px; - position: absolute; - right: 0; + .pm-side-bar { + @include theme() { + background-color: t("sidebar-background"); + border-right: 1px solid t("modal-border-color"); + } - h4 { - float: left; - font-weight: 200; - margin: 0; - margin-bottom: 16px; - margin-left: 5px; - text-align: left; - } + width: 300px; + min-height: 100%; + height: fit-content; + position: -webkit-sticky; + position: sticky; + top: 0; + padding: 2rem; + padding-top: 3rem; - .upsell { - h4 { - float: none; + p { + font-size: 16px; font-weight: 400; + line-height: 16px; + margin: 20px 0; text-align: center; + width: 100%; } + } - .disclaimer { - float: left; + .modal-content { + @include theme() { + background-color: t("modal-header-background"); } - p { - color: $g555; - font-size: 16px; - line-height: 22px; - margin: 7px 0 20px; - padding: 0 5px; - transition: color .2s; - word-wrap: break-word; - } + overflow-y: auto; + width: 1000px; + padding: 3rem; + display: flex; + flex-direction: column; + border: 0; + border-radius: 0; + box-shadow: none; - .lure-accept { - background: $green-bright; - border: 1px solid $green-bright; - border-radius: 3px; - color: $gfff; - font-size: 14px; - font-weight: 900; - padding: 5px 10px; - width: 100px; + h4 { + margin: 0; + margin-bottom: 16px; + text-align: center; } - } -} - -.split-modal-wrapper { - background-color: $gf3f3f3; - height: 100%; - overflow: auto; - position: relative; -} -.circle-pic { - background-position: center; - background-repeat: no-repeat; - background-size: cover; - border: 1px solid $gddd; - border-radius: 100%; - height: 80px; - margin: 20px 60px; - position: relative; - width: 80px; -} + .upsell { + margin-bottom: 10px; -.peer-pic { - background-position: center; - background-repeat: no-repeat; - background-size: cover; - border: 1px solid $gddd; - border-radius: 100%; - float: left; - height: 50px; - position: relative; - width: 50px; -} + h4 { + float: none; + font-weight: 400; + text-align: center; + } -.peer-card { - float: left; - padding-bottom: 10px; - padding-right: 10px; - width: 50%; + .disclaimer { + font-size: 14px; + font-style: italic; + float: none; + } - .user-info { - height: 50px; - margin-left: 70px; - } + p { + font-size: 16px; + line-height: 22px; + margin: 7px 0 20px; + padding: 0 5px; + transition: color 0.2s; + word-wrap: break-word; + } - h3 { - font-size: 20px; - font-weight: 400; - line-height: 30px; - margin: 0; + .lure-accept { + background-color: $green-bright; + border: 1px solid $green-bright; + border-radius: 3px; + color: $gfff; + font-size: 14px; + font-weight: 900; + margin-top: 10px; + padding: 5px 10px; + width: 100px; + } + } } - .ghost-name { - background-color: $g222; - height: 25px; - margin-bottom: 5px; - max-width: 200px; - opacity: .1; + .circle-pic { + display: block; + margin: auto; + background-position: center; + background-repeat: no-repeat; + background-size: cover; + border: 1px solid $gddd; + border-radius: 100%; + height: 80px; + width: 80px; } - .card-hat { - height: 85px; - padding: 20px; - width: 100%; + .peer-pic { + background-position: center; + background-repeat: no-repeat; + background-size: cover; + border: 1px solid $gddd; + border-radius: 100%; + float: left; + height: 50px; + position: relative; + width: 50px; } - .shared-courses { - padding: 0 20px 20px; - } + .peer-card-container { + display: flex; + flex-direction: column; + gap: 10px; - .shared-course { - p { - color: $g555; - font-size: 16px; - font-weight: 300; - line-height: 16px; - margin: 7px 0 7px 20px; - overflow: hidden; - padding: 0 5px; - text-overflow: ellipsis; - transition: color .2s; - white-space: nowrap; - word-wrap: break-word; + @media screen and (min-width: 1024px) { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 10px; } } - .class-only-indicator { - color: $friend; + .peer-card { float: left; - font-size: 18px; - line-height: 18px;; - margin-left: 2px; - margin-top: -1px; - } - &.upsell { - text-align: center; - width: 100%; - } + .user-info { + height: 50px; + margin-left: 70px; + } - .fa-facebook-square { - float: left; - margin-left: 5px; - margin-top: 2px; - } -} + h3 { + font-size: 20px; + font-weight: 400; + line-height: 30px; + margin: 0; + } -.peer-card-wrapper { - background-color: $gfff; - border: 1px solid $gd4d4d4; - box-shadow: 0 -1px 0 $ge6e6e6, 0 0 2px $black-transparent-1, 0 2px 4px $black-transparent-1; + .ghost-name { + @include theme() { + background-color: t("ghost-card-name"); + } + height: 25px; + margin-bottom: 5px; + max-width: 200px; + opacity: 0.1; + } - &.upsell { - padding: 35px 20px; - text-align: center; - width: 100%; - } -} + .card-hat { + height: 85px; + padding: 20px; + width: 100%; + } -.view-profile-btn { - background: $facebook-view; - border: 1px solid $facebook-view; - border-radius: 3px; - color: $gfff; - display: block; - float: left; - font-size: 11px; - height: 20px; - padding: 0 0 0 2px; - width: 100px; -} + .shared-courses { + padding: 0 20px 20px; + } -.friend-status { - color: $green-light; - font-size: 13px; - margin: 0 0 0 110px; - padding: 0; -} + .shared-course { + p { + color: $g555; + font-size: 16px; + font-weight: 300; + line-height: 16px; + margin: 7px 0 7px 20px; + overflow: hidden; + padding: 0 5px; + text-overflow: ellipsis; + transition: color 0.2s; + white-space: nowrap; + word-wrap: break-word; + } + } -.course-color-circle { - background-color: $pink; - border-radius: 16px; - float: left; - height: 16px; - text-align: center; - width: 16px; + .class-only-indicator { + color: $friend; + float: left; + font-size: 18px; + line-height: 18px; + margin-left: 2px; + margin-top: -1px; + } - .fa-check { - color: $gfff; - display: block; - font-size: 12px; - height: 16px; - line-height: 16px; - width: 16px; + &.upsell { + text-align: center; + width: 100%; + } + + .fa-facebook-square { + float: left; + margin-left: 5px; + margin-top: 2px; + } } -} -.ghost-course-title { - background-color: $g555; - height: 16px; - line-height: 16px; - margin: 7px 0 7px 25px; - opacity: .07; - padding: 0 5px; - width: 220px; -} + .peer-card-wrapper { + @include theme() { + background-color: t("modal-background"); + } + border-radius: 3px; + box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2.5px; -.ghost { - button { - opacity: .4; + &.upsell { + padding: 35px 20px; + text-align: center; + width: 100%; + } } - .course-color-circle { - opacity: .5; + .view-profile-btn { + background: $facebook-view; + border: 1px solid $facebook-view; + border-radius: 3px; + color: $gfff; + display: block; + float: left; + font-size: 11px; + height: 20px; + padding: 0 0 0 2px; + width: 100px; } -} -.pm-side-bar-slot { - background-color: $pink; - border-radius: 5px; - cursor: pointer; - margin: 8px 8px 5px; - overflow: hidden; - padding: 5px 5px 5px 10px; - position: relative; - - .slot-bar { - left: 0; - top: 0; + .friend-status { + color: $green-light; + font-size: 13px; + margin: 0 0 0 110px; + padding: 0; } -} -.key { - float: right; -} + .course-color-circle { + background-color: $pink; + border-radius: 16px; + float: left; + height: 16px; + text-align: center; + width: 16px; + opacity: 0.5; -.key-entry { - margin-bottom: 3px; + .fa-check { + color: $gfff; + display: block; + font-size: 12px; + height: 16px; + line-height: 16px; + width: 16px; + } + } - p { - font-size: 14px; - font-weight: 300; + .ghost-course-title { + @include theme() { + background-color: t("ghost-card-course-title"); + } height: 16px; line-height: 16px; - margin: 0; - margin-left: 20px; + margin: 7px 0 7px 25px; + opacity: 0.07; + padding: 0 5px; + width: 220px; } -} -@media (max-width: 850px) { - .peer-card { - width: 100%; - } + .ghost { + button { + opacity: 0.4; + } + } - .main-modal-wrapper { - h4 { - font-size: 22px; + .pm-side-bar-slot { + background-color: $pink; + border-radius: 5px; + cursor: pointer; + margin: 8px 8px 5px; + overflow: hidden; + padding: 5px 5px 5px 10px; + position: relative; + + .slot-bar { + left: 0; + top: 0; } } .key { - margin-bottom: 15px; - } -} - -@media (max-width: 600px) { - .pm-side-bar { - display: none; - } + margin-bottom: 20px; + width: 100%; + padding-right: 10px; + display: flex; + align-items: center; + gap: 10px; + } - .main-modal-wrapper { - left: 0; - position: absolute; + .key-entry { + p { + font-size: 14px; + font-weight: 300; + height: fit-content; + line-height: 16px; + margin: 0; + margin-left: 20px; + } + } - .upsell { - p { - font-size: 12px; - line-height: 16px; - } + @media (max-width: 850px) { + .peer-card { + width: 100%; + } + .modal-content { h4 { font-size: 22px; } } - h4 { - font-size: 25px; - margin-top: 3px; + .key { + margin-bottom: 15px; } - } + } - .peer-card-wrapper { - &.upsell { - padding: 18px 10px; + @media (max-width: 670px) { + .pm-side-bar { + display: none; } } -} -@media (max-width: 410px) { - .main-modal-wrapper { - h4 { - font-size: 18px; + @media (max-width: 410px) { + .modal-content { + h4 { + font-size: 18px; + } } - } - .key-entry { - p { - font-size: 10px; + .key-entry { + p { + font-size: 10px; + } } } } diff --git a/static/css/timetable/partials/preference-modal.scss b/static/css/timetable/partials/preference-modal.scss deleted file mode 100644 index c35551a4c8..0000000000 --- a/static/css/timetable/partials/preference-modal.scss +++ /dev/null @@ -1,136 +0,0 @@ -.pref-modal { - height: 550px; - max-width: 600px; - top: 50px; - - > div { - outline: none; - } - - .switch-slide { - border-radius: 4px; - margin: 0; - - .switch-label { - font-family: $font-body; - font-size: 12px; - text-transform: none; - - &::after { - background: $textbook; - } - } - - .switch-handle { - margin: 0; - } - } - - .modal-header { - background-color: $geee; - border-bottom: 1px solid $gddd; - padding: 25px; - position: relative; - } -} - -.switch-yes-no { - border-radius: 4px; - margin: 0; - - .switch-handle { - margin: 0; - } -} - -.conflict-row { - display: flex; - padding: 2% 0; -} - -.sort-menu { - display: block; -} - -.preference-footer { - display: flex; - padding-bottom: 40px; -} - -// overwrite flat UI select stuff -.select { - font-size: 18px !important; - min-width: 0 !important; - width: 100% !important; -} - -.sort-row { - border-radius: 10px; - border-width: 2px; - display: flex; - height: 50px; - margin: auto; - margin-bottom: 10px; - width: 80%; - - select { - cursor: pointer; - } -} - - -.sort-close { - padding: 2% 0; - width: 10%; - - .fa-times { - cursor: pointer; - transition: color .3s, transform .3s; - - &:hover { - color: $red; - transform: scale(1.2); - } - } -} - -.sort-text { - padding: 2% 0; - width: 20%; -} - -.sort-order-dropdown { - padding: 2%; - width: 22%; -} - -.sort-metric-dropdown { - padding: 2%; - width: 48%; -} - -.metric-row { - border-style: solid; -} - -.footer-row { - border-style: dashed; - cursor: pointer; - margin-top: 25px; - - &:hover { - background-color: $primary-navy; - color: $gfff; - } -} - -@media (max-width: 460px) { - .sort-menu { - font-size: 12px; - } - - .select { - // overwrite flat-ui on mobile - font-size: 12px !important; - } -} diff --git a/static/css/timetable/partials/print_layout.scss b/static/css/timetable/partials/print_layout.scss index 20fe3aaf11..495b8575c0 100644 --- a/static/css/timetable/partials/print_layout.scss +++ b/static/css/timetable/partials/print_layout.scss @@ -24,7 +24,7 @@ position: fixed; top: 60px; transform: scale(.7); - z-index: 100; + z-index: 10; } .no-print { diff --git a/static/css/timetable/partials/rodal.scss b/static/css/timetable/partials/rodal.scss new file mode 100644 index 0000000000..4300e1fa0d --- /dev/null +++ b/static/css/timetable/partials/rodal.scss @@ -0,0 +1,477 @@ +/* -- container -- */ +.rodal, +.rodal-mask { + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 100; +} + +.rodal { + position: fixed; +} + +/* -- mask -- */ +.rodal-mask { + position: absolute; + background: rgba(0, 0, 0, 0.3); +} + +/* -- dialog -- */ +.rodal-dialog { + @include theme() { + background: t("modal-background"); + color-scheme: t("color-scheme-type"); + } + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + margin: auto; + z-index: 101; + // padding: 15px; + border-radius: 3px; + box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2); + overflow: auto; +} + +.rodal-dialog:focus { + outline: none; +} + +/* -- close button -- */ +.rodal-close { + position: absolute; + cursor: pointer; + top: 16px; + right: 16px; + width: 16px; + height: 16px; +} + +.rodal-close:before, +.rodal-close:after { + position: absolute; + content: ""; + height: 2px; + width: 100%; + top: 50%; + left: 0; + margin-top: -1px; + background: #999; + border-radius: 100%; + -webkit-transition: background 0.2s; + transition: background 0.2s; +} + +.rodal-close:before { + -webkit-transform: rotate(45deg); + transform: rotate(45deg); +} + +.rodal-close:after { + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); +} + +.rodal-close:hover:before, +.rodal-close:hover:after { + background: #333; +} + +/* -- fade -- */ +@-webkit-keyframes rodal-fade-enter { + from { + opacity: 0; + } +} + +@keyframes rodal-fade-enter { + from { + opacity: 0; + } +} + +.rodal-fade-enter { + -webkit-animation: rodal-fade-enter both ease-in; + animation: rodal-fade-enter both ease-in; +} + +@-webkit-keyframes rodal-fade-leave { + to { + opacity: 0; + } +} + +@keyframes rodal-fade-leave { + to { + opacity: 0; + } +} + +.rodal-fade-leave { + -webkit-animation: rodal-fade-leave both ease-out; + animation: rodal-fade-leave both ease-out; +} + +/* -- zoom -- */ +@-webkit-keyframes rodal-zoom-enter { + from { + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } +} + +@keyframes rodal-zoom-enter { + from { + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } +} + +.rodal-zoom-enter { + -webkit-animation: rodal-zoom-enter both cubic-bezier(0.4, 0, 0, 1.5); + animation: rodal-zoom-enter both cubic-bezier(0.4, 0, 0, 1.5); +} + +@-webkit-keyframes rodal-zoom-leave { + to { + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } +} + +@keyframes rodal-zoom-leave { + to { + -webkit-transform: scale3d(0.3, 0.3, 0.3); + transform: scale3d(0.3, 0.3, 0.3); + } +} + +.rodal-zoom-leave { + -webkit-animation: rodal-zoom-leave both; + animation: rodal-zoom-leave both; +} + +/* -- slideDown -- */ +@-webkit-keyframes rodal-slideDown-enter { + from { + -webkit-transform: translate3d(0, -100px, 0); + transform: translate3d(0, -100px, 0); + } +} + +@keyframes rodal-slideDown-enter { + from { + -webkit-transform: translate3d(0, -100px, 0); + transform: translate3d(0, -100px, 0); + } +} + +.rodal-slideDown-enter { + -webkit-animation: rodal-slideDown-enter both cubic-bezier(0.4, 0, 0, 1.5); + animation: rodal-slideDown-enter both cubic-bezier(0.4, 0, 0, 1.5); +} + +@-webkit-keyframes rodal-slideDown-leave { + to { + -webkit-transform: translate3d(0, -100px, 0); + transform: translate3d(0, -100px, 0); + } +} + +@keyframes rodal-slideDown-leave { + to { + -webkit-transform: translate3d(0, -100px, 0); + transform: translate3d(0, -100px, 0); + } +} + +.rodal-slideDown-leave { + -webkit-animation: rodal-slideDown-leave both; + animation: rodal-slideDown-leave both; +} + +/* -- slideLeft -- */ +@-webkit-keyframes rodal-slideLeft-enter { + from { + -webkit-transform: translate3d(-150px, 0, 0); + transform: translate3d(-150px, 0, 0); + } +} + +@keyframes rodal-slideLeft-enter { + from { + -webkit-transform: translate3d(-150px, 0, 0); + transform: translate3d(-150px, 0, 0); + } +} + +.rodal-slideLeft-enter { + -webkit-animation: rodal-slideLeft-enter both cubic-bezier(0.4, 0, 0, 1.5); + animation: rodal-slideLeft-enter both cubic-bezier(0.4, 0, 0, 1.5); +} + +@-webkit-keyframes rodal-slideLeft-leave { + to { + -webkit-transform: translate3d(-150px, 0, 0); + transform: translate3d(-150px, 0, 0); + } +} + +@keyframes rodal-slideLeft-leave { + to { + -webkit-transform: translate3d(-150px, 0, 0); + transform: translate3d(-150px, 0, 0); + } +} + +.rodal-slideLeft-leave { + -webkit-animation: rodal-slideLeft-leave both; + animation: rodal-slideLeft-leave both; +} + +/* -- slideRight -- */ +@-webkit-keyframes rodal-slideRight-enter { + from { + -webkit-transform: translate3d(150px, 0, 0); + transform: translate3d(150px, 0, 0); + } +} + +@keyframes rodal-slideRight-enter { + from { + -webkit-transform: translate3d(150px, 0, 0); + transform: translate3d(150px, 0, 0); + } +} + +.rodal-slideRight-enter { + -webkit-animation: rodal-slideRight-enter both cubic-bezier(0.4, 0, 0, 1.5); + animation: rodal-slideRight-enter both cubic-bezier(0.4, 0, 0, 1.5); +} + +@-webkit-keyframes rodal-slideRight-leave { + to { + -webkit-transform: translate3d(150px, 0, 0); + transform: translate3d(150px, 0, 0); + } +} + +@keyframes rodal-slideRight-leave { + to { + -webkit-transform: translate3d(150px, 0, 0); + transform: translate3d(150px, 0, 0); + } +} + +.rodal-slideRight-leave { + -webkit-animation: rodal-slideRight-leave both; + animation: rodal-slideRight-leave both; +} + +/* -- slideUp -- */ +@-webkit-keyframes rodal-slideUp-enter { + from { + -webkit-transform: translate3d(0, 100px, 0); + transform: translate3d(0, 100px, 0); + } +} + +@keyframes rodal-slideUp-enter { + from { + -webkit-transform: translate3d(0, 100px, 0); + transform: translate3d(0, 100px, 0); + } +} + +.rodal-slideUp-enter { + -webkit-animation: rodal-slideUp-enter both cubic-bezier(0.4, 0, 0, 1.5); + animation: rodal-slideUp-enter both cubic-bezier(0.4, 0, 0, 1.5); +} + +@-webkit-keyframes rodal-slideUp-leave { + to { + -webkit-transform: translate3d(0, 100px, 0); + transform: translate3d(0, 100px, 0); + } +} + +@keyframes rodal-slideUp-leave { + to { + -webkit-transform: translate3d(0, 100px, 0); + transform: translate3d(0, 100px, 0); + } +} + +.rodal-slideUp-leave { + -webkit-animation: rodal-slideUp-leave both; + animation: rodal-slideUp-leave both; +} + +/* -- flip -- */ +@-webkit-keyframes rodal-flip-enter { + from { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 60deg); + transform: perspective(400px) rotate3d(1, 0, 0, 60deg); + } + 70% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -15deg); + transform: perspective(400px) rotate3d(1, 0, 0, -15deg); + } + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} + +@keyframes rodal-flip-enter { + from { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 60deg); + transform: perspective(400px) rotate3d(1, 0, 0, 60deg); + } + 70% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -15deg); + transform: perspective(400px) rotate3d(1, 0, 0, -15deg); + } + to { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } +} + +.rodal-flip-enter { + -webkit-animation: rodal-flip-enter both ease-in; + animation: rodal-flip-enter both ease-in; + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; +} + +@-webkit-keyframes rodal-flip-leave { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + 30% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -15deg); + transform: perspective(400px) rotate3d(1, 0, 0, -15deg); + } + to { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 45deg); + transform: perspective(400px) rotate3d(1, 0, 0, 45deg); + } +} + +@keyframes rodal-flip-leave { + from { + -webkit-transform: perspective(400px); + transform: perspective(400px); + } + 30% { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -15deg); + transform: perspective(400px) rotate3d(1, 0, 0, -15deg); + } + to { + -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 45deg); + transform: perspective(400px) rotate3d(1, 0, 0, 45deg); + } +} + +.rodal-flip-leave { + -webkit-animation: rodal-flip-leave both; + animation: rodal-flip-leave both; + -webkit-backface-visibility: visible !important; + backface-visibility: visible !important; +} + +/* -- rotate -- */ +@-webkit-keyframes rodal-rotate-enter { + from { + -webkit-transform: rotate3d(0, 0, 1, -180deg) scale3d(0.3, 0.3, 0.3); + transform: rotate3d(0, 0, 1, -180deg) scale3d(0.3, 0.3, 0.3); + } +} + +@keyframes rodal-rotate-enter { + from { + -webkit-transform: rotate3d(0, 0, 1, -180deg) scale3d(0.3, 0.3, 0.3); + transform: rotate3d(0, 0, 1, -180deg) scale3d(0.3, 0.3, 0.3); + } +} + +.rodal-rotate-enter { + -webkit-animation: rodal-rotate-enter both; + animation: rodal-rotate-enter both; + -webkit-transform-origin: center; + transform-origin: center; +} + +@-webkit-keyframes rodal-rotate-leave { + to { + -webkit-transform: rotate3d(0, 0, 1, 180deg) scale3d(0.3, 0.3, 0.3); + transform: rotate3d(0, 0, 1, 180deg) scale3d(0.3, 0.3, 0.3); + } +} + +@keyframes rodal-rotate-leave { + to { + -webkit-transform: rotate3d(0, 0, 1, 180deg) scale3d(0.3, 0.3, 0.3); + transform: rotate3d(0, 0, 1, 180deg) scale3d(0.3, 0.3, 0.3); + } +} + +.rodal-rotate-leave { + -webkit-animation: rodal-rotate-leave both; + animation: rodal-rotate-leave both; + -webkit-transform-origin: center; + transform-origin: center; +} + +/* -- door -- */ +@-webkit-keyframes rodal-door-enter { + from { + -webkit-transform: scale3d(0, 1, 1); + transform: scale3d(0, 1, 1); + } +} + +@keyframes rodal-door-enter { + from { + -webkit-transform: scale3d(0, 1, 1); + transform: scale3d(0, 1, 1); + } +} + +.rodal-door-enter { + -webkit-animation: rodal-door-enter both cubic-bezier(0.4, 0, 0, 1.5); + animation: rodal-door-enter both cubic-bezier(0.4, 0, 0, 1.5); +} + +@-webkit-keyframes rodal-door-leave { + 60% { + -webkit-transform: scale3d(0.01, 1, 1); + transform: scale3d(0.01, 1, 1); + } + to { + -webkit-transform: scale3d(0, 1, 0.1); + transform: scale3d(0, 1, 0.1); + } +} + +@keyframes rodal-door-leave { + 60% { + -webkit-transform: scale3d(0.01, 1, 1); + transform: scale3d(0.01, 1, 1); + } + to { + -webkit-transform: scale3d(0, 1, 0.1); + transform: scale3d(0, 1, 0.1); + } +} + +.rodal-door-leave { + -webkit-animation: rodal-door-leave both; + animation: rodal-door-leave both; +} diff --git a/static/css/timetable/partials/save_calendar_modal.scss b/static/css/timetable/partials/save_calendar_modal.scss index 4e7273ad8f..2d1ddaad95 100644 --- a/static/css/timetable/partials/save_calendar_modal.scss +++ b/static/css/timetable/partials/save_calendar_modal.scss @@ -1,15 +1,13 @@ .abnb-modal { - height: 465px; - max-width: 450px; - overflow: auto; - > div { outline: none; } .modal-header { - background-color: $geee; - border-bottom: 1px solid $gddd; + @include theme() { + background-color: t("modal-header-background"); + border-bottom: 1px solid t("modal-border-color"); + } padding: 25px; position: relative; } @@ -43,9 +41,9 @@ } > .done { - color: #42A770; + color: #42a770; transform: scale(1.1); - transition: all .2s ease-in-out; + transition: all 0.2s ease-in-out; } > .loader { @@ -70,11 +68,12 @@ } .abnb-btn { - background: $gfff; - border: 1px solid; - border-color: $gc4c4c4; + @include theme() { + color: t("text-color"); + background-color: t("modal-header-background"); + border: 1px solid t("modal-border-color"); + } border-radius: 4px; - color: $g484848; padding: 20px 27px !important; width: 100%; @@ -86,7 +85,6 @@ &.secondary { > span { - color: $g484848; font-weight: 300; } } @@ -117,7 +115,6 @@ .method-details { color: $g777; font-size: 12px; - font-weight: 200; margin-bottom: 2px; margin-top: 4px; text-align: center; @@ -138,7 +135,7 @@ width: 100%; } -@media(max-width: 776px) { +@media (max-width: 776px) { .abnb-modal { max-width: 1200px; } diff --git a/static/css/timetable/partials/search_bar.scss b/static/css/timetable/partials/search_bar.scss index a10601630f..03022ae5cf 100644 --- a/static/css/timetable/partials/search_bar.scss +++ b/static/css/timetable/partials/search_bar.scss @@ -9,16 +9,22 @@ border: 0px; margin-left: 0px; font-size: 16px; - border-radius: 25px; - border-bottom-left-radius: 0px; - border-top-left-radius: 0px; - background-color: #f2f3f5; + border-radius: 0 25px 25px 0; + @include theme() { + background-color: t("search-bar-background"); + } height: 30px; line-height: 30px; outline: 0; - padding: 0 5px; width: 100%; + &.results { + border-radius: 0 10px 0 0; + @include theme() { + background-color: t("search-bar-focused-background"); + } + } + &::-webkit-input-placeholder { font-size: 14px; line-height: 30px; @@ -29,66 +35,76 @@ line-height: 30px; } - &:-ms-input-placeholder { // IE 10+ + &:-ms-input-placeholder { + // IE 10+ font-size: 14px; line-height: 30px; } - &:-moz-placeholder { // Firefox 18- + &:-moz-placeholder { + // Firefox 18- font-size: 14px; line-height: 30px; } } } -.vertical-bar { - border: 0px; - float: left; -} - -.bar-image { - height: 30px; -} - .search-bar__input-wrapper { overflow: hidden; width: auto; } .search-bar__wrapper { - background-color: $gfff; width: 100%; + border-radius: 25px; + + &.results { + border-radius: 10px 10px 0 0; + @include theme() { + box-shadow: 0 2px 10px t("search-bar-box-shadow"); + border: 1px solid t("search-border"); + } + } } .search-bar__semester { - background-color: #f2f3f5; - border: 1px; - border-radius: 25px; + @include theme() { + background-color: t("search-bar-background"); + } color: #757575; cursor: pointer; float: left; font-size: 14px; font-weight: 400; - text-align: center; line-height: 18px; - margin-top: 0px; - margin-bottom: 10px; - margin-left: 0px; - padding: 6px 4px 6px 30px; - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; + padding: 5px 0 6px 30px; + border-radius: 25px 0 0 25px; > .tip-down { left: 1px; position: absolute; top: 12px; } + + > .bar { + margin: 0 4px 0 5px; + font-size: 18px; + font-weight: 200; + } + + &.results { + @include theme() { + background-color: t("search-bar-focused-background"); + } + } } .semester-picker { - background-color: $gfff; - border: 1px solid $ge6e6e6; - box-shadow: 0 2px 10px $black-transparent-2; + @include theme() { + background-color: t("search-bar-background"); + border: t("search-bar-semester-picker-border"); + box-shadow: 0 2px 10px t("search-results-box-shadow"); + } color: #777777; cursor: pointer; display: none; @@ -98,56 +114,66 @@ padding-top: 7px; position: absolute; top: 30px; - z-index: 100; + z-index: 10; &.down { display: block; } .tip-border { - left: 6; + left: 6px; top: -9px; } .tip { + @include theme() { + border-bottom-color: t("share-link-wrapper"); + } left: 0; top: -7px; } } - .semester-option { padding-left: 7px; padding-right: 7px; + @include theme() { + background-color: t("search-bar-background"); + } - &:hover{ - background-color: #F1EEEE; + &:hover { + @include theme() { + background-color: t("search-bar-option-background-hover"); + } } } .search-results { - background-color: $gfff; - border: 1px solid $ge6e6e6; - border-top-color: $gd9d9d9; - box-shadow: 0 2px 4px $black-transparent-2; + @include theme() { + background-color: t("search-bar-focused-background"); + border: 1px solid t("search-border"); + box-shadow: 0 3px 4px t("search-results-box-shadow"); + color-scheme: t("color-scheme-type"); + } + border-radius: 0 10px 10px 10px; + border-top: 0; + box-shadow: 0 3px 4px $dblue7; margin: 0; overflow: hidden; padding: 0; position: absolute; top: 29px; width: 150%; - z-index: 100; + z-index: 10; } - - .see-more { - color: #C3B9B1; + color: #c3b9b1; font-size: 15px; height: 180px; overflow: hidden; text-align: center; - width: 66.667%; + width: 100%; p { font-size: 14px; @@ -174,7 +200,7 @@ // List wrapper for each search result course .search-results__list-container { position: absolute; - width: 66.3%; + width: 66.66%; overflow-y: auto; height: 100%; min-height: 232px; @@ -183,35 +209,39 @@ // Each Course that is listed in the Search Results .search-course { cursor: pointer; - height: 59.5px; + height: 60px; list-style-type: none; max-width: 600px; padding: 10px 110px 10px 5px; position: relative; - transition: background-color .2s, color .2s; + transition: background-color 0.2s, color 0.2s; &.hovered { - background-color: $gf3f3f3; + @include theme() { + background-color: t("search-results-hover"); + } } h3 { font-size: 14px; height: 14px; margin: 0; - overflow: hidden; + overflow: visible; padding-left: 5px; text-overflow: ellipsis; white-space: nowrap; } h4 { - color: $g777; + @include theme() { + color: t("search-bar-side-text"); + } font-size: 12px; font-weight: 400; margin: 5px 0; min-height: 12px; padding-left: 5px; - transition: all .1s linear; + transition: all 0.1s linear; } .search-result-labels { @@ -226,11 +256,15 @@ padding: 0; &.hoverAdd { - color: $blue-light; + @include theme() { + color: t("search-course-add-hover-text"); + } } &.hoverSave { - color: $green-light; + @include theme() { + color: t("search-course-save-hover-text"); + } } &.bubble { @@ -244,20 +278,8 @@ } } - .integration { - margin: 1px 5px 0 0; - - a { - float: left; - font-size: 12px; - line-height: 15px; - padding-right: 5px; - } - } - .search-course-add, .search-course-save { - background-color: #d7d7d7; border-radius: 100%; height: 40px; line-height: 40px; @@ -266,21 +288,45 @@ text-align: center; top: 50%; transform: translateY(-50%); - transition: background-color .2s; + transition: background-color 0.2s; width: 40px; } .search-course-save { + @include theme() { + background-color: t("search-course-save-background"); + &.in-roster { + background-color: t("search-course-save-in-roster"); + + &:hover { + background-color: t("search-course-save-in-roster-hover"); + } + } + } + right: 55px; &:hover { - background-color: #7BE68D; + @include theme() { + background-color: t("search-course-save-hover"); + } } } .search-course-add { + @include theme() { + background-color: t("search-course-save-background"); + &.in-roster { + background-color: t("search-course-add-in-roster"); + + &:hover { + background-color: t("search-course-add-in-roster-hover"); + } + } + } + h6 { - color: #00A1FF; + color: #00a1ff; font-size: 12px; left: 50%; margin: 0; @@ -289,13 +335,15 @@ text-align: center; top: 50%; transform: translate(-50%, -75%); - transition: transform .3s, opacity .3s, visibility .3s; + transition: transform 0.3s, opacity 0.3s, visibility 0.3s; visibility: hidden; width: 56px; } &:hover { - background-color: #A6DEFF; + @include theme() { + background-color: t("search-course-add-hover"); + } } } @@ -306,63 +354,39 @@ opacity: 0; padding: 5px; position: absolute; - transition: opacity .3s, visibility .3s; + transition: opacity 0.3s, visibility 0.3s; visibility: hidden; } } .search-course-add { &.in-roster { - background-color: #2DD6B5; + @include theme() { + background-color: t("search-course-add-in-roster"); + } &:hover { - background-color: #56ECCF; + @include theme() { + background-color: t("search-course-add-in-roster-hover"); + } } } } .search-course-save { &.in-roster { - background-color: #97B0EA; + background-color: #97b0ea; &:hover { - background-color: #AEC1EF; + background-color: #aec1ef; } } } -// If a course has an integration turned on -.has-pilot { - background-position: center; - background-repeat: no-repeat; - background-size: contain; - float: left; - height: 15px; - margin-right: 5px; - opacity: 1; - transition: visibility .3s, opacity .3s; - visibility: visible; - width: 43px; -} - -// If a course has an den integration turned on -.has-den { - background-position: center; - background-repeat: no-repeat; - background-size: contain; - float: left; - height: 15px; - margin-right: 5px; - opacity: 1; - transition: visibility .3s, opacity .3s; - visibility: visible; - width: 100px; -} - // Section Listings per Course .search-sections { opacity: 1; - transition: opacity .3s, visibility .3s; + transition: opacity 0.3s, visibility 0.3s; visibility: visible; } @@ -374,7 +398,7 @@ vertical-align: middle; &:hover { - background-color: #FFDBBE; + background-color: #ffdbbe; color: $navy-transparent-100; } } @@ -389,23 +413,34 @@ } .trans50 { - // This makes it semi transparent - background-color: $white-transparent-0; - border: 1px solid $white-transparent-0; - border-top-color: transparent; - box-shadow: none; + @include theme() { + // This makes it semi transparent + background-color: $white-transparent-0; + border: 1px solid $white-transparent-0; + border-top-color: transparent; + box-shadow: none; + } + + li, + .see-more { + opacity: 0; + visibility: hidden; + } li, .search-section, - .search-course h4, - .search-course .label { + .search-course h4 { // This makes it semi transparent - color: $navy-transparent-0; + @include theme() { + color: $navy-transparent-0; + } } .search-section:hover { - background-color: #FFDBBE; - color: $navy-transparent-100; + @include theme() { + background-color: #ffdbbe; + color: $navy-transparent-100; + } } .search-course, @@ -413,7 +448,9 @@ .search-course-save, .search-bar__side, .search-course .label { - background-color: transparent; + @include theme() { + background-color: transparent; + } } .see-more__inner { @@ -422,23 +459,24 @@ } .search-bar__side-sections { - background-color: $white-transparent-9; - } - - .has-pilot { - opacity: 0; - visibility: hidden; + @include theme() { + background-color: t("search-bar-side-trans50"); + } } } - .results-loading-gif { - background: url("/static/img/search-results-loader.gif") no-repeat; - background-position: right 5px center; + @include theme() { + background: url(t("search-loader-background")) no-repeat; + background-position: right 5px center; + background-size: 17px; + } } // Side Bar in Search Results .search-bar__side { - background-color: $gf3f3f3; + @include theme() { + background-color: t("search-bar-side"); + } height: 100%; min-height: 232px; overflow-y: auto; @@ -463,7 +501,9 @@ } p { - color: $g777; + @include theme() { + color: t("search-bar-side-text"); + } font-size: 11px; line-height: 11px; margin: 0 0 5px; @@ -481,19 +521,21 @@ margin: 1px 5px auto auto; padding: 5px; text-align: center; - transition: background-color .1s; + transition: background-color 0.1s; width: auto; &:hover { - background-color: #A5D5FF; + @include theme() { + background-color: t("search-bar-side-hover"); + } } } @media (max-width: 1000px) { - .search-bar { + .search-bar { left: 82px; width: 55%; - } + } } @media (max-width: 766px) { @@ -505,6 +547,7 @@ .search-results { width: 100%; + height: 240px; } .search-course { @@ -518,34 +561,38 @@ .see-more { display: none; } + + .search-results__list-container { + width: 100%; + } } @media (max-width: 500px) { - .search-bar { + .search-bar { left: 0; width: 100%; - } + } - .search-bar__wrapper { - left: 57px; + .search-bar__wrapper { + left: 50px; position: absolute; - right: 107px; + right: 85px; width: auto; - } + + &.results { + border-radius: 0; + } + } .search-results { top: 39px; - } - - .search-bar__wrapper { - left: 50px; - right: 85px; - } + border: 0; + } } @media (min-width: 767px) { .search-results { - height: 240px; + height: 360px; } .search-bar__wrapper { @@ -553,3 +600,13 @@ right: 85px; } } + +.theme-toggle-container { + float: right; + padding: 10px 2px; + height: 50px; + display: grid; + place-items: center; + cursor: pointer; + font-size: 1.25em; +} diff --git a/static/css/timetable/partials/side_bar.scss b/static/css/timetable/partials/side_bar.scss index 5092a95b4c..cec25d012a 100644 --- a/static/css/timetable/partials/side_bar.scss +++ b/static/css/timetable/partials/side_bar.scss @@ -12,23 +12,28 @@ .side-bar { input { - border: 1px solid $gfff; + @include theme() { + border: t("sidebar-input-border"); + background-color: t("sidebar-input-background"); + + &:focus { + border: t("sidebar-input-border_focus"); + } + + &:hover { + border: t("sidebar-input-border_hover"); + } + } + + border-radius: 25px; font-family: $font-body; font-size: 18px; font-weight: 700; line-height: 25px; outline: 0; - padding: 5px; - transition: border .3s; + padding: 5px 5px 5px 15px; + transition: border 0.3s; width: 100%; - - &:focus { - border: 1px solid $blue-alt; - } - - &:hover { - border: 1px solid $gddd; - } } .unsaved { @@ -82,21 +87,27 @@ } .timetable-names-dropdown { - background-color: $gfff; - border: 1px solid $ge6e6e6; + @include theme() { + background-color: t("dropdown-background"); + border: t("dropdown-border"); + } box-shadow: 0 2px 10px $black-transparent-2; display: none; left: 0; position: absolute; top: 35px; width: 100%; - z-index: 100; + z-index: 10; &.down { display: block; } .tip { + @include theme() { + // tip color + border-bottom-color: t("dropdown-background"); + } right: 9px; top: -7px; } @@ -115,15 +126,10 @@ } .tt-name { - background-color: $gfff; cursor: pointer; font-size: 12px; padding: 5px 5px 5px 20px; - transition: background-color .3s; - - :hover { - background-color: $geee; - } + transition: background-color 0.3s; } .sb-header { @@ -149,10 +155,12 @@ .sb-header-link { float: right; - transition: color .3s; + transition: color 0.3s; &:hover { - color: $primary-navy; + @include theme() { + color: t("text-color-hover"); + } cursor: pointer; } } @@ -176,7 +184,9 @@ .sb-rating { h3 { - color: $g777; + @include theme() { + color: t("text-color"); + } font-size: 12px; font-weight: 200; margin: 0; @@ -184,17 +194,19 @@ } .sub-rating-wrapper { - margin-left: 50%; - transform: translateX(-50%); + display: flex; + margin-left: auto; + margin-right: auto; } } .sb-credits { margin-bottom: 10px; - text-align: center; h3 { - color: $primary-navy; + @include theme() { + color: t("text-color"); + } font-size: 30px; font-weight: 300; line-height: 36px; @@ -202,7 +214,9 @@ } h4 { - color: $g999; + @include theme() { + color: t("text-color"); + } font-size: 14px; font-weight: 300; line-height: 14px; @@ -223,11 +237,7 @@ margin-bottom: 5px; padding: 5px 5px 5px 10px; position: relative; - transition: color .3s, background-color .3s; - - &.optional { - opacity: .5; - } + transition: color 0.3s, background-color 0.3s; .slot-bar { background-color: $red-dark; @@ -235,6 +245,11 @@ top: 0; } + div { + span { + color: black; + } + } } .modal-module { @@ -257,6 +272,17 @@ } } +.compare-tt { + div { + h3, + span { + @include theme() { + color: t("compare-timetable-slot"); + } + } + } +} + .master-slot-content { h3 { color: $g222; @@ -303,12 +329,12 @@ display: inline-block; line-height: 15px; margin-left: 5px; - opacity: .5; - transition: transform .3s, opacity .3s; + opacity: 0.5; + transition: transform 0.3s, opacity 0.3s; vertical-align: top; &:hover { - opacity: .9; + opacity: 0.9; transform: scale(1.2); } } @@ -339,7 +365,7 @@ &:first-child { cursor: pointer; - transition: background-color .3s; + transition: background-color 0.3s; &:hover { background-color: $black-transparent-5; @@ -347,17 +373,10 @@ } } -.final-schedule-link { - clear: both; - color: $g777; - font-size: 14px; - font-weight: 200; - margin: 0; - padding: 10px 5px; - position: relative; - text-align: center; - - i { - margin-right: 3px; - } +.create-new-timetable { + margin: auto; + display: flex; + justify-content: center; + align-items: center; + cursor: pointer; } diff --git a/static/css/timetable/partials/signup-modal.scss b/static/css/timetable/partials/signup-modal.scss index f054a12281..571e9c4d03 100644 --- a/static/css/timetable/partials/signup-modal.scss +++ b/static/css/timetable/partials/signup-modal.scss @@ -1,20 +1,18 @@ .signup-modal { - height: 588px; - max-width: 500px; - overflow: auto; - > div { outline: none; } .modal-header { - background-color: $geee; - border-bottom: 1px solid $gddd; + @include theme() { + background-color: t("modal-header-background"); + border-bottom: 1px solid t("modal-border-color"); + } padding: 25px; position: relative; } - .features{ + .features { font-size: 17px; padding: 40px 20px 20px; width: 100%; @@ -85,11 +83,11 @@ } .signup-button { - background-color: $textbook; + @include theme() { + color: $gfff; + background-color: t("confirm-button-background"); + } border: 0; - border-bottom: 2px solid $confirm-green-darker; - box-shadow: inset 0 -2px $confirm-green-darker; - color: $gfff; cursor: pointer; display: inline-block; margin-top: 18px; @@ -98,13 +96,13 @@ text-shadow: 0 1px 2px $black-transparent-25; &:hover { - background-color: $confirm-green-darker; - border-bottom: 2px solid $confirm-green-darkest; - box-shadow: inset 0 -2px $confirm-green-darkest; + @include theme() { + background-color: t("confirm-button-hover"); + } } } -@media(max-width: 776px) { +@media (max-width: 776px) { .signup-modal { height: 85%; max-height: 900px; diff --git a/static/css/timetable/partials/social.scss b/static/css/timetable/partials/social.scss index 9f2997767f..56fdf24c94 100644 --- a/static/css/timetable/partials/social.scss +++ b/static/css/timetable/partials/social.scss @@ -37,6 +37,8 @@ border-top: 6px solid #777777; margin-left: 10px; z-index: 1; + display: inline-block; + cursor: pointer; &.down { transform: rotate(180deg); @@ -44,8 +46,10 @@ } .social-dropdown { - background-color: $gfff; - border: 1px solid $ge6e6e6; + @include theme() { + background-color: t("dropdown-background"); + border: t("dropdown-border"); + } box-shadow: 0 2px 10px $black-transparent-2; display: none; min-width: 105px; @@ -53,7 +57,7 @@ right: 10px; top: 49px; width: 100%; - z-index: 100; + z-index: 10; &.down { display: block; @@ -72,7 +76,9 @@ } &:hover { - background-color: $geee; + @include theme() { + background-color: t("dropdown-hover"); + } } i, @@ -95,12 +101,14 @@ } .tip { + @include theme() { + border-bottom-color: t("dropdown-background"); + } right: 10px; top: -7px; } } - .social-login { &, &:link, @@ -109,7 +117,7 @@ color: $facebook; padding: 3px 5px; position: relative; - transition: color .3s; + transition: color 0.3s; } &:hover { @@ -129,7 +137,7 @@ left: 50%; position: absolute; transform: translateX(-50%); - transition: width .3s; + transition: width 0.3s; width: 0; } @@ -206,12 +214,6 @@ } } - .search-bar { - input { - padding: 0 0 0 10px; - } - } - .fa-facebook-square { display: none; } diff --git a/static/css/timetable/partials/textbook_modal.scss b/static/css/timetable/partials/textbook_modal.scss deleted file mode 100644 index f59ffaa44d..0000000000 --- a/static/css/timetable/partials/textbook_modal.scss +++ /dev/null @@ -1,166 +0,0 @@ -.abnb-modal { - &.textbook-modal { - height: 85%; - max-width: 600px; - overflow: auto; - - > div { - height: 100%; - } - - form { - height: 100%; - position: relative; - } - } - - .modal-module-header { - clear: both; - color: $g777; - font-size: 14px; - font-weight: 300; - margin: 0; - padding: 10px 5px; - position: relative; - transition: color .2s; - } -} - -.textbook-modal { - .tb-list-container { - bottom: 66px; - height: 100%; - overflow: scroll; - padding: 10px 30px 75px; - position: absolute; - top: 0; - width: 100%; - } - - .tb-image-wrapper { - height: 100px; - } - - .textbook { - img { - width: 75px; - } - } - - .modal-footer { - background-color: $geee; - border: 1px solid $gddd; - bottom: 0; - height: 66px; - position: absolute; - width: 100%; - z-index: 11; - - p { - color: $g777; - font-size: 12px; - font-weight: 300; - line-height: 16px; - padding-right: 162px; - text-align: left; - } - } - - .modal-header { - padding: 20px; - - h1 { - font-size: 30px; - } - } - - .loader { - animation: spin 2s linear infinite; - border: 10px solid $gf3f3f3; - border-radius: 50%; - border-top: 10px solid $blue; - height: 80px; - margin: 0 auto; - width: 80px; - } -} - -.add-to-cart { - background-color: $amazon; - border: 0; - border-radius: 6px; - bottom: 12px; - color: $gfff; - font-size: 15px; - height: 40px; - position: absolute; - right: 25px; - text-align: center; - vertical-align: middle; - width: 140px; - - .button-label { - i { - margin-right: 5px; - } - } -} - - -.loader-container { - position: relative; - text-align: center; - top: -50%; - transform: translateY(50%); - - p { - font-size: 15px; - margin-top: 15px; - } -} - -.spinner-container { - width: 100%; - - i { - font-size: 80px; - } -} - -.tb-list-entry { - .no-tbs { - font-weight: 300; - margin-top: 15px; - text-align: center; - } -} - -@media(max-width: 776px) { - .textbook-modal { - .modal-header { - h1 { - font-size: 20px; - } - } - - .tb-list-container { - bottom: 66px; - position: absolute; - top: 0; - } - - .modal-footer { - p { - display: none; - } - } - } - - .abnb-modal { - &.textbook-modal { - height: 100%; - max-width: 600px; - overflow: auto; - } - } -} diff --git a/static/css/timetable/partials/timetable.scss b/static/css/timetable/partials/timetable.scss index 1f2ee0377d..0d06c29ef4 100644 --- a/static/css/timetable/partials/timetable.scss +++ b/static/css/timetable/partials/timetable.scss @@ -12,6 +12,14 @@ body { th { font-family: $font-primary; } + + &.hoverCustomSlot { + cursor: crosshair; + } +} + +.addingCustomSlot { + color: #16a085; } .cal-btn-wrapper { @@ -27,18 +35,27 @@ button { line-height: 30px; outline: none; position: relative; - transition: background-color .3s; + transition: background-color 0.3s; width: 30px; &:hover, &:active { - color: $blue-dark; + @include theme() { + color: t("toolbar-icon-hover"); + } } &.add-button { margin-right: 2px; } + &.add-button-manual-hover { + margin-right: 2px; + @include theme() { + color: t("toolbar-icon-hover"); + } + } + i { font-size: 18px; left: 0; @@ -55,13 +72,14 @@ button { border-radius: 4px; float: right; margin-right: 2px; - transition: color .3s; + transition: color 0.3s; &:hover { - background-color: $gddd; + @include theme() { + background-color: t("row-button-hover-background-color"); + } } } - } .cal-row { @@ -113,6 +131,22 @@ button { border-bottom: 0; margin-top: 20px; padding: 5px; + + .custom-instructions { + @include theme() { + color: t("text-color-thin"); + } + line-height: 30px; + margin: 0 10px; + font-size: 15px; + font-weight: 300; + } + + @media screen and (max-width: 550px) { + .custom-instructions { + display: none; + } + } } .cal-cell { @@ -126,24 +160,35 @@ button { } .fc-right { + display: flex; + align-items: center; + .share-course-link-wrapper { - top: auto; + @include theme() { + background-color: t("tooltip-background"); + } right: auto; - display: block; - margin-left: -213px !important; - margin-top: 36px; + margin-left: -154px; + margin-top: 40px; } } .save-timetable { img { - display: inline-block; - font-size: 18px; - height: 18px; - left: 7px; - line-height: 30px; - position: absolute; - top: 4px; - width: 18px; + font-size: 24px; + height: 24px; + width: 24px; + filter: invert(48%) sepia(0%) saturate(0%) hue-rotate(5deg) brightness(96%) + contrast(92%); + } + + img:hover { + @include theme() { + filter: t("toolbar-img-icon-hover-filter"); + } } } + +.timetable-footer { + margin-bottom: 0px; +} diff --git a/static/css/timetable/partials/tos-banner.scss b/static/css/timetable/partials/tos-banner.scss index 5e70a91513..3a50f5ea0a 100644 --- a/static/css/timetable/partials/tos-banner.scss +++ b/static/css/timetable/partials/tos-banner.scss @@ -1,6 +1,8 @@ .tos-banner { - background-color: $gfff; - border: 1px solid $gddd; + @include theme() { + background-color: t("tos-banner-background"); + border: 1px solid t("tos-banner-border"); + } bottom: 0; left: 50%; max-width: 470px; @@ -9,10 +11,10 @@ position: fixed; text-align: center; transform: translateX(-50%); - transition: opacity .3s, visibility .3s; + transition: opacity 0.3s, visibility 0.3s; visibility: hidden; width: 100%; - z-index: 3000; + z-index: 30; p { font-size: 12px; @@ -31,7 +33,9 @@ } .tos-banner__close { - background-color: $geee; + @include theme() { + background-color: t("tos-banner-close"); + } bottom: 6px; cursor: pointer; padding: 0 5px; @@ -43,7 +47,7 @@ color: $g555; font-size: 15px; line-height: 32px; - transition: color .3s; + transition: color 0.3s; } &:hover { @@ -51,4 +55,4 @@ color: $red; } } -} \ No newline at end of file +} diff --git a/static/css/timetable/partials/tos-modal.scss b/static/css/timetable/partials/tos-modal.scss index 9e39479c7f..66dab96847 100644 --- a/static/css/timetable/partials/tos-modal.scss +++ b/static/css/timetable/partials/tos-modal.scss @@ -1,5 +1,4 @@ .terms-of-service-modal { - max-width: 450px; text-align: center; h1 { @@ -8,7 +7,9 @@ } h3 { - color: $g555; + @include theme() { + color: t("text-color-thin"); + } font-size: 14px; margin: 20px 10px; } @@ -24,23 +25,32 @@ margin-left: 3px; } } - } .tos-modal-container { padding: 30px 20px; } - .accept-tos-btn { - background-color: $green; + @include theme() { + background-color: t("confirm-button-background"); + } border: 0; border-radius: 3px; - color: $gfff; margin: 20px auto; padding: 10px 20px; + span { + color: $gfff; + } + i { margin-right: 10px; } + + &:hover { + @include theme() { + background-color: t("confirm-button-hover"); + } + } } diff --git a/static/css/timetable/partials/tut-modal.scss b/static/css/timetable/partials/tut-modal.scss index fbbed47ce3..27f2cae6ba 100644 --- a/static/css/timetable/partials/tut-modal.scss +++ b/static/css/timetable/partials/tut-modal.scss @@ -1,7 +1,4 @@ .tut-modal__wrapper { - height: 100%; - width: 100%; - .fa-chevron-right { color: $gfff; float: right; @@ -34,12 +31,12 @@ } .tut-img { - transition: all .1s linear; + transition: all 0.1s linear; user-select: none; } .action { - transition: all .1s linear; + transition: all 0.1s linear; &:hover { color: $gbdc3c7; @@ -56,16 +53,11 @@ width: 100%; } -.tut-modal { - max-height: 550px; - max-width: 500px; -} - .tut-modal > div { outline: none; } -@media(max-width: 500px) { +@media (max-width: 500px) { .tut-modal { width: 100% !important; } diff --git a/static/css/timetable/partials/user_acquisition_modal.scss b/static/css/timetable/partials/user_acquisition_modal.scss index e3b8898da8..c0c0a0032d 100644 --- a/static/css/timetable/partials/user_acquisition_modal.scss +++ b/static/css/timetable/partials/user_acquisition_modal.scss @@ -1,18 +1,20 @@ .user-acquisition-modal { - height: 495px; - max-width: 450px; - overflow: auto; - .user-acquisition-modal__container { padding: 30px; } + + .h6 { + background-color: transparent; + } } .abnb-btn { &.fb-btn { + span { + color: $gfff; + } background-color: $facebook; border-color: $facebook; - color: $gfff; } } @@ -24,7 +26,9 @@ .abnb-modal { h3 { - color: $g484848; + @include theme() { + color: t("text-color-thin"); + } font-size: 17px; font-weight: 300; margin-top: 0; @@ -35,6 +39,6 @@ .abnb-btn.disabled, .abnb-btn[disabled], -fieldset[disabled] .abnb-btn{ - opacity: .25; +fieldset[disabled] .abnb-btn { + opacity: 0.25; } diff --git a/static/css/timetable/partials/user_settings_modal.scss b/static/css/timetable/partials/user_settings_modal.scss index 19523f8786..71044195e0 100644 --- a/static/css/timetable/partials/user_settings_modal.scss +++ b/static/css/timetable/partials/user_settings_modal.scss @@ -1,37 +1,40 @@ -.welcome-modal { - height: 745px; - max-height: 90%; - max-width: 500px; - +.user-settings-modal { > div { height: 100%; outline: none; } .modal-header { - background-color: $geee; - border-bottom: 1px solid $gddd; + @include theme() { + background-color: t("modal-header-background"); + border-bottom: 1px solid t("modal-border-color"); + } padding: 25px; position: relative; text-align: left; } - .pro-pic { - border: 2px solid $gddd; - box-shadow: 0 2px 2px $g188-transparent-4; - z-index: 1; + .name-greeting { + font-size: 2.5rem; + margin-bottom: 5px; + margin-top: 5px; + text-align: left; } - .modal-content { - text-align: center; - - form { - text-align: left; + .pro-pic { + @include theme() { + border: 2px solid t("modal-border-color"); } + box-shadow: 0 2px 2px $g188-transparent-4; + z-index: 1; } .modal-body { - padding: 42px 0 20px; + display: flex; + flex-direction: column; + justify-content: space-evenly; + text-align: center; + padding: 26px 0 20px; p { color: $gaaa; @@ -54,7 +57,14 @@ text-align: left; } - button, input, select, textarea { + span { + color: white; + } + + button, + input, + select, + textarea { font-family: inherit; font-size: inherit; margin-right: 20px; @@ -89,7 +99,9 @@ } .show-delete-dropdown { - border-bottom: 1px solid #eee; + @include theme() { + border-bottom: 1px solid t("modal-border-color"); + } } .Select { @@ -105,19 +117,25 @@ } } - .switch-slide { - float: right; - margin-left: 15px; - } + .preference { + padding: 0 20px 15px; - .switch-label { - &::after { - background: $switch-blue; + .alert-danger { + @include theme() { + background-color: t("alert-danger-background"); + border-color: t("modal-border-color"); + } } } - .preference { - padding: 0 20px 15px; + .preference-row { + display: flex; + padding: 0 0 15px; + column-gap: 20px; + + .preference-wrapper { + flex: 1; + } } .preference-attn { @@ -126,9 +144,10 @@ border-top: 1px solid $gdee2ff; } - .welcome-modal__notifications { - border-bottom: 1px solid $geee; - border-top: 1px solid $geee; + .user-settings-modal__notifications { + @include theme() { + border-bottom: 1px solid t("modal-border-color"); + } padding-top: 15px; &.preference-attn-yellow { @@ -147,16 +166,6 @@ } } - .abnb-btn { - padding-bottom: 14px !important; - padding-top: 15px !important; - - i { - font-size: 14px; - margin-top: 2px; - } - } - .disclaimer { &.ctr { margin-bottom: 0; @@ -166,7 +175,7 @@ } } -.welcome-modal__notifications { +.user-settings-modal__notifications { &.preference-attn { h4 { color: $primary-navy; @@ -197,7 +206,7 @@ } .modal-body { - .welcome-modal__notifications { + .user-settings-modal__notifications { h3 { font-size: 14px; font-weight: bold; @@ -208,7 +217,7 @@ } @media (max-width: 766px) { - .welcome-modal { + .user-settings-modal { .modal-body { padding: 22px 0 20px; @@ -220,7 +229,7 @@ } @media (max-width: 499px) { - .welcome-modal { + .user-settings-modal { .modal-body { p { font-size: 12px; diff --git a/static/css/timetable/vendor/full-calendar.scss b/static/css/timetable/vendor/full-calendar.scss new file mode 100644 index 0000000000..0ce4f1710f --- /dev/null +++ b/static/css/timetable/vendor/full-calendar.scss @@ -0,0 +1,909 @@ +.fc { + direction: ltr; + text-align: left; +} + +.fc-rtl { + text-align: right; +} + +body .fc { + font-size: 1em; +} + +.fc-unthemed .fc-divider, +.fc-unthemed .fc-popover, +.fc-unthemed .fc-row, +.fc-unthemed tbody, +.fc-unthemed td, +.fc-unthemed th, +.fc-unthemed thead { + @include theme() { + border-color: t("main-calendar-border-color"); + } +} + +.fc-unthemed .fc-popover { + background-color: #fff; +} + +.fc-unthemed .fc-divider, +.fc-unthemed .fc-popover .fc-header { + background: #eee; +} + +.fc-unthemed .fc-popover .fc-header .fc-close { + color: #666; +} + +.fc-unthemed .fc-today { + background: #fcf8e3; +} + +.fc-highlight { + background: #bce8f1; + opacity: 0.3; + filter: alpha(opacity=30); +} + +.fc-bgevent { + background: #8fdf82; + opacity: 0.3; + filter: alpha(opacity=30); +} + +.fc-nonbusiness { + background: #d7d7d7; +} + +.fc-icon { + display: inline-block; + width: 1em; + height: 1em; + line-height: 1em; + font-size: 1em; + text-align: center; + overflow: hidden; + font-family: "Courier New", Courier, monospace; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.fc-icon:after { + position: relative; + margin: 0 -1em; +} + +.fc-icon-left-single-arrow:after { + content: "\02039"; + font-weight: 700; + font-size: 200%; + top: -7%; + left: 3%; +} + +.fc-icon-right-single-arrow:after { + content: "\0203A"; + font-weight: 700; + font-size: 200%; + top: -7%; + left: -3%; +} + +.fc-icon-left-double-arrow:after { + content: "\000AB"; + font-size: 160%; + top: -7%; +} + +.fc-icon-right-double-arrow:after { + content: "\000BB"; + font-size: 160%; + top: -7%; +} + +.fc-icon-left-triangle:after { + content: "\25C4"; + font-size: 125%; + top: 3%; + left: -2%; +} + +.fc-icon-right-triangle:after { + content: "\25BA"; + font-size: 125%; + top: 3%; + left: 2%; +} + +.fc-icon-down-triangle:after { + content: "\25BC"; + font-size: 125%; + top: 2%; +} + +.fc-icon-x:after { + content: "\000D7"; + font-size: 200%; + top: 6%; +} + +.fc button { + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; + margin: 0; + height: 2.1em; + padding: 0 0.6em; + font-size: 1em; + white-space: nowrap; + cursor: pointer; +} + +.fc button::-moz-focus-inner { + margin: 0; + padding: 0; +} + +.fc-state-default { + border: 1px solid; +} + +.fc-state-default.fc-corner-left { + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} + +.fc-state-default.fc-corner-right { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} + +.fc button .fc-icon { + position: relative; + top: -0.05em; + margin: 0 0.2em; + vertical-align: middle; +} + +.fc-state-default { + background-color: #f5f5f5; + background-image: -moz-linear-gradient(top, #fff, #e6e6e6); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6)); + background-image: -webkit-linear-gradient(top, #fff, #e6e6e6); + background-image: -o-linear-gradient(top, #fff, #e6e6e6); + background-image: linear-gradient(to bottom, #fff, #e6e6e6); + background-repeat: repeat-x; + border-color: #e6e6e6 #e6e6e6 #bfbfbf; + border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); + color: #333; + text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.fc-state-active, +.fc-state-disabled, +.fc-state-down, +.fc-state-hover { + color: #333; + background-color: #e6e6e6; +} + +.fc-state-hover { + color: #333; + text-decoration: none; + background-position: 0 -15px; + -webkit-transition: background-position 0.1s linear; + -moz-transition: background-position 0.1s linear; + -o-transition: background-position 0.1s linear; + transition: background-position 0.1s linear; +} + +.fc-state-active, +.fc-state-down { + background-color: #ccc; + background-image: none; + box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); +} + +.fc-state-disabled { + cursor: default; + background-image: none; + opacity: 0.65; + filter: alpha(opacity=65); + box-shadow: none; +} + +.fc-button-group { + display: inline-block; +} + +.fc .fc-button-group > * { + float: left; + margin: 0 0 0 -1px; +} + +.fc .fc-button-group > :first-child { + margin-left: 0; +} + +.fc-popover { + position: absolute; + box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); +} + +.fc-popover .fc-header { + padding: 2px 4px; +} + +.fc-popover .fc-header .fc-title { + margin: 0 2px; +} + +.fc-popover .fc-header .fc-close { + cursor: pointer; +} + +.fc-ltr .fc-popover .fc-header .fc-title, +.fc-rtl .fc-popover .fc-header .fc-close { + float: left; +} + +.fc-ltr .fc-popover .fc-header .fc-close, +.fc-rtl .fc-popover .fc-header .fc-title { + float: right; +} + +.fc-unthemed .fc-popover { + border-width: 1px; + border-style: solid; +} + +.fc-unthemed .fc-popover .fc-header .fc-close { + font-size: 0.9em; + margin-top: 2px; +} + +.fc-popover > .ui-widget-header + .ui-widget-content { + border-top: 0; +} + +.fc-divider { + border-style: solid; + border-width: 1px; +} + +hr.fc-divider { + height: 0; + margin: 0; + padding: 0 0 0px; + border-width: 1px 0; +} + +.fc-clear { + clear: both; +} + +.fc-bg, +.fc-bgevent-skeleton, +.fc-helper-skeleton, +.fc-highlight-skeleton { + position: absolute; + top: 0; + left: 0; + right: 0; +} + +.fc-bg { + bottom: 0; +} + +.fc-bg table { + height: 100%; +} + +.fc table { + width: 100%; + table-layout: fixed; + border-collapse: collapse; + border-spacing: 0; + font-size: 1em; +} + +.fc th { + text-align: center; +} + +.fc td, +.fc th { + border-style: solid; + border-width: 1px; + padding: 0; + vertical-align: top; +} + +.fc td.fc-today { + border-style: double; +} + +.fc .fc-row { + border-style: solid; + border-width: 0; +} + +.fc-row table { + border-left: 0 hidden transparent; + border-right: 0 hidden transparent; + border-bottom: 0 hidden transparent; +} + +.fc-row:first-child table { + border-top: 0 hidden transparent; +} + +.fc-row { + position: relative; +} + +.fc-row .fc-bg { + z-index: 1; +} + +.fc-row .fc-bgevent-skeleton, +.fc-row .fc-highlight-skeleton { + bottom: 0; +} + +.fc-row .fc-bgevent-skeleton table, +.fc-row .fc-highlight-skeleton table { + height: 100%; +} + +.fc-row .fc-bgevent-skeleton td, +.fc-row .fc-highlight-skeleton td { + border-color: transparent; +} + +.fc-row .fc-bgevent-skeleton { + z-index: 2; +} + +.fc-row .fc-highlight-skeleton { + z-index: 3; +} + +.fc-row .fc-content-skeleton { + position: relative; + z-index: 4; + padding-bottom: 2px; +} + +.fc-row .fc-helper-skeleton { + z-index: 5; +} + +.fc-row .fc-content-skeleton td, +.fc-row .fc-helper-skeleton td { + background: 0 0; + border-color: transparent; + border-bottom: 0; +} + +.fc-row .fc-content-skeleton tbody td, +.fc-row .fc-helper-skeleton tbody td { + border-top: 0; +} + +.fc-scroller { + overflow-y: scroll; + overflow-x: hidden; +} + +.fc-scroller > * { + position: relative; + width: 100%; + overflow: hidden; +} + +.fc-event { + position: relative; + display: block; + font-size: 0.85em; + line-height: 1.3; + border-radius: 1px; + background-color: #36d7b7; + font-weight: 400; +} + +.fc-event, +.fc-event:hover, +.ui-widget .fc-event { + color: #fff; + text-decoration: none; +} + +.fc-event.fc-draggable, +.fc-event[href] { + cursor: pointer; +} + +.fc-not-allowed, +.fc-not-allowed .fc-event { + cursor: not-allowed; +} + +.fc-event .fc-bg { + z-index: 1; + background: #fff; + opacity: 0.25; + filter: alpha(opacity=25); +} + +.fc-event .fc-content { + position: relative; + z-index: 2; +} + +.fc-event .fc-resizer { + position: absolute; + z-index: 3; +} + +.fc-ltr .fc-h-event.fc-not-start, +.fc-rtl .fc-h-event.fc-not-end { + margin-left: 0; + border-left-width: 0; + padding-left: 1px; + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} + +.fc-ltr .fc-h-event.fc-not-end, +.fc-rtl .fc-h-event.fc-not-start { + margin-right: 0; + border-right-width: 0; + padding-right: 1px; + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} + +.fc-h-event .fc-resizer { + top: -1px; + bottom: -1px; + left: -1px; + right: -1px; + width: 5px; +} + +.fc-ltr .fc-h-event .fc-start-resizer, +.fc-ltr .fc-h-event .fc-start-resizer:after, +.fc-ltr .fc-h-event .fc-start-resizer:before, +.fc-rtl .fc-h-event .fc-end-resizer, +.fc-rtl .fc-h-event .fc-end-resizer:after, +.fc-rtl .fc-h-event .fc-end-resizer:before { + right: auto; + cursor: w-resize; +} + +.fc-ltr .fc-h-event .fc-end-resizer, +.fc-ltr .fc-h-event .fc-end-resizer:after, +.fc-ltr .fc-h-event .fc-end-resizer:before, +.fc-rtl .fc-h-event .fc-start-resizer, +.fc-rtl .fc-h-event .fc-start-resizer:after, +.fc-rtl .fc-h-event .fc-start-resizer:before { + left: auto; + cursor: e-resize; +} + +.fc-day-grid-event { + margin: 1px 2px 0; + padding: 0 1px; +} + +.fc-day-grid-event .fc-content { + white-space: nowrap; + overflow: hidden; +} + +.fc-day-grid-event .fc-time { + font-weight: 700; +} + +.fc-day-grid-event .fc-resizer { + left: -3px; + right: -3px; + width: 7px; +} + +a.fc-more { + margin: 1px 3px; + font-size: 0.85em; + cursor: pointer; + text-decoration: none; +} + +a.fc-more:hover { + text-decoration: underline; +} + +.fc-limited { + display: none; +} + +.fc-day-grid .fc-row { + z-index: 1; +} + +.fc-more-popover { + z-index: 2; + width: 220px; +} + +.fc-more-popover .fc-event-container { + padding: 10px; +} + +.fc-now-indicator { + position: absolute; + border: 0 solid red; +} + +.fc-toolbar { + text-align: center; + margin-bottom: 0em; +} + +.fc-toolbar .fc-left { + float: left; +} + +.fc-toolbar .fc-right { + float: right; +} + +.fc-toolbar .fc-center { + display: inline-block; +} + +.fc .fc-toolbar > * > * { + float: left; + margin-left: 0.75em; +} + +.fc .fc-toolbar > * > :first-child { + margin-left: 0; +} + +.fc-toolbar h2 { + margin: 0; +} + +.fc-toolbar button { + position: relative; +} + +.fc-toolbar .fc-state-hover, +.fc-toolbar .ui-state-hover { + z-index: 2; +} + +.fc-toolbar .fc-state-down { + z-index: 3; +} + +.fc-toolbar .fc-state-active, +.fc-toolbar .ui-state-active { + z-index: 4; +} + +.fc-toolbar button:focus { + z-index: 5; +} + +.fc-view-container *, +.fc-view-container :after, +.fc-view-container :before { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; +} + +.fc-view, +.fc-view > table { + position: relative; + z-index: 1; + overflow-x: hidden; + overflow-y: auto; +} + +.fc-basicDay-view .fc-content-skeleton, +.fc-basicWeek-view .fc-content-skeleton { + padding-top: 1px; + padding-bottom: 1em; +} + +.fc-basic-view .fc-body .fc-row { + min-height: 4em; +} + +.fc-row.fc-rigid { + overflow: hidden; +} + +.fc-row.fc-rigid .fc-content-skeleton { + position: absolute; + top: 0; + left: 0; + right: 0; +} + +.fc-basic-view .fc-day-number, +.fc-basic-view .fc-week-number { + padding: 0 2px; +} + +.fc-basic-view td.fc-day-number, +.fc-basic-view td.fc-week-number span { + padding-top: 2px; + padding-bottom: 2px; +} + +.fc-basic-view .fc-week-number { + text-align: center; +} + +.fc-basic-view .fc-week-number span { + display: inline-block; + min-width: 1.25em; +} + +.fc-ltr .fc-basic-view .fc-day-number { + text-align: right; +} + +.fc-rtl .fc-basic-view .fc-day-number { + text-align: left; +} + +.fc-day-number.fc-other-month { + opacity: 0.3; + filter: alpha(opacity=30); +} + +.fc-agenda-view .fc-day-grid { + position: relative; + z-index: 2; +} + +.fc-agenda-view .fc-day-grid .fc-row { + min-height: 3em; +} + +.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton { + padding-top: 1px; + padding-bottom: 1em; +} + +.fc .fc-axis { + vertical-align: middle; + padding: 0 4px; + white-space: nowrap; +} + +.fc-ltr .fc-axis { + text-align: right; +} + +.fc-rtl .fc-axis { + text-align: left; +} + +.ui-widget td.fc-axis { + font-weight: 400; +} + +.fc-time-grid, +.fc-time-grid-container { + position: relative; + z-index: 1; +} + +.fc-time-grid { + min-height: 100%; +} + +.fc-time-grid table { + border: 0 hidden transparent; +} + +.fc-time-grid > .fc-bg { + z-index: 1; +} + +.fc-time-grid .fc-slats, +.fc-time-grid > hr { + position: relative; + z-index: 2; +} + +.fc-time-grid .fc-content-col { + position: relative; +} + +.fc-time-grid .fc-content-skeleton { + position: absolute; + z-index: 3; + top: 0; + left: 0; + right: 0; +} + +.fc-time-grid .fc-business-container { + position: relative; + z-index: 1; +} + +.fc-time-grid .fc-bgevent-container { + position: relative; + z-index: 2; +} + +.fc-time-grid .fc-highlight-container { + z-index: 3; +} + +.fc-time-grid .fc-event-container { + position: relative; + z-index: 4; +} + +.fc-time-grid .fc-now-indicator-line { + z-index: 5; +} + +.fc-time-grid .fc-helper-container { + position: relative; + z-index: 6; +} + +.fc-time-grid .fc-slats td { + height: 1.5em; + border-bottom: 0; +} + +.fc-time-grid .fc-slats .fc-minor td { + border-top-style: dotted; +} + +.fc-time-grid .fc-slats .ui-widget-content { + background: 0 0; +} + +.fc-time-grid .fc-highlight-container { + position: relative; +} + +.fc-time-grid .fc-highlight { + position: absolute; + left: 0; + right: 0; +} + +.fc-ltr .fc-time-grid .fc-event-container { + margin: 0 2px 0 2px; +} + +.fc-rtl .fc-time-grid .fc-event-container { + margin: 0 2px 0 2.5%; +} + +.fc-time-grid .fc-bgevent, +.fc-time-grid .fc-event { + position: absolute; + z-index: 1; +} + +.fc-time-grid .fc-bgevent { + left: 0; + right: 0; +} + +.fc-v-event.fc-not-start { + border-top-width: 0; + padding-top: 1px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} + +.fc-v-event.fc-not-end { + border-bottom-width: 0; + padding-bottom: 1px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + +.fc-time-grid-event { + overflow: hidden; +} + +.fc-time-grid-event .fc-time, +.fc-time-grid-event .fc-title { + padding: 0 1px; +} + +.fc-time-grid-event .fc-time { + font-size: 0.8em; + white-space: nowrap; +} + +.fc-time-grid-event.fc-short .fc-content { + white-space: nowrap; +} + +.fc-time-grid-event.fc-short .fc-time, +.fc-time-grid-event.fc-short .fc-title { + display: inline-block; + vertical-align: top; +} + +.fc-time-grid-event.fc-short .fc-time span { + display: none; +} + +.fc-time-grid-event.fc-short .fc-time:before { + content: attr(data-start); +} + +.fc-time-grid-event.fc-short .fc-time:after { + content: "\000A0-\000A0"; +} + +.fc-time-grid-event.fc-short .fc-title { + font-size: 0.85em; + padding: 0; +} + +.fc-time-grid-event .fc-resizer { + left: 0; + right: 0; + bottom: 0; + height: 8px; + overflow: hidden; + line-height: 8px; + font-size: 11px; + font-family: monospace; + text-align: center; + cursor: s-resize; +} + +.fc-time-grid-event .fc-resizer:after { + content: "="; +} + +.fc-time-grid .fc-now-indicator-line { + border-top-width: 1px; + left: 0; + right: 0; +} + +.fc-time-grid .fc-now-indicator-arrow { + margin-top: -5px; +} + +.fc-ltr .fc-time-grid .fc-now-indicator-arrow { + left: 0; + border-width: 5px 0 5px 6px; + border-top-color: transparent; + border-bottom-color: transparent; +} + +.fc-rtl .fc-time-grid .fc-now-indicator-arrow { + right: 0; + border-width: 5px 6px 5px 0; + border-top-color: transparent; + border-bottom-color: transparent; +} diff --git a/static/css/timetable/vendor/react_input_range.scss b/static/css/timetable/vendor/react_input_range.scss index 0bf36f6350..63f229c196 100644 --- a/static/css/timetable/vendor/react_input_range.scss +++ b/static/css/timetable/vendor/react_input_range.scss @@ -6,12 +6,12 @@ cursor: pointer; display: block; height: 1rem; - margin-left: -.5rem; - margin-top: -.65rem; + margin-left: -0.5rem; + margin-top: -0.65rem; outline: none; position: absolute; top: 50%; - transition: transform .3s ease-out, box-shadow .3s ease-out; + transition: transform 0.3s ease-out, box-shadow 0.3s ease-out; width: 1rem; &:active { @@ -47,13 +47,13 @@ } .input-range__slider-container { - transition: left .3s ease-out; + transition: left 0.3s ease-out; } .input-range__label { color: $gaaa; font-family: $font-primary; - font-size: .8rem; + font-size: 0.8rem; } .input-range__label--min, @@ -97,16 +97,16 @@ .input-range__track { background: $geee; - border-radius: .3rem; + border-radius: 0.3rem; display: block; - height: .3rem; + height: 0.3rem; position: relative; - transition: left .3s ease-out, width .3s ease-out; + transition: left 0.3s ease-out, width 0.3s ease-out; } .input-range__track--container { left: 0; - margin-top: -.15rem; + margin-top: -0.15rem; position: absolute; right: 0; top: 50%; @@ -118,7 +118,10 @@ .time-selector { > .time-selector-day { - display: inline-block; + display: flex; + flex-direction: row; + justify-content: space-between; + align-items: center; font-size: 14px; width: 30px; } diff --git a/static/css/unsubscribe.css b/static/css/unsubscribe.css deleted file mode 100644 index 9bb51f679f..0000000000 --- a/static/css/unsubscribe.css +++ /dev/null @@ -1,28 +0,0 @@ -#unsubscribe, -#error-404-center { - text-align: center; - position: absolute; - width: 100%; - top: 45%; - transform: translateY(-50%); -} -#unsubscribe h2, -#error-404 h2 { - font-size: 32px; - line-height: 32px; - color: #aaa; - font-family: "Palanquin",Arial,sans-serif; - margin: 20px auto 0px; -} -#unsubscribe h3, -#error-404 h3 { - margin: 20px auto auto; - font-size: 14px; -} - -#error-404 h2 { - font-size: 56px; - line-height: 56px; - color: #34495e; - margin: 0; -} \ No newline at end of file diff --git a/static/django_extensions/css/jquery.autocomplete.css b/static/django_extensions/css/jquery.autocomplete.css new file mode 100644 index 0000000000..0363616ebc --- /dev/null +++ b/static/django_extensions/css/jquery.autocomplete.css @@ -0,0 +1,38 @@ +/** + * @fileOverview CSS for jquery-autocomplete, the jQuery Autocompleter + * @author Dylan Verheul + * @license MIT | GPL | Apache 2.0, see LICENSE.txt + * @see https://github.com/dyve/jquery-autocomplete + */ +.acResults { + padding: 0px; + border: 1px solid WindowFrame; + background-color: Window; + overflow: hidden; +} + +.acResults ul { + margin: 0px; + padding: 0px; + list-style-position: outside; + list-style: none; +} + +.acResults ul li { + margin: 0px; + padding: 2px 5px; + cursor: pointer; + display: block; + font: menu; + font-size: 12px; + overflow: hidden; +} + +.acLoading { + background : url('../img/indicator.gif') right center no-repeat; +} + +.acSelect { + background-color: Highlight; + color: HighlightText; +} diff --git a/static/django_extensions/img/indicator.gif b/static/django_extensions/img/indicator.gif new file mode 100644 index 0000000000..085ccaecaf Binary files /dev/null and b/static/django_extensions/img/indicator.gif differ diff --git a/static/django_extensions/js/jquery.ajaxQueue.js b/static/django_extensions/js/jquery.ajaxQueue.js new file mode 100644 index 0000000000..cd4492c13c --- /dev/null +++ b/static/django_extensions/js/jquery.ajaxQueue.js @@ -0,0 +1,119 @@ +/** + * Ajax Queue Plugin + * + * Homepage: http://jquery.com/plugins/project/ajaxqueue + * Documentation: http://docs.jquery.com/AjaxQueue + */ + +/** + + +
        + + */ +/* + * Queued Ajax requests. + * A new Ajax request won't be started until the previous queued + * request has finished. + */ + +/* + * Synced Ajax requests. + * The Ajax request will happen as soon as you call this method, but + * the callbacks (success/error/complete) won't fire until all previous + * synced requests have been completed. + */ + + +(function(jQuery) { + + var ajax = jQuery.ajax; + + var pendingRequests = {}; + + var synced = []; + var syncedData = []; + + jQuery.ajax = function(settings) { + // create settings for compatibility with ajaxSetup + settings = jQuery.extend(settings, jQuery.extend({}, jQuery.ajaxSettings, settings)); + + var port = settings.port; + + switch(settings.mode) { + case "abort": + if ( pendingRequests[port] ) { + pendingRequests[port].abort(); + } + return pendingRequests[port] = ajax.apply(this, arguments); + case "queue": + var _old = settings.complete; + settings.complete = function(){ + if ( _old ) + _old.apply( this, arguments ); + jQuery([ajax]).dequeue("ajax" + port );; + }; + + jQuery([ ajax ]).queue("ajax" + port, function(){ + ajax( settings ); + }); + return; + case "sync": + var pos = synced.length; + + synced[ pos ] = { + error: settings.error, + success: settings.success, + complete: settings.complete, + done: false + }; + + syncedData[ pos ] = { + error: [], + success: [], + complete: [] + }; + + settings.error = function(){ syncedData[ pos ].error = arguments; }; + settings.success = function(){ syncedData[ pos ].success = arguments; }; + settings.complete = function(){ + syncedData[ pos ].complete = arguments; + synced[ pos ].done = true; + + if ( pos == 0 || !synced[ pos-1 ] ) + for ( var i = pos; i < synced.length && synced[i].done; i++ ) { + if ( synced[i].error ) synced[i].error.apply( jQuery, syncedData[i].error ); + if ( synced[i].success ) synced[i].success.apply( jQuery, syncedData[i].success ); + if ( synced[i].complete ) synced[i].complete.apply( jQuery, syncedData[i].complete ); + + synced[i] = null; + syncedData[i] = null; + } + }; + } + return ajax.apply(this, arguments); + }; + +})((typeof window.jQuery == 'undefined' && typeof window.django != 'undefined') + ? django.jQuery + : jQuery +); diff --git a/static/django_extensions/js/jquery.autocomplete.js b/static/django_extensions/js/jquery.autocomplete.js new file mode 100644 index 0000000000..77c1db60a8 --- /dev/null +++ b/static/django_extensions/js/jquery.autocomplete.js @@ -0,0 +1,1152 @@ +/** + * @fileOverview jquery-autocomplete, the jQuery Autocompleter + * @author Dylan Verheul + * @version 2.4.4 + * @requires jQuery 1.6+ + * @license MIT | GPL | Apache 2.0, see LICENSE.txt + * @see https://github.com/dyve/jquery-autocomplete + */ +(function($) { + "use strict"; + + /** + * jQuery autocomplete plugin + * @param {object|string} options + * @returns (object} jQuery object + */ + $.fn.autocomplete = function(options) { + var url; + if (arguments.length > 1) { + url = options; + options = arguments[1]; + options.url = url; + } else if (typeof options === 'string') { + url = options; + options = { url: url }; + } + var opts = $.extend({}, $.fn.autocomplete.defaults, options); + return this.each(function() { + var $this = $(this); + $this.data('autocompleter', new $.Autocompleter( + $this, + $.meta ? $.extend({}, opts, $this.data()) : opts + )); + }); + }; + + /** + * Store default options + * @type {object} + */ + $.fn.autocomplete.defaults = { + inputClass: 'acInput', + loadingClass: 'acLoading', + resultsClass: 'acResults', + selectClass: 'acSelect', + queryParamName: 'q', + extraParams: {}, + remoteDataType: false, + lineSeparator: '\n', + cellSeparator: '|', + minChars: 2, + maxItemsToShow: 10, + delay: 400, + useCache: true, + maxCacheLength: 10, + matchSubset: true, + matchCase: false, + matchInside: true, + mustMatch: false, + selectFirst: false, + selectOnly: false, + showResult: null, + preventDefaultReturn: 1, + preventDefaultTab: 0, + autoFill: false, + filterResults: true, + filter: true, + sortResults: true, + sortFunction: null, + onItemSelect: null, + onNoMatch: null, + onFinish: null, + matchStringConverter: null, + beforeUseConverter: null, + autoWidth: 'min-width', + useDelimiter: false, + delimiterChar: ',', + delimiterKeyCode: 188, + processData: null, + onError: null, + enabled: true + }; + + /** + * Sanitize result + * @param {Object} result + * @returns {Object} object with members value (String) and data (Object) + * @private + */ + var sanitizeResult = function(result) { + var value, data; + var type = typeof result; + if (type === 'string') { + value = result; + data = {}; + } else if ($.isArray(result)) { + value = result[0]; + data = result.slice(1); + } else if (type === 'object') { + value = result.value; + data = result.data; + } + value = String(value); + if (typeof data !== 'object') { + data = {}; + } + return { + value: value, + data: data + }; + }; + + /** + * Sanitize integer + * @param {mixed} value + * @param {Object} options + * @returns {Number} integer + * @private + */ + var sanitizeInteger = function(value, stdValue, options) { + var num = parseInt(value, 10); + options = options || {}; + if (isNaN(num) || (options.min && num < options.min)) { + num = stdValue; + } + return num; + }; + + /** + * Create partial url for a name/value pair + */ + var makeUrlParam = function(name, value) { + return [name, encodeURIComponent(value)].join('='); + }; + + /** + * Build an url + * @param {string} url Base url + * @param {object} [params] Dictionary of parameters + */ + var makeUrl = function(url, params) { + var urlAppend = []; + $.each(params, function(index, value) { + urlAppend.push(makeUrlParam(index, value)); + }); + if (urlAppend.length) { + url += url.indexOf('?') === -1 ? '?' : '&'; + url += urlAppend.join('&'); + } + return url; + }; + + /** + * Default sort filter + * @param {object} a + * @param {object} b + * @param {boolean} matchCase + * @returns {number} + */ + var sortValueAlpha = function(a, b, matchCase) { + a = String(a.value); + b = String(b.value); + if (!matchCase) { + a = a.toLowerCase(); + b = b.toLowerCase(); + } + if (a > b) { + return 1; + } + if (a < b) { + return -1; + } + return 0; + }; + + /** + * Parse data received in text format + * @param {string} text Plain text input + * @param {string} lineSeparator String that separates lines + * @param {string} cellSeparator String that separates cells + * @returns {array} Array of autocomplete data objects + */ + var plainTextParser = function(text, lineSeparator, cellSeparator) { + var results = []; + var i, j, data, line, value, lines; + // Be nice, fix linebreaks before splitting on lineSeparator + lines = String(text).replace('\r\n', '\n').split(lineSeparator); + for (i = 0; i < lines.length; i++) { + line = lines[i].split(cellSeparator); + data = []; + for (j = 0; j < line.length; j++) { + data.push(decodeURIComponent(line[j])); + } + value = data.shift(); + results.push({ value: value, data: data }); + } + return results; + }; + + /** + * Autocompleter class + * @param {object} $elem jQuery object with one input tag + * @param {object} options Settings + * @constructor + */ + $.Autocompleter = function($elem, options) { + + /** + * Assert parameters + */ + if (!$elem || !($elem instanceof $) || $elem.length !== 1 || $elem.get(0).tagName.toUpperCase() !== 'INPUT') { + throw new Error('Invalid parameter for jquery.Autocompleter, jQuery object with one element with INPUT tag expected.'); + } + + /** + * @constant Link to this instance + * @type object + * @private + */ + var self = this; + + /** + * @property {object} Options for this instance + * @public + */ + this.options = options; + + /** + * @property object Cached data for this instance + * @private + */ + this.cacheData_ = {}; + + /** + * @property {number} Number of cached data items + * @private + */ + this.cacheLength_ = 0; + + /** + * @property {string} Class name to mark selected item + * @private + */ + this.selectClass_ = 'jquery-autocomplete-selected-item'; + + /** + * @property {number} Handler to activation timeout + * @private + */ + this.keyTimeout_ = null; + + /** + * @property {number} Handler to finish timeout + * @private + */ + this.finishTimeout_ = null; + + /** + * @property {number} Last key pressed in the input field (store for behavior) + * @private + */ + this.lastKeyPressed_ = null; + + /** + * @property {string} Last value processed by the autocompleter + * @private + */ + this.lastProcessedValue_ = null; + + /** + * @property {string} Last value selected by the user + * @private + */ + this.lastSelectedValue_ = null; + + /** + * @property {boolean} Is this autocompleter active (showing results)? + * @see showResults + * @private + */ + this.active_ = false; + + /** + * @property {boolean} Is this autocompleter allowed to finish on blur? + * @private + */ + this.finishOnBlur_ = true; + + /** + * Sanitize options + */ + this.options.minChars = sanitizeInteger(this.options.minChars, $.fn.autocomplete.defaults.minChars, { min: 0 }); + this.options.maxItemsToShow = sanitizeInteger(this.options.maxItemsToShow, $.fn.autocomplete.defaults.maxItemsToShow, { min: 0 }); + this.options.maxCacheLength = sanitizeInteger(this.options.maxCacheLength, $.fn.autocomplete.defaults.maxCacheLength, { min: 1 }); + this.options.delay = sanitizeInteger(this.options.delay, $.fn.autocomplete.defaults.delay, { min: 0 }); + if (this.options.preventDefaultReturn != 2) { + this.options.preventDefaultReturn = this.options.preventDefaultReturn ? 1 : 0; + } + if (this.options.preventDefaultTab != 2) { + this.options.preventDefaultTab = this.options.preventDefaultTab ? 1 : 0; + } + + /** + * Init DOM elements repository + */ + this.dom = {}; + + /** + * Store the input element we're attached to in the repository + */ + this.dom.$elem = $elem; + + /** + * Switch off the native autocomplete and add the input class + */ + this.dom.$elem.attr('autocomplete', 'off').addClass(this.options.inputClass); + + /** + * Create DOM element to hold results, and force absolute position + */ + this.dom.$results = $('
        ').hide().addClass(this.options.resultsClass).css({ + position: 'absolute' + }); + $('body').append(this.dom.$results); + + /** + * Attach keyboard monitoring to $elem + */ + $elem.keydown(function(e) { + self.lastKeyPressed_ = e.keyCode; + switch(self.lastKeyPressed_) { + + case self.options.delimiterKeyCode: // comma = 188 + if (self.options.useDelimiter && self.active_) { + self.selectCurrent(); + } + break; + + // ignore navigational & special keys + case 35: // end + case 36: // home + case 16: // shift + case 17: // ctrl + case 18: // alt + case 37: // left + case 39: // right + break; + + case 38: // up + e.preventDefault(); + if (self.active_) { + self.focusPrev(); + } else { + self.activate(); + } + return false; + + case 40: // down + e.preventDefault(); + if (self.active_) { + self.focusNext(); + } else { + self.activate(); + } + return false; + + case 9: // tab + if (self.active_) { + self.selectCurrent(); + if (self.options.preventDefaultTab) { + e.preventDefault(); + return false; + } + } + if (self.options.preventDefaultTab === 2) { + e.preventDefault(); + return false; + } + break; + + case 13: // return + if (self.active_) { + self.selectCurrent(); + if (self.options.preventDefaultReturn) { + e.preventDefault(); + return false; + } + } + if (self.options.preventDefaultReturn === 2) { + e.preventDefault(); + return false; + } + break; + + case 27: // escape + if (self.active_) { + e.preventDefault(); + self.deactivate(true); + return false; + } + break; + + default: + self.activate(); + + } + }); + + /** + * Attach paste event listener because paste may occur much later then keydown or even without a keydown at all + */ + $elem.on('paste', function() { + self.activate(); + }); + + /** + * Finish on blur event + * Use a timeout because instant blur gives race conditions + */ + var onBlurFunction = function() { + self.deactivate(true); + } + $elem.blur(function() { + if (self.finishOnBlur_) { + self.finishTimeout_ = setTimeout(onBlurFunction, 200); + } + }); + /** + * Catch a race condition on form submit + */ + $elem.parents('form').on('submit', onBlurFunction); + + }; + + /** + * Position output DOM elements + * @private + */ + $.Autocompleter.prototype.position = function() { + var offset = this.dom.$elem.offset(); + var height = this.dom.$results.outerHeight(); + var totalHeight = $(window).outerHeight(); + var inputBottom = offset.top + this.dom.$elem.outerHeight(); + var bottomIfDown = inputBottom + height; + // Set autocomplete results at the bottom of input + var position = {top: inputBottom, left: offset.left}; + if (bottomIfDown > totalHeight) { + // Try to set autocomplete results at the top of input + var topIfUp = offset.top - height; + if (topIfUp >= 0) { + position.top = topIfUp; + } + } + this.dom.$results.css(position); + }; + + /** + * Read from cache + * @private + */ + $.Autocompleter.prototype.cacheRead = function(filter) { + var filterLength, searchLength, search, maxPos, pos; + if (this.options.useCache) { + filter = String(filter); + filterLength = filter.length; + if (this.options.matchSubset) { + searchLength = 1; + } else { + searchLength = filterLength; + } + while (searchLength <= filterLength) { + if (this.options.matchInside) { + maxPos = filterLength - searchLength; + } else { + maxPos = 0; + } + pos = 0; + while (pos <= maxPos) { + search = filter.substr(0, searchLength); + if (this.cacheData_[search] !== undefined) { + return this.cacheData_[search]; + } + pos++; + } + searchLength++; + } + } + return false; + }; + + /** + * Write to cache + * @private + */ + $.Autocompleter.prototype.cacheWrite = function(filter, data) { + if (this.options.useCache) { + if (this.cacheLength_ >= this.options.maxCacheLength) { + this.cacheFlush(); + } + filter = String(filter); + if (this.cacheData_[filter] !== undefined) { + this.cacheLength_++; + } + this.cacheData_[filter] = data; + return this.cacheData_[filter]; + } + return false; + }; + + /** + * Flush cache + * @public + */ + $.Autocompleter.prototype.cacheFlush = function() { + this.cacheData_ = {}; + this.cacheLength_ = 0; + }; + + /** + * Call hook + * Note that all called hooks are passed the autocompleter object + * @param {string} hook + * @param data + * @returns Result of called hook, false if hook is undefined + */ + $.Autocompleter.prototype.callHook = function(hook, data) { + var f = this.options[hook]; + if (f && $.isFunction(f)) { + return f(data, this); + } + return false; + }; + + /** + * Set timeout to activate autocompleter + */ + $.Autocompleter.prototype.activate = function() { + if (!this.options.enabled) return; + var self = this; + if (this.keyTimeout_) { + clearTimeout(this.keyTimeout_); + } + this.keyTimeout_ = setTimeout(function() { + self.activateNow(); + }, this.options.delay); + }; + + /** + * Activate autocompleter immediately + */ + $.Autocompleter.prototype.activateNow = function() { + var value = this.beforeUseConverter(this.dom.$elem.val()); + if (value !== this.lastProcessedValue_ && value !== this.lastSelectedValue_) { + this.fetchData(value); + } + }; + + /** + * Get autocomplete data for a given value + * @param {string} value Value to base autocompletion on + * @private + */ + $.Autocompleter.prototype.fetchData = function(value) { + var self = this; + var processResults = function(results, filter) { + if (self.options.processData) { + results = self.options.processData(results); + } + self.showResults(self.filterResults(results, filter), filter); + }; + this.lastProcessedValue_ = value; + if (value.length < this.options.minChars) { + processResults([], value); + } else if (this.options.data) { + processResults(this.options.data, value); + } else { + this.fetchRemoteData(value, function(remoteData) { + processResults(remoteData, value); + }); + } + }; + + /** + * Get remote autocomplete data for a given value + * @param {string} filter The filter to base remote data on + * @param {function} callback The function to call after data retrieval + * @private + */ + $.Autocompleter.prototype.fetchRemoteData = function(filter, callback) { + var data = this.cacheRead(filter); + if (data) { + callback(data); + } else { + var self = this; + var dataType = self.options.remoteDataType === 'json' ? 'json' : 'text'; + var ajaxCallback = function(data) { + var parsed = false; + if (data !== false) { + parsed = self.parseRemoteData(data); + self.cacheWrite(filter, parsed); + } + self.dom.$elem.removeClass(self.options.loadingClass); + callback(parsed); + }; + this.dom.$elem.addClass(this.options.loadingClass); + $.ajax({ + url: this.makeUrl(filter), + success: ajaxCallback, + error: function(jqXHR, textStatus, errorThrown) { + if($.isFunction(self.options.onError)) { + self.options.onError(jqXHR, textStatus, errorThrown); + } else { + ajaxCallback(false); + } + }, + dataType: dataType + }); + } + }; + + /** + * Create or update an extra parameter for the remote request + * @param {string} name Parameter name + * @param {string} value Parameter value + * @public + */ + $.Autocompleter.prototype.setExtraParam = function(name, value) { + var index = $.trim(String(name)); + if (index) { + if (!this.options.extraParams) { + this.options.extraParams = {}; + } + if (this.options.extraParams[index] !== value) { + this.options.extraParams[index] = value; + this.cacheFlush(); + } + } + + return this; + }; + + /** + * Build the url for a remote request + * If options.queryParamName === false, append query to url instead of using a GET parameter + * @param {string} param The value parameter to pass to the backend + * @returns {string} The finished url with parameters + */ + $.Autocompleter.prototype.makeUrl = function(param) { + var self = this; + var url = this.options.url; + var params = $.extend({}, this.options.extraParams); + + if (this.options.queryParamName === false) { + url += encodeURIComponent(param); + } else { + params[this.options.queryParamName] = param; + } + + return makeUrl(url, params); + }; + + /** + * Parse data received from server + * @param remoteData Data received from remote server + * @returns {array} Parsed data + */ + $.Autocompleter.prototype.parseRemoteData = function(remoteData) { + var remoteDataType; + var data = remoteData; + if (this.options.remoteDataType === 'json') { + remoteDataType = typeof(remoteData); + switch (remoteDataType) { + case 'object': + data = remoteData; + break; + case 'string': + data = $.parseJSON(remoteData); + break; + default: + throw new Error("Unexpected remote data type: " + remoteDataType); + } + return data; + } + return plainTextParser(data, this.options.lineSeparator, this.options.cellSeparator); + }; + + /** + * Default filter for results + * @param {Object} result + * @param {String} filter + * @returns {boolean} Include this result + * @private + */ + $.Autocompleter.prototype.defaultFilter = function(result, filter) { + if (!result.value) { + return false; + } + if (this.options.filterResults) { + var pattern = this.matchStringConverter(filter); + var testValue = this.matchStringConverter(result.value); + if (!this.options.matchCase) { + pattern = pattern.toLowerCase(); + testValue = testValue.toLowerCase(); + } + var patternIndex = testValue.indexOf(pattern); + if (this.options.matchInside) { + return patternIndex > -1; + } else { + return patternIndex === 0; + } + } + return true; + }; + + /** + * Filter result + * @param {Object} result + * @param {String} filter + * @returns {boolean} Include this result + * @private + */ + $.Autocompleter.prototype.filterResult = function(result, filter) { + // No filter + if (this.options.filter === false) { + return true; + } + // Custom filter + if ($.isFunction(this.options.filter)) { + return this.options.filter(result, filter); + } + // Default filter + return this.defaultFilter(result, filter); + }; + + /** + * Filter results + * @param results + * @param filter + */ + $.Autocompleter.prototype.filterResults = function(results, filter) { + var filtered = []; + var i, result; + + for (i = 0; i < results.length; i++) { + result = sanitizeResult(results[i]); + if (this.filterResult(result, filter)) { + filtered.push(result); + } + } + if (this.options.sortResults) { + filtered = this.sortResults(filtered, filter); + } + if (this.options.maxItemsToShow > 0 && this.options.maxItemsToShow < filtered.length) { + filtered.length = this.options.maxItemsToShow; + } + return filtered; + }; + + /** + * Sort results + * @param results + * @param filter + */ + $.Autocompleter.prototype.sortResults = function(results, filter) { + var self = this; + var sortFunction = this.options.sortFunction; + if (!$.isFunction(sortFunction)) { + sortFunction = function(a, b, f) { + return sortValueAlpha(a, b, self.options.matchCase); + }; + } + results.sort(function(a, b) { + return sortFunction(a, b, filter, self.options); + }); + return results; + }; + + /** + * Convert string before matching + * @param s + * @param a + * @param b + */ + $.Autocompleter.prototype.matchStringConverter = function(s, a, b) { + var converter = this.options.matchStringConverter; + if ($.isFunction(converter)) { + s = converter(s, a, b); + } + return s; + }; + + /** + * Convert string before use + * @param {String} s + */ + $.Autocompleter.prototype.beforeUseConverter = function(s) { + s = this.getValue(s); + var converter = this.options.beforeUseConverter; + if ($.isFunction(converter)) { + s = converter(s); + } + return s; + }; + + /** + * Enable finish on blur event + */ + $.Autocompleter.prototype.enableFinishOnBlur = function() { + this.finishOnBlur_ = true; + }; + + /** + * Disable finish on blur event + */ + $.Autocompleter.prototype.disableFinishOnBlur = function() { + this.finishOnBlur_ = false; + }; + + /** + * Create a results item (LI element) from a result + * @param result + */ + $.Autocompleter.prototype.createItemFromResult = function(result) { + var self = this; + var $li = $('
      • '); + $li.html(this.showResult(result.value, result.data)); + $li.data({value: result.value, data: result.data}) + .click(function() { + self.selectItem($li); + }) + .mousedown(self.disableFinishOnBlur) + .mouseup(self.enableFinishOnBlur) + ; + return $li; + }; + + /** + * Get all items from the results list + * @param result + */ + $.Autocompleter.prototype.getItems = function() { + return $('>ul>li', this.dom.$results); + }; + + /** + * Show all results + * @param results + * @param filter + */ + $.Autocompleter.prototype.showResults = function(results, filter) { + var numResults = results.length; + var self = this; + var $ul = $('
          '); + var i, result, $li, autoWidth, first = false, $first = false; + + if (numResults) { + for (i = 0; i < numResults; i++) { + result = results[i]; + $li = this.createItemFromResult(result); + $ul.append($li); + if (first === false) { + first = String(result.value); + $first = $li; + $li.addClass(this.options.firstItemClass); + } + if (i === numResults - 1) { + $li.addClass(this.options.lastItemClass); + } + } + + this.dom.$results.html($ul).show(); + + // Always recalculate position since window size or + // input element location may have changed. + this.position(); + if (this.options.autoWidth) { + autoWidth = this.dom.$elem.outerWidth() - this.dom.$results.outerWidth() + this.dom.$results.width(); + this.dom.$results.css(this.options.autoWidth, autoWidth); + } + this.getItems().hover( + function() { self.focusItem(this); }, + function() { /* void */ } + ); + if (this.autoFill(first, filter) || this.options.selectFirst || (this.options.selectOnly && numResults === 1)) { + this.focusItem($first); + } + this.active_ = true; + } else { + this.hideResults(); + this.active_ = false; + } + }; + + $.Autocompleter.prototype.showResult = function(value, data) { + if ($.isFunction(this.options.showResult)) { + return this.options.showResult(value, data); + } else { + return $('

          ').text(value).html(); + } + }; + + $.Autocompleter.prototype.autoFill = function(value, filter) { + var lcValue, lcFilter, valueLength, filterLength; + if (this.options.autoFill && this.lastKeyPressed_ !== 8) { + lcValue = String(value).toLowerCase(); + lcFilter = String(filter).toLowerCase(); + valueLength = value.length; + filterLength = filter.length; + if (lcValue.substr(0, filterLength) === lcFilter) { + var d = this.getDelimiterOffsets(); + var pad = d.start ? ' ' : ''; // if there is a preceding delimiter + this.setValue( pad + value ); + var start = filterLength + d.start + pad.length; + var end = valueLength + d.start + pad.length; + this.selectRange(start, end); + return true; + } + } + return false; + }; + + $.Autocompleter.prototype.focusNext = function() { + this.focusMove(+1); + }; + + $.Autocompleter.prototype.focusPrev = function() { + this.focusMove(-1); + }; + + $.Autocompleter.prototype.focusMove = function(modifier) { + var $items = this.getItems(); + modifier = sanitizeInteger(modifier, 0); + if (modifier) { + for (var i = 0; i < $items.length; i++) { + if ($($items[i]).hasClass(this.selectClass_)) { + this.focusItem(i + modifier); + return; + } + } + } + this.focusItem(0); + }; + + $.Autocompleter.prototype.focusItem = function(item) { + var $item, $items = this.getItems(); + if ($items.length) { + $items.removeClass(this.selectClass_).removeClass(this.options.selectClass); + if (typeof item === 'number') { + if (item < 0) { + item = 0; + } else if (item >= $items.length) { + item = $items.length - 1; + } + $item = $($items[item]); + } else { + $item = $(item); + } + if ($item) { + $item.addClass(this.selectClass_).addClass(this.options.selectClass); + } + } + }; + + $.Autocompleter.prototype.selectCurrent = function() { + var $item = $('li.' + this.selectClass_, this.dom.$results); + if ($item.length === 1) { + this.selectItem($item); + } else { + this.deactivate(false); + } + }; + + $.Autocompleter.prototype.selectItem = function($li) { + var value = $li.data('value'); + var data = $li.data('data'); + var displayValue = this.displayValue(value, data); + var processedDisplayValue = this.beforeUseConverter(displayValue); + this.lastProcessedValue_ = processedDisplayValue; + this.lastSelectedValue_ = processedDisplayValue; + var d = this.getDelimiterOffsets(); + var delimiter = this.options.delimiterChar; + var elem = this.dom.$elem; + var extraCaretPos = 0; + if ( this.options.useDelimiter ) { + // if there is a preceding delimiter, add a space after the delimiter + if ( elem.val().substring(d.start-1, d.start) == delimiter && delimiter != ' ' ) { + displayValue = ' ' + displayValue; + } + // if there is not already a delimiter trailing this value, add it + if ( elem.val().substring(d.end, d.end+1) != delimiter && this.lastKeyPressed_ != this.options.delimiterKeyCode ) { + displayValue = displayValue + delimiter; + } else { + // move the cursor after the existing trailing delimiter + extraCaretPos = 1; + } + } + this.setValue(displayValue); + this.setCaret(d.start + displayValue.length + extraCaretPos); + this.callHook('onItemSelect', { value: value, data: data }); + this.deactivate(true); + elem.focus(); + }; + + $.Autocompleter.prototype.displayValue = function(value, data) { + if ($.isFunction(this.options.displayValue)) { + return this.options.displayValue(value, data); + } + return value; + }; + + $.Autocompleter.prototype.hideResults = function() { + this.dom.$results.hide(); + }; + + $.Autocompleter.prototype.deactivate = function(finish) { + if (this.finishTimeout_) { + clearTimeout(this.finishTimeout_); + } + if (this.keyTimeout_) { + clearTimeout(this.keyTimeout_); + } + if (finish) { + if (this.lastProcessedValue_ !== this.lastSelectedValue_) { + if (this.options.mustMatch) { + this.setValue(''); + } + this.callHook('onNoMatch'); + } + if (this.active_) { + this.callHook('onFinish'); + } + this.lastKeyPressed_ = null; + this.lastProcessedValue_ = null; + this.lastSelectedValue_ = null; + this.active_ = false; + } + this.hideResults(); + }; + + $.Autocompleter.prototype.selectRange = function(start, end) { + var input = this.dom.$elem.get(0); + if (input.setSelectionRange) { + input.focus(); + input.setSelectionRange(start, end); + } else if (input.createTextRange) { + var range = input.createTextRange(); + range.collapse(true); + range.moveEnd('character', end); + range.moveStart('character', start); + range.select(); + } + }; + + /** + * Move caret to position + * @param {Number} pos + */ + $.Autocompleter.prototype.setCaret = function(pos) { + this.selectRange(pos, pos); + }; + + /** + * Get caret position + */ + $.Autocompleter.prototype.getCaret = function() { + var $elem = this.dom.$elem; + var elem = $elem[0]; + var val, selection, range, start, end, stored_range; + if (elem.createTextRange) { // IE + selection = document.selection; + if (elem.tagName.toLowerCase() != 'textarea') { + val = $elem.val(); + range = selection.createRange().duplicate(); + range.moveEnd('character', val.length); + if (range.text === '') { + start = val.length; + } else { + start = val.lastIndexOf(range.text); + } + range = selection.createRange().duplicate(); + range.moveStart('character', -val.length); + end = range.text.length; + } else { + range = selection.createRange(); + stored_range = range.duplicate(); + stored_range.moveToElementText(elem); + stored_range.setEndPoint('EndToEnd', range); + start = stored_range.text.length - range.text.length; + end = start + range.text.length; + } + } else { + start = $elem[0].selectionStart; + end = $elem[0].selectionEnd; + } + return { + start: start, + end: end + }; + }; + + /** + * Set the value that is currently being autocompleted + * @param {String} value + */ + $.Autocompleter.prototype.setValue = function(value) { + if ( this.options.useDelimiter ) { + // set the substring between the current delimiters + var val = this.dom.$elem.val(); + var d = this.getDelimiterOffsets(); + var preVal = val.substring(0, d.start); + var postVal = val.substring(d.end); + value = preVal + value + postVal; + } + this.dom.$elem.val(value); + }; + + /** + * Get the value currently being autocompleted + * @param {String} value + */ + $.Autocompleter.prototype.getValue = function(value) { + if ( this.options.useDelimiter ) { + var d = this.getDelimiterOffsets(); + return value.substring(d.start, d.end).trim(); + } else { + return value; + } + }; + + /** + * Get the offsets of the value currently being autocompleted + */ + $.Autocompleter.prototype.getDelimiterOffsets = function() { + var val = this.dom.$elem.val(); + if ( this.options.useDelimiter ) { + var preCaretVal = val.substring(0, this.getCaret().start); + var start = preCaretVal.lastIndexOf(this.options.delimiterChar) + 1; + var postCaretVal = val.substring(this.getCaret().start); + var end = postCaretVal.indexOf(this.options.delimiterChar); + if ( end == -1 ) end = val.length; + end += this.getCaret().start; + } else { + start = 0; + end = val.length; + } + return { + start: start, + end: end + }; + }; + +})((typeof window.jQuery == 'undefined' && typeof window.django != 'undefined')? django.jQuery : jQuery); diff --git a/static/django_extensions/js/jquery.bgiframe.js b/static/django_extensions/js/jquery.bgiframe.js new file mode 100644 index 0000000000..5c3735d685 --- /dev/null +++ b/static/django_extensions/js/jquery.bgiframe.js @@ -0,0 +1,39 @@ +/*! Copyright (c) 2010 Brandon Aaron (http://brandonaaron.net) + * Licensed under the MIT License (LICENSE.txt). + * + * Version 2.1.2 + */ + +(function($){ + +$.fn.bgiframe = ($.browser.msie && /msie 6\.0/i.test(navigator.userAgent) ? function(s) { + s = $.extend({ + top : 'auto', // auto == .currentStyle.borderTopWidth + left : 'auto', // auto == .currentStyle.borderLeftWidth + width : 'auto', // auto == offsetWidth + height : 'auto', // auto == offsetHeight + opacity : true, + src : 'javascript:false;' + }, s); + var html = '