From 85ddb438ffc7e856da52b3fe106096ac4844321d Mon Sep 17 00:00:00 2001 From: Nathan Sprenkle Date: Wed, 1 Sep 2021 10:13:14 -0400 Subject: [PATCH 1/4] A11y updates for ORA UI Studio Messaging (#1687) * refactor: a11y updates to edit validation banner * feat: add tab validation screen reader text Tabs in studio edit now show "has errors" screen reader text when a tab fails validation. * feat: add aria-invalid to items failing validation * feat: add role="tab" to editor tabs * fix: update validation colors for better contrast --- docs/developers_guide.rst | 17 +- .../locale/en/LC_MESSAGES/django.po | 105 +++-- .../locale/en/LC_MESSAGES/djangojs.po | 106 ++--- .../locale/eo/LC_MESSAGES/django.mo | Bin 145157 -> 143726 bytes .../locale/eo/LC_MESSAGES/django.po | 71 ++-- .../locale/eo/LC_MESSAGES/djangojs.mo | Bin 20858 -> 20902 bytes .../locale/eo/LC_MESSAGES/djangojs.po | 90 ++--- .../edit/oa_edit_header_and_validation.html | 51 ++- .../icons/warning_filled.html | 8 + .../xblock/static/dist/manifest.json | 24 +- .../dist/openassessment-editor-textarea.js | 2 +- .../dist/openassessment-editor-tinymce.js | 2 +- ...openassessment-lms.7105fc08d9aa23f4c601.js | 362 ++++++++++++++++++ .../xblock/static/dist/openassessment-lms.js | 2 +- ...penassessment-ltr.78fb901fc78e94f882d1.css | 9 + ...penassessment-ltr.78fb901fc78e94f882d1.js} | 2 +- ...penassessment-ltr.9cc5743ff8c944e87e83.css | 9 - ...penassessment-ltr.b52443a966cad4bd40e9.css | 9 + ...openassessment-ltr.b52443a966cad4bd40e9.js | 2 + ...penassessment-ltr.bd97b2bb4ae29c07da6d.css | 9 + ...openassessment-ltr.bd97b2bb4ae29c07da6d.js | 2 + .../xblock/static/dist/openassessment-ltr.css | 2 +- ...penassessment-ltr.e3943b50e5ff058619c3.css | 9 + ...openassessment-ltr.e3943b50e5ff058619c3.js | 2 + ...penassessment-ltr.f307b33aef9ebb765a2a.css | 9 + ...openassessment-ltr.f307b33aef9ebb765a2a.js | 2 + .../xblock/static/dist/openassessment-ltr.js | 2 +- ...penassessment-rtl.4ac4565454289a11c356.css | 9 + ...penassessment-rtl.4ac4565454289a11c356.js} | 2 +- ...penassessment-rtl.6019829cbb2ef63af3d9.css | 9 + ...openassessment-rtl.6019829cbb2ef63af3d9.js | 2 + ...penassessment-rtl.85fa2c2a747fed32b31c.css | 9 + ...openassessment-rtl.85fa2c2a747fed32b31c.js | 2 + ...penassessment-rtl.a5f65dc873d81b94c80b.css | 9 + ...openassessment-rtl.a5f65dc873d81b94c80b.js | 2 + .../xblock/static/dist/openassessment-rtl.css | 2 +- ...penassessment-rtl.eff810301acf730bdea1.css | 9 - ...penassessment-rtl.f11855bf422e680e1779.css | 9 + ...openassessment-rtl.f11855bf422e680e1779.js | 2 + .../xblock/static/dist/openassessment-rtl.js | 2 +- ...assessment-studio.24acd0b958f1819c5647.js} | 10 +- ...nassessment-studio.f14c76a9ea883a7a1aa3.js | 33 ++ .../static/dist/openassessment-studio.js | 12 +- .../xblock/static/js/spec/studio/oa_edit.js | 4 +- .../static/js/src/studio/oa_container_item.js | 8 +- .../xblock/static/js/src/studio/oa_edit.js | 24 +- .../static/js/src/studio/oa_edit_fields.js | 8 + .../static/js/src/studio/oa_edit_listeners.js | 2 + .../static/js/src/studio/oa_edit_rubric.js | 3 + .../static/sass/oa/utilities/_developer.scss | 44 ++- .../static/sass/xb/utilities/_variables.scss | 11 +- package-lock.json | 6 +- package.json | 2 +- setup.py | 2 +- 54 files changed, 833 insertions(+), 312 deletions(-) create mode 100644 openassessment/templates/openassessmentblock/icons/warning_filled.html create mode 100644 openassessment/xblock/static/dist/openassessment-lms.7105fc08d9aa23f4c601.js create mode 100644 openassessment/xblock/static/dist/openassessment-ltr.78fb901fc78e94f882d1.css rename openassessment/xblock/static/dist/{openassessment-ltr.9cc5743ff8c944e87e83.js => openassessment-ltr.78fb901fc78e94f882d1.js} (93%) delete mode 100644 openassessment/xblock/static/dist/openassessment-ltr.9cc5743ff8c944e87e83.css create mode 100644 openassessment/xblock/static/dist/openassessment-ltr.b52443a966cad4bd40e9.css create mode 100644 openassessment/xblock/static/dist/openassessment-ltr.b52443a966cad4bd40e9.js create mode 100644 openassessment/xblock/static/dist/openassessment-ltr.bd97b2bb4ae29c07da6d.css create mode 100644 openassessment/xblock/static/dist/openassessment-ltr.bd97b2bb4ae29c07da6d.js create mode 100644 openassessment/xblock/static/dist/openassessment-ltr.e3943b50e5ff058619c3.css create mode 100644 openassessment/xblock/static/dist/openassessment-ltr.e3943b50e5ff058619c3.js create mode 100644 openassessment/xblock/static/dist/openassessment-ltr.f307b33aef9ebb765a2a.css create mode 100644 openassessment/xblock/static/dist/openassessment-ltr.f307b33aef9ebb765a2a.js create mode 100644 openassessment/xblock/static/dist/openassessment-rtl.4ac4565454289a11c356.css rename openassessment/xblock/static/dist/{openassessment-rtl.eff810301acf730bdea1.js => openassessment-rtl.4ac4565454289a11c356.js} (93%) create mode 100644 openassessment/xblock/static/dist/openassessment-rtl.6019829cbb2ef63af3d9.css create mode 100644 openassessment/xblock/static/dist/openassessment-rtl.6019829cbb2ef63af3d9.js create mode 100644 openassessment/xblock/static/dist/openassessment-rtl.85fa2c2a747fed32b31c.css create mode 100644 openassessment/xblock/static/dist/openassessment-rtl.85fa2c2a747fed32b31c.js create mode 100644 openassessment/xblock/static/dist/openassessment-rtl.a5f65dc873d81b94c80b.css create mode 100644 openassessment/xblock/static/dist/openassessment-rtl.a5f65dc873d81b94c80b.js delete mode 100644 openassessment/xblock/static/dist/openassessment-rtl.eff810301acf730bdea1.css create mode 100644 openassessment/xblock/static/dist/openassessment-rtl.f11855bf422e680e1779.css create mode 100644 openassessment/xblock/static/dist/openassessment-rtl.f11855bf422e680e1779.js rename openassessment/xblock/static/dist/{openassessment-studio.8edf526d67c02b8b1310.js => openassessment-studio.24acd0b958f1819c5647.js} (61%) create mode 100644 openassessment/xblock/static/dist/openassessment-studio.f14c76a9ea883a7a1aa3.js diff --git a/docs/developers_guide.rst b/docs/developers_guide.rst index 6b79609e47..7316e9c932 100644 --- a/docs/developers_guide.rst +++ b/docs/developers_guide.rst @@ -78,16 +78,16 @@ If any changes are made to the .html files, it is necessary to re-do the transla The above command will generate translations files which will have to be checked into git. -Building JS +Building Static Files ------------ -This is required if there were any JS changes: +This is required if there were any JS/SCSS changes: - from local directory (not in lms shell) - ``npm run build`` -Hot reload JS +Hot Reload Frontend Changes ------------ -This is required if there were any JS changes: +This is required if there were any JS/SCSS changes: - from local directory (not in lms shell) - ``npm run start`` to start dev server @@ -96,15 +96,6 @@ This is required if there were any JS changes: - ``make lms-restart studio-restart`` - **NOTE**: cms does not support hot reload at the moment -Minifying css ------------------ -This is required if there were any scss changes: - -- be inside the shell -- ``cd /edx/src/edx-ora2`` -- ``source edx-ora2/bin/activate`` -- ``make sass`` - Running Unit Tests ------------------ ORA2 supports pytest. In order to run unit tests, do the following: diff --git a/openassessment/locale/en/LC_MESSAGES/django.po b/openassessment/locale/en/LC_MESSAGES/django.po index e53e0bece3..d7fed11a52 100644 --- a/openassessment/locale/en/LC_MESSAGES/django.po +++ b/openassessment/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-ora2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-05 10:54-0400\n" +"POT-Creation-Date: 2021-08-26 14:53-0400\n" "PO-Revision-Date: 2014-06-04 15:41-0400\n" "Last-Translator: Muhammad Ayub khan \n" "Language-Team: openedx-translation \n" @@ -138,7 +138,7 @@ msgstr "" msgid "Response Files" msgstr "" -#: openassessment/data.py:1349 +#: openassessment/data.py:1360 msgid "No description provided." msgstr "" @@ -370,42 +370,27 @@ msgstr "" msgid "Open Response Assessment" msgstr "" -#: openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html:5 +#: openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html:8 #: openassessment/templates/openassessmentblock/edit/oa_edit_prompt.html:7 msgid "Prompt" msgstr "" -#: openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html:6 +#: openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html:15 msgid "Rubric" msgstr "" -#: openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html:7 +#: openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html:22 msgid "Schedule" msgstr "" -#: openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html:8 +#: openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html:29 msgid "Assessment steps" msgstr "" -#: openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html:9 +#: openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html:36 msgid "Settings" msgstr "" -#: openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html:16 -msgid "Rubric Change Impacts Settings Section" -msgstr "" - -#: openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html:17 -msgid "" -"A change that you made to this assessment's rubric has an impact on some " -"examples laid out in the settings tab. For more information, go to the " -"Settings section and fix the areas highlighted in red." -msgstr "" - -#: openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html:21 -msgid "close alert" -msgstr "" - #: openassessment/templates/openassessmentblock/edit/oa_edit_option.html:5 msgid "Option" msgstr "" @@ -1406,12 +1391,12 @@ msgid "Your Response " msgstr "" #: openassessment/templates/openassessmentblock/response/oa_response.html:173 -#: openassessment/templates/openassessmentblock/response/oa_response.html:242 +#: openassessment/templates/openassessmentblock/response/oa_response.html:244 msgid "(Required)" msgstr "" #: openassessment/templates/openassessmentblock/response/oa_response.html:175 -#: openassessment/templates/openassessmentblock/response/oa_response.html:244 +#: openassessment/templates/openassessmentblock/response/oa_response.html:246 msgid "(Optional)" msgstr "" @@ -1434,118 +1419,118 @@ msgstr "" msgid "Enter your response to the prompt above." msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:206 +#: openassessment/templates/openassessmentblock/response/oa_response.html:208 #, python-format msgid "" "\n" -" You are currently on Team %(team_name)s. " -"Since you were on Team %(previous_team_name)s\n" -" when they submitted a response to this " +" You are currently on Team " +"%(team_name)s. Since you were on Team %(previous_team_name)s\n" +" when they submitted a response to this " "assignment, you are seeing Team %(previous_team_name)s’s\n" -" response and will receive the same grade " -"for this assignment as your former teammates.\n" -" You will not be part of Team " +" response and will receive the same " +"grade for this assignment as your former teammates.\n" +" You will not be part of Team " "%(team_name)s’s submission for this assignment and will not\n" -" receive a grade for their submission.\n" -" " +" receive a grade for their submission.\n" +" " msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:219 +#: openassessment/templates/openassessmentblock/response/oa_response.html:221 msgid "We could not save your progress" msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:226 +#: openassessment/templates/openassessmentblock/response/oa_response.html:228 msgid "Save your progress" msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:230 +#: openassessment/templates/openassessmentblock/response/oa_response.html:232 msgid "Your Submission Status" msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:240 +#: openassessment/templates/openassessmentblock/response/oa_response.html:242 msgid "File Uploads " msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:248 +#: openassessment/templates/openassessmentblock/response/oa_response.html:250 msgid "" "\n" -" Upload files and review files uploaded by " +" Upload files and review files uploaded by " "you and your teammates below. Be sure to add\n" -" descriptions to your files to help your " +" descriptions to your files to help your " "teammates identify them.\n" -" " +" " msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:256 +#: openassessment/templates/openassessmentblock/response/oa_response.html:258 msgid "We could not upload files" msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:262 +#: openassessment/templates/openassessmentblock/response/oa_response.html:264 msgid "We could not delete files" msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:269 +#: openassessment/templates/openassessmentblock/response/oa_response.html:271 msgid "Select one or more files to upload for this submission." msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:271 +#: openassessment/templates/openassessmentblock/response/oa_response.html:273 msgid "Select a file to upload for this submission." msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:276 +#: openassessment/templates/openassessmentblock/response/oa_response.html:278 msgid "Supported file types: " msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:280 +#: openassessment/templates/openassessmentblock/response/oa_response.html:282 msgid "Upload files" msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:282 +#: openassessment/templates/openassessmentblock/response/oa_response.html:284 msgid "Upload file" msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:298 +#: openassessment/templates/openassessmentblock/response/oa_response.html:300 msgid "You may continue to work on your response until you submit it." msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:304 +#: openassessment/templates/openassessmentblock/response/oa_response.html:306 msgid "This is a team submission." msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:306 +#: openassessment/templates/openassessmentblock/response/oa_response.html:308 msgid "" "One team member should submit a response with the team’s shared files and a " "text response on behalf of the entire team." msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:308 +#: openassessment/templates/openassessmentblock/response/oa_response.html:310 msgid "" "One team member should submit a response with the team’s shared files on " "behalf of the entire team." msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:310 +#: openassessment/templates/openassessmentblock/response/oa_response.html:312 msgid "" "One team member should submit a text response on behalf of the entire team." msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:312 +#: openassessment/templates/openassessmentblock/response/oa_response.html:314 msgid "One team member should submit on behalf of the entire team." msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:314 +#: openassessment/templates/openassessmentblock/response/oa_response.html:316 msgid "" "\n" -" Learn more about team assignments here: (link)\n" -" " +" Learn more about team assignments here: (link)\n" +" " msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:322 +#: openassessment/templates/openassessmentblock/response/oa_response.html:324 msgid "We could not submit your response" msgstr "" -#: openassessment/templates/openassessmentblock/response/oa_response.html:332 +#: openassessment/templates/openassessmentblock/response/oa_response.html:334 msgid "Submit your response and move to the next step" msgstr "" diff --git a/openassessment/locale/en/LC_MESSAGES/djangojs.po b/openassessment/locale/en/LC_MESSAGES/djangojs.po index 2ded165593..38d8a21c20 100644 --- a/openassessment/locale/en/LC_MESSAGES/djangojs.po +++ b/openassessment/locale/en/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-ora2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-05 10:54-0400\n" +"POT-Creation-Date: 2021-08-26 14:53-0400\n" "PO-Revision-Date: 2014-06-04 15:41-0400\n" "Last-Translator: Muhammad Ayub khan \n" "Language-Team: openedx-translation \n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:77 #: openassessment/xblock/static/js/src/oa_server.js:113 #: openassessment/xblock/static/js/src/oa_server.js:137 @@ -27,37 +27,37 @@ msgid "This section could not be loaded." msgstr "" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:158 msgid "The staff assessment form could not be loaded." msgstr "" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:180 msgid "The display of ungraded and checked out responses could not be loaded." msgstr "" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:214 msgid "This response could not be submitted." msgstr "" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:237 msgid "This response could not be saved." msgstr "" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:262 msgid "This feedback could not be submitted." msgstr "" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:287 #: openassessment/xblock/static/js/src/oa_server.js:378 #: openassessment/xblock/static/js/src/oa_server.js:401 @@ -65,74 +65,74 @@ msgid "This assessment could not be submitted." msgstr "" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:424 msgid "One or more rescheduling tasks failed." msgstr "" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:483 msgid "This problem could not be saved." msgstr "" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:504 msgid "The server could not be contacted." msgstr "" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:530 msgid "Could not retrieve upload url." msgstr "" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:549 #: openassessment/xblock/static/js/src/oa_server.js:568 msgid "Server error." msgstr "" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:588 msgid "Could not retrieve download url." msgstr "" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:614 msgid "The submission could not be removed from the grading pool." msgstr "" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:670 msgid "Multiple teams returned for course" msgstr "" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:677 msgid "Could not load teams information." msgstr "" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:699 msgid "User lookup failed" msgstr "" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:704 msgid "Error when looking up username" msgstr "" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js:8 -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/oa_server.js:728 msgid "Failed to clone rubric" msgstr "" @@ -399,57 +399,57 @@ msgstr "" msgid "Unable to load" msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/studio/oa_tiny_mce.js:66 msgid "Paragraph" msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/studio/oa_tiny_mce.js:67 msgid "Preformatted" msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/studio/oa_tiny_mce.js:68 msgid "Heading 3" msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/studio/oa_tiny_mce.js:69 msgid "Heading 4" msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/studio/oa_tiny_mce.js:70 msgid "Heading 5" msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/studio/oa_tiny_mce.js:71 msgid "Heading 6" msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/studio/oa_container_item.js:43 msgid "Unnamed Option" msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/studio/oa_container_item.js:53 msgid "Not Selected" msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/studio/oa_edit_rubric.js:124 msgid "Problem cloning rubric" msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js:100 msgid "Criterion Added" msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js:102 msgid "" "You have added a criterion. You will need to select an option for the " @@ -457,76 +457,80 @@ msgid "" "Steps tab." msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 -#: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js:148 -#: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js:184 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 +#: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js:150 +#: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js:186 msgid "Option Deleted" msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 -#: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js:150 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 +#: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js:152 msgid "" "You have deleted an option. That option has been removed from its criterion " "in the sample responses in the Learner Training step. You might have to " "select a new option for the criterion." msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 -#: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js:186 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 +#: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js:188 msgid "" "You have deleted all the options for this criterion. The criterion has been " "removed from the sample responses in the Learner Training step." msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 -#: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js:212 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 +#: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js:214 msgid "Criterion Deleted" msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 -#: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js:214 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 +#: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js:216 msgid "" "You have deleted a criterion. The criterion has been removed from the " "example responses in the Learner Training step." msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 -#: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js:392 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 +#: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js:394 msgid "Warning" msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 -#: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js:393 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 +#: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js:395 msgid "" "Changes to steps that are not selected as part of the assignment will not be " "saved." msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/studio/oa_edit_settings.js:91 msgid "File types can not be empty." msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/studio/oa_edit_settings.js:101 msgid "The following file types are not allowed: " msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 #: openassessment/xblock/static/js/src/studio/oa_edit.js:182 msgid "Save Unsuccessful" msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 msgid "We've detected errors on the following tabs: " msgstr "" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js:32 +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 msgid "" "This ORA has already been released. Changes will only affect learners making " "new submissions. Existing submissions will not be modified by this change." msgstr "" +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js:32 +msgid "has " +msgstr "" + #: openassessment/xblock/static/js/src/studio/oa_edit.js:183 msgid "ve detected errors on the following tabs: ${tabNames.join(" msgstr "" diff --git a/openassessment/locale/eo/LC_MESSAGES/django.mo b/openassessment/locale/eo/LC_MESSAGES/django.mo index 980ab3a6257d820c9c9be4446ffca34159fd7775..4124b5a3314e55519c3faa9d2d7796c81f5b8392 100644 GIT binary patch delta 11220 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 HN6P;IHE7Y$ delta 11788 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 diff --git a/openassessment/locale/eo/LC_MESSAGES/django.po b/openassessment/locale/eo/LC_MESSAGES/django.po index dc8c3ef1a8..e838391c04 100644 --- a/openassessment/locale/eo/LC_MESSAGES/django.po +++ b/openassessment/locale/eo/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-ora2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-05 10:54-0400\n" +"POT-Creation-Date: 2021-08-26 14:53-0400\n" "PO-Revision-Date: 2014-06-04 15:41-0400\n" "Last-Translator: Muhammad Ayub khan \n" "Language-Team: openedx-translation \n" @@ -460,31 +460,6 @@ msgstr "Àsséssmént stéps Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αм#" msgid "Settings" msgstr "Séttïngs Ⱡ'σяєм ιρѕυм ∂#" -#: openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html -msgid "Rubric Change Impacts Settings Section" -msgstr "" -"Rüßrïç Çhängé Ìmpäçts Séttïngs Séçtïön Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " -"¢σηѕє¢тєтυя#" - -#: openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html -msgid "" -"A change that you made to this assessment's rubric has an impact on some " -"examples laid out in the settings tab. For more information, go to the " -"Settings section and fix the areas highlighted in red." -msgstr "" -"À çhängé thät ýöü mädé tö thïs ässéssmént's rüßrïç häs än ïmpäçt ön sömé " -"éxämplés läïd öüt ïn thé séttïngs täß. För möré ïnförmätïön, gö tö thé " -"Séttïngs séçtïön änd fïx thé äréäs hïghlïghtéd ïn réd. Ⱡ'σяєм ιρѕυм ∂σłσя " -"ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя ιη¢ι∂ι∂υηт υт " -"łαвσяє єт ∂σłσяє мαgηα αłιqυα. υт єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтяυ∂ " -"єχєя¢ιтαтιση υłłαм¢σ łαвσяιѕ ηιѕι υт αłιqυιρ єχ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ " -"αυтє ιяυяє ∂σłσя ιη яєρяєнєη∂єяιт ιη νσłυρтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσяє єυ " -"ƒυgιαт ηυłłα ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт ¢υ#" - -#: openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html -msgid "close alert" -msgstr "çlösé älért Ⱡ'σяєм ιρѕυм ∂σłσя #" - #: openassessment/templates/openassessmentblock/edit/oa_edit_option.html msgid "Option" msgstr "Öptïön Ⱡ'σяєм ιρѕυ#" @@ -1817,20 +1792,20 @@ msgstr "" #, python-format msgid "" "\n" -" You are currently on Team %(team_name)s. Since you were on Team %(previous_team_name)s\n" -" when they submitted a response to this assignment, you are seeing Team %(previous_team_name)s’s\n" -" response and will receive the same grade for this assignment as your former teammates.\n" -" You will not be part of Team %(team_name)s’s submission for this assignment and will not\n" -" receive a grade for their submission.\n" -" " +" You are currently on Team %(team_name)s. Since you were on Team %(previous_team_name)s\n" +" when they submitted a response to this assignment, you are seeing Team %(previous_team_name)s’s\n" +" response and will receive the same grade for this assignment as your former teammates.\n" +" You will not be part of Team %(team_name)s’s submission for this assignment and will not\n" +" receive a grade for their submission.\n" +" " msgstr "" "\n" -" Ýöü äré çürréntlý ön Téäm %(team_name)s. Sïnçé ýöü wéré ön Téäm %(previous_team_name)s\n" -" whén théý süßmïttéd ä réspönsé tö thïs ässïgnmént, ýöü äré sééïng Téäm %(previous_team_name)s’s\n" -" réspönsé änd wïll réçéïvé thé sämé grädé för thïs ässïgnmént äs ýöür förmér téämmätés.\n" -" Ýöü wïll nöt ßé pärt öf Téäm %(team_name)s’s süßmïssïön för thïs ässïgnmént änd wïll nöt\n" -" réçéïvé ä grädé för théïr süßmïssïön.\n" -" #" +" Ýöü äré çürréntlý ön Téäm %(team_name)s. Sïnçé ýöü wéré ön Téäm %(previous_team_name)s\n" +" whén théý süßmïttéd ä réspönsé tö thïs ässïgnmént, ýöü äré sééïng Téäm %(previous_team_name)s’s\n" +" réspönsé änd wïll réçéïvé thé sämé grädé för thïs ässïgnmént äs ýöür förmér téämmätés.\n" +" Ýöü wïll nöt ßé pärt öf Téäm %(team_name)s’s süßmïssïön för thïs ässïgnmént änd wïll nöt\n" +" réçéïvé ä grädé för théïr süßmïssïön.\n" +" #" #: openassessment/templates/openassessmentblock/response/oa_response.html msgid "We could not save your progress" @@ -1851,14 +1826,14 @@ msgstr "Fïlé Ûplöäds Ⱡ'σяєм ιρѕυм ∂σłσя ѕι#" #: openassessment/templates/openassessmentblock/response/oa_response.html msgid "" "\n" -" Upload files and review files uploaded by you and your teammates below. Be sure to add\n" -" descriptions to your files to help your teammates identify them.\n" -" " +" Upload files and review files uploaded by you and your teammates below. Be sure to add\n" +" descriptions to your files to help your teammates identify them.\n" +" " msgstr "" "\n" -" Ûplöäd fïlés änd révïéw fïlés üplöädéd ßý ýöü änd ýöür téämmätés ßélöw. Bé süré tö ädd\n" -" désçrïptïöns tö ýöür fïlés tö hélp ýöür téämmätés ïdéntïfý thém.\n" -" Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя ιη¢ι∂ι∂υηт υт łαвσяє єт ∂σłσяє мαgηα αłιqυα. υт єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтяυ∂ єχєя¢ιтαтιση υłłαм¢σ łαвσяιѕ ηιѕι υт αłιqυιρ єχ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιяυяє ∂σłσя ιη яєρяєнєη∂єяιт ιη νσłυρтα#" +" Ûplöäd fïlés änd révïéw fïlés üplöädéd ßý ýöü änd ýöür téämmätés ßélöw. Bé süré tö ädd\n" +" désçrïptïöns tö ýöür fïlés tö hélp ýöür téämmätés ïdéntïfý thém.\n" +" Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α∂ιριѕι¢ιηg єłιт, ѕє∂ ∂σ єιυѕмσ∂ тємρσя ιη¢ι∂ι∂υηт υт łαвσяє єт ∂σłσяє мαgηα αłιqυα. υт єηιм α∂ мιηιм νєηιαм, qυιѕ ησѕтяυ∂ єχєя¢ιтαтιση υłłαм¢σ łαвσяιѕ ηιѕι υт αłιqυιρ єχ єα ¢σммσ∂σ ¢σηѕєqυαт. ∂υιѕ αυтє ιяυяє ∂σłσя ιη яєρяєнєη∂єяιт#" #: openassessment/templates/openassessmentblock/response/oa_response.html msgid "We could not upload files" @@ -1934,12 +1909,12 @@ msgstr "" #: openassessment/templates/openassessmentblock/response/oa_response.html msgid "" "\n" -" Learn more about team assignments here: (link)\n" -" " +" Learn more about team assignments here: (link)\n" +" " msgstr "" "\n" -" Léärn möré äßöüt téäm ässïgnménts héré: (lïnk)\n" -" Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢#" +" Léärn möré äßöüt téäm ässïgnménts héré: (lïnk)\n" +" Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕ#" #: openassessment/templates/openassessmentblock/response/oa_response.html msgid "We could not submit your response" diff --git a/openassessment/locale/eo/LC_MESSAGES/djangojs.mo b/openassessment/locale/eo/LC_MESSAGES/djangojs.mo index 47a37c6464a4238e8d6c6c83f8242e71a2996054..f10ae25da2f13261aa7e981001683b785509f41c 100644 GIT binary patch delta 1617 zcmXZbX-HI26u|K_xQuO@S(Fa?gEL!}KI9VS;$mxH0Z+P>5_rCY;yXT&JUgufMg>x3q$3CHl zgkKT=SpG2~A|C7+&WT?{gh&tUhPi0N?pSJG-+VQTZhAn8v5N6jG4@3<(4Rr->jKOy7iJ?Tz5Q#P&WEyWe z4$F0^DKxh5;1yhfBN?q$VF`BN6m<6zNx*8P*QQ=LykUsQs+!g93Ye$>>~puVUM^+i{axx|M$VI%g&r>GOW#cdeCdAOQ< zC!r5D@Q>(33xhnW!q8j??!#mA=H5vQ8RSiv>wOOZ^UER zj+<~F1yPAXyn~fCV*&F>^B(%8cJfcXNIMrawVkLL3F0~nZSpyp{w1RGV+$tZF-mK9w8%u7aUEt+v2*b*W~0S3*hpOtYBg8j0X&XtF_BMTGaki! zj2a@c6<6UZ{EEN$WL*xCJo@P)M5f_k)QmKl{xcoTe(7~LK10tQ8VxiSQo@ZG&Bi~( zH~0W+M^S*7mngCef8Z7@qoPvqEAGI!(Z&K!<81o(Q77s`Ey^)tM3!I%&cZV|MZf>g zG&JJ=JnhC@9FCVU8=H_vB-Uws9hsO)e;JZhIf0r|KNesYzQBAc@){)?6qPvCnQ1@~J%if6Ju>uPym}-2FdcTb5 zbjvfsxt(o}_Qh^>&7JSPH#u x;XzB0ug&@|GGt|Oxv$m!JH@v0QC+#i@#XsIgr;4u55BH_bB_XM<+A2-n>HhrRx3BENtx@vVIMTiM00f2l}0K^ z%hVvl7Pdag8dmJXDl>>FSwRp;Eus%9Qq6))9P4+u_wwHNcg}hLoaa2}c@K7FF1(+~ z{!%)6clfpWU+q73R792+3!MDU7e$otKen*ol89n1Wg35qmva@b0~=s@Hf`5@zRJJxQQvCZl;NjaRz^4TEGa$vA`)! zT*lFy!bzM)N7Or&q*ULlkzUlww8Ez;+wn3}YPT@G=q;uf?WZ}Si)q3hj_0RL6MVys z{FRIOn0(*FE~dc0{Tc=Us>DRf8d-yxkO54poogZ)s2Ux+$rMWGrXS%+eRqV)* z_vZbPj`-JUGK(kV_I^5*Ma-EX|ALG=4P3$dnO3@jX=N`kU0=uaqSu%n+{=`q19?B< zE&4s&$3ect4GLmA|70IGPRuQ!Mw++jFD;jUbrORHQYOxDb;hdXagP3OQGLc^yp^vi z@oFAsBhT;|R$Jc3+{ZL=(^aXsB93r1YgFnY9%K{GGG(kbdrhv2S8}I;tz5-2rN53H ze3Tcsfe%lOc%COXvyzndlrY9Lcox4i^oN T>m4Z{s_k6aFt@Xz<+=X>){eq| diff --git a/openassessment/locale/eo/LC_MESSAGES/djangojs.po b/openassessment/locale/eo/LC_MESSAGES/djangojs.po index 6b58664b8c..d5838e3fb4 100644 --- a/openassessment/locale/eo/LC_MESSAGES/djangojs.po +++ b/openassessment/locale/eo/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: edx-ora2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-05 10:54-0400\n" +"POT-Creation-Date: 2021-08-26 14:53-0400\n" "PO-Revision-Date: 2014-06-04 15:41-0400\n" "Last-Translator: Muhammad Ayub khan \n" "Language-Team: openedx-translation \n" @@ -19,7 +19,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js #: openassessment/xblock/static/js/src/oa_server.js #: openassessment/xblock/static/js/src/oa_server.js @@ -28,7 +28,7 @@ msgstr "" "Thïs séçtïön çöüld nöt ßé löädéd. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тє#" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js msgid "The staff assessment form could not be loaded." msgstr "" @@ -36,7 +36,7 @@ msgstr "" "¢σηѕє¢тєтυя α#" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js msgid "The display of ungraded and checked out responses could not be loaded." msgstr "" @@ -44,7 +44,7 @@ msgstr "" "Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя #" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js msgid "This response could not be submitted." msgstr "" @@ -52,14 +52,14 @@ msgstr "" "¢σηѕє¢тєтυ#" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js msgid "This response could not be saved." msgstr "" "Thïs réspönsé çöüld nöt ßé sävéd. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тє#" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js msgid "This feedback could not be submitted." msgstr "" @@ -67,7 +67,7 @@ msgstr "" "¢σηѕє¢тєтυ#" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js #: openassessment/xblock/static/js/src/oa_server.js #: openassessment/xblock/static/js/src/oa_server.js @@ -77,7 +77,7 @@ msgstr "" "¢σηѕє¢тєтυя#" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js msgid "One or more rescheduling tasks failed." msgstr "" @@ -85,41 +85,41 @@ msgstr "" "¢σηѕє¢тєтυя#" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js msgid "This problem could not be saved." msgstr "" "Thïs prößlém çöüld nöt ßé sävéd. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тє#" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js msgid "The server could not be contacted." msgstr "" "Thé sérvér çöüld nöt ßé çöntäçtéd. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєт#" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js msgid "Could not retrieve upload url." msgstr "Çöüld nöt rétrïévé üplöäd ürl. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢т#" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js #: openassessment/xblock/static/js/src/oa_server.js msgid "Server error." msgstr "Sérvér érrör. Ⱡ'σяєм ιρѕυм ∂σłσя ѕι#" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js msgid "Could not retrieve download url." msgstr "" "Çöüld nöt rétrïévé döwnlöäd ürl. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тє#" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js msgid "The submission could not be removed from the grading pool." msgstr "" @@ -127,33 +127,33 @@ msgstr "" "∂σłσя ѕιт αмєт, ¢σηѕє¢тєтυя α#" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js msgid "Multiple teams returned for course" msgstr "" "Mültïplé téäms rétürnéd för çöürsé Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тєт#" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js msgid "Could not load teams information." msgstr "" "Çöüld nöt löäd téäms ïnförmätïön. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢тє#" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js msgid "User lookup failed" msgstr "Ûsér lööküp fäïléd Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт#" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js msgid "Error when looking up username" msgstr "Érrör whén löökïng üp üsérnämé Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢т#" #: openassessment/xblock/static/dist/openassessment-lms.de9dba5b5e7fb726a8ba.js -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/oa_server.js msgid "Failed to clone rubric" msgstr "Fäïléd tö çlöné rüßrïç Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢#" @@ -467,57 +467,57 @@ msgstr "" msgid "Unable to load" msgstr "Ûnäßlé tö löäd Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_tiny_mce.js msgid "Paragraph" msgstr "Pärägräph Ⱡ'σяєм ιρѕυм ∂σł#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_tiny_mce.js msgid "Preformatted" msgstr "Préförmättéd Ⱡ'σяєм ιρѕυм ∂σłσя ѕ#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_tiny_mce.js msgid "Heading 3" msgstr "Héädïng 3 Ⱡ'σяєм ιρѕυм ∂σł#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_tiny_mce.js msgid "Heading 4" msgstr "Héädïng 4 Ⱡ'σяєм ιρѕυм ∂σł#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_tiny_mce.js msgid "Heading 5" msgstr "Héädïng 5 Ⱡ'σяєм ιρѕυм ∂σł#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_tiny_mce.js msgid "Heading 6" msgstr "Héädïng 6 Ⱡ'σяєм ιρѕυм ∂σł#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_container_item.js msgid "Unnamed Option" msgstr "Ûnnäméd Öptïön Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_container_item.js msgid "Not Selected" msgstr "Nöt Séléçtéd Ⱡ'σяєм ιρѕυм ∂σłσя ѕ#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_edit_rubric.js msgid "Problem cloning rubric" msgstr "Prößlém çlönïng rüßrïç Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js msgid "Criterion Added" msgstr "Çrïtérïön Àddéd Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт α#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js msgid "" "You have added a criterion. You will need to select an option for the " @@ -533,13 +533,13 @@ msgstr "" "νєłιт єѕѕє ¢ιłłυм ∂σłσяє єυ ƒυgιαт ηυłłα ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт " "¢υρι∂αтαт ηση ρяσι∂єηт, ѕυηт ιη ¢υłρα qυι σƒƒι¢ια ∂єѕєяυηт мσłłι#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js #: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js msgid "Option Deleted" msgstr "Öptïön Délétéd Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js msgid "" "You have deleted an option. That option has been removed from its criterion " @@ -555,7 +555,7 @@ msgstr "" "∂σłσя ιη яєρяєнєη∂єяιт ιη νσłυρтαтє νєłιт єѕѕє ¢ιłłυм ∂σłσяє єυ ƒυgιαт ηυłłα" " ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт ¢υρι∂αтαт ηση ρяσι∂є#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js msgid "" "You have deleted all the options for this criterion. The criterion has been " @@ -570,12 +570,12 @@ msgstr "" "¢ιłłυм ∂σłσяє єυ ƒυgιαт ηυłłα ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт ¢υρι∂αтαт " "ηση ρяσι∂єηт, ѕυηт ιη ¢υłρα qυι σƒƒι¢ια ∂єѕєяυηт мσłłιт αηιм ι∂ єѕт łα#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js msgid "Criterion Deleted" msgstr "Çrïtérïön Délétéd Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмє#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js msgid "" "You have deleted a criterion. The criterion has been removed from the " @@ -584,12 +584,12 @@ msgstr "" "Ýöü hävé délétéd ä çrïtérïön. Thé çrïtérïön häs ßéén rémövéd fröm thé " "éxämplé réspönsés ïn thé Léärnér Träïnïng stép. Ⱡ'σяєм ιρѕυм ∂#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js msgid "Warning" msgstr "Wärnïng Ⱡ'σяєм ιρѕυм #" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_edit_listeners.js msgid "" "Changes to steps that are not selected as part of the assignment will not be" @@ -598,30 +598,30 @@ msgstr "" "Çhängés tö stéps thät äré nöt séléçtéd äs pärt öf thé ässïgnmént wïll nöt ßé" " sävéd. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢т#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_edit_settings.js msgid "File types can not be empty." msgstr "Fïlé týpés çän nöt ßé émptý. Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, ¢σηѕє¢#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_edit_settings.js msgid "The following file types are not allowed: " msgstr "" "Thé föllöwïng fïlé týpés äré nöt ällöwéd: Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " "¢σηѕє¢тєтυя #" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js #: openassessment/xblock/static/js/src/studio/oa_edit.js msgid "Save Unsuccessful" msgstr "Sävé Ûnsüççéssfül Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмє#" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js msgid "We've detected errors on the following tabs: " msgstr "" "Wé'vé détéçtéd érrörs ön thé föllöwïng täßs: Ⱡ'σяєм ιρѕυм ∂σłσя ѕιт αмєт, " "¢σηѕє¢тєтυя #" -#: openassessment/xblock/static/dist/openassessment-studio.8edf526d67c02b8b1310.js +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js msgid "" "This ORA has already been released. Changes will only affect learners making" " new submissions. Existing submissions will not be modified by this change." @@ -635,6 +635,10 @@ msgstr "" "¢ιłłυм ∂σłσяє єυ ƒυgιαт ηυłłα ραяιαтυя. єχ¢єρтєυя ѕιηт σ¢¢αє¢αт ¢υρι∂αтαт " "ηση ρяσι∂єηт, ѕυηт ιη ¢υłρα qυι σƒƒι¢ια ∂єѕєяυηт мσłłιт α#" +#: openassessment/xblock/static/dist/openassessment-studio.24acd0b958f1819c5647.js +msgid "has " +msgstr "häs Ⱡ'σяєм ι#" + #: openassessment/xblock/static/js/src/studio/oa_edit.js msgid "ve detected errors on the following tabs: ${tabNames.join(" msgstr "" diff --git a/openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html b/openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html index 5c20b021fd..b43660def6 100644 --- a/openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html +++ b/openassessment/templates/openassessmentblock/edit/oa_edit_header_and_validation.html @@ -2,22 +2,51 @@ -
- + diff --git a/openassessment/templates/openassessmentblock/icons/warning_filled.html b/openassessment/templates/openassessmentblock/icons/warning_filled.html new file mode 100644 index 0000000000..2792b2fffe --- /dev/null +++ b/openassessment/templates/openassessmentblock/icons/warning_filled.html @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/openassessment/xblock/static/dist/manifest.json b/openassessment/xblock/static/dist/manifest.json index d647a2bf74..fa2bf33410 100644 --- a/openassessment/xblock/static/dist/manifest.json +++ b/openassessment/xblock/static/dist/manifest.json @@ -4,17 +4,17 @@ "openassessment-editor-textarea.js.map": "/openassessment-editor-textarea.e855a75d3004c5ff54ee.js.map", "openassessment-editor-tinymce.js": "/openassessment-editor-tinymce.f7c8d3bff424e0efaeee.js", "openassessment-editor-tinymce.js.map": "/openassessment-editor-tinymce.f7c8d3bff424e0efaeee.js.map", - "openassessment-lms.js": "/openassessment-lms.de9dba5b5e7fb726a8ba.js", - "openassessment-lms.js.map": "/openassessment-lms.de9dba5b5e7fb726a8ba.js.map", - "openassessment-ltr.css": "/openassessment-ltr.9cc5743ff8c944e87e83.css", - "openassessment-ltr.js": "/openassessment-ltr.9cc5743ff8c944e87e83.js", - "openassessment-ltr.css.map": "/openassessment-ltr.9cc5743ff8c944e87e83.css.map", - "openassessment-ltr.js.map": "/openassessment-ltr.9cc5743ff8c944e87e83.js.map", - "openassessment-rtl.css": "/openassessment-rtl.eff810301acf730bdea1.css", - "openassessment-rtl.js": "/openassessment-rtl.eff810301acf730bdea1.js", - "openassessment-rtl.css.map": "/openassessment-rtl.eff810301acf730bdea1.css.map", - "openassessment-rtl.js.map": "/openassessment-rtl.eff810301acf730bdea1.js.map", - "openassessment-studio.js": "/openassessment-studio.8edf526d67c02b8b1310.js", - "openassessment-studio.js.map": "/openassessment-studio.8edf526d67c02b8b1310.js.map", + "openassessment-lms.js": "/openassessment-lms.7105fc08d9aa23f4c601.js", + "openassessment-lms.js.map": "/openassessment-lms.7105fc08d9aa23f4c601.js.map", + "openassessment-ltr.css": "/openassessment-ltr.78fb901fc78e94f882d1.css", + "openassessment-ltr.js": "/openassessment-ltr.78fb901fc78e94f882d1.js", + "openassessment-ltr.css.map": "/openassessment-ltr.78fb901fc78e94f882d1.css.map", + "openassessment-ltr.js.map": "/openassessment-ltr.78fb901fc78e94f882d1.js.map", + "openassessment-rtl.css": "/openassessment-rtl.f11855bf422e680e1779.css", + "openassessment-rtl.js": "/openassessment-rtl.f11855bf422e680e1779.js", + "openassessment-rtl.css.map": "/openassessment-rtl.f11855bf422e680e1779.css.map", + "openassessment-rtl.js.map": "/openassessment-rtl.f11855bf422e680e1779.js.map", + "openassessment-studio.js": "/openassessment-studio.f14c76a9ea883a7a1aa3.js", + "openassessment-studio.js.map": "/openassessment-studio.f14c76a9ea883a7a1aa3.js.map", "default-avatar.svg": "/95ec738c0b7faac5b5c9126794446bbd.svg" } \ No newline at end of file diff --git a/openassessment/xblock/static/dist/openassessment-editor-textarea.js b/openassessment/xblock/static/dist/openassessment-editor-textarea.js index c88e37d76b..7b70a3ec83 100644 --- a/openassessment/xblock/static/dist/openassessment-editor-textarea.js +++ b/openassessment/xblock/static/dist/openassessment-editor-textarea.js @@ -63,7 +63,7 @@ /******/ /******/ var hotApplyOnUpdate = true; /******/ // eslint-disable-next-line no-unused-vars -/******/ var hotCurrentHash = "1d5ea06124e184a63509"; +/******/ var hotCurrentHash = "c12963ac988a3deb46e0"; /******/ var hotRequestTimeout = 10000; /******/ var hotCurrentModuleData = {}; /******/ var hotCurrentChildModule; diff --git a/openassessment/xblock/static/dist/openassessment-editor-tinymce.js b/openassessment/xblock/static/dist/openassessment-editor-tinymce.js index 39ade1c6f0..48e69bc77b 100644 --- a/openassessment/xblock/static/dist/openassessment-editor-tinymce.js +++ b/openassessment/xblock/static/dist/openassessment-editor-tinymce.js @@ -63,7 +63,7 @@ /******/ /******/ var hotApplyOnUpdate = true; /******/ // eslint-disable-next-line no-unused-vars -/******/ var hotCurrentHash = "1d5ea06124e184a63509"; +/******/ var hotCurrentHash = "c12963ac988a3deb46e0"; /******/ var hotRequestTimeout = 10000; /******/ var hotCurrentModuleData = {}; /******/ var hotCurrentChildModule; diff --git a/openassessment/xblock/static/dist/openassessment-lms.7105fc08d9aa23f4c601.js b/openassessment/xblock/static/dist/openassessment-lms.7105fc08d9aa23f4c601.js new file mode 100644 index 0000000000..2cf85d26ac --- /dev/null +++ b/openassessment/xblock/static/dist/openassessment-lms.7105fc08d9aa23f4c601.js @@ -0,0 +1,362 @@ +!function(e){var t={};function n(r){if(t[r])return t[r].exports;var a=t[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,n),a.l=!0,a.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)n.d(r,a,function(t){return e[t]}.bind(null,a));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/",n(n.s=179)}([function(e,t,n){"use strict";e.exports=n(165)},function(e,t,n){e.exports=n(171)()},function(e,t,n){(function(e){e.exports=function(){"use strict";var t,r;function a(){return t.apply(null,arguments)}function i(e){return e instanceof Array||"[object Array]"===Object.prototype.toString.call(e)}function o(e){return null!=e&&"[object Object]"===Object.prototype.toString.call(e)}function s(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function c(e){if(Object.getOwnPropertyNames)return 0===Object.getOwnPropertyNames(e).length;var t;for(t in e)if(s(e,t))return!1;return!0}function u(e){return void 0===e}function l(e){return"number"==typeof e||"[object Number]"===Object.prototype.toString.call(e)}function d(e){return e instanceof Date||"[object Date]"===Object.prototype.toString.call(e)}function f(e,t){var n,r=[];for(n=0;n>>0;for(t=0;t0)for(n=0;n=0?n?"+":"":"-")+Math.pow(10,Math.max(0,a)).toString().substr(1)+r}a.suppressDeprecationWarnings=!1,a.deprecationHandler=null,w=Object.keys?Object.keys:function(e){var t,n=[];for(t in e)s(e,t)&&n.push(t);return n};var Y=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,E=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,x={},C={};function W(e,t,n,r){var a=r;"string"==typeof r&&(a=function(){return this[r]()}),e&&(C[e]=a),t&&(C[t[0]]=function(){return N(a.apply(this,arguments),t[1],t[2])}),n&&(C[n]=function(){return this.localeData().ordinal(a.apply(this,arguments),e)})}function q(e,t){return e.isValid()?(t=R(t,e.localeData()),x[t]=x[t]||function(e){var t,n,r,a=e.match(Y);for(t=0,n=a.length;t=0&&E.test(e);)e=e.replace(E,r),E.lastIndex=0,n-=1;return e}var P={};function j(e,t){var n=e.toLowerCase();P[n]=P[n+"s"]=P[t]=e}function B(e){return"string"==typeof e?P[e]||P[e.toLowerCase()]:void 0}function H(e){var t,n,r={};for(n in e)s(e,n)&&(t=B(n))&&(r[t]=e[n]);return r}var X={};function F(e,t){X[e]=t}function I(e){return e%4==0&&e%100!=0||e%400==0}function U(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function V(e){var t=+e,n=0;return 0!==t&&isFinite(t)&&(n=U(t)),n}function $(e,t){return function(n){return null!=n?(J(this,e,n),a.updateOffset(this,t),this):G(this,e)}}function G(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function J(e,t,n){e.isValid()&&!isNaN(n)&&("FullYear"===t&&I(e.year())&&1===e.month()&&29===e.date()?(n=V(n),e._d["set"+(e._isUTC?"UTC":"")+t](n,e.month(),Le(n,e.month()))):e._d["set"+(e._isUTC?"UTC":"")+t](n))}var K,Q=/\d/,Z=/\d\d/,ee=/\d{3}/,te=/\d{4}/,ne=/[+-]?\d{6}/,re=/\d\d?/,ae=/\d\d\d\d?/,ie=/\d\d\d\d\d\d?/,oe=/\d{1,3}/,se=/\d{1,4}/,ce=/[+-]?\d{1,6}/,ue=/\d+/,le=/[+-]?\d+/,de=/Z|[+-]\d\d:?\d\d/gi,fe=/Z|[+-]\d\d(?::?\d\d)?/gi,pe=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i;function me(e,t,n){K[e]=O(t)?t:function(e,r){return e&&n?n:t}}function he(e,t){return s(K,e)?K[e](t._strict,t._locale):new RegExp(Me(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,(function(e,t,n,r,a){return t||n||r||a}))))}function Me(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}K={};var _e,be={};function ye(e,t){var n,r=t;for("string"==typeof e&&(e=[e]),l(t)&&(r=function(e,n){n[t]=V(e)}),n=0;n68?1900:2e3)};var Ee=$("FullYear",!0);function xe(e,t,n,r,a,i,o){var s;return e<100&&e>=0?(s=new Date(e+400,t,n,r,a,i,o),isFinite(s.getFullYear())&&s.setFullYear(e)):s=new Date(e,t,n,r,a,i,o),s}function Ce(e){var t,n;return e<100&&e>=0?((n=Array.prototype.slice.call(arguments))[0]=e+400,t=new Date(Date.UTC.apply(null,n)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)):t=new Date(Date.UTC.apply(null,arguments)),t}function We(e,t,n){var r=7+t-n;return-(7+Ce(e,0,r).getUTCDay()-t)%7+r-1}function qe(e,t,n,r,a){var i,o,s=1+7*(t-1)+(7+n-r)%7+We(e,r,a);return s<=0?o=Ye(i=e-1)+s:s>Ye(e)?(i=e+1,o=s-Ye(e)):(i=e,o=s),{year:i,dayOfYear:o}}function Re(e,t,n){var r,a,i=We(e.year(),t,n),o=Math.floor((e.dayOfYear()-i-1)/7)+1;return o<1?r=o+Pe(a=e.year()-1,t,n):o>Pe(e.year(),t,n)?(r=o-Pe(e.year(),t,n),a=e.year()+1):(a=e.year(),r=o),{week:r,year:a}}function Pe(e,t,n){var r=We(e,t,n),a=We(e+1,t,n);return(Ye(e)-r+a)/7}function je(e,t){return e.slice(t,7).concat(e.slice(0,t))}W("w",["ww",2],"wo","week"),W("W",["WW",2],"Wo","isoWeek"),j("week","w"),j("isoWeek","W"),F("week",5),F("isoWeek",5),me("w",re),me("ww",re,Z),me("W",re),me("WW",re,Z),ge(["w","ww","W","WW"],(function(e,t,n,r){t[r.substr(0,1)]=V(e)})),W("d",0,"do","day"),W("dd",0,0,(function(e){return this.localeData().weekdaysMin(this,e)})),W("ddd",0,0,(function(e){return this.localeData().weekdaysShort(this,e)})),W("dddd",0,0,(function(e){return this.localeData().weekdays(this,e)})),W("e",0,0,"weekday"),W("E",0,0,"isoWeekday"),j("day","d"),j("weekday","e"),j("isoWeekday","E"),F("day",11),F("weekday",11),F("isoWeekday",11),me("d",re),me("e",re),me("E",re),me("dd",(function(e,t){return t.weekdaysMinRegex(e)})),me("ddd",(function(e,t){return t.weekdaysShortRegex(e)})),me("dddd",(function(e,t){return t.weekdaysRegex(e)})),ge(["dd","ddd","dddd"],(function(e,t,n,r){var a=n._locale.weekdaysParse(e,r,n._strict);null!=a?t.d=a:h(n).invalidWeekday=e})),ge(["d","e","E"],(function(e,t,n,r){t[r]=V(e)}));var Be="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),He="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Xe="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),Fe=pe,Ie=pe,Ue=pe;function Ve(e,t,n){var r,a,i,o=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],r=0;r<7;++r)i=m([2e3,1]).day(r),this._minWeekdaysParse[r]=this.weekdaysMin(i,"").toLocaleLowerCase(),this._shortWeekdaysParse[r]=this.weekdaysShort(i,"").toLocaleLowerCase(),this._weekdaysParse[r]=this.weekdays(i,"").toLocaleLowerCase();return n?"dddd"===t?-1!==(a=_e.call(this._weekdaysParse,o))?a:null:"ddd"===t?-1!==(a=_e.call(this._shortWeekdaysParse,o))?a:null:-1!==(a=_e.call(this._minWeekdaysParse,o))?a:null:"dddd"===t?-1!==(a=_e.call(this._weekdaysParse,o))||-1!==(a=_e.call(this._shortWeekdaysParse,o))||-1!==(a=_e.call(this._minWeekdaysParse,o))?a:null:"ddd"===t?-1!==(a=_e.call(this._shortWeekdaysParse,o))||-1!==(a=_e.call(this._weekdaysParse,o))||-1!==(a=_e.call(this._minWeekdaysParse,o))?a:null:-1!==(a=_e.call(this._minWeekdaysParse,o))||-1!==(a=_e.call(this._weekdaysParse,o))||-1!==(a=_e.call(this._shortWeekdaysParse,o))?a:null}function $e(){function e(e,t){return t.length-e.length}var t,n,r,a,i,o=[],s=[],c=[],u=[];for(t=0;t<7;t++)n=m([2e3,1]).day(t),r=Me(this.weekdaysMin(n,"")),a=Me(this.weekdaysShort(n,"")),i=Me(this.weekdays(n,"")),o.push(r),s.push(a),c.push(i),u.push(r),u.push(a),u.push(i);o.sort(e),s.sort(e),c.sort(e),u.sort(e),this._weekdaysRegex=new RegExp("^("+u.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+c.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+o.join("|")+")","i")}function Ge(){return this.hours()%12||12}function Je(e,t){W(e,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)}))}function Ke(e,t){return t._meridiemParse}W("H",["HH",2],0,"hour"),W("h",["hh",2],0,Ge),W("k",["kk",2],0,(function(){return this.hours()||24})),W("hmm",0,0,(function(){return""+Ge.apply(this)+N(this.minutes(),2)})),W("hmmss",0,0,(function(){return""+Ge.apply(this)+N(this.minutes(),2)+N(this.seconds(),2)})),W("Hmm",0,0,(function(){return""+this.hours()+N(this.minutes(),2)})),W("Hmmss",0,0,(function(){return""+this.hours()+N(this.minutes(),2)+N(this.seconds(),2)})),Je("a",!0),Je("A",!1),j("hour","h"),F("hour",13),me("a",Ke),me("A",Ke),me("H",re),me("h",re),me("k",re),me("HH",re,Z),me("hh",re,Z),me("kk",re,Z),me("hmm",ae),me("hmmss",ie),me("Hmm",ae),me("Hmmss",ie),ye(["H","HH"],3),ye(["k","kk"],(function(e,t,n){var r=V(e);t[3]=24===r?0:r})),ye(["a","A"],(function(e,t,n){n._isPm=n._locale.isPM(e),n._meridiem=e})),ye(["h","hh"],(function(e,t,n){t[3]=V(e),h(n).bigHour=!0})),ye("hmm",(function(e,t,n){var r=e.length-2;t[3]=V(e.substr(0,r)),t[4]=V(e.substr(r)),h(n).bigHour=!0})),ye("hmmss",(function(e,t,n){var r=e.length-4,a=e.length-2;t[3]=V(e.substr(0,r)),t[4]=V(e.substr(r,2)),t[5]=V(e.substr(a)),h(n).bigHour=!0})),ye("Hmm",(function(e,t,n){var r=e.length-2;t[3]=V(e.substr(0,r)),t[4]=V(e.substr(r))})),ye("Hmmss",(function(e,t,n){var r=e.length-4,a=e.length-2;t[3]=V(e.substr(0,r)),t[4]=V(e.substr(r,2)),t[5]=V(e.substr(a))}));var Qe,Ze=$("Hours",!0),et={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:Ae,monthsShort:Te,week:{dow:0,doy:6},weekdays:Be,weekdaysMin:Xe,weekdaysShort:He,meridiemParse:/[ap]\.?m?\.?/i},tt={},nt={};function rt(e,t){var n,r=Math.min(e.length,t.length);for(n=0;n0;){if(r=it(a.slice(0,t).join("-")))return r;if(n&&n.length>=t&&rt(a,n)>=t-1)break;t--}i++}return Qe}(e)}function ut(e){var t,n=e._a;return n&&-2===h(e).overflow&&(t=n[1]<0||n[1]>11?1:n[2]<1||n[2]>Le(n[0],n[1])?2:n[3]<0||n[3]>24||24===n[3]&&(0!==n[4]||0!==n[5]||0!==n[6])?3:n[4]<0||n[4]>59?4:n[5]<0||n[5]>59?5:n[6]<0||n[6]>999?6:-1,h(e)._overflowDayOfYear&&(t<0||t>2)&&(t=2),h(e)._overflowWeeks&&-1===t&&(t=7),h(e)._overflowWeekday&&-1===t&&(t=8),h(e).overflow=t),e}var lt=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,dt=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ft=/Z|[+-]\d\d(?::?\d\d)?/,pt=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/],["YYYYMM",/\d{6}/,!1],["YYYY",/\d{4}/,!1]],mt=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],ht=/^\/?Date\((-?\d+)/i,Mt=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,_t={UT:0,GMT:0,EDT:-240,EST:-300,CDT:-300,CST:-360,MDT:-360,MST:-420,PDT:-420,PST:-480};function bt(e){var t,n,r,a,i,o,s=e._i,c=lt.exec(s)||dt.exec(s);if(c){for(h(e).iso=!0,t=0,n=pt.length;t7)&&(c=!0)):(i=e._locale._week.dow,o=e._locale._week.doy,u=Re(zt(),i,o),n=vt(t.gg,e._a[0],u.year),r=vt(t.w,u.week),null!=t.d?((a=t.d)<0||a>6)&&(c=!0):null!=t.e?(a=t.e+i,(t.e<0||t.e>6)&&(c=!0)):a=i),r<1||r>Pe(n,i,o)?h(e)._overflowWeeks=!0:null!=c?h(e)._overflowWeekday=!0:(s=qe(n,r,a,i,o),e._a[0]=s.year,e._dayOfYear=s.dayOfYear)}(e),null!=e._dayOfYear&&(o=vt(e._a[0],r[0]),(e._dayOfYear>Ye(o)||0===e._dayOfYear)&&(h(e)._overflowDayOfYear=!0),n=Ce(o,0,e._dayOfYear),e._a[1]=n.getUTCMonth(),e._a[2]=n.getUTCDate()),t=0;t<3&&null==e._a[t];++t)e._a[t]=s[t]=r[t];for(;t<7;t++)e._a[t]=s[t]=null==e._a[t]?2===t?1:0:e._a[t];24===e._a[3]&&0===e._a[4]&&0===e._a[5]&&0===e._a[6]&&(e._nextDay=!0,e._a[3]=0),e._d=(e._useUTC?Ce:xe).apply(null,s),i=e._useUTC?e._d.getUTCDay():e._d.getDay(),null!=e._tzm&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[3]=24),e._w&&void 0!==e._w.d&&e._w.d!==i&&(h(e).weekdayMismatch=!0)}}function At(e){if(e._f!==a.ISO_8601)if(e._f!==a.RFC_2822){e._a=[],h(e).empty=!0;var t,n,r,i,o,s,c=""+e._i,u=c.length,l=0;for(r=R(e._f,e._locale).match(Y)||[],t=0;t0&&h(e).unusedInput.push(o),c=c.slice(c.indexOf(n)+n.length),l+=n.length),C[i]?(n?h(e).empty=!1:h(e).unusedTokens.push(i),ve(i,n,e)):e._strict&&!n&&h(e).unusedTokens.push(i);h(e).charsLeftOver=u-l,c.length>0&&h(e).unusedInput.push(c),e._a[3]<=12&&!0===h(e).bigHour&&e._a[3]>0&&(h(e).bigHour=void 0),h(e).parsedDateParts=e._a.slice(0),h(e).meridiem=e._meridiem,e._a[3]=function(e,t,n){var r;return null==n?t:null!=e.meridiemHour?e.meridiemHour(t,n):null!=e.isPM?((r=e.isPM(n))&&t<12&&(t+=12),r||12!==t||(t=0),t):t}(e._locale,e._a[3],e._meridiem),null!==(s=h(e).era)&&(e._a[0]=e._locale.erasConvertYear(s,e._a[0])),Lt(e),ut(e)}else gt(e);else bt(e)}function Tt(e){var t=e._i,n=e._f;return e._locale=e._locale||ct(e._l),null===t||void 0===n&&""===t?_({nullInput:!0}):("string"==typeof t&&(e._i=t=e._locale.preparse(t)),L(t)?new v(ut(t)):(d(t)?e._d=t:i(n)?function(e){var t,n,r,a,i,o,s=!1;if(0===e._f.length)return h(e).invalidFormat=!0,void(e._d=new Date(NaN));for(a=0;athis?this:e:_()}));function St(e,t){var n,r;if(1===t.length&&i(t[0])&&(t=t[0]),!t.length)return zt();for(n=t[0],r=1;r=0?new Date(e+400,t,n)-126227808e5:new Date(e,t,n).valueOf()}function an(e,t,n){return e<100&&e>=0?Date.UTC(e+400,t,n)-126227808e5:Date.UTC(e,t,n)}function on(e,t){return t.erasAbbrRegex(e)}function sn(){var e,t,n=[],r=[],a=[],i=[],o=this.eras();for(e=0,t=o.length;e(i=Pe(e,r,a))&&(t=i),ln.call(this,e,t,n,r,a))}function ln(e,t,n,r,a){var i=qe(e,t,n,r,a),o=Ce(i.year,0,i.dayOfYear);return this.year(o.getUTCFullYear()),this.month(o.getUTCMonth()),this.date(o.getUTCDate()),this}W("N",0,0,"eraAbbr"),W("NN",0,0,"eraAbbr"),W("NNN",0,0,"eraAbbr"),W("NNNN",0,0,"eraName"),W("NNNNN",0,0,"eraNarrow"),W("y",["y",1],"yo","eraYear"),W("y",["yy",2],0,"eraYear"),W("y",["yyy",3],0,"eraYear"),W("y",["yyyy",4],0,"eraYear"),me("N",on),me("NN",on),me("NNN",on),me("NNNN",(function(e,t){return t.erasNameRegex(e)})),me("NNNNN",(function(e,t){return t.erasNarrowRegex(e)})),ye(["N","NN","NNN","NNNN","NNNNN"],(function(e,t,n,r){var a=n._locale.erasParse(e,r,n._strict);a?h(n).era=a:h(n).invalidEra=e})),me("y",ue),me("yy",ue),me("yyy",ue),me("yyyy",ue),me("yo",(function(e,t){return t._eraYearOrdinalRegex||ue})),ye(["y","yy","yyy","yyyy"],0),ye(["yo"],(function(e,t,n,r){var a;n._locale._eraYearOrdinalRegex&&(a=e.match(n._locale._eraYearOrdinalRegex)),n._locale.eraYearOrdinalParse?t[0]=n._locale.eraYearOrdinalParse(e,a):t[0]=parseInt(e,10)})),W(0,["gg",2],0,(function(){return this.weekYear()%100})),W(0,["GG",2],0,(function(){return this.isoWeekYear()%100})),cn("gggg","weekYear"),cn("ggggg","weekYear"),cn("GGGG","isoWeekYear"),cn("GGGGG","isoWeekYear"),j("weekYear","gg"),j("isoWeekYear","GG"),F("weekYear",1),F("isoWeekYear",1),me("G",le),me("g",le),me("GG",re,Z),me("gg",re,Z),me("GGGG",se,te),me("gggg",se,te),me("GGGGG",ce,ne),me("ggggg",ce,ne),ge(["gggg","ggggg","GGGG","GGGGG"],(function(e,t,n,r){t[r.substr(0,2)]=V(e)})),ge(["gg","GG"],(function(e,t,n,r){t[r]=a.parseTwoDigitYear(e)})),W("Q",0,"Qo","quarter"),j("quarter","Q"),F("quarter",7),me("Q",Q),ye("Q",(function(e,t){t[1]=3*(V(e)-1)})),W("D",["DD",2],"Do","date"),j("date","D"),F("date",9),me("D",re),me("DD",re,Z),me("Do",(function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient})),ye(["D","DD"],2),ye("Do",(function(e,t){t[2]=V(e.match(re)[0])}));var dn=$("Date",!0);W("DDD",["DDDD",3],"DDDo","dayOfYear"),j("dayOfYear","DDD"),F("dayOfYear",4),me("DDD",oe),me("DDDD",ee),ye(["DDD","DDDD"],(function(e,t,n){n._dayOfYear=V(e)})),W("m",["mm",2],0,"minute"),j("minute","m"),F("minute",14),me("m",re),me("mm",re,Z),ye(["m","mm"],4);var fn=$("Minutes",!1);W("s",["ss",2],0,"second"),j("second","s"),F("second",15),me("s",re),me("ss",re,Z),ye(["s","ss"],5);var pn,mn,hn=$("Seconds",!1);for(W("S",0,0,(function(){return~~(this.millisecond()/100)})),W(0,["SS",2],0,(function(){return~~(this.millisecond()/10)})),W(0,["SSS",3],0,"millisecond"),W(0,["SSSS",4],0,(function(){return 10*this.millisecond()})),W(0,["SSSSS",5],0,(function(){return 100*this.millisecond()})),W(0,["SSSSSS",6],0,(function(){return 1e3*this.millisecond()})),W(0,["SSSSSSS",7],0,(function(){return 1e4*this.millisecond()})),W(0,["SSSSSSSS",8],0,(function(){return 1e5*this.millisecond()})),W(0,["SSSSSSSSS",9],0,(function(){return 1e6*this.millisecond()})),j("millisecond","ms"),F("millisecond",16),me("S",oe,Q),me("SS",oe,Z),me("SSS",oe,ee),pn="SSSS";pn.length<=9;pn+="S")me(pn,ue);function Mn(e,t){t[6]=V(1e3*("0."+e))}for(pn="S";pn.length<=9;pn+="S")ye(pn,Mn);mn=$("Milliseconds",!1),W("z",0,0,"zoneAbbr"),W("zz",0,0,"zoneName");var _n=v.prototype;function bn(e){return e}_n.add=Vt,_n.calendar=function(e,t){1===arguments.length&&(arguments[0]?Jt(arguments[0])?(e=arguments[0],t=void 0):Kt(arguments[0])&&(t=arguments[0],e=void 0):(e=void 0,t=void 0));var n=e||zt(),r=qt(n,this).startOf("day"),i=a.calendarFormat(this,r)||"sameElse",o=t&&(O(t[i])?t[i].call(this,n):t[i]);return this.format(o||this.localeData().calendar(i,this,zt(n)))},_n.clone=function(){return new v(this)},_n.diff=function(e,t,n){var r,a,i;if(!this.isValid())return NaN;if(!(r=qt(e,this)).isValid())return NaN;switch(a=6e4*(r.utcOffset()-this.utcOffset()),t=B(t)){case"year":i=Qt(this,r)/12;break;case"month":i=Qt(this,r);break;case"quarter":i=Qt(this,r)/3;break;case"second":i=(this-r)/1e3;break;case"minute":i=(this-r)/6e4;break;case"hour":i=(this-r)/36e5;break;case"day":i=(this-r-a)/864e5;break;case"week":i=(this-r-a)/6048e5;break;default:i=this-r}return n?i:U(i)},_n.endOf=function(e){var t,n;if(void 0===(e=B(e))||"millisecond"===e||!this.isValid())return this;switch(n=this._isUTC?an:rn,e){case"year":t=n(this.year()+1,0,1)-1;break;case"quarter":t=n(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=n(this.year(),this.month()+1,1)-1;break;case"week":t=n(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=n(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=n(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf(),t+=36e5-nn(t+(this._isUTC?0:6e4*this.utcOffset()),36e5)-1;break;case"minute":t=this._d.valueOf(),t+=6e4-nn(t,6e4)-1;break;case"second":t=this._d.valueOf(),t+=1e3-nn(t,1e3)-1}return this._d.setTime(t),a.updateOffset(this,!0),this},_n.format=function(e){e||(e=this.isUtc()?a.defaultFormatUtc:a.defaultFormat);var t=q(this,e);return this.localeData().postformat(t)},_n.from=function(e,t){return this.isValid()&&(L(e)&&e.isValid()||zt(e).isValid())?Ht({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},_n.fromNow=function(e){return this.from(zt(),e)},_n.to=function(e,t){return this.isValid()&&(L(e)&&e.isValid()||zt(e).isValid())?Ht({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()},_n.toNow=function(e){return this.to(zt(),e)},_n.get=function(e){return O(this[e=B(e)])?this[e]():this},_n.invalidAt=function(){return h(this).overflow},_n.isAfter=function(e,t){var n=L(e)?e:zt(e);return!(!this.isValid()||!n.isValid())&&("millisecond"===(t=B(t)||"millisecond")?this.valueOf()>n.valueOf():n.valueOf()9999?q(n,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):O(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",q(n,"Z")):q(n,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},_n.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e,t,n,r="moment",a="";return this.isLocal()||(r=0===this.utcOffset()?"moment.utc":"moment.parseZone",a="Z"),e="["+r+'("]',t=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",n=a+'[")]',this.format(e+t+"-MM-DD[T]HH:mm:ss.SSS"+n)},"undefined"!=typeof Symbol&&null!=Symbol.for&&(_n[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"}),_n.toJSON=function(){return this.isValid()?this.toISOString():null},_n.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},_n.unix=function(){return Math.floor(this.valueOf()/1e3)},_n.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},_n.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},_n.eraName=function(){var e,t,n,r=this.localeData().eras();for(e=0,t=r.length;ethis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},_n.isLocal=function(){return!!this.isValid()&&!this._isUTC},_n.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},_n.isUtc=Pt,_n.isUTC=Pt,_n.zoneAbbr=function(){return this._isUTC?"UTC":""},_n.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},_n.dates=T("dates accessor is deprecated. Use date instead.",dn),_n.months=T("months accessor is deprecated. Use month instead",De),_n.years=T("years accessor is deprecated. Use year instead",Ee),_n.zone=T("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",(function(e,t){return null!=e?("string"!=typeof e&&(e=-e),this.utcOffset(e,t),this):-this.utcOffset()})),_n.isDSTShifted=T("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",(function(){if(!u(this._isDSTShifted))return this._isDSTShifted;var e,t={};return g(t,this),(t=Tt(t))._a?(e=t._isUTC?m(t._a):zt(t._a),this._isDSTShifted=this.isValid()&&function(e,t,n){var r,a=Math.min(e.length,t.length),i=Math.abs(e.length-t.length),o=0;for(r=0;r0):this._isDSTShifted=!1,this._isDSTShifted}));var yn=D.prototype;function gn(e,t,n,r){var a=ct(),i=m().set(r,t);return a[n](i,e)}function vn(e,t,n){if(l(e)&&(t=e,e=void 0),e=e||"",null!=t)return gn(e,t,n,"month");var r,a=[];for(r=0;r<12;r++)a[r]=gn(e,r,n,"month");return a}function Ln(e,t,n,r){"boolean"==typeof e?(l(t)&&(n=t,t=void 0),t=t||""):(n=t=e,e=!1,l(t)&&(n=t,t=void 0),t=t||"");var a,i=ct(),o=e?i._week.dow:0,s=[];if(null!=n)return gn(t,(n+o)%7,r,"day");for(a=0;a<7;a++)s[a]=gn(t,(a+o)%7,r,"day");return s}yn.calendar=function(e,t,n){var r=this._calendar[e]||this._calendar.sameElse;return O(r)?r.call(t,n):r},yn.longDateFormat=function(e){var t=this._longDateFormat[e],n=this._longDateFormat[e.toUpperCase()];return t||!n?t:(this._longDateFormat[e]=n.match(Y).map((function(e){return"MMMM"===e||"MM"===e||"DD"===e||"dddd"===e?e.slice(1):e})).join(""),this._longDateFormat[e])},yn.invalidDate=function(){return this._invalidDate},yn.ordinal=function(e){return this._ordinal.replace("%d",e)},yn.preparse=bn,yn.postformat=bn,yn.relativeTime=function(e,t,n,r){var a=this._relativeTime[n];return O(a)?a(e,t,n,r):a.replace(/%d/i,e)},yn.pastFuture=function(e,t){var n=this._relativeTime[e>0?"future":"past"];return O(n)?n(t):n.replace(/%s/i,t)},yn.set=function(e){var t,n;for(n in e)s(e,n)&&(O(t=e[n])?this[n]=t:this["_"+n]=t);this._config=e,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)},yn.eras=function(e,t){var n,r,i,o=this._eras||ct("en")._eras;for(n=0,r=o.length;n=0)return c[r]},yn.erasConvertYear=function(e,t){var n=e.since<=e.until?1:-1;return void 0===t?a(e.since).year():a(e.since).year()+(t-e.offset)*n},yn.erasAbbrRegex=function(e){return s(this,"_erasAbbrRegex")||sn.call(this),e?this._erasAbbrRegex:this._erasRegex},yn.erasNameRegex=function(e){return s(this,"_erasNameRegex")||sn.call(this),e?this._erasNameRegex:this._erasRegex},yn.erasNarrowRegex=function(e){return s(this,"_erasNarrowRegex")||sn.call(this),e?this._erasNarrowRegex:this._erasRegex},yn.months=function(e,t){return e?i(this._months)?this._months[e.month()]:this._months[(this._months.isFormat||we).test(t)?"format":"standalone"][e.month()]:i(this._months)?this._months:this._months.standalone},yn.monthsShort=function(e,t){return e?i(this._monthsShort)?this._monthsShort[e.month()]:this._monthsShort[we.test(t)?"format":"standalone"][e.month()]:i(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},yn.monthsParse=function(e,t,n){var r,a,i;if(this._monthsParseExact)return Oe.call(this,e,t,n);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),r=0;r<12;r++){if(a=m([2e3,r]),n&&!this._longMonthsParse[r]&&(this._longMonthsParse[r]=new RegExp("^"+this.months(a,"").replace(".","")+"$","i"),this._shortMonthsParse[r]=new RegExp("^"+this.monthsShort(a,"").replace(".","")+"$","i")),n||this._monthsParse[r]||(i="^"+this.months(a,"")+"|^"+this.monthsShort(a,""),this._monthsParse[r]=new RegExp(i.replace(".",""),"i")),n&&"MMMM"===t&&this._longMonthsParse[r].test(e))return r;if(n&&"MMM"===t&&this._shortMonthsParse[r].test(e))return r;if(!n&&this._monthsParse[r].test(e))return r}},yn.monthsRegex=function(e){return this._monthsParseExact?(s(this,"_monthsRegex")||Ne.call(this),e?this._monthsStrictRegex:this._monthsRegex):(s(this,"_monthsRegex")||(this._monthsRegex=ke),this._monthsStrictRegex&&e?this._monthsStrictRegex:this._monthsRegex)},yn.monthsShortRegex=function(e){return this._monthsParseExact?(s(this,"_monthsRegex")||Ne.call(this),e?this._monthsShortStrictRegex:this._monthsShortRegex):(s(this,"_monthsShortRegex")||(this._monthsShortRegex=ze),this._monthsShortStrictRegex&&e?this._monthsShortStrictRegex:this._monthsShortRegex)},yn.week=function(e){return Re(e,this._week.dow,this._week.doy).week},yn.firstDayOfYear=function(){return this._week.doy},yn.firstDayOfWeek=function(){return this._week.dow},yn.weekdays=function(e,t){var n=i(this._weekdays)?this._weekdays:this._weekdays[e&&!0!==e&&this._weekdays.isFormat.test(t)?"format":"standalone"];return!0===e?je(n,this._week.dow):e?n[e.day()]:n},yn.weekdaysMin=function(e){return!0===e?je(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin},yn.weekdaysShort=function(e){return!0===e?je(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort},yn.weekdaysParse=function(e,t,n){var r,a,i;if(this._weekdaysParseExact)return Ve.call(this,e,t,n);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),r=0;r<7;r++){if(a=m([2e3,1]).day(r),n&&!this._fullWeekdaysParse[r]&&(this._fullWeekdaysParse[r]=new RegExp("^"+this.weekdays(a,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[r]=new RegExp("^"+this.weekdaysShort(a,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[r]=new RegExp("^"+this.weekdaysMin(a,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[r]||(i="^"+this.weekdays(a,"")+"|^"+this.weekdaysShort(a,"")+"|^"+this.weekdaysMin(a,""),this._weekdaysParse[r]=new RegExp(i.replace(".",""),"i")),n&&"dddd"===t&&this._fullWeekdaysParse[r].test(e))return r;if(n&&"ddd"===t&&this._shortWeekdaysParse[r].test(e))return r;if(n&&"dd"===t&&this._minWeekdaysParse[r].test(e))return r;if(!n&&this._weekdaysParse[r].test(e))return r}},yn.weekdaysRegex=function(e){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||$e.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(s(this,"_weekdaysRegex")||(this._weekdaysRegex=Fe),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)},yn.weekdaysShortRegex=function(e){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||$e.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(s(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Ie),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},yn.weekdaysMinRegex=function(e){return this._weekdaysParseExact?(s(this,"_weekdaysRegex")||$e.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(s(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Ue),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},yn.isPM=function(e){return"p"===(e+"").toLowerCase().charAt(0)},yn.meridiem=function(e,t,n){return e>11?n?"pm":"PM":n?"am":"AM"},ot("en",{eras:[{since:"0001-01-01",until:1/0,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10;return e+(1===V(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th")}}),a.lang=T("moment.lang is deprecated. Use moment.locale instead.",ot),a.langData=T("moment.langData is deprecated. Use moment.localeData instead.",ct);var An=Math.abs;function Tn(e,t,n,r){var a=Ht(t,n);return e._milliseconds+=r*a._milliseconds,e._days+=r*a._days,e._months+=r*a._months,e._bubble()}function wn(e){return e<0?Math.floor(e):Math.ceil(e)}function zn(e){return 4800*e/146097}function kn(e){return 146097*e/4800}function On(e){return function(){return this.as(e)}}var Sn=On("ms"),Dn=On("s"),Nn=On("m"),Yn=On("h"),En=On("d"),xn=On("w"),Cn=On("M"),Wn=On("Q"),qn=On("y");function Rn(e){return function(){return this.isValid()?this._data[e]:NaN}}var Pn=Rn("milliseconds"),jn=Rn("seconds"),Bn=Rn("minutes"),Hn=Rn("hours"),Xn=Rn("days"),Fn=Rn("months"),In=Rn("years"),Un=Math.round,Vn={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};function $n(e,t,n,r,a){return a.relativeTime(t||1,!!n,e,r)}var Gn=Math.abs;function Jn(e){return(e>0)-(e<0)||+e}function Kn(){if(!this.isValid())return this.localeData().invalidDate();var e,t,n,r,a,i,o,s,c=Gn(this._milliseconds)/1e3,u=Gn(this._days),l=Gn(this._months),d=this.asSeconds();return d?(e=U(c/60),t=U(e/60),c%=60,e%=60,n=U(l/12),l%=12,r=c?c.toFixed(3).replace(/\.?0+$/,""):"",a=d<0?"-":"",i=Jn(this._months)!==Jn(d)?"-":"",o=Jn(this._days)!==Jn(d)?"-":"",s=Jn(this._milliseconds)!==Jn(d)?"-":"",a+"P"+(n?i+n+"Y":"")+(l?i+l+"M":"")+(u?o+u+"D":"")+(t||e||c?"T":"")+(t?s+t+"H":"")+(e?s+e+"M":"")+(c?s+r+"S":"")):"P0D"}var Qn=Nt.prototype;return Qn.isValid=function(){return this._isValid},Qn.abs=function(){var e=this._data;return this._milliseconds=An(this._milliseconds),this._days=An(this._days),this._months=An(this._months),e.milliseconds=An(e.milliseconds),e.seconds=An(e.seconds),e.minutes=An(e.minutes),e.hours=An(e.hours),e.months=An(e.months),e.years=An(e.years),this},Qn.add=function(e,t){return Tn(this,e,t,1)},Qn.subtract=function(e,t){return Tn(this,e,t,-1)},Qn.as=function(e){if(!this.isValid())return NaN;var t,n,r=this._milliseconds;if("month"===(e=B(e))||"quarter"===e||"year"===e)switch(t=this._days+r/864e5,n=this._months+zn(t),e){case"month":return n;case"quarter":return n/3;case"year":return n/12}else switch(t=this._days+Math.round(kn(this._months)),e){case"week":return t/7+r/6048e5;case"day":return t+r/864e5;case"hour":return 24*t+r/36e5;case"minute":return 1440*t+r/6e4;case"second":return 86400*t+r/1e3;case"millisecond":return Math.floor(864e5*t)+r;default:throw new Error("Unknown unit "+e)}},Qn.asMilliseconds=Sn,Qn.asSeconds=Dn,Qn.asMinutes=Nn,Qn.asHours=Yn,Qn.asDays=En,Qn.asWeeks=xn,Qn.asMonths=Cn,Qn.asQuarters=Wn,Qn.asYears=qn,Qn.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*V(this._months/12):NaN},Qn._bubble=function(){var e,t,n,r,a,i=this._milliseconds,o=this._days,s=this._months,c=this._data;return i>=0&&o>=0&&s>=0||i<=0&&o<=0&&s<=0||(i+=864e5*wn(kn(s)+o),o=0,s=0),c.milliseconds=i%1e3,e=U(i/1e3),c.seconds=e%60,t=U(e/60),c.minutes=t%60,n=U(t/60),c.hours=n%24,o+=U(n/24),a=U(zn(o)),s+=a,o-=wn(kn(a)),r=U(s/12),s%=12,c.days=o,c.months=s,c.years=r,this},Qn.clone=function(){return Ht(this)},Qn.get=function(e){return e=B(e),this.isValid()?this[e+"s"]():NaN},Qn.milliseconds=Pn,Qn.seconds=jn,Qn.minutes=Bn,Qn.hours=Hn,Qn.days=Xn,Qn.weeks=function(){return U(this.days()/7)},Qn.months=Fn,Qn.years=In,Qn.humanize=function(e,t){if(!this.isValid())return this.localeData().invalidDate();var n,r,a=!1,i=Vn;return"object"==typeof e&&(t=e,e=!1),"boolean"==typeof e&&(a=e),"object"==typeof t&&(i=Object.assign({},Vn,t),null!=t.s&&null==t.ss&&(i.ss=t.s-1)),n=this.localeData(),r=function(e,t,n,r){var a=Ht(e).abs(),i=Un(a.as("s")),o=Un(a.as("m")),s=Un(a.as("h")),c=Un(a.as("d")),u=Un(a.as("M")),l=Un(a.as("w")),d=Un(a.as("y")),f=i<=n.ss&&["s",i]||i0,f[4]=r,$n.apply(null,f)}(this,!a,i,n),a&&(r=n.pastFuture(+this,r)),n.postformat(r)},Qn.toISOString=Kn,Qn.toString=Kn,Qn.toJSON=Kn,Qn.locale=Zt,Qn.localeData=tn,Qn.toIsoString=T("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",Kn),Qn.lang=en,W("X",0,0,"unix"),W("x",0,0,"valueOf"),me("x",le),me("X",/[+-]?\d+(\.\d{1,3})?/),ye("X",(function(e,t,n){n._d=new Date(1e3*parseFloat(e))})),ye("x",(function(e,t,n){n._d=new Date(V(e))})), +//! moment.js +a.version="2.29.1",t=zt,a.fn=_n,a.min=function(){var e=[].slice.call(arguments,0);return St("isBefore",e)},a.max=function(){var e=[].slice.call(arguments,0);return St("isAfter",e)},a.now=function(){return Date.now?Date.now():+new Date},a.utc=m,a.unix=function(e){return zt(1e3*e)},a.months=function(e,t){return vn(e,t,"months")},a.isDate=d,a.locale=ot,a.invalid=_,a.duration=Ht,a.isMoment=L,a.weekdays=function(e,t,n){return Ln(e,t,n,"weekdays")},a.parseZone=function(){return zt.apply(null,arguments).parseZone()},a.localeData=ct,a.isDuration=Yt,a.monthsShort=function(e,t){return vn(e,t,"monthsShort")},a.weekdaysMin=function(e,t,n){return Ln(e,t,n,"weekdaysMin")},a.defineLocale=st,a.updateLocale=function(e,t){if(null!=t){var n,r,a=et;null!=tt[e]&&null!=tt[e].parentLocale?tt[e].set(S(tt[e]._config,t)):(null!=(r=it(e))&&(a=r._config),t=S(a,t),null==r&&(t.abbr=e),(n=new D(t)).parentLocale=tt[e],tt[e]=n),ot(e)}else null!=tt[e]&&(null!=tt[e].parentLocale?(tt[e]=tt[e].parentLocale,e===ot()&&ot(e)):null!=tt[e]&&delete tt[e]);return tt[e]},a.locales=function(){return w(tt)},a.weekdaysShort=function(e,t,n){return Ln(e,t,n,"weekdaysShort")},a.normalizeUnits=B,a.relativeTimeRounding=function(e){return void 0===e?Un:"function"==typeof e&&(Un=e,!0)},a.relativeTimeThreshold=function(e,t){return void 0!==Vn[e]&&(void 0===t?Vn[e]:(Vn[e]=t,"s"===e&&(Vn.ss=t-1),!0))},a.calendarFormat=function(e,t){var n=e.diff(t,"days",!0);return n<-6?"sameElse":n<-1?"lastWeek":n<0?"lastDay":n<1?"sameDay":n<2?"nextDay":n<7?"nextWeek":"sameElse"},a.prototype=_n,a.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},a}()}).call(this,n(160)(e))},function(e,t,n){"use strict";(function(e){n.d(t,"e",(function(){return r})),n.d(t,"p",(function(){return a})),n.d(t,"a",(function(){return i})),n.d(t,"c",(function(){return o})),n.d(t,"d",(function(){return s})),n.d(t,"o",(function(){return c})),n.d(t,"q",(function(){return u})),n.d(t,"t",(function(){return l})),n.d(t,"i",(function(){return d})),n.d(t,"r",(function(){return f})),n.d(t,"s",(function(){return p})),n.d(t,"k",(function(){return m})),n.d(t,"m",(function(){return h})),n.d(t,"j",(function(){return M})),n.d(t,"l",(function(){return _})),n.d(t,"g",(function(){return b})),n.d(t,"f",(function(){return y})),n.d(t,"h",(function(){return g})),n.d(t,"n",(function(){return v})),n.d(t,"b",(function(){return L}));var r="1.12.0",a="object"==typeof self&&self.self===self&&self||"object"==typeof e&&e.global===e&&e||Function("return this")()||{},i=Array.prototype,o=Object.prototype,s="undefined"!=typeof Symbol?Symbol.prototype:null,c=i.push,u=i.slice,l=o.toString,d=o.hasOwnProperty,f="undefined"!=typeof ArrayBuffer,p="undefined"!=typeof DataView,m=Array.isArray,h=Object.keys,M=Object.create,_=f&&ArrayBuffer.isView,b=isNaN,y=isFinite,g=!{toString:null}.propertyIsEnumerable("toString"),v=["valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],L=Math.pow(2,53)-1}).call(this,n(10))},function(e,t,n){var r; +/*! + Copyright (c) 2018 Jed Watson. + Licensed under the MIT License (MIT), see + http://jedwatson.github.io/classnames +*/!function(){"use strict";var n={}.hasOwnProperty;function a(){for(var e=[],t=0;t1?r.rejectWith(this,[gettext("Multiple teams returned for course")]):0===e.count?r.resolveWith(this,[null]):r.resolveWith(this,[e.results[0]])})).fail((function(){r.rejectWith(this,[gettext("Could not load teams information.")])}))})).promise()}},{key:"getUsername",value:function(){var e=this.url("get_student_username");return $.Deferred((function(t){$.ajax({type:"POST",url:e,data:JSON.stringify({}),contentType:a}).done((function(e){null===e.username?t.rejectWith(this,[gettext("User lookup failed")]):t.resolveWith(this,[e.username])})).fail((function(){t.rejectWith(this,[gettext("Error when looking up username")])}))}))}},{key:"cloneRubric",value:function(e){var t=this.url("get_rubric"),n={target_rubric_block_id:String(e)};return $.Deferred((function(e){$.ajax({type:"POST",url:t,data:JSON.stringify(n),contentType:a}).done((function(t){t.success?e.resolveWith(this,[t.rubric]):e.rejectWith(this,[t.msg])})).fail((function(){e.rejectWith(this,[gettext("Failed to clone rubric")])}))}))}}])&&r(t.prototype,n),i&&r(t,i),e}();t.a=i},function(e,t,n){e.exports=n(173)},function(e,t,n){var r;"undefined"!=typeof self&&self,e.exports=(r=n(0),function(e){function t(r){if(n[r])return n[r].exports;var a=n[r]={i:r,l:!1,exports:{}};return e[r].call(a.exports,a,a.exports,t),a.l=!0,a.exports}var n={};return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=5)}([function(e,t,n){var r=n(1);e.exports=n(8)(r.isElement,!0)},function(e,t,n){"use strict";e.exports=n(7)},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,n){"use strict";function r(e){return"-"+e.toLowerCase()}var a=/[A-Z]/g,i=/^ms-/,o={};t.a=function(e){if(o.hasOwnProperty(e))return o[e];var t=e.replace(a,r);return o[e]=i.test(t)?"-"+t:t}},function(e,t,n){"use strict";function r(e){for(var t=1;t1?t-1:0),r=1;r2?n-2:0),a=2;a1?"Invalid arguments supplied to oneOf, expected an array, got "+arguments.length+" arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).":"Invalid argument supplied to oneOf, expected an array."),r)},oneOfType:function(e){if(!Array.isArray(e))return a("Invalid argument supplied to oneOfType, expected an instance of array."),r;for(var t=0;t=s;case"max":return c<=s;default:return c===s}}));return s&&!n||!s&&n}))},t.parse=r;var s=/(?:(only|not)?\s*([^\s\(\)]+)(?:\s*and)?\s*)?(.+)?/i,c=/\(\s*([^\s\:\)]+)\s*(?:\:\s*([^\s\)]+))?\s*\)/,u=/^(?:(min|max)-)?(.+)/,l=/(em|rem|px|cm|mm|in|pt|pc)?$/,d=/(dpi|dpcm|dppx)?$/},function(e,t,n){"use strict";var r=n(3),a=n(4),i=function(e){return"not ".concat(e)};t.a=function(e){var t=[];return Object.keys(a.a.all).forEach((function(n){var a=e[n];null!=a&&t.push(function(e,t){var n=Object(r.a)(e);return"number"==typeof t&&(t="".concat(t,"px")),!0===t?e:!1===t?i(e):"(".concat(n,": ").concat(t,")")}(n,a))})),t.join(" and ")}}]))},function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){"use strict";n.r(t),n.d(t,"default",(function(){return vn})),n.d(t,"VERSION",(function(){return a.e})),n.d(t,"restArguments",(function(){return i})),n.d(t,"isObject",(function(){return o})),n.d(t,"isNull",(function(){return s})),n.d(t,"isUndefined",(function(){return c})),n.d(t,"isBoolean",(function(){return u})),n.d(t,"isElement",(function(){return l})),n.d(t,"isString",(function(){return f})),n.d(t,"isNumber",(function(){return p})),n.d(t,"isDate",(function(){return m})),n.d(t,"isRegExp",(function(){return h})),n.d(t,"isError",(function(){return M})),n.d(t,"isSymbol",(function(){return _})),n.d(t,"isArrayBuffer",(function(){return b})),n.d(t,"isDataView",(function(){return z})),n.d(t,"isArray",(function(){return k})),n.d(t,"isFunction",(function(){return v})),n.d(t,"isArguments",(function(){return D})),n.d(t,"isFinite",(function(){return N})),n.d(t,"isNaN",(function(){return Y})),n.d(t,"isTypedArray",(function(){return P})),n.d(t,"isEmpty",(function(){return X})),n.d(t,"isMatch",(function(){return F})),n.d(t,"isEqual",(function(){return $})),n.d(t,"isMap",(function(){return re})),n.d(t,"isWeakMap",(function(){return ae})),n.d(t,"isSet",(function(){return ie})),n.d(t,"isWeakSet",(function(){return oe})),n.d(t,"keys",(function(){return H})),n.d(t,"allKeys",(function(){return G})),n.d(t,"values",(function(){return se})),n.d(t,"pairs",(function(){return ce})),n.d(t,"invert",(function(){return ue})),n.d(t,"functions",(function(){return le})),n.d(t,"methods",(function(){return le})),n.d(t,"extend",(function(){return fe})),n.d(t,"extendOwn",(function(){return pe})),n.d(t,"assign",(function(){return pe})),n.d(t,"defaults",(function(){return me})),n.d(t,"create",(function(){return Me})),n.d(t,"clone",(function(){return _e})),n.d(t,"tap",(function(){return be})),n.d(t,"get",(function(){return Le})),n.d(t,"has",(function(){return Ae})),n.d(t,"mapObject",(function(){return Ne})),n.d(t,"identity",(function(){return Te})),n.d(t,"constant",(function(){return E})),n.d(t,"noop",(function(){return Ye})),n.d(t,"toPath",(function(){return ye})),n.d(t,"property",(function(){return ze})),n.d(t,"propertyOf",(function(){return Ee})),n.d(t,"matcher",(function(){return we})),n.d(t,"matches",(function(){return we})),n.d(t,"times",(function(){return xe})),n.d(t,"random",(function(){return Ce})),n.d(t,"now",(function(){return We})),n.d(t,"escape",(function(){return Pe})),n.d(t,"unescape",(function(){return je})),n.d(t,"templateSettings",(function(){return Be})),n.d(t,"template",(function(){return Ue})),n.d(t,"result",(function(){return Ve})),n.d(t,"uniqueId",(function(){return Ge})),n.d(t,"chain",(function(){return Je})),n.d(t,"iteratee",(function(){return Se})),n.d(t,"partial",(function(){return Ze})),n.d(t,"bind",(function(){return et})),n.d(t,"bindAll",(function(){return rt})),n.d(t,"memoize",(function(){return at})),n.d(t,"delay",(function(){return it})),n.d(t,"defer",(function(){return ot})),n.d(t,"throttle",(function(){return st})),n.d(t,"debounce",(function(){return ct})),n.d(t,"wrap",(function(){return ut})),n.d(t,"negate",(function(){return lt})),n.d(t,"compose",(function(){return dt})),n.d(t,"after",(function(){return ft})),n.d(t,"before",(function(){return pt})),n.d(t,"once",(function(){return mt})),n.d(t,"findKey",(function(){return ht})),n.d(t,"findIndex",(function(){return _t})),n.d(t,"findLastIndex",(function(){return bt})),n.d(t,"sortedIndex",(function(){return yt})),n.d(t,"indexOf",(function(){return vt})),n.d(t,"lastIndexOf",(function(){return Lt})),n.d(t,"find",(function(){return At})),n.d(t,"detect",(function(){return At})),n.d(t,"findWhere",(function(){return Tt})),n.d(t,"each",(function(){return wt})),n.d(t,"forEach",(function(){return wt})),n.d(t,"map",(function(){return zt})),n.d(t,"collect",(function(){return zt})),n.d(t,"reduce",(function(){return Ot})),n.d(t,"foldl",(function(){return Ot})),n.d(t,"inject",(function(){return Ot})),n.d(t,"reduceRight",(function(){return St})),n.d(t,"foldr",(function(){return St})),n.d(t,"filter",(function(){return Dt})),n.d(t,"select",(function(){return Dt})),n.d(t,"reject",(function(){return Nt})),n.d(t,"every",(function(){return Yt})),n.d(t,"all",(function(){return Yt})),n.d(t,"some",(function(){return Et})),n.d(t,"any",(function(){return Et})),n.d(t,"contains",(function(){return xt})),n.d(t,"includes",(function(){return xt})),n.d(t,"include",(function(){return xt})),n.d(t,"invoke",(function(){return Ct})),n.d(t,"pluck",(function(){return Wt})),n.d(t,"where",(function(){return qt})),n.d(t,"max",(function(){return Rt})),n.d(t,"min",(function(){return Pt})),n.d(t,"shuffle",(function(){return Bt})),n.d(t,"sample",(function(){return jt})),n.d(t,"sortBy",(function(){return Ht})),n.d(t,"groupBy",(function(){return Ft})),n.d(t,"indexBy",(function(){return It})),n.d(t,"countBy",(function(){return Ut})),n.d(t,"partition",(function(){return Vt})),n.d(t,"toArray",(function(){return Gt})),n.d(t,"size",(function(){return Jt})),n.d(t,"pick",(function(){return Qt})),n.d(t,"omit",(function(){return Zt})),n.d(t,"first",(function(){return tn})),n.d(t,"head",(function(){return tn})),n.d(t,"take",(function(){return tn})),n.d(t,"initial",(function(){return en})),n.d(t,"last",(function(){return rn})),n.d(t,"rest",(function(){return nn})),n.d(t,"tail",(function(){return nn})),n.d(t,"drop",(function(){return nn})),n.d(t,"compact",(function(){return an})),n.d(t,"flatten",(function(){return on})),n.d(t,"without",(function(){return cn})),n.d(t,"uniq",(function(){return un})),n.d(t,"unique",(function(){return un})),n.d(t,"union",(function(){return ln})),n.d(t,"intersection",(function(){return dn})),n.d(t,"difference",(function(){return sn})),n.d(t,"unzip",(function(){return fn})),n.d(t,"transpose",(function(){return fn})),n.d(t,"zip",(function(){return pn})),n.d(t,"object",(function(){return mn})),n.d(t,"range",(function(){return hn})),n.d(t,"chunk",(function(){return Mn})),n.d(t,"mixin",(function(){return bn}));var r={};n.r(r),n.d(r,"VERSION",(function(){return a.e})),n.d(r,"restArguments",(function(){return i})),n.d(r,"isObject",(function(){return o})),n.d(r,"isNull",(function(){return s})),n.d(r,"isUndefined",(function(){return c})),n.d(r,"isBoolean",(function(){return u})),n.d(r,"isElement",(function(){return l})),n.d(r,"isString",(function(){return f})),n.d(r,"isNumber",(function(){return p})),n.d(r,"isDate",(function(){return m})),n.d(r,"isRegExp",(function(){return h})),n.d(r,"isError",(function(){return M})),n.d(r,"isSymbol",(function(){return _})),n.d(r,"isArrayBuffer",(function(){return b})),n.d(r,"isDataView",(function(){return z})),n.d(r,"isArray",(function(){return k})),n.d(r,"isFunction",(function(){return v})),n.d(r,"isArguments",(function(){return D})),n.d(r,"isFinite",(function(){return N})),n.d(r,"isNaN",(function(){return Y})),n.d(r,"isTypedArray",(function(){return P})),n.d(r,"isEmpty",(function(){return X})),n.d(r,"isMatch",(function(){return F})),n.d(r,"isEqual",(function(){return $})),n.d(r,"isMap",(function(){return re})),n.d(r,"isWeakMap",(function(){return ae})),n.d(r,"isSet",(function(){return ie})),n.d(r,"isWeakSet",(function(){return oe})),n.d(r,"keys",(function(){return H})),n.d(r,"allKeys",(function(){return G})),n.d(r,"values",(function(){return se})),n.d(r,"pairs",(function(){return ce})),n.d(r,"invert",(function(){return ue})),n.d(r,"functions",(function(){return le})),n.d(r,"methods",(function(){return le})),n.d(r,"extend",(function(){return fe})),n.d(r,"extendOwn",(function(){return pe})),n.d(r,"assign",(function(){return pe})),n.d(r,"defaults",(function(){return me})),n.d(r,"create",(function(){return Me})),n.d(r,"clone",(function(){return _e})),n.d(r,"tap",(function(){return be})),n.d(r,"get",(function(){return Le})),n.d(r,"has",(function(){return Ae})),n.d(r,"mapObject",(function(){return Ne})),n.d(r,"identity",(function(){return Te})),n.d(r,"constant",(function(){return E})),n.d(r,"noop",(function(){return Ye})),n.d(r,"toPath",(function(){return ye})),n.d(r,"property",(function(){return ze})),n.d(r,"propertyOf",(function(){return Ee})),n.d(r,"matcher",(function(){return we})),n.d(r,"matches",(function(){return we})),n.d(r,"times",(function(){return xe})),n.d(r,"random",(function(){return Ce})),n.d(r,"now",(function(){return We})),n.d(r,"escape",(function(){return Pe})),n.d(r,"unescape",(function(){return je})),n.d(r,"templateSettings",(function(){return Be})),n.d(r,"template",(function(){return Ue})),n.d(r,"result",(function(){return Ve})),n.d(r,"uniqueId",(function(){return Ge})),n.d(r,"chain",(function(){return Je})),n.d(r,"iteratee",(function(){return Se})),n.d(r,"partial",(function(){return Ze})),n.d(r,"bind",(function(){return et})),n.d(r,"bindAll",(function(){return rt})),n.d(r,"memoize",(function(){return at})),n.d(r,"delay",(function(){return it})),n.d(r,"defer",(function(){return ot})),n.d(r,"throttle",(function(){return st})),n.d(r,"debounce",(function(){return ct})),n.d(r,"wrap",(function(){return ut})),n.d(r,"negate",(function(){return lt})),n.d(r,"compose",(function(){return dt})),n.d(r,"after",(function(){return ft})),n.d(r,"before",(function(){return pt})),n.d(r,"once",(function(){return mt})),n.d(r,"findKey",(function(){return ht})),n.d(r,"findIndex",(function(){return _t})),n.d(r,"findLastIndex",(function(){return bt})),n.d(r,"sortedIndex",(function(){return yt})),n.d(r,"indexOf",(function(){return vt})),n.d(r,"lastIndexOf",(function(){return Lt})),n.d(r,"find",(function(){return At})),n.d(r,"detect",(function(){return At})),n.d(r,"findWhere",(function(){return Tt})),n.d(r,"each",(function(){return wt})),n.d(r,"forEach",(function(){return wt})),n.d(r,"map",(function(){return zt})),n.d(r,"collect",(function(){return zt})),n.d(r,"reduce",(function(){return Ot})),n.d(r,"foldl",(function(){return Ot})),n.d(r,"inject",(function(){return Ot})),n.d(r,"reduceRight",(function(){return St})),n.d(r,"foldr",(function(){return St})),n.d(r,"filter",(function(){return Dt})),n.d(r,"select",(function(){return Dt})),n.d(r,"reject",(function(){return Nt})),n.d(r,"every",(function(){return Yt})),n.d(r,"all",(function(){return Yt})),n.d(r,"some",(function(){return Et})),n.d(r,"any",(function(){return Et})),n.d(r,"contains",(function(){return xt})),n.d(r,"includes",(function(){return xt})),n.d(r,"include",(function(){return xt})),n.d(r,"invoke",(function(){return Ct})),n.d(r,"pluck",(function(){return Wt})),n.d(r,"where",(function(){return qt})),n.d(r,"max",(function(){return Rt})),n.d(r,"min",(function(){return Pt})),n.d(r,"shuffle",(function(){return Bt})),n.d(r,"sample",(function(){return jt})),n.d(r,"sortBy",(function(){return Ht})),n.d(r,"groupBy",(function(){return Ft})),n.d(r,"indexBy",(function(){return It})),n.d(r,"countBy",(function(){return Ut})),n.d(r,"partition",(function(){return Vt})),n.d(r,"toArray",(function(){return Gt})),n.d(r,"size",(function(){return Jt})),n.d(r,"pick",(function(){return Qt})),n.d(r,"omit",(function(){return Zt})),n.d(r,"first",(function(){return tn})),n.d(r,"head",(function(){return tn})),n.d(r,"take",(function(){return tn})),n.d(r,"initial",(function(){return en})),n.d(r,"last",(function(){return rn})),n.d(r,"rest",(function(){return nn})),n.d(r,"tail",(function(){return nn})),n.d(r,"drop",(function(){return nn})),n.d(r,"compact",(function(){return an})),n.d(r,"flatten",(function(){return on})),n.d(r,"without",(function(){return cn})),n.d(r,"uniq",(function(){return un})),n.d(r,"unique",(function(){return un})),n.d(r,"union",(function(){return ln})),n.d(r,"intersection",(function(){return dn})),n.d(r,"difference",(function(){return sn})),n.d(r,"unzip",(function(){return fn})),n.d(r,"transpose",(function(){return fn})),n.d(r,"zip",(function(){return pn})),n.d(r,"object",(function(){return mn})),n.d(r,"range",(function(){return hn})),n.d(r,"chunk",(function(){return Mn})),n.d(r,"mixin",(function(){return bn})),n.d(r,"default",(function(){return yn}));var a=n(3);function i(e,t){return t=null==t?e.length-1:+t,function(){for(var n=Math.max(arguments.length-t,0),r=Array(n),a=0;a=0&&n<=a.b}}function C(e){return function(t){return null==t?void 0:t[e]}}var W=C("byteLength"),q=x(W),R=/\[object ((I|Ui)nt(8|16|32)|Float(32|64)|Uint8Clamped|Big(I|Ui)nt64)Array\]/;var P=a.r?function(e){return a.l?Object(a.l)(e)&&!z(e):q(e)&&R.test(a.t.call(e))}:E(!1),j=C("length");function B(e,t){t=function(e){for(var t={},n=e.length,r=0;r":">",'"':""","'":"'","`":"`"},Pe=qe(Re),je=qe(ue(Re)),Be=I.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g},He=/(.)^/,Xe={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},Fe=/\\|'|\r|\n|\u2028|\u2029/g;function Ie(e){return"\\"+Xe[e]}function Ue(e,t,n){!t&&n&&(t=n),t=me({},t,I.templateSettings);var r,a=RegExp([(t.escape||He).source,(t.interpolate||He).source,(t.evaluate||He).source].join("|")+"|$","g"),i=0,o="__p+='";e.replace(a,(function(t,n,r,a,s){return o+=e.slice(i,s).replace(Fe,Ie),i=s+t.length,n?o+="'+\n((__t=("+n+"))==null?'':_.escape(__t))+\n'":r?o+="'+\n((__t=("+r+"))==null?'':__t)+\n'":a&&(o+="';\n"+a+"\n__p+='"),t})),o+="';\n",t.variable||(o="with(obj||{}){\n"+o+"}\n"),o="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+o+"return __p;\n";try{r=new Function(t.variable||"obj","_",o)}catch(e){throw e.source=o,e}var s=function(e){return r.call(this,e,I)},c=t.variable||"obj";return s.source="function("+c+"){\n"+o+"}",s}function Ve(e,t,n){var r=(t=ge(t)).length;if(!r)return v(n)?n.call(e):n;for(var a=0;a1)nt(s,t-1,n,r),a=r.length;else for(var c=0,u=s.length;ct?(r&&(clearTimeout(r),r=null),s=u,o=e.apply(a,i),r||(a=i=null)):r||!1===n.trailing||(r=setTimeout(c,l)),o};return u.cancel=function(){clearTimeout(r),s=0,r=a=i=null},u}function ct(e,t,n){var r,a,o=function(t,n){r=null,n&&(a=e.apply(t,n))},s=i((function(i){if(r&&clearTimeout(r),n){var s=!r;r=setTimeout(o,t),s&&(a=e.apply(this,i))}else r=it(o,t,this,i);return a}));return s.cancel=function(){clearTimeout(r),r=null},s}function ut(e,t){return Ze(t,e)}function lt(e){return function(){return!e.apply(this,arguments)}}function dt(){var e=arguments,t=e.length-1;return function(){for(var n=t,r=e[t].apply(this,arguments);n--;)r=e[n].call(this,r);return r}}function ft(e,t){return function(){if(--e<1)return t.apply(this,arguments)}}function pt(e,t){var n;return function(){return--e>0&&(n=t.apply(this,arguments)),e<=1&&(t=null),n}}var mt=Ze(pt,2);function ht(e,t,n){t=De(t,n);for(var r,a=H(e),i=0,o=a.length;i0?0:a-1;i>=0&&i0?s=o>=0?o:Math.max(o+c,s):c=o>=0?Math.min(o+1,c):o+c+1;else if(n&&o&&c)return r[o=n(r,i)]===i?o:-1;if(i!=i)return(o=t(a.q.call(r,s,c),Y))>=0?o+s:-1;for(o=e>0?s:c-1;o>=0&&o0?0:o-1;for(a||(r=t[i?i[s]:s],s+=e);s>=0&&s=3;return t(e,ke(n,a,4),r,i)}}var Ot=kt(1),St=kt(-1);function Dt(e,t,n){var r=[];return t=De(t,n),wt(e,(function(e,n,a){t(e,n,a)&&r.push(e)})),r}function Nt(e,t,n){return Dt(e,lt(De(t)),n)}function Yt(e,t,n){t=De(t,n);for(var r=!tt(e)&&H(e),a=(r||e).length,i=0;i=0}var Ct=i((function(e,t,n){var r,a;return v(t)?a=t:(t=ge(t),r=t.slice(0,-1),t=t[t.length-1]),zt(e,(function(e){var i=a;if(!i){if(r&&r.length&&(e=ve(e,r)),null==e)return;i=e[t]}return null==i?i:i.apply(e,n)}))}));function Wt(e,t){return zt(e,ze(t))}function qt(e,t){return Dt(e,we(t))}function Rt(e,t,n){var r,a,i=-1/0,o=-1/0;if(null==t||"number"==typeof t&&"object"!=typeof e[0]&&null!=e)for(var s=0,c=(e=tt(e)?e:se(e)).length;si&&(i=r);else t=De(t,n),wt(e,(function(e,n,r){((a=t(e,n,r))>o||a===-1/0&&i===-1/0)&&(i=e,o=a)}));return i}function Pt(e,t,n){var r,a,i=1/0,o=1/0;if(null==t||"number"==typeof t&&"object"!=typeof e[0]&&null!=e)for(var s=0,c=(e=tt(e)?e:se(e)).length;sr||void 0===n)return 1;if(n1&&(r=ke(r,t[1])),t=G(e)):(r=Kt,t=nt(t,!1,!1),e=Object(e));for(var a=0,i=t.length;a1&&(n=t[1])):(t=zt(nt(t,!1,!1),String),r=function(e,n){return!xt(t,n)}),Qt(e,r,n)}));function en(e,t,n){return a.q.call(e,0,Math.max(0,e.length-(null==t||n?1:t)))}function tn(e,t,n){return null==e||e.length<1?null==t||n?void 0:[]:null==t||n?e[0]:en(e,e.length-t)}function nn(e,t,n){return a.q.call(e,null==t||n?1:t)}function rn(e,t,n){return null==e||e.length<1?null==t||n?void 0:[]:null==t||n?e[e.length-1]:nn(e,Math.max(0,e.length-t))}function an(e){return Dt(e,Boolean)}function on(e,t){return nt(e,t,!1)}var sn=i((function(e,t){return t=nt(t,!0,!0),Dt(e,(function(e){return!xt(t,e)}))})),cn=i((function(e,t){return sn(e,t)}));function un(e,t,n,r){u(t)||(r=n,n=t,t=!1),null!=n&&(n=De(n,r));for(var a=[],i=[],o=0,s=j(e);o7),this._useHashChange=this._wantsHashChange&&this._hasHashChange,this._wantsPushState=!!this.options.pushState,this._hasPushState=!(!this.history||!this.history.pushState),this._usePushState=this._wantsPushState&&this._hasPushState,this.fragment=this.getFragment(),this.root=("/"+this.root+"/").replace(x,"/"),this._wantsHashChange&&this._wantsPushState){if(!this._hasPushState&&!this.atRoot()){var t=this.root.slice(0,-1)||"/";return this.location.replace(t+"#"+this.getPath()),!0}this._hasPushState&&this.atRoot()&&this.navigate(this.getHash(),{replace:!0})}if(!this._hasHashChange&&this._wantsHashChange&&!this._usePushState){this.iframe=document.createElement("iframe"),this.iframe.src="javascript:0",this.iframe.style.display="none",this.iframe.tabIndex=-1;var r=document.body,a=r.insertBefore(this.iframe,r.firstChild).contentWindow;a.document.open(),a.document.close(),a.location.hash="#"+this.fragment}var i=window.addEventListener||function(e,t){return attachEvent("on"+e,t)};if(this._usePushState?i("popstate",this.checkUrl,!1):this._useHashChange&&!this.iframe?i("hashchange",this.checkUrl,!1):this._wantsHashChange&&(this._checkUrlInterval=setInterval(this.checkUrl,this.interval)),!this.options.silent)return this.loadUrl()},stop:function(){var e=window.removeEventListener||function(e,t){return detachEvent("on"+e,t)};this._usePushState?e("popstate",this.checkUrl,!1):this._useHashChange&&!this.iframe&&e("hashchange",this.checkUrl,!1),this.iframe&&(document.body.removeChild(this.iframe),this.iframe=null),this._checkUrlInterval&&clearInterval(this._checkUrlInterval),Y.started=!1},route:function(e,t){this.handlers.unshift({route:e,callback:t})},checkUrl:function(e){var t=this.getFragment();if(t===this.fragment&&this.iframe&&(t=this.getHash(this.iframe.contentWindow)),t===this.fragment)return!1;this.iframe&&this.navigate(t),this.loadUrl()},loadUrl:function(e){return!!this.matchRoot()&&(e=this.fragment=this.getFragment(e),n.some(this.handlers,(function(t){if(t.route.test(e))return t.callback(e),!0})))},navigate:function(e,t){if(!Y.started)return!1;t&&!0!==t||(t={trigger:!!t}),e=this.getFragment(e||"");var n=this.root;""!==e&&"?"!==e.charAt(0)||(n=n.slice(0,-1)||"/");var r=n+e;if(e=this.decodeFragment(e.replace(C,"")),this.fragment!==e){if(this.fragment=e,this._usePushState)this.history[t.replace?"replaceState":"pushState"]({},document.title,r);else{if(!this._wantsHashChange)return this.location.assign(r);if(this._updateHash(this.location,e,t.replace),this.iframe&&e!==this.getHash(this.iframe.contentWindow)){var a=this.iframe.contentWindow;t.replace||(a.document.open(),a.document.close()),this._updateHash(a.location,e,t.replace)}}return t.trigger?this.loadUrl(e):void 0}},_updateHash:function(e,t,n){if(n){var r=e.href.replace(/(javascript:|#).*$/,"");e.replace(r+"#"+t)}else e.hash="#"+t}}),t.history=new Y,b.extend=y.extend=k.extend=A.extend=Y.extend=function(e,t){var r,a=this;r=e&&n.has(e,"constructor")?e.constructor:function(){return a.apply(this,arguments)},n.extend(r,a,t);var i=function(){this.constructor=r};return i.prototype=a.prototype,r.prototype=new i,e&&n.extend(r.prototype,e),r.__super__=a.prototype,r};var W=function(){throw new Error('A "url" property or function must be specified')},q=function(e,t){var n=t.error;t.error=function(r){n&&n.call(t.context,e,r,t),e.trigger("error",e,r,t)}};return t}(o,n,e,t)}.apply(t,a))||(e.exports=i)}).call(this,n(10))},function(e,t,n){var r,a,i; +/*! + * jQuery JavaScript Library v2.2.4 + * http://jquery.com/ + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * + * Copyright jQuery Foundation and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: 2016-05-20T17:23Z + */a="undefined"!=typeof window?window:this,i=function(n,a){var i=[],o=n.document,s=i.slice,c=i.concat,u=i.push,l=i.indexOf,d={},f=d.toString,p=d.hasOwnProperty,m={},h=function(e,t){return new h.fn.init(e,t)},M=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,_=/^-ms-/,b=/-([\da-z])/gi,y=function(e,t){return t.toUpperCase()};function g(e){var t=!!e&&"length"in e&&e.length,n=h.type(e);return"function"!==n&&!h.isWindow(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}h.fn=h.prototype={jquery:"2.2.4",constructor:h,selector:"",length:0,toArray:function(){return s.call(this)},get:function(e){return null!=e?e<0?this[e+this.length]:this[e]:s.call(this)},pushStack:function(e){var t=h.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e){return h.each(this,e)},map:function(e){return this.pushStack(h.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n=0},isPlainObject:function(e){var t;if("object"!==h.type(e)||e.nodeType||h.isWindow(e))return!1;if(e.constructor&&!p.call(e,"constructor")&&!p.call(e.constructor.prototype||{},"isPrototypeOf"))return!1;for(t in e);return void 0===t||p.call(e,t)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?d[f.call(e)]||"object":typeof e},globalEval:function(e){var t,n=eval;(e=h.trim(e))&&(1===e.indexOf("use strict")?((t=o.createElement("script")).text=e,o.head.appendChild(t).parentNode.removeChild(t)):n(e))},camelCase:function(e){return e.replace(_,"ms-").replace(b,y)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t){var n,r=0;if(g(e))for(n=e.length;r+~]|"+W+")"+W+"*"),F=new RegExp("="+W+"*([^\\]'\"]*?)"+W+"*\\]","g"),I=new RegExp(P),U=new RegExp("^"+q+"$"),V={ID:new RegExp("^#("+q+")"),CLASS:new RegExp("^\\.("+q+")"),TAG:new RegExp("^("+q+"|[*])"),ATTR:new RegExp("^"+R),PSEUDO:new RegExp("^"+P),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+W+"*(even|odd|(([+-]|)(\\d*)n|)"+W+"*(?:([+-]|)"+W+"*(\\d+)|))"+W+"*\\)|)","i"),bool:new RegExp("^(?:"+C+")$","i"),needsContext:new RegExp("^"+W+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+W+"*((?:-\\d)?\\d*)"+W+"*\\)|)(?=[^-]|$)","i")},$=/^(?:input|select|textarea|button)$/i,G=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,K=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,Q=/[+~]/,Z=/'|\\/g,ee=new RegExp("\\\\([\\da-f]{1,6}"+W+"?|("+W+")|.)","ig"),te=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},ne=function(){f()};try{Y.apply(S=E.call(v.childNodes),v.childNodes),S[v.childNodes.length].nodeType}catch(e){Y={apply:S.length?function(e,t){N.apply(e,E.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function re(e,t,r,a){var i,s,u,l,d,m,_,b,L=t&&t.ownerDocument,A=t?t.nodeType:9;if(r=r||[],"string"!=typeof e||!e||1!==A&&9!==A&&11!==A)return r;if(!a&&((t?t.ownerDocument||t:v)!==p&&f(t),t=t||p,h)){if(11!==A&&(m=K.exec(e)))if(i=m[1]){if(9===A){if(!(u=t.getElementById(i)))return r;if(u.id===i)return r.push(u),r}else if(L&&(u=L.getElementById(i))&&y(t,u)&&u.id===i)return r.push(u),r}else{if(m[2])return Y.apply(r,t.getElementsByTagName(e)),r;if((i=m[3])&&n.getElementsByClassName&&t.getElementsByClassName)return Y.apply(r,t.getElementsByClassName(i)),r}if(n.qsa&&!z[e+" "]&&(!M||!M.test(e))){if(1!==A)L=t,b=e;else if("object"!==t.nodeName.toLowerCase()){for((l=t.getAttribute("id"))?l=l.replace(Z,"\\$&"):t.setAttribute("id",l=g),s=(_=o(e)).length,d=U.test(l)?"#"+l:"[id='"+l+"']";s--;)_[s]=d+" "+me(_[s]);b=_.join(","),L=Q.test(e)&&fe(t.parentNode)||t}if(b)try{return Y.apply(r,L.querySelectorAll(b)),r}catch(e){}finally{l===g&&t.removeAttribute("id")}}}return c(e.replace(B,"$1"),t,r,a)}function ae(){var e=[];return function t(n,a){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=a}}function ie(e){return e[g]=!0,e}function oe(e){var t=p.createElement("div");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function se(e,t){for(var n=e.split("|"),a=n.length;a--;)r.attrHandle[n[a]]=t}function ce(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||1<<31)-(~e.sourceIndex||1<<31);if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function ue(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function le(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function de(e){return ie((function(t){return t=+t,ie((function(n,r){for(var a,i=e([],n.length,t),o=i.length;o--;)n[a=i[o]]&&(n[a]=!(r[a]=n[a]))}))}))}function fe(e){return e&&void 0!==e.getElementsByTagName&&e}for(t in n=re.support={},i=re.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},f=re.setDocument=function(e){var t,a,o=e?e.ownerDocument||e:v;return o!==p&&9===o.nodeType&&o.documentElement?(m=(p=o).documentElement,h=!i(p),(a=p.defaultView)&&a.top!==a&&(a.addEventListener?a.addEventListener("unload",ne,!1):a.attachEvent&&a.attachEvent("onunload",ne)),n.attributes=oe((function(e){return e.className="i",!e.getAttribute("className")})),n.getElementsByTagName=oe((function(e){return e.appendChild(p.createComment("")),!e.getElementsByTagName("*").length})),n.getElementsByClassName=J.test(p.getElementsByClassName),n.getById=oe((function(e){return m.appendChild(e).id=g,!p.getElementsByName||!p.getElementsByName(g).length})),n.getById?(r.find.ID=function(e,t){if(void 0!==t.getElementById&&h){var n=t.getElementById(e);return n?[n]:[]}},r.filter.ID=function(e){var t=e.replace(ee,te);return function(e){return e.getAttribute("id")===t}}):(delete r.find.ID,r.filter.ID=function(e){var t=e.replace(ee,te);return function(e){var n=void 0!==e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}}),r.find.TAG=n.getElementsByTagName?function(e,t){return void 0!==t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],a=0,i=t.getElementsByTagName(e);if("*"===e){for(;n=i[a++];)1===n.nodeType&&r.push(n);return r}return i},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(void 0!==t.getElementsByClassName&&h)return t.getElementsByClassName(e)},_=[],M=[],(n.qsa=J.test(p.querySelectorAll))&&(oe((function(e){m.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&M.push("[*^$]="+W+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||M.push("\\["+W+"*(?:value|"+C+")"),e.querySelectorAll("[id~="+g+"-]").length||M.push("~="),e.querySelectorAll(":checked").length||M.push(":checked"),e.querySelectorAll("a#"+g+"+*").length||M.push(".#.+[+~]")})),oe((function(e){var t=p.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&M.push("name"+W+"*[*^$|!~]?="),e.querySelectorAll(":enabled").length||M.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),M.push(",.*:")}))),(n.matchesSelector=J.test(b=m.matches||m.webkitMatchesSelector||m.mozMatchesSelector||m.oMatchesSelector||m.msMatchesSelector))&&oe((function(e){n.disconnectedMatch=b.call(e,"div"),b.call(e,"[s!='']:x"),_.push("!=",P)})),M=M.length&&new RegExp(M.join("|")),_=_.length&&new RegExp(_.join("|")),t=J.test(m.compareDocumentPosition),y=t||J.test(m.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},k=t?function(e,t){if(e===t)return d=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e===p||e.ownerDocument===v&&y(v,e)?-1:t===p||t.ownerDocument===v&&y(v,t)?1:l?x(l,e)-x(l,t):0:4&r?-1:1)}:function(e,t){if(e===t)return d=!0,0;var n,r=0,a=e.parentNode,i=t.parentNode,o=[e],s=[t];if(!a||!i)return e===p?-1:t===p?1:a?-1:i?1:l?x(l,e)-x(l,t):0;if(a===i)return ce(e,t);for(n=e;n=n.parentNode;)o.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;o[r]===s[r];)r++;return r?ce(o[r],s[r]):o[r]===v?-1:s[r]===v?1:0},p):p},re.matches=function(e,t){return re(e,null,null,t)},re.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&f(e),t=t.replace(F,"='$1']"),n.matchesSelector&&h&&!z[t+" "]&&(!_||!_.test(t))&&(!M||!M.test(t)))try{var r=b.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(e){}return re(t,p,null,[e]).length>0},re.contains=function(e,t){return(e.ownerDocument||e)!==p&&f(e),y(e,t)},re.attr=function(e,t){(e.ownerDocument||e)!==p&&f(e);var a=r.attrHandle[t.toLowerCase()],i=a&&O.call(r.attrHandle,t.toLowerCase())?a(e,t,!h):void 0;return void 0!==i?i:n.attributes||!h?e.getAttribute(t):(i=e.getAttributeNode(t))&&i.specified?i.value:null},re.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},re.uniqueSort=function(e){var t,r=[],a=0,i=0;if(d=!n.detectDuplicates,l=!n.sortStable&&e.slice(0),e.sort(k),d){for(;t=e[i++];)t===e[i]&&(a=r.push(i));for(;a--;)e.splice(r[a],1)}return l=null,e},a=re.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=a(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r++];)n+=a(t);return n},(r=re.selectors={cacheLength:50,createPseudo:ie,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(ee,te),e[3]=(e[3]||e[4]||e[5]||"").replace(ee,te),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||re.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&re.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return V.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&I.test(n)&&(t=o(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(ee,te).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=T[e+" "];return t||(t=new RegExp("(^|"+W+")"+e+"("+W+"|$)"))&&T(e,(function(e){return t.test("string"==typeof e.className&&e.className||void 0!==e.getAttribute&&e.getAttribute("class")||"")}))},ATTR:function(e,t,n){return function(r){var a=re.attr(r,e);return null==a?"!="===t:!t||(a+="","="===t?a===n:"!="===t?a!==n:"^="===t?n&&0===a.indexOf(n):"*="===t?n&&a.indexOf(n)>-1:"$="===t?n&&a.slice(-n.length)===n:"~="===t?(" "+a.replace(j," ")+" ").indexOf(n)>-1:"|="===t&&(a===n||a.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,a){var i="nth"!==e.slice(0,3),o="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===a?function(e){return!!e.parentNode}:function(t,n,c){var u,l,d,f,p,m,h=i!==o?"nextSibling":"previousSibling",M=t.parentNode,_=s&&t.nodeName.toLowerCase(),b=!c&&!s,y=!1;if(M){if(i){for(;h;){for(f=t;f=f[h];)if(s?f.nodeName.toLowerCase()===_:1===f.nodeType)return!1;m=h="only"===e&&!m&&"nextSibling"}return!0}if(m=[o?M.firstChild:M.lastChild],o&&b){for(y=(p=(u=(l=(d=(f=M)[g]||(f[g]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]||[])[0]===L&&u[1])&&u[2],f=p&&M.childNodes[p];f=++p&&f&&f[h]||(y=p=0)||m.pop();)if(1===f.nodeType&&++y&&f===t){l[e]=[L,p,y];break}}else if(b&&(y=p=(u=(l=(d=(f=t)[g]||(f[g]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]||[])[0]===L&&u[1]),!1===y)for(;(f=++p&&f&&f[h]||(y=p=0)||m.pop())&&((s?f.nodeName.toLowerCase()!==_:1!==f.nodeType)||!++y||(b&&((l=(d=f[g]||(f[g]={}))[f.uniqueID]||(d[f.uniqueID]={}))[e]=[L,y]),f!==t)););return(y-=a)===r||y%r==0&&y/r>=0}}},PSEUDO:function(e,t){var n,a=r.pseudos[e]||r.setFilters[e.toLowerCase()]||re.error("unsupported pseudo: "+e);return a[g]?a(t):a.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?ie((function(e,n){for(var r,i=a(e,t),o=i.length;o--;)e[r=x(e,i[o])]=!(n[r]=i[o])})):function(e){return a(e,0,n)}):a}},pseudos:{not:ie((function(e){var t=[],n=[],r=s(e.replace(B,"$1"));return r[g]?ie((function(e,t,n,a){for(var i,o=r(e,null,a,[]),s=e.length;s--;)(i=o[s])&&(e[s]=!(t[s]=i))})):function(e,a,i){return t[0]=e,r(t,null,i,n),t[0]=null,!n.pop()}})),has:ie((function(e){return function(t){return re(e,t).length>0}})),contains:ie((function(e){return e=e.replace(ee,te),function(t){return(t.textContent||t.innerText||a(t)).indexOf(e)>-1}})),lang:ie((function(e){return U.test(e||"")||re.error("unsupported lang: "+e),e=e.replace(ee,te).toLowerCase(),function(t){var n;do{if(n=h?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===m},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return!1===e.disabled},disabled:function(e){return!0===e.disabled},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return G.test(e.nodeName)},input:function(e){return $.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:de((function(){return[0]})),last:de((function(e,t){return[t-1]})),eq:de((function(e,t,n){return[n<0?n+t:n]})),even:de((function(e,t){for(var n=0;n=0;)e.push(r);return e})),gt:de((function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){for(var a=e.length;a--;)if(!e[a](t,n,r))return!1;return!0}:e[0]}function _e(e,t,n,r,a){for(var i,o=[],s=0,c=e.length,u=null!=t;s-1&&(i[u]=!(o[u]=d))}}else _=_e(_===o?_.splice(m,_.length):_),a?a(null,o,_,c):Y.apply(o,_)}))}function ye(e){for(var t,n,a,i=e.length,o=r.relative[e[0].type],s=o||r.relative[" "],c=o?1:0,l=he((function(e){return e===t}),s,!0),d=he((function(e){return x(t,e)>-1}),s,!0),f=[function(e,n,r){var a=!o&&(r||n!==u)||((t=n).nodeType?l(e,n,r):d(e,n,r));return t=null,a}];c1&&Me(f),c>1&&me(e.slice(0,c-1).concat({value:" "===e[c-2].type?"*":""})).replace(B,"$1"),n,c0,a=e.length>0,i=function(i,o,s,c,l){var d,m,M,_=0,b="0",y=i&&[],g=[],v=u,A=i||a&&r.find.TAG("*",l),T=L+=null==v?1:Math.random()||.1,w=A.length;for(l&&(u=o===p||o||l);b!==w&&null!=(d=A[b]);b++){if(a&&d){for(m=0,o||d.ownerDocument===p||(f(d),s=!h);M=e[m++];)if(M(d,o||p,s)){c.push(d);break}l&&(L=T)}n&&((d=!M&&d)&&_--,i&&y.push(d))}if(_+=b,n&&b!==_){for(m=0;M=t[m++];)M(y,g,o,s);if(i){if(_>0)for(;b--;)y[b]||g[b]||(g[b]=D.call(c));g=_e(g)}Y.apply(c,g),l&&!i&&g.length>0&&_+t.length>1&&re.uniqueSort(c)}return l&&(L=T,u=v),y};return n?ie(i):i}(i,a))).selector=e}return s},c=re.select=function(e,t,a,i){var c,u,l,d,f,p="function"==typeof e&&e,m=!i&&o(e=p.selector||e);if(a=a||[],1===m.length){if((u=m[0]=m[0].slice(0)).length>2&&"ID"===(l=u[0]).type&&n.getById&&9===t.nodeType&&h&&r.relative[u[1].type]){if(!(t=(r.find.ID(l.matches[0].replace(ee,te),t)||[])[0]))return a;p&&(t=t.parentNode),e=e.slice(u.shift().value.length)}for(c=V.needsContext.test(e)?0:u.length;c--&&(l=u[c],!r.relative[d=l.type]);)if((f=r.find[d])&&(i=f(l.matches[0].replace(ee,te),Q.test(u[0].type)&&fe(t.parentNode)||t))){if(u.splice(c,1),!(e=i.length&&me(u)))return Y.apply(a,i),a;break}}return(p||s(e,m))(i,t,!h,a,!t||Q.test(e)&&fe(t.parentNode)||t),a},n.sortStable=g.split("").sort(k).join("")===g,n.detectDuplicates=!!d,f(),n.sortDetached=oe((function(e){return 1&e.compareDocumentPosition(p.createElement("div"))})),oe((function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")}))||se("type|href|height|width",(function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)})),n.attributes&&oe((function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")}))||se("value",(function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue})),oe((function(e){return null==e.getAttribute("disabled")}))||se(C,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),re}(n);h.find=v,h.expr=v.selectors,h.expr[":"]=h.expr.pseudos,h.uniqueSort=h.unique=v.uniqueSort,h.text=v.getText,h.isXMLDoc=v.isXML,h.contains=v.contains;var L=function(e,t,n){for(var r=[],a=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(a&&h(e).is(n))break;r.push(e)}return r},A=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},T=h.expr.match.needsContext,w=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,z=/^.[^:#\[\.,]*$/;function k(e,t,n){if(h.isFunction(t))return h.grep(e,(function(e,r){return!!t.call(e,r,e)!==n}));if(t.nodeType)return h.grep(e,(function(e){return e===t!==n}));if("string"==typeof t){if(z.test(t))return h.filter(t,e,n);t=h.filter(t,e)}return h.grep(e,(function(e){return l.call(t,e)>-1!==n}))}h.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?h.find.matchesSelector(r,e)?[r]:[]:h.find.matches(e,h.grep(t,(function(e){return 1===e.nodeType})))},h.fn.extend({find:function(e){var t,n=this.length,r=[],a=this;if("string"!=typeof e)return this.pushStack(h(e).filter((function(){for(t=0;t1?h.unique(r):r)).selector=this.selector?this.selector+" "+e:e,r},filter:function(e){return this.pushStack(k(this,e||[],!1))},not:function(e){return this.pushStack(k(this,e||[],!0))},is:function(e){return!!k(this,"string"==typeof e&&T.test(e)?h(e):e||[],!1).length}});var O,S=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/;(h.fn.init=function(e,t,n){var r,a;if(!e)return this;if(n=n||O,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:S.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof h?t[0]:t,h.merge(this,h.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:o,!0)),w.test(r[1])&&h.isPlainObject(t))for(r in t)h.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(a=o.getElementById(r[2]))&&a.parentNode&&(this.length=1,this[0]=a),this.context=o,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):h.isFunction(e)?void 0!==n.ready?n.ready(e):e(h):(void 0!==e.selector&&(this.selector=e.selector,this.context=e.context),h.makeArray(e,this))}).prototype=h.fn,O=h(o);var D=/^(?:parents|prev(?:Until|All))/,N={children:!0,contents:!0,next:!0,prev:!0};function Y(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}h.fn.extend({has:function(e){var t=h(e,this),n=t.length;return this.filter((function(){for(var e=0;e-1:1===n.nodeType&&h.find.matchesSelector(n,e))){i.push(n);break}return this.pushStack(i.length>1?h.uniqueSort(i):i)},index:function(e){return e?"string"==typeof e?l.call(h(e),this[0]):l.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(h.uniqueSort(h.merge(this.get(),h(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),h.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return L(e,"parentNode")},parentsUntil:function(e,t,n){return L(e,"parentNode",n)},next:function(e){return Y(e,"nextSibling")},prev:function(e){return Y(e,"previousSibling")},nextAll:function(e){return L(e,"nextSibling")},prevAll:function(e){return L(e,"previousSibling")},nextUntil:function(e,t,n){return L(e,"nextSibling",n)},prevUntil:function(e,t,n){return L(e,"previousSibling",n)},siblings:function(e){return A((e.parentNode||{}).firstChild,e)},children:function(e){return A(e.firstChild)},contents:function(e){return e.contentDocument||h.merge([],e.childNodes)}},(function(e,t){h.fn[e]=function(n,r){var a=h.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(a=h.filter(r,a)),this.length>1&&(N[e]||h.uniqueSort(a),D.test(e)&&a.reverse()),this.pushStack(a)}}));var E,x=/\S+/g;function C(){o.removeEventListener("DOMContentLoaded",C),n.removeEventListener("load",C),h.ready()}h.Callbacks=function(e){e="string"==typeof e?function(e){var t={};return h.each(e.match(x)||[],(function(e,n){t[n]=!0})),t}(e):h.extend({},e);var t,n,r,a,i=[],o=[],s=-1,c=function(){for(a=e.once,r=t=!0;o.length;s=-1)for(n=o.shift();++s-1;)i.splice(n,1),n<=s&&s--})),this},has:function(e){return e?h.inArray(e,i)>-1:i.length>0},empty:function(){return i&&(i=[]),this},disable:function(){return a=o=[],i=n="",this},disabled:function(){return!i},lock:function(){return a=o=[],n||(i=n=""),this},locked:function(){return!!a},fireWith:function(e,n){return a||(n=[e,(n=n||[]).slice?n.slice():n],o.push(n),t||c()),this},fire:function(){return u.fireWith(this,arguments),this},fired:function(){return!!r}};return u},h.extend({Deferred:function(e){var t=[["resolve","done",h.Callbacks("once memory"),"resolved"],["reject","fail",h.Callbacks("once memory"),"rejected"],["notify","progress",h.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return a.done(arguments).fail(arguments),this},then:function(){var e=arguments;return h.Deferred((function(n){h.each(t,(function(t,i){var o=h.isFunction(e[t])&&e[t];a[i[1]]((function(){var e=o&&o.apply(this,arguments);e&&h.isFunction(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[i[0]+"With"](this===r?n.promise():this,o?[e]:arguments)}))})),e=null})).promise()},promise:function(e){return null!=e?h.extend(e,r):r}},a={};return r.pipe=r.then,h.each(t,(function(e,i){var o=i[2],s=i[3];r[i[1]]=o.add,s&&o.add((function(){n=s}),t[1^e][2].disable,t[2][2].lock),a[i[0]]=function(){return a[i[0]+"With"](this===a?r:this,arguments),this},a[i[0]+"With"]=o.fireWith})),r.promise(a),e&&e.call(a,a),a},when:function(e){var t,n,r,a=0,i=s.call(arguments),o=i.length,c=1!==o||e&&h.isFunction(e.promise)?o:0,u=1===c?e:h.Deferred(),l=function(e,n,r){return function(a){n[e]=this,r[e]=arguments.length>1?s.call(arguments):a,r===t?u.notifyWith(n,r):--c||u.resolveWith(n,r)}};if(o>1)for(t=new Array(o),n=new Array(o),r=new Array(o);a0||(E.resolveWith(o,[h]),h.fn.triggerHandler&&(h(o).triggerHandler("ready"),h(o).off("ready"))))}}),h.ready.promise=function(e){return E||(E=h.Deferred(),"complete"===o.readyState||"loading"!==o.readyState&&!o.documentElement.doScroll?n.setTimeout(h.ready):(o.addEventListener("DOMContentLoaded",C),n.addEventListener("load",C))),E.promise(e)},h.ready.promise();var W=function(e,t,n,r,a,i,o){var s=0,c=e.length,u=null==n;if("object"===h.type(n))for(s in a=!0,n)W(e,t,s,n[s],!0,i,o);else if(void 0!==r&&(a=!0,h.isFunction(r)||(o=!0),u&&(o?(t.call(e,r),t=null):(u=t,t=function(e,t,n){return u.call(h(e),n)})),t))for(;s-1&&void 0!==n&&j.set(this,e,t)}))}),null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each((function(){j.remove(this,e)}))}}),h.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=P.get(e,t),n&&(!r||h.isArray(n)?r=P.access(e,t,h.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=h.queue(e,t),r=n.length,a=n.shift(),i=h._queueHooks(e,t);"inprogress"===a&&(a=n.shift(),r--),a&&("fx"===t&&n.unshift("inprogress"),delete i.stop,a.call(e,(function(){h.dequeue(e,t)}),i)),!r&&i&&i.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return P.get(e,n)||P.access(e,n,{empty:h.Callbacks("once memory").add((function(){P.remove(e,[t+"queue",n])}))})}}),h.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length",""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function Z(e,t){var n=void 0!==e.getElementsByTagName?e.getElementsByTagName(t||"*"):void 0!==e.querySelectorAll?e.querySelectorAll(t||"*"):[];return void 0===t||t&&h.nodeName(e,t)?h.merge([e],n):n}function ee(e,t){for(var n=0,r=e.length;n-1)a&&a.push(i);else if(u=h.contains(i.ownerDocument,i),o=Z(d.appendChild(i),"script"),u&&ee(o),n)for(l=0;i=o[l++];)K.test(i.type||"")&&n.push(i);return d}te=o.createDocumentFragment().appendChild(o.createElement("div")),(ne=o.createElement("input")).setAttribute("type","radio"),ne.setAttribute("checked","checked"),ne.setAttribute("name","t"),te.appendChild(ne),m.checkClone=te.cloneNode(!0).cloneNode(!0).lastChild.checked,te.innerHTML="",m.noCloneChecked=!!te.cloneNode(!0).lastChild.defaultValue;var ie=/^key/,oe=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,se=/^([^.]*)(?:\.(.+)|)/;function ce(){return!0}function ue(){return!1}function le(){try{return o.activeElement}catch(e){}}function de(e,t,n,r,a,i){var o,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)de(e,s,n,r,t[s],i);return e}if(null==r&&null==a?(a=n,r=n=void 0):null==a&&("string"==typeof n?(a=r,r=void 0):(a=r,r=n,n=void 0)),!1===a)a=ue;else if(!a)return e;return 1===i&&(o=a,(a=function(e){return h().off(e),o.apply(this,arguments)}).guid=o.guid||(o.guid=h.guid++)),e.each((function(){h.event.add(this,t,a,r,n)}))}h.event={global:{},add:function(e,t,n,r,a){var i,o,s,c,u,l,d,f,p,m,M,_=P.get(e);if(_)for(n.handler&&(n=(i=n).handler,a=i.selector),n.guid||(n.guid=h.guid++),(c=_.events)||(c=_.events={}),(o=_.handle)||(o=_.handle=function(t){return void 0!==h&&h.event.triggered!==t.type?h.event.dispatch.apply(e,arguments):void 0}),u=(t=(t||"").match(x)||[""]).length;u--;)p=M=(s=se.exec(t[u])||[])[1],m=(s[2]||"").split(".").sort(),p&&(d=h.event.special[p]||{},p=(a?d.delegateType:d.bindType)||p,d=h.event.special[p]||{},l=h.extend({type:p,origType:M,data:r,handler:n,guid:n.guid,selector:a,needsContext:a&&h.expr.match.needsContext.test(a),namespace:m.join(".")},i),(f=c[p])||((f=c[p]=[]).delegateCount=0,d.setup&&!1!==d.setup.call(e,r,m,o)||e.addEventListener&&e.addEventListener(p,o)),d.add&&(d.add.call(e,l),l.handler.guid||(l.handler.guid=n.guid)),a?f.splice(f.delegateCount++,0,l):f.push(l),h.event.global[p]=!0)},remove:function(e,t,n,r,a){var i,o,s,c,u,l,d,f,p,m,M,_=P.hasData(e)&&P.get(e);if(_&&(c=_.events)){for(u=(t=(t||"").match(x)||[""]).length;u--;)if(p=M=(s=se.exec(t[u])||[])[1],m=(s[2]||"").split(".").sort(),p){for(d=h.event.special[p]||{},f=c[p=(r?d.delegateType:d.bindType)||p]||[],s=s[2]&&new RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"),o=i=f.length;i--;)l=f[i],!a&&M!==l.origType||n&&n.guid!==l.guid||s&&!s.test(l.namespace)||r&&r!==l.selector&&("**"!==r||!l.selector)||(f.splice(i,1),l.selector&&f.delegateCount--,d.remove&&d.remove.call(e,l));o&&!f.length&&(d.teardown&&!1!==d.teardown.call(e,m,_.handle)||h.removeEvent(e,p,_.handle),delete c[p])}else for(p in c)h.event.remove(e,p+t[u],n,r,!0);h.isEmptyObject(c)&&P.remove(e,"handle events")}},dispatch:function(e){e=h.event.fix(e);var t,n,r,a,i,o=[],c=s.call(arguments),u=(P.get(this,"events")||{})[e.type]||[],l=h.event.special[e.type]||{};if(c[0]=e,e.delegateTarget=this,!l.preDispatch||!1!==l.preDispatch.call(this,e)){for(o=h.event.handlers.call(this,e,u),t=0;(a=o[t++])&&!e.isPropagationStopped();)for(e.currentTarget=a.elem,n=0;(i=a.handlers[n++])&&!e.isImmediatePropagationStopped();)e.rnamespace&&!e.rnamespace.test(i.namespace)||(e.handleObj=i,e.data=i.data,void 0!==(r=((h.event.special[i.origType]||{}).handle||i.handler).apply(a.elem,c))&&!1===(e.result=r)&&(e.preventDefault(),e.stopPropagation()));return l.postDispatch&&l.postDispatch.call(this,e),e.result}},handlers:function(e,t){var n,r,a,i,o=[],s=t.delegateCount,c=e.target;if(s&&c.nodeType&&("click"!==e.type||isNaN(e.button)||e.button<1))for(;c!==this;c=c.parentNode||this)if(1===c.nodeType&&(!0!==c.disabled||"click"!==e.type)){for(r=[],n=0;n-1:h.find(a,this,null,[c]).length),r[a]&&r.push(i);r.length&&o.push({elem:c,handlers:r})}return s]*)\/>/gi,pe=/\s*$/g;function _e(e,t){return h.nodeName(e,"table")&&h.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function be(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function ye(e){var t=he.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function ge(e,t){var n,r,a,i,o,s,c,u;if(1===t.nodeType){if(P.hasData(e)&&(i=P.access(e),o=P.set(t,i),u=i.events))for(a in delete o.handle,o.events={},u)for(n=0,r=u[a].length;n1&&"string"==typeof M&&!m.checkClone&&me.test(M))return e.each((function(a){var i=e.eq(a);_&&(t[0]=M.call(this,a,i.html())),ve(i,t,n,r)}));if(f&&(i=(a=ae(t,e[0].ownerDocument,!1,e,r)).firstChild,1===a.childNodes.length&&(a=i),i||r)){for(s=(o=h.map(Z(a,"script"),be)).length;d")},clone:function(e,t,n){var r,a,i,o,s,c,u,l=e.cloneNode(!0),d=h.contains(e.ownerDocument,e);if(!(m.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||h.isXMLDoc(e)))for(o=Z(l),r=0,a=(i=Z(e)).length;r0&&ee(o,!d&&Z(e,"script")),l},cleanData:function(e){for(var t,n,r,a=h.event.special,i=0;void 0!==(n=e[i]);i++)if(q(n)){if(t=n[P.expando]){if(t.events)for(r in t.events)a[r]?h.event.remove(n,r):h.removeEvent(n,r,t.handle);n[P.expando]=void 0}n[j.expando]&&(n[j.expando]=void 0)}}}),h.fn.extend({domManip:ve,detach:function(e){return Le(this,e,!0)},remove:function(e){return Le(this,e)},text:function(e){return W(this,(function(e){return void 0===e?h.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return ve(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||_e(this,e).appendChild(e)}))},prepend:function(){return ve(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=_e(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return ve(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return ve(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(h.cleanData(Z(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return h.clone(this,e,t)}))},html:function(e){return W(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!pe.test(e)&&!Q[(J.exec(e)||["",""])[1].toLowerCase()]){e=h.htmlPrefilter(e);try{for(;n")).appendTo(t.documentElement))[0].contentDocument).write(),t.close(),n=we(e,t),Ae.detach()),Te[e]=n),n}var ke=/^margin/,Oe=new RegExp("^("+F+")(?!px)[a-z%]+$","i"),Se=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=n),t.getComputedStyle(e)},De=function(e,t,n,r){var a,i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in a=n.apply(e,r||[]),t)e.style[i]=o[i];return a},Ne=o.documentElement;function Ye(e,t,n){var r,a,i,o,s=e.style;return""!==(o=(n=n||Se(e))?n.getPropertyValue(t)||n[t]:void 0)&&void 0!==o||h.contains(e.ownerDocument,e)||(o=h.style(e,t)),n&&!m.pixelMarginRight()&&Oe.test(o)&&ke.test(t)&&(r=s.width,a=s.minWidth,i=s.maxWidth,s.minWidth=s.maxWidth=s.width=o,o=n.width,s.width=r,s.minWidth=a,s.maxWidth=i),void 0!==o?o+"":o}function Ee(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){var e,t,r,a,i=o.createElement("div"),s=o.createElement("div");function c(){s.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%",s.innerHTML="",Ne.appendChild(i);var o=n.getComputedStyle(s);e="1%"!==o.top,a="2px"===o.marginLeft,t="4px"===o.width,s.style.marginRight="50%",r="4px"===o.marginRight,Ne.removeChild(i)}s.style&&(s.style.backgroundClip="content-box",s.cloneNode(!0).style.backgroundClip="",m.clearCloneStyle="content-box"===s.style.backgroundClip,i.style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",i.appendChild(s),h.extend(m,{pixelPosition:function(){return c(),e},boxSizingReliable:function(){return null==t&&c(),t},pixelMarginRight:function(){return null==t&&c(),r},reliableMarginLeft:function(){return null==t&&c(),a},reliableMarginRight:function(){var e,t=s.appendChild(o.createElement("div"));return t.style.cssText=s.style.cssText="-webkit-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",t.style.marginRight=t.style.width="0",s.style.width="1px",Ne.appendChild(i),e=!parseFloat(n.getComputedStyle(t).marginRight),Ne.removeChild(i),s.removeChild(t),e}}))}();var xe=/^(none|table(?!-c[ea]).+)/,Ce={position:"absolute",visibility:"hidden",display:"block"},We={letterSpacing:"0",fontWeight:"400"},qe=["Webkit","O","Moz","ms"],Re=o.createElement("div").style;function Pe(e){if(e in Re)return e;for(var t=e[0].toUpperCase()+e.slice(1),n=qe.length;n--;)if((e=qe[n]+t)in Re)return e}function je(e,t,n){var r=I.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function Be(e,t,n,r,a){for(var i=n===(r?"border":"content")?4:"width"===t?1:0,o=0;i<4;i+=2)"margin"===n&&(o+=h.css(e,n+U[i],!0,a)),r?("content"===n&&(o-=h.css(e,"padding"+U[i],!0,a)),"margin"!==n&&(o-=h.css(e,"border"+U[i]+"Width",!0,a))):(o+=h.css(e,"padding"+U[i],!0,a),"padding"!==n&&(o+=h.css(e,"border"+U[i]+"Width",!0,a)));return o}function He(e,t,n){var r=!0,a="width"===t?e.offsetWidth:e.offsetHeight,i=Se(e),o="border-box"===h.css(e,"boxSizing",!1,i);if(a<=0||null==a){if(((a=Ye(e,t,i))<0||null==a)&&(a=e.style[t]),Oe.test(a))return a;r=o&&(m.boxSizingReliable()||a===e.style[t]),a=parseFloat(a)||0}return a+Be(e,t,n||(o?"border":"content"),r,i)+"px"}function Xe(e,t){for(var n,r,a,i=[],o=0,s=e.length;o1)},show:function(){return Xe(this,!0)},hide:function(){return Xe(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each((function(){V(this)?h(this).show():h(this).hide()}))}}),h.Tween=Fe,Fe.prototype={constructor:Fe,init:function(e,t,n,r,a,i){this.elem=e,this.prop=n,this.easing=a||h.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=i||(h.cssNumber[n]?"":"px")},cur:function(){var e=Fe.propHooks[this.prop];return e&&e.get?e.get(this):Fe.propHooks._default.get(this)},run:function(e){var t,n=Fe.propHooks[this.prop];return this.options.duration?this.pos=t=h.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):Fe.propHooks._default.set(this),this}},Fe.prototype.init.prototype=Fe.prototype,Fe.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=h.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){h.fx.step[e.prop]?h.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[h.cssProps[e.prop]]&&!h.cssHooks[e.prop]?e.elem[e.prop]=e.now:h.style(e.elem,e.prop,e.now+e.unit)}}},Fe.propHooks.scrollTop=Fe.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},h.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},h.fx=Fe.prototype.init,h.fx.step={};var Ie,Ue,Ve=/^(?:toggle|show|hide)$/,$e=/queueHooks$/;function Ge(){return n.setTimeout((function(){Ie=void 0})),Ie=h.now()}function Je(e,t){var n,r=0,a={height:e};for(t=t?1:0;r<4;r+=2-t)a["margin"+(n=U[r])]=a["padding"+n]=e;return t&&(a.opacity=a.width=e),a}function Ke(e,t,n){for(var r,a=(Qe.tweeners[t]||[]).concat(Qe.tweeners["*"]),i=0,o=a.length;i1)},removeAttr:function(e){return this.each((function(){h.removeAttr(this,e)}))}}),h.extend({attr:function(e,t,n){var r,a,i=e.nodeType;if(3!==i&&8!==i&&2!==i)return void 0===e.getAttribute?h.prop(e,t,n):(1===i&&h.isXMLDoc(e)||(t=t.toLowerCase(),a=h.attrHooks[t]||(h.expr.match.bool.test(t)?Ze:void 0)),void 0!==n?null===n?void h.removeAttr(e,t):a&&"set"in a&&void 0!==(r=a.set(e,n,t))?r:(e.setAttribute(t,n+""),n):a&&"get"in a&&null!==(r=a.get(e,t))?r:null==(r=h.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!m.radioValue&&"radio"===t&&h.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r,a=0,i=t&&t.match(x);if(i&&1===e.nodeType)for(;n=i[a++];)r=h.propFix[n]||n,h.expr.match.bool.test(n)&&(e[r]=!1),e.removeAttribute(n)}}),Ze={set:function(e,t,n){return!1===t?h.removeAttr(e,n):e.setAttribute(n,n),n}},h.each(h.expr.match.bool.source.match(/\w+/g),(function(e,t){var n=et[t]||h.find.attr;et[t]=function(e,t,r){var a,i;return r||(i=et[t],et[t]=a,a=null!=n(e,t,r)?t.toLowerCase():null,et[t]=i),a}}));var tt=/^(?:input|select|textarea|button)$/i,nt=/^(?:a|area)$/i;h.fn.extend({prop:function(e,t){return W(this,h.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[h.propFix[e]||e]}))}}),h.extend({prop:function(e,t,n){var r,a,i=e.nodeType;if(3!==i&&8!==i&&2!==i)return 1===i&&h.isXMLDoc(e)||(t=h.propFix[t]||t,a=h.propHooks[t]),void 0!==n?a&&"set"in a&&void 0!==(r=a.set(e,n,t))?r:e[t]=n:a&&"get"in a&&null!==(r=a.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=h.find.attr(e,"tabindex");return t?parseInt(t,10):tt.test(e.nodeName)||nt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),m.optSelected||(h.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),h.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){h.propFix[this.toLowerCase()]=this}));var rt=/[\t\r\n\f]/g;function at(e){return e.getAttribute&&e.getAttribute("class")||""}h.fn.extend({addClass:function(e){var t,n,r,a,i,o,s,c=0;if(h.isFunction(e))return this.each((function(t){h(this).addClass(e.call(this,t,at(this)))}));if("string"==typeof e&&e)for(t=e.match(x)||[];n=this[c++];)if(a=at(n),r=1===n.nodeType&&(" "+a+" ").replace(rt," ")){for(o=0;i=t[o++];)r.indexOf(" "+i+" ")<0&&(r+=i+" ");a!==(s=h.trim(r))&&n.setAttribute("class",s)}return this},removeClass:function(e){var t,n,r,a,i,o,s,c=0;if(h.isFunction(e))return this.each((function(t){h(this).removeClass(e.call(this,t,at(this)))}));if(!arguments.length)return this.attr("class","");if("string"==typeof e&&e)for(t=e.match(x)||[];n=this[c++];)if(a=at(n),r=1===n.nodeType&&(" "+a+" ").replace(rt," ")){for(o=0;i=t[o++];)for(;r.indexOf(" "+i+" ")>-1;)r=r.replace(" "+i+" "," ");a!==(s=h.trim(r))&&n.setAttribute("class",s)}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):h.isFunction(e)?this.each((function(n){h(this).toggleClass(e.call(this,n,at(this),t),t)})):this.each((function(){var t,r,a,i;if("string"===n)for(r=0,a=h(this),i=e.match(x)||[];t=i[r++];)a.hasClass(t)?a.removeClass(t):a.addClass(t);else void 0!==e&&"boolean"!==n||((t=at(this))&&P.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":P.get(this,"__className__")||""))}))},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+at(n)+" ").replace(rt," ").indexOf(t)>-1)return!0;return!1}});var it=/\r/g,ot=/[\x20\t\r\n\f]+/g;h.fn.extend({val:function(e){var t,n,r,a=this[0];return arguments.length?(r=h.isFunction(e),this.each((function(n){var a;1===this.nodeType&&(null==(a=r?e.call(this,n,h(this).val()):e)?a="":"number"==typeof a?a+="":h.isArray(a)&&(a=h.map(a,(function(e){return null==e?"":e+""}))),(t=h.valHooks[this.type]||h.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,a,"value")||(this.value=a))}))):a?(t=h.valHooks[a.type]||h.valHooks[a.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(a,"value"))?n:"string"==typeof(n=a.value)?n.replace(it,""):null==n?"":n:void 0}}),h.extend({valHooks:{option:{get:function(e){var t=h.find.attr(e,"value");return null!=t?t:h.trim(h.text(e)).replace(ot," ")}},select:{get:function(e){for(var t,n,r=e.options,a=e.selectedIndex,i="select-one"===e.type||a<0,o=i?null:[],s=i?a+1:r.length,c=a<0?s:i?a:0;c-1)&&(n=!0);return n||(e.selectedIndex=-1),i}}}}),h.each(["radio","checkbox"],(function(){h.valHooks[this]={set:function(e,t){if(h.isArray(t))return e.checked=h.inArray(h(e).val(),t)>-1}},m.checkOn||(h.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}));var st=/^(?:focusinfocus|focusoutblur)$/;h.extend(h.event,{trigger:function(e,t,r,a){var i,s,c,u,l,d,f,m=[r||o],M=p.call(e,"type")?e.type:e,_=p.call(e,"namespace")?e.namespace.split("."):[];if(s=c=r=r||o,3!==r.nodeType&&8!==r.nodeType&&!st.test(M+h.event.triggered)&&(M.indexOf(".")>-1&&(_=M.split("."),M=_.shift(),_.sort()),l=M.indexOf(":")<0&&"on"+M,(e=e[h.expando]?e:new h.Event(M,"object"==typeof e&&e)).isTrigger=a?2:3,e.namespace=_.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+_.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=r),t=null==t?[e]:h.makeArray(t,[e]),f=h.event.special[M]||{},a||!f.trigger||!1!==f.trigger.apply(r,t))){if(!a&&!f.noBubble&&!h.isWindow(r)){for(u=f.delegateType||M,st.test(u+M)||(s=s.parentNode);s;s=s.parentNode)m.push(s),c=s;c===(r.ownerDocument||o)&&m.push(c.defaultView||c.parentWindow||n)}for(i=0;(s=m[i++])&&!e.isPropagationStopped();)e.type=i>1?u:f.bindType||M,(d=(P.get(s,"events")||{})[e.type]&&P.get(s,"handle"))&&d.apply(s,t),(d=l&&s[l])&&d.apply&&q(s)&&(e.result=d.apply(s,t),!1===e.result&&e.preventDefault());return e.type=M,a||e.isDefaultPrevented()||f._default&&!1!==f._default.apply(m.pop(),t)||!q(r)||l&&h.isFunction(r[M])&&!h.isWindow(r)&&((c=r[l])&&(r[l]=null),h.event.triggered=M,r[M](),h.event.triggered=void 0,c&&(r[l]=c)),e.result}},simulate:function(e,t,n){var r=h.extend(new h.Event,n,{type:e,isSimulated:!0});h.event.trigger(r,null,t)}}),h.fn.extend({trigger:function(e,t){return this.each((function(){h.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return h.event.trigger(e,t,n,!0)}}),h.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),(function(e,t){h.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}})),h.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),m.focusin="onfocusin"in n,m.focusin||h.each({focus:"focusin",blur:"focusout"},(function(e,t){var n=function(e){h.event.simulate(t,e.target,h.event.fix(e))};h.event.special[t]={setup:function(){var r=this.ownerDocument||this,a=P.access(r,t);a||r.addEventListener(e,n,!0),P.access(r,t,(a||0)+1)},teardown:function(){var r=this.ownerDocument||this,a=P.access(r,t)-1;a?P.access(r,t,a):(r.removeEventListener(e,n,!0),P.remove(r,t))}}}));var ct=n.location,ut=h.now(),lt=/\?/;h.parseJSON=function(e){return JSON.parse(e+"")},h.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new n.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||h.error("Invalid XML: "+e),t};var dt=/#.*$/,ft=/([?&])_=[^&]*/,pt=/^(.*?):[ \t]*([^\r\n]*)$/gm,mt=/^(?:GET|HEAD)$/,ht=/^\/\//,Mt={},_t={},bt="*/".concat("*"),yt=o.createElement("a");function gt(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,a=0,i=t.toLowerCase().match(x)||[];if(h.isFunction(n))for(;r=i[a++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function vt(e,t,n,r){var a={},i=e===_t;function o(s){var c;return a[s]=!0,h.each(e[s]||[],(function(e,s){var u=s(t,n,r);return"string"!=typeof u||i||a[u]?i?!(c=u):void 0:(t.dataTypes.unshift(u),o(u),!1)})),c}return o(t.dataTypes[0])||!a["*"]&&o("*")}function Lt(e,t){var n,r,a=h.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((a[n]?e:r||(r={}))[n]=t[n]);return r&&h.extend(!0,e,r),e}yt.href=ct.href,h.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:ct.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(ct.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":bt,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"},converters:{"* text":String,"text html":!0,"text json":h.parseJSON,"text xml":h.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Lt(Lt(e,h.ajaxSettings),t):Lt(h.ajaxSettings,e)},ajaxPrefilter:gt(Mt),ajaxTransport:gt(_t),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var r,a,i,s,c,u,l,d,f=h.ajaxSetup({},t),p=f.context||f,m=f.context&&(p.nodeType||p.jquery)?h(p):h.event,M=h.Deferred(),_=h.Callbacks("once memory"),b=f.statusCode||{},y={},g={},v=0,L="canceled",A={readyState:0,getResponseHeader:function(e){var t;if(2===v){if(!s)for(s={};t=pt.exec(i);)s[t[1].toLowerCase()]=t[2];t=s[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===v?i:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return v||(e=g[n]=g[n]||e,y[e]=t),this},overrideMimeType:function(e){return v||(f.mimeType=e),this},statusCode:function(e){var t;if(e)if(v<2)for(t in e)b[t]=[b[t],e[t]];else A.always(e[A.status]);return this},abort:function(e){var t=e||L;return r&&r.abort(t),T(0,t),this}};if(M.promise(A).complete=_.add,A.success=A.done,A.error=A.fail,f.url=((e||f.url||ct.href)+"").replace(dt,"").replace(ht,ct.protocol+"//"),f.type=t.method||t.type||f.method||f.type,f.dataTypes=h.trim(f.dataType||"*").toLowerCase().match(x)||[""],null==f.crossDomain){u=o.createElement("a");try{u.href=f.url,u.href=u.href,f.crossDomain=yt.protocol+"//"+yt.host!=u.protocol+"//"+u.host}catch(e){f.crossDomain=!0}}if(f.data&&f.processData&&"string"!=typeof f.data&&(f.data=h.param(f.data,f.traditional)),vt(Mt,f,t,A),2===v)return A;for(d in(l=h.event&&f.global)&&0==h.active++&&h.event.trigger("ajaxStart"),f.type=f.type.toUpperCase(),f.hasContent=!mt.test(f.type),a=f.url,f.hasContent||(f.data&&(a=f.url+=(lt.test(a)?"&":"?")+f.data,delete f.data),!1===f.cache&&(f.url=ft.test(a)?a.replace(ft,"$1_="+ut++):a+(lt.test(a)?"&":"?")+"_="+ut++)),f.ifModified&&(h.lastModified[a]&&A.setRequestHeader("If-Modified-Since",h.lastModified[a]),h.etag[a]&&A.setRequestHeader("If-None-Match",h.etag[a])),(f.data&&f.hasContent&&!1!==f.contentType||t.contentType)&&A.setRequestHeader("Content-Type",f.contentType),A.setRequestHeader("Accept",f.dataTypes[0]&&f.accepts[f.dataTypes[0]]?f.accepts[f.dataTypes[0]]+("*"!==f.dataTypes[0]?", "+bt+"; q=0.01":""):f.accepts["*"]),f.headers)A.setRequestHeader(d,f.headers[d]);if(f.beforeSend&&(!1===f.beforeSend.call(p,A,f)||2===v))return A.abort();for(d in L="abort",{success:1,error:1,complete:1})A[d](f[d]);if(r=vt(_t,f,t,A)){if(A.readyState=1,l&&m.trigger("ajaxSend",[A,f]),2===v)return A;f.async&&f.timeout>0&&(c=n.setTimeout((function(){A.abort("timeout")}),f.timeout));try{v=1,r.send(y,T)}catch(e){if(!(v<2))throw e;T(-1,e)}}else T(-1,"No Transport");function T(e,t,o,s){var u,d,y,g,L,T=t;2!==v&&(v=2,c&&n.clearTimeout(c),r=void 0,i=s||"",A.readyState=e>0?4:0,u=e>=200&&e<300||304===e,o&&(g=function(e,t,n){for(var r,a,i,o,s=e.contents,c=e.dataTypes;"*"===c[0];)c.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(a in s)if(s[a]&&s[a].test(r)){c.unshift(a);break}if(c[0]in n)i=c[0];else{for(a in n){if(!c[0]||e.converters[a+" "+c[0]]){i=a;break}o||(o=a)}i=i||o}if(i)return i!==c[0]&&c.unshift(i),n[i]}(f,A,o)),g=function(e,t,n,r){var a,i,o,s,c,u={},l=e.dataTypes.slice();if(l[1])for(o in e.converters)u[o.toLowerCase()]=e.converters[o];for(i=l.shift();i;)if(e.responseFields[i]&&(n[e.responseFields[i]]=t),!c&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),c=i,i=l.shift())if("*"===i)i=c;else if("*"!==c&&c!==i){if(!(o=u[c+" "+i]||u["* "+i]))for(a in u)if((s=a.split(" "))[1]===i&&(o=u[c+" "+s[0]]||u["* "+s[0]])){!0===o?o=u[a]:!0!==u[a]&&(i=s[0],l.unshift(s[1]));break}if(!0!==o)if(o&&e.throws)t=o(t);else try{t=o(t)}catch(e){return{state:"parsererror",error:o?e:"No conversion from "+c+" to "+i}}}return{state:"success",data:t}}(f,g,A,u),u?(f.ifModified&&((L=A.getResponseHeader("Last-Modified"))&&(h.lastModified[a]=L),(L=A.getResponseHeader("etag"))&&(h.etag[a]=L)),204===e||"HEAD"===f.type?T="nocontent":304===e?T="notmodified":(T=g.state,d=g.data,u=!(y=g.error))):(y=T,!e&&T||(T="error",e<0&&(e=0))),A.status=e,A.statusText=(t||T)+"",u?M.resolveWith(p,[d,T,A]):M.rejectWith(p,[A,T,y]),A.statusCode(b),b=void 0,l&&m.trigger(u?"ajaxSuccess":"ajaxError",[A,f,u?d:y]),_.fireWith(p,[A,T]),l&&(m.trigger("ajaxComplete",[A,f]),--h.active||h.event.trigger("ajaxStop")))}return A},getJSON:function(e,t,n){return h.get(e,t,n,"json")},getScript:function(e,t){return h.get(e,void 0,t,"script")}}),h.each(["get","post"],(function(e,t){h[t]=function(e,n,r,a){return h.isFunction(n)&&(a=a||r,r=n,n=void 0),h.ajax(h.extend({url:e,type:t,dataType:a,data:n,success:r},h.isPlainObject(e)&&e))}})),h._evalUrl=function(e){return h.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,throws:!0})},h.fn.extend({wrapAll:function(e){var t;return h.isFunction(e)?this.each((function(t){h(this).wrapAll(e.call(this,t))})):(this[0]&&(t=h(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this)},wrapInner:function(e){return h.isFunction(e)?this.each((function(t){h(this).wrapInner(e.call(this,t))})):this.each((function(){var t=h(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=h.isFunction(e);return this.each((function(n){h(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(){return this.parent().each((function(){h.nodeName(this,"body")||h(this).replaceWith(this.childNodes)})).end()}}),h.expr.filters.hidden=function(e){return!h.expr.filters.visible(e)},h.expr.filters.visible=function(e){return e.offsetWidth>0||e.offsetHeight>0||e.getClientRects().length>0};var At=/%20/g,Tt=/\[\]$/,wt=/\r?\n/g,zt=/^(?:submit|button|image|reset|file)$/i,kt=/^(?:input|select|textarea|keygen)/i;function Ot(e,t,n,r){var a;if(h.isArray(t))h.each(t,(function(t,a){n||Tt.test(e)?r(e,a):Ot(e+"["+("object"==typeof a&&null!=a?t:"")+"]",a,n,r)}));else if(n||"object"!==h.type(t))r(e,t);else for(a in t)Ot(e+"["+a+"]",t[a],n,r)}h.param=function(e,t){var n,r=[],a=function(e,t){t=h.isFunction(t)?t():null==t?"":t,r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(void 0===t&&(t=h.ajaxSettings&&h.ajaxSettings.traditional),h.isArray(e)||e.jquery&&!h.isPlainObject(e))h.each(e,(function(){a(this.name,this.value)}));else for(n in e)Ot(n,e[n],t,a);return r.join("&").replace(At,"+")},h.fn.extend({serialize:function(){return h.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=h.prop(this,"elements");return e?h.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!h(this).is(":disabled")&&kt.test(this.nodeName)&&!zt.test(e)&&(this.checked||!G.test(e))})).map((function(e,t){var n=h(this).val();return null==n?null:h.isArray(n)?h.map(n,(function(e){return{name:t.name,value:e.replace(wt,"\r\n")}})):{name:t.name,value:n.replace(wt,"\r\n")}})).get()}}),h.ajaxSettings.xhr=function(){try{return new n.XMLHttpRequest}catch(e){}};var St={0:200,1223:204},Dt=h.ajaxSettings.xhr();m.cors=!!Dt&&"withCredentials"in Dt,m.ajax=Dt=!!Dt,h.ajaxTransport((function(e){var t,r;if(m.cors||Dt&&!e.crossDomain)return{send:function(a,i){var o,s=e.xhr();if(s.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(o in e.xhrFields)s[o]=e.xhrFields[o];for(o in e.mimeType&&s.overrideMimeType&&s.overrideMimeType(e.mimeType),e.crossDomain||a["X-Requested-With"]||(a["X-Requested-With"]="XMLHttpRequest"),a)s.setRequestHeader(o,a[o]);t=function(e){return function(){t&&(t=r=s.onload=s.onerror=s.onabort=s.onreadystatechange=null,"abort"===e?s.abort():"error"===e?"number"!=typeof s.status?i(0,"error"):i(s.status,s.statusText):i(St[s.status]||s.status,s.statusText,"text"!==(s.responseType||"text")||"string"!=typeof s.responseText?{binary:s.response}:{text:s.responseText},s.getAllResponseHeaders()))}},s.onload=t(),r=s.onerror=t("error"),void 0!==s.onabort?s.onabort=r:s.onreadystatechange=function(){4===s.readyState&&n.setTimeout((function(){t&&r()}))},t=t("abort");try{s.send(e.hasContent&&e.data||null)}catch(e){if(t)throw e}},abort:function(){t&&t()}}})),h.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return h.globalEval(e),e}}}),h.ajaxPrefilter("script",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")})),h.ajaxTransport("script",(function(e){var t,n;if(e.crossDomain)return{send:function(r,a){t=h("